Show timezone data when no date-time
[geeqie.git] / src / exif-common.c
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #define _XOPEN_SOURCE
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <sys/mman.h>
33 #include <math.h>
34
35 #ifdef HAVE_LCMS
36 /*** color support enabled ***/
37
38 #ifdef HAVE_LCMS2
39 #include <lcms2.h>
40 #else
41 #include <lcms.h>
42 #endif
43 #endif
44
45 #include <glib.h>
46
47 #include "intl.h"
48
49 #include "main.h"
50 #include "exif.h"
51
52 #include "filedata.h"
53 #include "filefilter.h"
54 #include "filecache.h"
55 #include "format_raw.h"
56 #include "ui_fileops.h"
57 #include "cache.h"
58 #include "jpeg_parser.h"
59 #include "misc.h"
60 #include "zonedetect.h"
61
62
63 static gdouble exif_rational_to_double(ExifRational *r, gint sign)
64 {
65         if (!r || r->den == 0.0) return 0.0;
66
67         if (sign) return (gdouble)((gint)r->num) / (gdouble)((gint)r->den);
68         return (gdouble)r->num / r->den;
69 }
70
71 static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key)
72 {
73         ExifRational *r;
74         gint sign;
75
76         r = exif_get_rational(exif, key, &sign);
77         return exif_rational_to_double(r, sign);
78 }
79
80 static GString *append_comma_text(GString *string, const gchar *text)
81 {
82         string = g_string_append(string, ", ");
83         string = g_string_append(string, text);
84
85         return string;
86 }
87
88 static gchar *remove_common_prefix(gchar *s, gchar *t)
89 {
90         gint i;
91
92         if (!s || !t) return t;
93
94         for (i = 0; s[i] && t[i] && s[i] == t[i]; i++)
95                 ;
96         if (!i)
97                 return t;
98         if (s[i-1] == ' ' || !s[i])
99                 {
100                 while (t[i] == ' ')
101                         i++;
102                 return t + i;
103                 }
104         return s;
105 }
106
107 static gdouble get_crop_factor(ExifData *exif)
108 {
109         gdouble res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
110         gdouble xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
111         gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
112         gint res_unit;
113         gint w, h;
114         gdouble xsize, ysize, size, ratio;
115
116         if (xres == 0.0 || yres == 0.0) return 0.0;
117
118         if (!exif_get_integer(exif, "Exif.Photo.FocalPlaneResolutionUnit", &res_unit)) return 0.0;
119         if (res_unit < 1 || res_unit > 5) return 0.0;
120
121         if (!exif_get_integer(exif, "Exif.Photo.PixelXDimension", &w)) return 0.0;
122         if (!exif_get_integer(exif, "Exif.Photo.PixelYDimension", &h)) return 0.0;
123
124         xsize = w * res_unit_tbl[res_unit] / xres;
125         ysize = h * res_unit_tbl[res_unit] / yres;
126
127         ratio = xsize / ysize;
128
129         if (ratio < 0.5 || ratio > 2.0) return 0.0; /* reasonable ratio */
130
131         size = sqrt(xsize * xsize + ysize * ysize);
132
133         if (size < 1.0 || size > 100.0) return 0.0; /* reasonable sensor size in mm */
134
135         return sqrt(36*36+24*24) / size;
136
137 }
138
139 static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
140 {
141         gint str_len = strlen(str);
142
143         if (suffix_len < 0) suffix_len = strlen(suffix);
144         if (str_len < suffix_len) return FALSE;
145
146         if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE;
147         str[str_len - suffix_len] = '\0';
148
149         return TRUE;
150 }
151
152 static gchar *exif_build_formatted_Camera(ExifData *exif)
153 {
154         gchar *text;
155         gchar *make = exif_get_data_as_text(exif, "Exif.Image.Make");
156         gchar *model = exif_get_data_as_text(exif, "Exif.Image.Model");
157         gchar *software = exif_get_data_as_text(exif, "Exif.Image.Software");
158         gchar *model2;
159         gchar *software2;
160
161         if (make)
162                 {
163                 g_strstrip(make);
164
165                 if (remove_suffix(make, " CORPORATION", 12)) { /* Nikon */ }
166                 else if (remove_suffix(make, " Corporation", 12)) { /* Pentax */ }
167                 else if (remove_suffix(make, " OPTICAL CO.,LTD", 16)) { /* OLYMPUS */ };
168                 }
169
170         if (model)
171                 g_strstrip(model);
172
173         if (software)
174                 {
175                 gint i, j;
176
177                 g_strstrip(software);
178
179                 /* remove superfluous spaces (pentax K100D) */
180                 for (i = 0, j = 0; software[i]; i++, j++)
181                         {
182                         if (software[i] == ' ' && software[i + 1] == ' ')
183                                 i++;
184                         if (i != j) software[j] = software[i];
185                         }
186                 software[j] = '\0';
187                 }
188
189         model2 = remove_common_prefix(make, model);
190         software2 = remove_common_prefix(model2, software);
191
192         text = g_strdup_printf("%s%s%s%s%s%s", (make) ? make : "", (make && model2) ? " " : "",
193                                                (model2) ? model2 : "",
194                                                (software2 && (make || model2)) ? " (" : "",
195                                                (software2) ? software2 : "",
196                                                (software2 && (make || model2)) ? ")" : "");
197
198         g_free(make);
199         g_free(model);
200         g_free(software);
201         return text;
202 }
203
204 static gchar *exif_build_formatted_DateTime(ExifData *exif)
205 {
206         gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
207         gchar *subsec = NULL;
208         gchar buf[128];
209         gchar *tmp;
210         gint buflen;
211         struct tm tm;
212         GError *error = NULL;
213
214         if (text)
215                 {
216                 subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
217                 }
218         else
219                 {
220                 text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
221                 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
222                 }
223
224         /* Convert the stuff into a tm struct */
225         memset(&tm, 0, sizeof(tm)); /* Uh, strptime could let garbage in tm! */
226         if (text && strptime(text, "%Y:%m:%d %H:%M:%S", &tm))
227                 {
228                 buflen = strftime(buf, sizeof(buf), "%x %X", &tm);
229                 if (buflen > 0)
230                         {
231                         tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
232                         if (error)
233                                 {
234                                 log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
235                                 g_error_free(error);
236                                 }
237                         else
238                                 {
239                                 g_free(text);
240                                 text = g_strdup(tmp);
241                                 }
242                         }
243                 }
244
245         if (subsec)
246                 {
247                 tmp = text;
248                 text = g_strconcat(tmp, ".", subsec, NULL);
249                 g_free(tmp);
250                 g_free(subsec);
251                 }
252         return text;
253 }
254
255 static gchar *exif_build_formatted_DateTimeDigitized(ExifData *exif)
256 {
257         gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeDigitized");
258         gchar *subsec = NULL;
259         gchar buf[128];
260         gchar *tmp;
261         gint buflen;
262         struct tm tm;
263         GError *error = NULL;
264
265         if (text)
266                 {
267                 subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeDigitized");
268                 }
269         else
270                 {
271                 text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
272                 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
273                 }
274
275         /* Convert the stuff into a tm struct */
276         memset(&tm, 0, sizeof(tm)); /* Uh, strptime could let garbage in tm! */
277         if (text && strptime(text, "%Y:%m:%d %H:%M:%S", &tm))
278                 {
279                 buflen = strftime(buf, sizeof(buf), "%x %X", &tm);
280                 if (buflen > 0)
281                         {
282                         tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
283                         if (error)
284                                 {
285                                 log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
286                                 g_error_free(error);
287                                 }
288                         else
289                                 {
290                                 g_free(text);
291                                 text = g_strdup(tmp);
292                                 }
293                         }
294                 }
295
296         if (subsec)
297                 {
298                 tmp = text;
299                 text = g_strconcat(tmp, ".", subsec, NULL);
300                 g_free(tmp);
301                 g_free(subsec);
302                 }
303         return text;
304 }
305
306 static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif)
307 {
308         ExifRational *r;
309
310         r = exif_get_rational(exif, "Exif.Photo.ExposureTime", NULL);
311         if (r && r->num && r->den)
312                 {
313                 gdouble n = (gdouble)r->den / (gdouble)r->num;
314                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
315                                                   n > 1.0 ? n : 1.0 / n);
316                 }
317         r = exif_get_rational(exif, "Exif.Photo.ShutterSpeedValue", NULL);
318         if (r && r->num  && r->den)
319                 {
320                 gdouble n = pow(2.0, exif_rational_to_double(r, TRUE));
321
322                 /* Correct exposure time to avoid values like 1/91s (seen on Minolta DImage 7) */
323                 if (n > 1.0 && (gint)n - ((gint)(n/10))*10 == 1) n--;
324
325                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
326                                                   n > 1.0 ? floor(n) : 1.0 / n);
327                 }
328         return NULL;
329 }
330
331 static gchar *exif_build_formatted_Aperture(ExifData *exif)
332 {
333         gdouble n;
334
335         n = exif_get_rational_as_double(exif, "Exif.Photo.FNumber");
336         if (n == 0.0) n = exif_get_rational_as_double(exif, "Exif.Photo.ApertureValue");
337         if (n == 0.0) return NULL;
338
339         return g_strdup_printf("f/%.1f", n);
340 }
341
342 static gchar *exif_build_formatted_ExposureBias(ExifData *exif)
343 {
344         ExifRational *r;
345         gint sign;
346         gdouble n;
347
348         r = exif_get_rational(exif, "Exif.Photo.ExposureBiasValue", &sign);
349         if (!r) return NULL;
350
351         n = exif_rational_to_double(r, sign);
352         return g_strdup_printf("%+.1f", n);
353 }
354
355 static gchar *exif_build_formatted_FocalLength(ExifData *exif)
356 {
357         gdouble n;
358
359         n = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
360         if (n == 0.0) return NULL;
361         return g_strdup_printf("%.0f mm", n);
362 }
363
364 static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif)
365 {
366         gint n;
367         gdouble f, c;
368
369         if (exif_get_integer(exif, "Exif.Photo.FocalLengthIn35mmFilm", &n) && n != 0)
370                 {
371                 return g_strdup_printf("%d mm", n);
372                 }
373
374         f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
375         if (f == 0.0) return NULL;
376
377         c = get_crop_factor(exif);
378         if (c == 0.0) return NULL;
379
380         return g_strdup_printf("%.0f mm", f * c);
381 }
382
383 static gchar *exif_build_formatted_ISOSpeedRating(ExifData *exif)
384 {
385         gchar *text;
386
387         text = exif_get_data_as_text(exif, "Exif.Photo.ISOSpeedRatings");
388         /* old canon may set this instead */
389         if (!text) text = exif_get_data_as_text(exif, "Exif.CanonSi.ISOSpeed");
390         /* kodak may set this instead */
391         if (!text) text = exif_get_data_as_text(exif, "Exif.Photo.ExposureIndex");
392         return text;
393 }
394
395 static gchar *exif_build_formatted_SubjectDistance(ExifData *exif)
396 {
397         ExifRational *r;
398         gint sign;
399         gdouble n;
400
401         r = exif_get_rational(exif, "Exif.Photo.SubjectDistance", &sign);
402         if (!r) return NULL;
403
404         if ((glong)r->num == (glong)0xffffffff) return g_strdup(_("infinity"));
405         if ((glong)r->num == 0) return g_strdup(_("unknown"));
406
407         n = exif_rational_to_double(r, sign);
408         if (n == 0.0) return _("unknown");
409         return g_strdup_printf("%.3f m", n);
410 }
411
412 static gchar *exif_build_formatted_Flash(ExifData *exif)
413 {
414         /* grr, flash is a bitmask... */
415         GString *string;
416         gchar *text;
417         gint n;
418         gint v;
419
420         if (!exif_get_integer(exif, "Exif.Photo.Flash", &n)) return NULL;
421
422         /* Exif 2.1 only defines first 3 bits */
423         if (n <= 0x07) return exif_get_data_as_text(exif, "Exif.Photo.Flash");
424
425         /* must be Exif 2.2 */
426         string = g_string_new("");
427
428         /* flash fired (bit 0) */
429         string = g_string_append(string, (n & 0x01) ? _("yes") : _("no"));
430
431         /* flash mode (bits 3, 4) */
432         v = (n >> 3) & 0x03;
433         if (v) string = append_comma_text(string, _("mode:"));
434         switch (v)
435                 {
436                 case 1:
437                         string = g_string_append(string, _("on"));
438                         break;
439                 case 2:
440                         string = g_string_append(string, _("off"));
441                         break;
442                 case 3:
443                         string = g_string_append(string, _("auto"));
444                         break;
445                 }
446
447         /* return light (bits 1, 2) */
448         v = (n >> 1) & 0x03;
449         if (v == 2) string = append_comma_text(string, _("not detected by strobe"));
450         if (v == 3) string = append_comma_text(string, _("detected by strobe"));
451
452         /* we ignore flash function (bit 5) */
453
454         /* red-eye (bit 6) */
455         if ((n >> 5) & 0x01) string = append_comma_text(string, _("red-eye reduction"));
456
457         text = string->str;
458         g_string_free(string, FALSE);
459         return text;
460 }
461
462 static gchar *exif_build_formatted_Resolution(ExifData *exif)
463 {
464         ExifRational *rx, *ry;
465         gchar *units;
466         gchar *text;
467
468         rx = exif_get_rational(exif, "Exif.Image.XResolution", NULL);
469         ry = exif_get_rational(exif, "Exif.Image.YResolution", NULL);
470         if (!rx || !ry) return NULL;
471
472         units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit");
473         text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (gdouble)rx->num / rx->den : 1.0,
474                                                       ry->den ? (gdouble)ry->num / ry->den : 1.0,
475                                                       _("dot"), (units) ? units : _("unknown"));
476
477         g_free(units);
478         return text;
479 }
480
481 static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
482 {
483 #ifdef HAVE_LCMS2
484         cmsUInt8Number profileID[17];
485 #endif
486         const gchar *name = "";
487         const gchar *source = "";
488         guchar *profile_data;
489         guint profile_len;
490
491         profile_data = exif_get_color_profile(exif, &profile_len);
492         if (!profile_data)
493                 {
494                 gint cs;
495                 gchar *interop_index;
496
497                 /* ColorSpace == 1 specifies sRGB per EXIF 2.2 */
498                 if (!exif_get_integer(exif, "Exif.Photo.ColorSpace", &cs)) cs = 0;
499                 interop_index = exif_get_data_as_text(exif, "Exif.Iop.InteroperabilityIndex");
500
501                 if (cs == 1)
502                         {
503                         name = _("sRGB");
504                         source = "ColorSpace";
505                         }
506                 else if (cs == 2 || (interop_index && !strcmp(interop_index, "R03")))
507                         {
508                         name = _("AdobeRGB");
509                         source = (cs == 2) ? "ColorSpace" : "Iop";
510                         }
511
512                 g_free(interop_index);
513                 }
514         else
515                 {
516                 source = _("embedded");
517 #ifdef HAVE_LCMS
518
519                         {
520                         cmsHPROFILE profile;
521
522                         profile = cmsOpenProfileFromMem(profile_data, profile_len);
523                         if (profile)
524                                 {
525 #ifdef HAVE_LCMS2
526                                 profileID[16] = '\0';
527                                 cmsGetHeaderProfileID(profile, profileID);
528                                 name = (gchar *) profileID;
529 #else
530                                 name = (gchar *) cmsTakeProductName(profile);
531 #endif
532                                 cmsCloseProfile(profile);
533                                 }
534                         g_free(profile_data);
535                         }
536 #endif
537                 }
538         if (name[0] == 0 && source[0] == 0) return NULL;
539         return g_strdup_printf("%s (%s)", name, source);
540 }
541
542 static gchar *exif_build_formatted_GPSPosition(ExifData *exif)
543 {
544         GString *string;
545         gchar *text, *ref;
546         ExifRational *value;
547         ExifItem *item;
548         guint i;
549         gdouble p, p3;
550         gulong p1, p2;
551
552         string = g_string_new("");
553
554         item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude");
555         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef");
556         if (item && ref)
557                 {
558                 p = 0;
559                 for (i = 0; i < exif_item_get_elements(item); i++)
560                         {
561                         value = exif_item_get_rational(item, NULL, i);
562                         if (value && value->num && value->den)
563                                 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
564                         }
565                 p1 = (gint)p;
566                 p2 = (gint)((p - p1)*60);
567                 p3 = ((p - p1)*60 - p2)*60;
568
569                 g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
570                 } // if (item && ref)
571
572         item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude");
573         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef");
574         if (item && ref)
575                 {
576                 p = 0;
577                 for (i = 0; i < exif_item_get_elements(item); i++)
578                         {
579                         value = exif_item_get_rational(item, NULL, i);
580                         if (value && value->num && value->den)
581                         p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
582                         }
583                 p1 = (gint)p;
584                 p2 = (gint)((p - p1)*60);
585                 p3 = ((p - p1)*60 - p2)*60;
586
587                 g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
588                 } // if (item && ref)
589
590         text = string->str;
591         g_string_free(string, FALSE);
592
593         return text;
594 } // static gchar *exif_build_forma...
595
596 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif)
597 {
598         ExifRational *r;
599         ExifItem *item;
600         gdouble alt;
601         gint ref;
602
603         item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef");
604         r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL);
605
606         if (!r || !item) return NULL;
607
608         alt = exif_rational_to_double(r, 0);
609         exif_item_get_integer(item, &ref);
610
611         return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level"));
612 }
613
614 /**
615  * @brief Extracts timezone data from a ZoneDetect search structure
616  * @param[in] results ZoneDetect search structure
617  * @param[out] timezone in the form "Europe/London"
618  * @param[out] countryname in the form "United Kingdom"
619  * @param[out] countryalpha2 in the form "GB"
620  * 
621  * Refer to https://github.com/BertoldVdb/ZoneDetect
622  * for structure details
623  */
624 static void zd_tz(ZoneDetectResult *results, gchar **timezone, gchar **countryname, gchar **countryalpha2)
625 {
626         gchar *timezone_pre = NULL;
627         gchar *timezone_id = NULL;
628         unsigned int index = 0;
629
630         while(results[index].lookupResult != ZD_LOOKUP_END)
631                 {
632                 if(results[index].data)
633                         {
634                         for(unsigned int i=0; i<results[index].numFields; i++)
635                                 {
636                                 if (g_strstr_len(results[index].fieldNames[i], -1, "TimezoneIdPrefix"))
637                                         {
638                                         timezone_pre = g_strdup(results[index].data[i]);
639                                         }
640                                 if (g_strstr_len(results[index].fieldNames[i], -1, "TimezoneId"))
641                                         {
642                                         timezone_id = g_strdup(results[index].data[i]);
643                                         }
644                                 if (g_strstr_len(results[index].fieldNames[i], -1, "CountryName"))
645                                         {
646                                         *countryname = g_strdup(results[index].data[i]);
647                                         }
648                                 if (g_strstr_len(results[index].fieldNames[i], -1, "CountryAlpha2"))
649                                         {
650                                         *countryalpha2 = g_strdup(results[index].data[i]);
651                                         }
652                                 }
653                         }
654                 index++;
655                 }
656
657         *timezone = g_strconcat(timezone_pre, timezone_id, NULL);
658         g_free(timezone_pre);
659         g_free(timezone_id);
660 }
661
662 /**
663  * @brief Gets timezone data from an exif structure
664  * @param[in] exif
665  * @returns TRUE if timezone data found AND GPS date and time found
666  * @param[out] exif_date_time exif date/time in the form 2018:11:30:17:05:04
667  * @param[out] timezone in the form "Europe/London"
668  * @param[out] countryname in the form "United Kingdom"
669  * @param[out] countryalpha2 in the form "GB"
670  *
671  *
672  */
673 static gboolean exif_build_tz_data(ExifData *exif, gchar **exif_date_time, gchar **timezone, gchar **countryname, gchar **countryalpha2)
674 {
675         gfloat latitude;
676         gfloat longitude;
677         gchar *text_latitude;
678         gchar *text_longitude;
679         gchar *text_latitude_ref;
680         gchar *text_longitude_ref;
681         gchar *text_date;
682         gchar *text_time;
683         gchar *lat_deg;
684         gchar *lat_min;
685         gchar *lon_deg;
686         gchar *lon_min;
687         gchar *zd_path;
688         ZoneDetect *cd;
689         ZoneDetectResult *results;
690         gboolean ret = FALSE;
691
692         text_latitude = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitude");
693         text_longitude = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitude");
694         text_latitude_ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef");
695         text_longitude_ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef");
696         text_date = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSDateStamp");
697         text_time = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSTimeStamp");
698
699         if (text_latitude && text_longitude && text_latitude_ref && text_longitude_ref)
700                 {
701                 lat_deg = strtok(text_latitude, "deg'");
702                 lat_min = strtok(NULL, "deg'");
703                 latitude = atof(lat_deg) + atof(lat_min) / 60;
704                 if (!g_strcmp0(text_latitude_ref, "South"))
705                         {
706                         latitude = -latitude;
707                         }
708                 lon_deg = strtok(text_longitude, "deg'");
709                 lon_min = strtok(NULL, "deg'");
710                 longitude = atof(lon_deg) + atof(lon_min) / 60;
711                 if (!g_strcmp0(text_longitude_ref, "West"))
712                         {
713                         longitude = -longitude;
714                         }
715
716                 zd_path = g_build_filename(GQ_BIN_DIR, TIMEZONE_DATABASE, NULL);
717                 if (g_file_test(zd_path, G_FILE_TEST_EXISTS))
718                         {
719                         cd = ZDOpenDatabase(zd_path);
720                         if (cd)
721                                 {
722                                 results = ZDLookup(cd, latitude, longitude, NULL);
723                                 if (results)
724                                         {
725                                         zd_tz(results, timezone, countryname, countryalpha2);
726                                         ret = TRUE;
727                                         }
728                                 }
729                         else
730                                 {
731                                 log_printf("Error: Init of timezone database %s failed\n", zd_path);
732                                 }
733                         ZDCloseDatabase(cd);
734                         }
735                 g_free(zd_path);
736                 }
737
738         if (ret && text_date && text_time)
739                 {
740                 *exif_date_time = g_strconcat(text_date, ":", text_time, NULL);
741                 }
742         else
743                 {
744                 ret = FALSE;
745                 }
746         return ret;
747 }
748
749 /**
750  * @brief Creates local time from GPS lat/long
751  * @param[in] exif
752  * @returns Localised time and date
753  *
754  * GPS lat/long is translated to timezone using ZoneDetect.
755  * GPS UTC is converted to Unix time stamp (seconds since 1970).
756  * The TZ environment variable is set to the relevant timezone
757  * and the Unix timestamp converted to local time using locale.
758  * If the conversion fails, unformatted UTC is returned.
759  */
760 static gchar *exif_build_formatted_localtime(ExifData *exif)
761 {
762         gchar buf[128];
763         gchar *tmp;
764         gint buflen;
765         GError *error = NULL;
766         gchar *time_zone_image;
767         gchar *time_zone_org;
768         struct tm *tm_local;
769         struct tm tm_utc;
770         time_t stamp;
771         gchar *exif_date_time = NULL;
772         gchar *timezone = NULL;
773         gchar *countryname = NULL;
774         gchar *countryalpha2 = NULL;
775
776         if (exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2))
777                 {
778                 time_zone_image = g_strconcat("TZ=", timezone, NULL);
779                 time_zone_org = g_strconcat("TZ=", getenv("TZ"), NULL);
780                 putenv("TZ=UTC");
781
782                 memset(&tm_utc, 0, sizeof(tm_utc));
783                 if (exif_date_time && strptime(exif_date_time, "%Y:%m:%d:%H:%M:%S", &tm_utc))
784                         {
785                         stamp = mktime(&tm_utc);        // Convert the struct to a Unix timestamp
786                         putenv(time_zone_image);        // Switch to destination time zone
787
788                         tm_local = localtime(&stamp);
789
790                         /* Convert to localtime using locale */
791                         buflen = strftime(buf, sizeof(buf), "%x %X", tm_local);
792                         if (buflen > 0)
793                                 {
794                                 tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
795                                 if (error)
796                                         {
797                                         log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
798                                         g_error_free(error);
799                                         }
800                                 else
801                                         {
802                                         g_free(exif_date_time);
803                                         exif_date_time = g_strdup(tmp);
804                                         }
805                                 }
806                                 g_free(tmp);
807                         }
808                 putenv(time_zone_org);
809
810                 g_free(time_zone_image);
811                 g_free(time_zone_org);
812                 }
813
814         g_free(timezone);
815         g_free(countryname);
816         g_free(countryalpha2);
817
818         return exif_date_time;
819 }
820
821 /**
822  * @brief Gets timezone from GPS lat/long
823  * @param[in] exif
824  * @returns Timezone string in the form "Europe/London"
825  *
826  *
827  */
828 static gchar *exif_build_formatted_timezone(ExifData *exif)
829 {
830         gchar *time_zone = NULL;
831         gchar *exif_date_time = NULL;
832         gchar *timezone = NULL;
833         gchar *countryname = NULL;
834         gchar *countryalpha2 = NULL;
835
836         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
837
838         g_free(exif_date_time);
839         g_free(countryname);
840         g_free(countryalpha2);
841
842         return timezone;
843 }
844
845 /**
846  * @brief Gets countryname from GPS lat/long
847  * @param[in] exif
848  * @returns Countryname string
849  *
850  *
851  */
852 static gchar *exif_build_formatted_countryname(ExifData *exif)
853 {
854         gchar *exif_date_time = NULL;
855         gchar *timezone = NULL;
856         gchar *countryname = NULL;
857         gchar *countryalpha2 = NULL;
858
859         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
860
861         g_free(exif_date_time);
862         g_free(timezone);
863         g_free(countryalpha2);
864
865         return countryname;
866 }
867
868 /**
869  * @brief Gets two-letter country code from GPS lat/long
870  * @param[in] exif
871  * @returns Countryalpha2 string
872  *
873  *
874  */
875 static gchar *exif_build_formatted_countrycode(ExifData *exif)
876 {
877         gchar *exif_date_time = NULL;
878         gchar *timezone = NULL;
879         gchar *countryname = NULL;
880         gchar *countryalpha2 = NULL;
881
882         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
883
884         g_free(exif_date_time);
885         g_free(timezone);
886         g_free(countryname);
887
888         return countryalpha2;
889 }
890
891 static gchar *exif_build_formatted_star_rating(ExifData *exif)
892 {
893         gint n;
894
895         exif_get_integer(exif, "Xmp.xmp.Rating", &n);
896
897         return convert_rating_to_stars(n);
898 }
899
900 /* List of custom formatted pseudo-exif tags */
901 #define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name }
902
903 ExifFormattedText ExifFormattedList[] = {
904         EXIF_FORMATTED_TAG(Camera,              N_("Camera")),
905         EXIF_FORMATTED_TAG(DateTime,            N_("Date")),
906         EXIF_FORMATTED_TAG(DateTimeDigitized,   N_("DateDigitized")),
907         EXIF_FORMATTED_TAG(ShutterSpeed,        N_("Shutter speed")),
908         EXIF_FORMATTED_TAG(Aperture,            N_("Aperture")),
909         EXIF_FORMATTED_TAG(ExposureBias,        N_("Exposure bias")),
910         EXIF_FORMATTED_TAG(ISOSpeedRating,      N_("ISO sensitivity")),
911         EXIF_FORMATTED_TAG(FocalLength,         N_("Focal length")),
912         EXIF_FORMATTED_TAG(FocalLength35mmFilm, N_("Focal length 35mm")),
913         EXIF_FORMATTED_TAG(SubjectDistance,     N_("Subject distance")),
914         EXIF_FORMATTED_TAG(Flash,               N_("Flash")),
915         EXIF_FORMATTED_TAG(Resolution,          N_("Resolution")),
916         EXIF_FORMATTED_TAG(ColorProfile,        N_("Color profile")),
917         EXIF_FORMATTED_TAG(GPSPosition,         N_("GPS position")),
918         EXIF_FORMATTED_TAG(GPSAltitude,         N_("GPS altitude")),
919         EXIF_FORMATTED_TAG(localtime,           N_("Local time")),
920         EXIF_FORMATTED_TAG(timezone,            N_("Time zone")),
921         EXIF_FORMATTED_TAG(countryname,         N_("Country name")),
922         EXIF_FORMATTED_TAG(countrycode,         N_("Country code")),
923         EXIF_FORMATTED_TAG(star_rating,         N_("Star rating")),
924         {"file.size",                           N_("File size"),        NULL},
925         {"file.date",                           N_("File date"),        NULL},
926         {"file.mode",                           N_("File mode"),        NULL},
927         {"file.ctime",                          N_("File ctime"),       NULL},
928         {"file.owner",                          N_("File owner"),       NULL},
929         {"file.group",                          N_("File group"),       NULL},
930         {"file.link",                           N_("File link"),        NULL},
931         {"file.class",                          N_("File class"),       NULL},
932         { NULL, NULL, NULL }
933 };
934
935 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid)
936 {
937         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
938                 {
939                 gint i;
940
941                 if (key_valid) *key_valid = TRUE;
942
943                 key += EXIF_FORMATTED_LEN;
944                 for (i = 0; ExifFormattedList[i].key; i++)
945                         if (ExifFormattedList[i].build_func && strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
946                                 return ExifFormattedList[i].build_func(exif);
947                 }
948
949         if (key_valid) *key_valid = FALSE;
950         return NULL;
951 }
952
953 gchar *exif_get_description_by_key(const gchar *key)
954 {
955         if (!key) return NULL;
956
957         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0 ||
958             strncmp(key, "file.", 5) == 0)
959                 {
960                 gint i;
961
962                 for (i = 0; ExifFormattedList[i].key; i++)
963                         if (strcmp(key, ExifFormattedList[i].key) == 0)
964                                 return g_strdup(_(ExifFormattedList[i].description));
965                 }
966
967         return exif_get_tag_description_by_key(key);
968 }
969
970 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value)
971 {
972         ExifItem *item;
973
974         item = exif_get_item(exif, key);
975         return exif_item_get_integer(item, value);
976 }
977
978 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
979 {
980         ExifItem *item;
981
982         item = exif_get_item(exif, key);
983         return exif_item_get_rational(item, sign, 0);
984 }
985
986 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
987 {
988         ExifItem *item;
989         gchar *text;
990         gboolean key_valid;
991
992         if (!key) return NULL;
993
994         text = exif_get_formatted_by_key(exif, key, &key_valid);
995         if (key_valid) return text;
996
997         item = exif_get_item(exif, key);
998         if (item) return exif_item_get_data_as_text(item);
999
1000         return NULL;
1001 }
1002
1003
1004 static FileCacheData *exif_cache;
1005
1006 void exif_release_cb(FileData *fd)
1007 {
1008         exif_free(fd->exif);
1009         fd->exif = NULL;
1010 }
1011
1012 void exif_init_cache(void)
1013 {
1014         g_assert(!exif_cache);
1015         exif_cache = file_cache_new(exif_release_cb, 4);
1016 }
1017
1018 ExifData *exif_read_fd(FileData *fd)
1019 {
1020         gchar *sidecar_path;
1021
1022         if (!exif_cache) exif_init_cache();
1023
1024         if (!fd) return NULL;
1025
1026         if (file_cache_get(exif_cache, fd)) return fd->exif;
1027         g_assert(fd->exif == NULL);
1028
1029         /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are
1030          * not writable directly, thus it should contain the most up-to-date version */
1031         sidecar_path = NULL;
1032
1033 #ifdef HAVE_EXIV2
1034         /* we are not able to handle XMP sidecars without exiv2 */
1035         sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path);
1036
1037         if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE);
1038 #endif
1039
1040         fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp);
1041
1042         g_free(sidecar_path);
1043         file_cache_put(exif_cache, fd, 1);
1044         return fd->exif;
1045 }
1046
1047
1048 void exif_free_fd(FileData *fd, ExifData *exif)
1049 {
1050         if (!fd) return;
1051         g_assert(fd->exif == exif);
1052 }
1053
1054 /* embedded icc in jpeg */
1055
1056 gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size)
1057 {
1058         guint seg_offset = 0;
1059         guint seg_length = 0;
1060         guint chunk_offset[255];
1061         guint chunk_length[255];
1062         guint chunk_count = 0;
1063
1064         /* For jpeg/jfif, ICC color profile data can be in more than one segment.
1065            the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT"
1066            NN = segment number for data
1067            TT = total number of ICC segments (TT in each ICC segment should match)
1068          */
1069
1070         while (jpeg_segment_find(data + seg_offset + seg_length,
1071                                       size - seg_offset - seg_length,
1072                                       JPEG_MARKER_APP2,
1073                                       "ICC_PROFILE\x00", 12,
1074                                       &seg_offset, &seg_length))
1075                 {
1076                 guchar chunk_num;
1077                 guchar chunk_tot;
1078
1079                 if (seg_length < 14) return FALSE;
1080
1081                 chunk_num = data[seg_offset + 12];
1082                 chunk_tot = data[seg_offset + 13];
1083
1084                 if (chunk_num == 0 || chunk_tot == 0) return FALSE;
1085
1086                 if (chunk_count == 0)
1087                         {
1088                         guint i;
1089
1090                         chunk_count = (guint)chunk_tot;
1091                         for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0;
1092                         for (i = 0; i < chunk_count; i++) chunk_length[i] = 0;
1093                         }
1094
1095                 if (chunk_tot != chunk_count ||
1096                     chunk_num > chunk_count) return FALSE;
1097
1098                 chunk_num--;
1099                 chunk_offset[chunk_num] = seg_offset + 14;
1100                 chunk_length[chunk_num] = seg_length - 14;
1101                 }
1102
1103         if (chunk_count > 0)
1104                 {
1105                 guchar *cp_data;
1106                 guint cp_length = 0;
1107                 guint i;
1108
1109                 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i];
1110                 cp_data = g_malloc(cp_length);
1111
1112                 for (i = 0; i < chunk_count; i++)
1113                         {
1114                         if (chunk_offset[i] == 0)
1115                                 {
1116                                 /* error, we never saw this chunk */
1117                                 g_free(cp_data);
1118                                 return FALSE;
1119                                 }
1120                         memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
1121                         }
1122                 DEBUG_1("Found embedded icc profile in jpeg");
1123                 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
1124
1125                 return TRUE;
1126                 }
1127
1128         return FALSE;
1129 }
1130
1131 /*
1132  *-------------------------------------------------------------------
1133  * file info
1134  * it is here because it shares tag neming infrastructure with exif
1135  * we should probably not invest too much effort into this because
1136  * new exiv2 will support the same functionality
1137  * http://dev.exiv2.org/issues/show/505
1138  *-------------------------------------------------------------------
1139  */
1140
1141 static gchar *mode_number(mode_t m)
1142 {
1143         gint mb, mu, mg, mo;
1144         gchar pbuf[12];
1145
1146         mb = mu = mg = mo = 0;
1147
1148         if (m & S_ISUID) mb |= 4;
1149         if (m & S_ISGID) mb |= 2;
1150         if (m & S_ISVTX) mb |= 1;
1151
1152         if (m & S_IRUSR) mu |= 4;
1153         if (m & S_IWUSR) mu |= 2;
1154         if (m & S_IXUSR) mu |= 1;
1155
1156         if (m & S_IRGRP) mg |= 4;
1157         if (m & S_IWGRP) mg |= 2;
1158         if (m & S_IXGRP) mg |= 1;
1159
1160         if (m & S_IROTH) mo |= 4;
1161         if (m & S_IWOTH) mo |= 2;
1162         if (m & S_IXOTH) mo |= 1;
1163
1164         pbuf[0] = (m & S_IRUSR) ? 'r' : '-';
1165         pbuf[1] = (m & S_IWUSR) ? 'w' : '-';
1166         pbuf[2] = (m & S_IXUSR) ? 'x' : '-';
1167         pbuf[3] = (m & S_IRGRP) ? 'r' : '-';
1168         pbuf[4] = (m & S_IWGRP) ? 'w' : '-';
1169         pbuf[5] = (m & S_IXGRP) ? 'x' : '-';
1170         pbuf[6] = (m & S_IROTH) ? 'r' : '-';
1171         pbuf[7] = (m & S_IWOTH) ? 'w' : '-';
1172         pbuf[8] = (m & S_IXOTH) ? 'x' : '-';
1173         pbuf[9] = '\0';
1174
1175         return g_strdup_printf("%s (%d%d%d%d)", pbuf, mb, mu, mg, mo);
1176 }
1177
1178 gchar *metadata_file_info(FileData *fd, const gchar *key, MetadataFormat format)
1179 {
1180         if (strcmp(key, "file.size") == 0)
1181                 {
1182                 return g_strdup_printf("%ld", (long)fd->size);
1183                 }
1184         if (strcmp(key, "file.date") == 0)
1185                 {
1186                 return g_strdup(text_from_time(fd->date));
1187                 }
1188         if (strcmp(key, "file.mode") == 0)
1189                 {
1190                 return mode_number(fd->mode);
1191                 }
1192         if (strcmp(key, "file.ctime") == 0)
1193                 {
1194                 return g_strdup(text_from_time(fd->cdate));
1195                 }
1196         if (strcmp(key, "file.class") == 0)
1197                 {
1198                 return g_strdup(format_class_list[fd->format_class]);
1199                 }
1200         if (strcmp(key, "file.owner") == 0)
1201                 {
1202                 return g_strdup(fd->owner);
1203                 }
1204         if (strcmp(key, "file.group") == 0)
1205                 {
1206                 return g_strdup(fd->group);
1207                 }
1208         if (strcmp(key, "file.link") == 0)
1209                 {
1210                 return g_strdup(fd->sym_link);
1211                 }
1212         return g_strdup("");
1213 }
1214
1215
1216 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */