Bug fix: reads of uninitialized data
[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
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 &&
700                                                 text_longitude_ref && text_date && text_time)
701                 {
702                 *exif_date_time = g_strconcat(text_date, ":", text_time, NULL);
703
704                 lat_deg = strtok(text_latitude, "deg'");
705                 lat_min = strtok(NULL, "deg'");
706                 latitude = atof(lat_deg) + atof(lat_min) / 60;
707                 if (!g_strcmp0(text_latitude_ref, "South"))
708                         {
709                         latitude = -latitude;
710                         }
711                 lon_deg = strtok(text_longitude, "deg'");
712                 lon_min = strtok(NULL, "deg'");
713                 longitude = atof(lon_deg) + atof(lon_min) / 60;
714                 if (!g_strcmp0(text_longitude_ref, "West"))
715                         {
716                         longitude = -longitude;
717                         }
718
719                 zd_path = g_build_filename(GQ_BIN_DIR, TIMEZONE_DATABASE, NULL);
720                 if (g_file_test(zd_path, G_FILE_TEST_EXISTS))
721                         {
722                         cd = ZDOpenDatabase(zd_path);
723                         if (cd)
724                                 {
725                                 results = ZDLookup(cd, latitude, longitude, NULL);
726                                 if (results)
727                                         {
728                                         zd_tz(results, timezone, countryname, countryalpha2);
729                                         ret = TRUE;
730                                         }
731                                 }
732                         else
733                                 {
734                                 log_printf("Error: Init of timezone database %s failed\n", zd_path);
735                                 }
736                         ZDCloseDatabase(cd);
737                         }
738                 g_free(zd_path);
739                 }
740
741         return ret;
742 }
743
744 /**
745  * @brief Creates local time from GPS lat/long
746  * @param[in] exif
747  * @returns Localised time and date
748  *
749  * GPS lat/long is translated to timezone using ZoneDetect.
750  * GPS UTC is converted to Unix time stamp (seconds since 1970).
751  * The TZ environment variable is set to the relevant timezone
752  * and the Unix timestamp converted to local time using locale.
753  * If the conversion fails, unformatted UTC is returned.
754  */
755 static gchar *exif_build_formatted_localtime(ExifData *exif)
756 {
757         gchar buf[128];
758         gchar *tmp;
759         gint buflen;
760         GError *error = NULL;
761         gchar *time_zone_image;
762         gchar *time_zone_org;
763         struct tm *tm_local;
764         struct tm tm_utc;
765         time_t stamp;
766         gchar *exif_date_time = NULL;
767         gchar *timezone = NULL;
768         gchar *countryname = NULL;
769         gchar *countryalpha2 = NULL;
770
771         if (exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2))
772                 {
773                 time_zone_image = g_strconcat("TZ=", timezone, NULL);
774                 time_zone_org = g_strconcat("TZ=", getenv("TZ"), NULL);
775                 putenv("TZ=UTC");
776
777                 memset(&tm_utc, 0, sizeof(tm_utc));
778                 if (exif_date_time && strptime(exif_date_time, "%Y:%m:%d:%H:%M:%S", &tm_utc))
779                         {
780                         stamp = mktime(&tm_utc);        // Convert the struct to a Unix timestamp
781                         putenv(time_zone_image);        // Switch to destination time zone
782
783                         tm_local = localtime(&stamp);
784
785                         /* Convert to localtime using locale */
786                         buflen = strftime(buf, sizeof(buf), "%x %X", tm_local);
787                         if (buflen > 0)
788                                 {
789                                 tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
790                                 if (error)
791                                         {
792                                         log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
793                                         g_error_free(error);
794                                         }
795                                 else
796                                         {
797                                         g_free(exif_date_time);
798                                         exif_date_time = g_strdup(tmp);
799                                         }
800                                 }
801                                 g_free(tmp);
802                         }
803                 putenv(time_zone_org);
804
805                 g_free(time_zone_image);
806                 g_free(time_zone_org);
807                 }
808
809         g_free(timezone);
810         g_free(countryname);
811         g_free(countryalpha2);
812
813         return exif_date_time;
814 }
815
816 /**
817  * @brief Gets timezone from GPS lat/long
818  * @param[in] exif
819  * @returns Timezone string in the form "Europe/London"
820  *
821  *
822  */
823 static gchar *exif_build_formatted_timezone(ExifData *exif)
824 {
825         gchar *time_zone = NULL;
826         gchar *exif_date_time = NULL;
827         gchar *timezone = NULL;
828         gchar *countryname = NULL;
829         gchar *countryalpha2 = NULL;
830
831         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
832
833         g_free(exif_date_time);
834         g_free(countryname);
835         g_free(countryalpha2);
836
837         return timezone;
838 }
839
840 /**
841  * @brief Gets countryname from GPS lat/long
842  * @param[in] exif
843  * @returns Countryname string
844  *
845  *
846  */
847 static gchar *exif_build_formatted_countryname(ExifData *exif)
848 {
849         gchar *exif_date_time = NULL;
850         gchar *timezone = NULL;
851         gchar *countryname = NULL;
852         gchar *countryalpha2 = NULL;
853
854         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
855
856         g_free(exif_date_time);
857         g_free(timezone);
858         g_free(countryalpha2);
859
860         return countryname;
861 }
862
863 /**
864  * @brief Gets two-letter country code from GPS lat/long
865  * @param[in] exif
866  * @returns Countryalpha2 string
867  *
868  *
869  */
870 static gchar *exif_build_formatted_countrycode(ExifData *exif)
871 {
872         gchar *exif_date_time = NULL;
873         gchar *timezone = NULL;
874         gchar *countryname = NULL;
875         gchar *countryalpha2 = NULL;
876
877         exif_build_tz_data(exif, &exif_date_time, &timezone, &countryname, &countryalpha2);
878
879         g_free(exif_date_time);
880         g_free(timezone);
881         g_free(countryname);
882
883         return countryalpha2;
884 }
885
886 static gchar *exif_build_formatted_star_rating(ExifData *exif)
887 {
888         gint n = 0;
889
890         exif_get_integer(exif, "Xmp.xmp.Rating", &n);
891
892         return convert_rating_to_stars(n);
893 }
894
895 /* List of custom formatted pseudo-exif tags */
896 #define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name }
897
898 ExifFormattedText ExifFormattedList[] = {
899         EXIF_FORMATTED_TAG(Camera,              N_("Camera")),
900         EXIF_FORMATTED_TAG(DateTime,            N_("Date")),
901         EXIF_FORMATTED_TAG(DateTimeDigitized,   N_("DateDigitized")),
902         EXIF_FORMATTED_TAG(ShutterSpeed,        N_("Shutter speed")),
903         EXIF_FORMATTED_TAG(Aperture,            N_("Aperture")),
904         EXIF_FORMATTED_TAG(ExposureBias,        N_("Exposure bias")),
905         EXIF_FORMATTED_TAG(ISOSpeedRating,      N_("ISO sensitivity")),
906         EXIF_FORMATTED_TAG(FocalLength,         N_("Focal length")),
907         EXIF_FORMATTED_TAG(FocalLength35mmFilm, N_("Focal length 35mm")),
908         EXIF_FORMATTED_TAG(SubjectDistance,     N_("Subject distance")),
909         EXIF_FORMATTED_TAG(Flash,               N_("Flash")),
910         EXIF_FORMATTED_TAG(Resolution,          N_("Resolution")),
911         EXIF_FORMATTED_TAG(ColorProfile,        N_("Color profile")),
912         EXIF_FORMATTED_TAG(GPSPosition,         N_("GPS position")),
913         EXIF_FORMATTED_TAG(GPSAltitude,         N_("GPS altitude")),
914         EXIF_FORMATTED_TAG(localtime,           N_("Local time")),
915         EXIF_FORMATTED_TAG(timezone,            N_("Time zone")),
916         EXIF_FORMATTED_TAG(countryname,         N_("Country name")),
917         EXIF_FORMATTED_TAG(countrycode,         N_("Country code")),
918         EXIF_FORMATTED_TAG(star_rating,         N_("Star rating")),
919         {"file.size",                           N_("File size"),        NULL},
920         {"file.date",                           N_("File date"),        NULL},
921         {"file.mode",                           N_("File mode"),        NULL},
922         {"file.ctime",                          N_("File ctime"),       NULL},
923         {"file.owner",                          N_("File owner"),       NULL},
924         {"file.group",                          N_("File group"),       NULL},
925         {"file.link",                           N_("File link"),        NULL},
926         {"file.class",                          N_("File class"),       NULL},
927         { NULL, NULL, NULL }
928 };
929
930 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid)
931 {
932         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
933                 {
934                 gint i;
935
936                 if (key_valid) *key_valid = TRUE;
937
938                 key += EXIF_FORMATTED_LEN;
939                 for (i = 0; ExifFormattedList[i].key; i++)
940                         if (ExifFormattedList[i].build_func && strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
941                                 return ExifFormattedList[i].build_func(exif);
942                 }
943
944         if (key_valid) *key_valid = FALSE;
945         return NULL;
946 }
947
948 gchar *exif_get_description_by_key(const gchar *key)
949 {
950         if (!key) return NULL;
951
952         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0 ||
953             strncmp(key, "file.", 5) == 0)
954                 {
955                 gint i;
956
957                 for (i = 0; ExifFormattedList[i].key; i++)
958                         if (strcmp(key, ExifFormattedList[i].key) == 0)
959                                 return g_strdup(_(ExifFormattedList[i].description));
960                 }
961
962         return exif_get_tag_description_by_key(key);
963 }
964
965 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value)
966 {
967         ExifItem *item;
968
969         item = exif_get_item(exif, key);
970         return exif_item_get_integer(item, value);
971 }
972
973 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
974 {
975         ExifItem *item;
976
977         item = exif_get_item(exif, key);
978         return exif_item_get_rational(item, sign, 0);
979 }
980
981 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
982 {
983         ExifItem *item;
984         gchar *text;
985         gboolean key_valid;
986
987         if (!key) return NULL;
988
989         text = exif_get_formatted_by_key(exif, key, &key_valid);
990         if (key_valid) return text;
991
992         item = exif_get_item(exif, key);
993         if (item) return exif_item_get_data_as_text(item);
994
995         return NULL;
996 }
997
998
999 static FileCacheData *exif_cache;
1000
1001 void exif_release_cb(FileData *fd)
1002 {
1003         exif_free(fd->exif);
1004         fd->exif = NULL;
1005 }
1006
1007 void exif_init_cache(void)
1008 {
1009         g_assert(!exif_cache);
1010         exif_cache = file_cache_new(exif_release_cb, 4);
1011 }
1012
1013 ExifData *exif_read_fd(FileData *fd)
1014 {
1015         gchar *sidecar_path;
1016
1017         if (!exif_cache) exif_init_cache();
1018
1019         if (!fd) return NULL;
1020
1021         if (file_cache_get(exif_cache, fd)) return fd->exif;
1022         g_assert(fd->exif == NULL);
1023
1024         /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are
1025          * not writable directly, thus it should contain the most up-to-date version */
1026         sidecar_path = NULL;
1027
1028 #ifdef HAVE_EXIV2
1029         /* we are not able to handle XMP sidecars without exiv2 */
1030         sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path);
1031
1032         if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE);
1033 #endif
1034
1035         fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp);
1036
1037         g_free(sidecar_path);
1038         file_cache_put(exif_cache, fd, 1);
1039         return fd->exif;
1040 }
1041
1042
1043 void exif_free_fd(FileData *fd, ExifData *exif)
1044 {
1045         if (!fd) return;
1046         g_assert(fd->exif == exif);
1047 }
1048
1049 /* embedded icc in jpeg */
1050
1051 gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size)
1052 {
1053         guint seg_offset = 0;
1054         guint seg_length = 0;
1055         guint chunk_offset[255];
1056         guint chunk_length[255];
1057         guint chunk_count = 0;
1058
1059         /* For jpeg/jfif, ICC color profile data can be in more than one segment.
1060            the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT"
1061            NN = segment number for data
1062            TT = total number of ICC segments (TT in each ICC segment should match)
1063          */
1064
1065         while (jpeg_segment_find(data + seg_offset + seg_length,
1066                                       size - seg_offset - seg_length,
1067                                       JPEG_MARKER_APP2,
1068                                       "ICC_PROFILE\x00", 12,
1069                                       &seg_offset, &seg_length))
1070                 {
1071                 guchar chunk_num;
1072                 guchar chunk_tot;
1073
1074                 if (seg_length < 14) return FALSE;
1075
1076                 chunk_num = data[seg_offset + 12];
1077                 chunk_tot = data[seg_offset + 13];
1078
1079                 if (chunk_num == 0 || chunk_tot == 0) return FALSE;
1080
1081                 if (chunk_count == 0)
1082                         {
1083                         guint i;
1084
1085                         chunk_count = (guint)chunk_tot;
1086                         for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0;
1087                         for (i = 0; i < chunk_count; i++) chunk_length[i] = 0;
1088                         }
1089
1090                 if (chunk_tot != chunk_count ||
1091                     chunk_num > chunk_count) return FALSE;
1092
1093                 chunk_num--;
1094                 chunk_offset[chunk_num] = seg_offset + 14;
1095                 chunk_length[chunk_num] = seg_length - 14;
1096                 }
1097
1098         if (chunk_count > 0)
1099                 {
1100                 guchar *cp_data;
1101                 guint cp_length = 0;
1102                 guint i;
1103
1104                 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i];
1105                 cp_data = g_malloc(cp_length);
1106
1107                 for (i = 0; i < chunk_count; i++)
1108                         {
1109                         if (chunk_offset[i] == 0)
1110                                 {
1111                                 /* error, we never saw this chunk */
1112                                 g_free(cp_data);
1113                                 return FALSE;
1114                                 }
1115                         memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
1116                         }
1117                 DEBUG_1("Found embedded icc profile in jpeg");
1118                 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
1119
1120                 return TRUE;
1121                 }
1122
1123         return FALSE;
1124 }
1125
1126 /*
1127  *-------------------------------------------------------------------
1128  * file info
1129  * it is here because it shares tag neming infrastructure with exif
1130  * we should probably not invest too much effort into this because
1131  * new exiv2 will support the same functionality
1132  * http://dev.exiv2.org/issues/show/505
1133  *-------------------------------------------------------------------
1134  */
1135
1136 static gchar *mode_number(mode_t m)
1137 {
1138         gint mb, mu, mg, mo;
1139         gchar pbuf[12];
1140
1141         mb = mu = mg = mo = 0;
1142
1143         if (m & S_ISUID) mb |= 4;
1144         if (m & S_ISGID) mb |= 2;
1145         if (m & S_ISVTX) mb |= 1;
1146
1147         if (m & S_IRUSR) mu |= 4;
1148         if (m & S_IWUSR) mu |= 2;
1149         if (m & S_IXUSR) mu |= 1;
1150
1151         if (m & S_IRGRP) mg |= 4;
1152         if (m & S_IWGRP) mg |= 2;
1153         if (m & S_IXGRP) mg |= 1;
1154
1155         if (m & S_IROTH) mo |= 4;
1156         if (m & S_IWOTH) mo |= 2;
1157         if (m & S_IXOTH) mo |= 1;
1158
1159         pbuf[0] = (m & S_IRUSR) ? 'r' : '-';
1160         pbuf[1] = (m & S_IWUSR) ? 'w' : '-';
1161         pbuf[2] = (m & S_IXUSR) ? 'x' : '-';
1162         pbuf[3] = (m & S_IRGRP) ? 'r' : '-';
1163         pbuf[4] = (m & S_IWGRP) ? 'w' : '-';
1164         pbuf[5] = (m & S_IXGRP) ? 'x' : '-';
1165         pbuf[6] = (m & S_IROTH) ? 'r' : '-';
1166         pbuf[7] = (m & S_IWOTH) ? 'w' : '-';
1167         pbuf[8] = (m & S_IXOTH) ? 'x' : '-';
1168         pbuf[9] = '\0';
1169
1170         return g_strdup_printf("%s (%d%d%d%d)", pbuf, mb, mu, mg, mo);
1171 }
1172
1173 gchar *metadata_file_info(FileData *fd, const gchar *key, MetadataFormat format)
1174 {
1175         if (strcmp(key, "file.size") == 0)
1176                 {
1177                 return g_strdup_printf("%ld", (long)fd->size);
1178                 }
1179         if (strcmp(key, "file.date") == 0)
1180                 {
1181                 return g_strdup(text_from_time(fd->date));
1182                 }
1183         if (strcmp(key, "file.mode") == 0)
1184                 {
1185                 return mode_number(fd->mode);
1186                 }
1187         if (strcmp(key, "file.ctime") == 0)
1188                 {
1189                 return g_strdup(text_from_time(fd->cdate));
1190                 }
1191         if (strcmp(key, "file.class") == 0)
1192                 {
1193                 return g_strdup(format_class_list[fd->format_class]);
1194                 }
1195         if (strcmp(key, "file.owner") == 0)
1196                 {
1197                 return g_strdup(fd->owner);
1198                 }
1199         if (strcmp(key, "file.group") == 0)
1200                 {
1201                 return g_strdup(fd->group);
1202                 }
1203         if (strcmp(key, "file.link") == 0)
1204                 {
1205                 return g_strdup(fd->sym_link);
1206                 }
1207         return g_strdup("");
1208 }
1209
1210
1211 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */