Fix #314: Remote commands for thumbnail maintenance
[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
60
61 static gdouble exif_rational_to_double(ExifRational *r, gint sign)
62 {
63         if (!r || r->den == 0.0) return 0.0;
64
65         if (sign) return (gdouble)((gint)r->num) / (gdouble)((gint)r->den);
66         return (gdouble)r->num / r->den;
67 }
68
69 static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key)
70 {
71         ExifRational *r;
72         gint sign;
73
74         r = exif_get_rational(exif, key, &sign);
75         return exif_rational_to_double(r, sign);
76 }
77
78 static GString *append_comma_text(GString *string, const gchar *text)
79 {
80         string = g_string_append(string, ", ");
81         string = g_string_append(string, text);
82
83         return string;
84 }
85
86 static gchar *remove_common_prefix(gchar *s, gchar *t)
87 {
88         gint i;
89
90         if (!s || !t) return t;
91
92         for (i = 0; s[i] && t[i] && s[i] == t[i]; i++)
93                 ;
94         if (!i)
95                 return t;
96         if (s[i-1] == ' ' || !s[i])
97                 {
98                 while (t[i] == ' ')
99                         i++;
100                 return t + i;
101                 }
102         return s;
103 }
104
105 static gdouble get_crop_factor(ExifData *exif)
106 {
107         gdouble res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
108         gdouble xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
109         gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
110         gint res_unit;
111         gint w, h;
112         gdouble xsize, ysize, size, ratio;
113
114         if (xres == 0.0 || yres == 0.0) return 0.0;
115
116         if (!exif_get_integer(exif, "Exif.Photo.FocalPlaneResolutionUnit", &res_unit)) return 0.0;
117         if (res_unit < 1 || res_unit > 5) return 0.0;
118
119         if (!exif_get_integer(exif, "Exif.Photo.PixelXDimension", &w)) return 0.0;
120         if (!exif_get_integer(exif, "Exif.Photo.PixelYDimension", &h)) return 0.0;
121
122         xsize = w * res_unit_tbl[res_unit] / xres;
123         ysize = h * res_unit_tbl[res_unit] / yres;
124
125         ratio = xsize / ysize;
126
127         if (ratio < 0.5 || ratio > 2.0) return 0.0; /* reasonable ratio */
128
129         size = sqrt(xsize * xsize + ysize * ysize);
130
131         if (size < 1.0 || size > 100.0) return 0.0; /* reasonable sensor size in mm */
132
133         return sqrt(36*36+24*24) / size;
134
135 }
136
137 static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
138 {
139         gint str_len = strlen(str);
140
141         if (suffix_len < 0) suffix_len = strlen(suffix);
142         if (str_len < suffix_len) return FALSE;
143
144         if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE;
145         str[str_len - suffix_len] = '\0';
146
147         return TRUE;
148 }
149
150 static gchar *exif_build_formatted_Camera(ExifData *exif)
151 {
152         gchar *text;
153         gchar *make = exif_get_data_as_text(exif, "Exif.Image.Make");
154         gchar *model = exif_get_data_as_text(exif, "Exif.Image.Model");
155         gchar *software = exif_get_data_as_text(exif, "Exif.Image.Software");
156         gchar *model2;
157         gchar *software2;
158
159         if (make)
160                 {
161                 g_strstrip(make);
162
163                 if (remove_suffix(make, " CORPORATION", 12)) { /* Nikon */ }
164                 else if (remove_suffix(make, " Corporation", 12)) { /* Pentax */ }
165                 else if (remove_suffix(make, " OPTICAL CO.,LTD", 16)) { /* OLYMPUS */ };
166                 }
167
168         if (model)
169                 g_strstrip(model);
170
171         if (software)
172                 {
173                 gint i, j;
174
175                 g_strstrip(software);
176
177                 /* remove superfluous spaces (pentax K100D) */
178                 for (i = 0, j = 0; software[i]; i++, j++)
179                         {
180                         if (software[i] == ' ' && software[i + 1] == ' ')
181                                 i++;
182                         if (i != j) software[j] = software[i];
183                         }
184                 software[j] = '\0';
185                 }
186
187         model2 = remove_common_prefix(make, model);
188         software2 = remove_common_prefix(model2, software);
189
190         text = g_strdup_printf("%s%s%s%s%s%s", (make) ? make : "", (make && model2) ? " " : "",
191                                                (model2) ? model2 : "",
192                                                (software2 && (make || model2)) ? " (" : "",
193                                                (software2) ? software2 : "",
194                                                (software2 && (make || model2)) ? ")" : "");
195
196         g_free(make);
197         g_free(model);
198         g_free(software);
199         return text;
200 }
201
202 static gchar *exif_build_formatted_DateTime(ExifData *exif)
203 {
204         gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
205         gchar *subsec = NULL;
206         gchar buf[128];
207         gchar *tmp;
208         gint buflen;
209         struct tm tm;
210         GError *error = NULL;
211
212         if (text)
213                 {
214                 subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
215                 }
216         else
217                 {
218                 text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
219                 if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
220                 }
221
222         /* Convert the stuff into a tm struct */
223         memset(&tm, 0, sizeof(tm)); /* Uh, strptime could let garbage in tm! */
224         if (text && strptime(text, "%Y:%m:%d %H:%M:%S", &tm))
225                 {
226                 buflen = strftime(buf, sizeof(buf), "%x %X", &tm);
227                 if (buflen > 0)
228                         {
229                         tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
230                         if (error)
231                                 {
232                                 log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
233                                 g_error_free(error);
234                                 }
235                         else
236                                 {
237                                 g_free(text);
238                                 text = g_strdup(tmp);
239                                 }
240                         }
241                 }
242
243         if (subsec)
244                 {
245                 tmp = text;
246                 text = g_strconcat(tmp, ".", subsec, NULL);
247                 g_free(tmp);
248                 g_free(subsec);
249                 }
250         return text;
251 }
252
253 static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif)
254 {
255         ExifRational *r;
256
257         r = exif_get_rational(exif, "Exif.Photo.ExposureTime", NULL);
258         if (r && r->num && r->den)
259                 {
260                 gdouble n = (gdouble)r->den / (gdouble)r->num;
261                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
262                                                   n > 1.0 ? n : 1.0 / n);
263                 }
264         r = exif_get_rational(exif, "Exif.Photo.ShutterSpeedValue", NULL);
265         if (r && r->num  && r->den)
266                 {
267                 gdouble n = pow(2.0, exif_rational_to_double(r, TRUE));
268
269                 /* Correct exposure time to avoid values like 1/91s (seen on Minolta DImage 7) */
270                 if (n > 1.0 && (gint)n - ((gint)(n/10))*10 == 1) n--;
271
272                 return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
273                                                   n > 1.0 ? floor(n) : 1.0 / n);
274                 }
275         return NULL;
276 }
277
278 static gchar *exif_build_formatted_Aperture(ExifData *exif)
279 {
280         gdouble n;
281
282         n = exif_get_rational_as_double(exif, "Exif.Photo.FNumber");
283         if (n == 0.0) n = exif_get_rational_as_double(exif, "Exif.Photo.ApertureValue");
284         if (n == 0.0) return NULL;
285
286         return g_strdup_printf("f/%.1f", n);
287 }
288
289 static gchar *exif_build_formatted_ExposureBias(ExifData *exif)
290 {
291         ExifRational *r;
292         gint sign;
293         gdouble n;
294
295         r = exif_get_rational(exif, "Exif.Photo.ExposureBiasValue", &sign);
296         if (!r) return NULL;
297
298         n = exif_rational_to_double(r, sign);
299         return g_strdup_printf("%+.1f", n);
300 }
301
302 static gchar *exif_build_formatted_FocalLength(ExifData *exif)
303 {
304         gdouble n;
305
306         n = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
307         if (n == 0.0) return NULL;
308         return g_strdup_printf("%.0f mm", n);
309 }
310
311 static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif)
312 {
313         gint n;
314         gdouble f, c;
315
316         if (exif_get_integer(exif, "Exif.Photo.FocalLengthIn35mmFilm", &n) && n != 0)
317                 {
318                 return g_strdup_printf("%d mm", n);
319                 }
320
321         f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
322         if (f == 0.0) return NULL;
323
324         c = get_crop_factor(exif);
325         if (c == 0.0) return NULL;
326
327         return g_strdup_printf("%.0f mm", f * c);
328 }
329
330 static gchar *exif_build_formatted_ISOSpeedRating(ExifData *exif)
331 {
332         gchar *text;
333
334         text = exif_get_data_as_text(exif, "Exif.Photo.ISOSpeedRatings");
335         /* kodak may set this instead */
336         if (!text) text = exif_get_data_as_text(exif, "Exif.Photo.ExposureIndex");
337         return text;
338 }
339
340 static gchar *exif_build_formatted_SubjectDistance(ExifData *exif)
341 {
342         ExifRational *r;
343         gint sign;
344         gdouble n;
345
346         r = exif_get_rational(exif, "Exif.Photo.SubjectDistance", &sign);
347         if (!r) return NULL;
348
349         if ((glong)r->num == (glong)0xffffffff) return g_strdup(_("infinity"));
350         if ((glong)r->num == 0) return g_strdup(_("unknown"));
351
352         n = exif_rational_to_double(r, sign);
353         if (n == 0.0) return _("unknown");
354         return g_strdup_printf("%.3f m", n);
355 }
356
357 static gchar *exif_build_formatted_Flash(ExifData *exif)
358 {
359         /* grr, flash is a bitmask... */
360         GString *string;
361         gchar *text;
362         gint n;
363         gint v;
364
365         if (!exif_get_integer(exif, "Exif.Photo.Flash", &n)) return NULL;
366
367         /* Exif 2.1 only defines first 3 bits */
368         if (n <= 0x07) return exif_get_data_as_text(exif, "Exif.Photo.Flash");
369
370         /* must be Exif 2.2 */
371         string = g_string_new("");
372
373         /* flash fired (bit 0) */
374         string = g_string_append(string, (n & 0x01) ? _("yes") : _("no"));
375
376         /* flash mode (bits 3, 4) */
377         v = (n >> 3) & 0x03;
378         if (v) string = append_comma_text(string, _("mode:"));
379         switch (v)
380                 {
381                 case 1:
382                         string = g_string_append(string, _("on"));
383                         break;
384                 case 2:
385                         string = g_string_append(string, _("off"));
386                         break;
387                 case 3:
388                         string = g_string_append(string, _("auto"));
389                         break;
390                 }
391
392         /* return light (bits 1, 2) */
393         v = (n >> 1) & 0x03;
394         if (v == 2) string = append_comma_text(string, _("not detected by strobe"));
395         if (v == 3) string = append_comma_text(string, _("detected by strobe"));
396
397         /* we ignore flash function (bit 5) */
398
399         /* red-eye (bit 6) */
400         if ((n >> 5) & 0x01) string = append_comma_text(string, _("red-eye reduction"));
401
402         text = string->str;
403         g_string_free(string, FALSE);
404         return text;
405 }
406
407 static gchar *exif_build_formatted_Resolution(ExifData *exif)
408 {
409         ExifRational *rx, *ry;
410         gchar *units;
411         gchar *text;
412
413         rx = exif_get_rational(exif, "Exif.Image.XResolution", NULL);
414         ry = exif_get_rational(exif, "Exif.Image.YResolution", NULL);
415         if (!rx || !ry) return NULL;
416
417         units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit");
418         text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (gdouble)rx->num / rx->den : 1.0,
419                                                       ry->den ? (gdouble)ry->num / ry->den : 1.0,
420                                                       _("dot"), (units) ? units : _("unknown"));
421
422         g_free(units);
423         return text;
424 }
425
426 static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
427 {
428 #ifdef HAVE_LCMS2
429         cmsUInt8Number profileID[17];
430 #endif
431         const gchar *name = "";
432         const gchar *source = "";
433         guchar *profile_data;
434         guint profile_len;
435
436         profile_data = exif_get_color_profile(exif, &profile_len);
437         if (!profile_data)
438                 {
439                 gint cs;
440                 gchar *interop_index;
441
442                 /* ColorSpace == 1 specifies sRGB per EXIF 2.2 */
443                 if (!exif_get_integer(exif, "Exif.Photo.ColorSpace", &cs)) cs = 0;
444                 interop_index = exif_get_data_as_text(exif, "Exif.Iop.InteroperabilityIndex");
445
446                 if (cs == 1)
447                         {
448                         name = _("sRGB");
449                         source = "ColorSpace";
450                         }
451                 else if (cs == 2 || (interop_index && !strcmp(interop_index, "R03")))
452                         {
453                         name = _("AdobeRGB");
454                         source = (cs == 2) ? "ColorSpace" : "Iop";
455                         }
456
457                 g_free(interop_index);
458                 }
459         else
460                 {
461                 source = _("embedded");
462 #ifdef HAVE_LCMS
463
464                         {
465                         cmsHPROFILE profile;
466
467                         profile = cmsOpenProfileFromMem(profile_data, profile_len);
468                         if (profile)
469                                 {
470 #ifdef HAVE_LCMS2
471                                 profileID[16] = '\0';
472                                 cmsGetHeaderProfileID(profile, profileID);
473                                 name = (gchar *) profileID;
474 #else
475                                 name = (gchar *) cmsTakeProductName(profile);
476 #endif
477                                 cmsCloseProfile(profile);
478                                 }
479                         g_free(profile_data);
480                         }
481 #endif
482                 }
483         if (name[0] == 0 && source[0] == 0) return NULL;
484         return g_strdup_printf("%s (%s)", name, source);
485 }
486
487 static gchar *exif_build_formatted_GPSPosition(ExifData *exif)
488 {
489         GString *string;
490         gchar *text, *ref;
491         ExifRational *value;
492         ExifItem *item;
493         guint i;
494         gdouble p, p3;
495         gulong p1, p2;
496
497         string = g_string_new("");
498
499         item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude");
500         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef");
501         if (item && ref)
502                 {
503                 p = 0;
504                 for (i = 0; i < exif_item_get_elements(item); i++)
505                         {
506                         value = exif_item_get_rational(item, NULL, i);
507                         if (value && value->num && value->den)
508                                 p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
509                         }
510                 p1 = (gint)p;
511                 p2 = (gint)((p - p1)*60);
512                 p3 = ((p - p1)*60 - p2)*60;
513
514                 g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
515                 } // if (item && ref)
516
517         item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude");
518         ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef");
519         if (item && ref)
520                 {
521                 p = 0;
522                 for (i = 0; i < exif_item_get_elements(item); i++)
523                         {
524                         value = exif_item_get_rational(item, NULL, i);
525                         if (value && value->num && value->den)
526                         p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
527                         }
528                 p1 = (gint)p;
529                 p2 = (gint)((p - p1)*60);
530                 p3 = ((p - p1)*60 - p2)*60;
531
532                 g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
533                 } // if (item && ref)
534
535         text = string->str;
536         g_string_free(string, FALSE);
537
538         return text;
539 } // static gchar *exif_build_forma...
540
541 static gchar *exif_build_formatted_GPSAltitude(ExifData *exif)
542 {
543         ExifRational *r;
544         ExifItem *item;
545         gdouble alt;
546         gint ref;
547
548         item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef");
549         r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL);
550
551         if (!r || !item) return NULL;
552
553         alt = exif_rational_to_double(r, 0);
554         exif_item_get_integer(item, &ref);
555
556         return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level"));
557 }
558
559
560 /* List of custom formatted pseudo-exif tags */
561 #define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name }
562
563 ExifFormattedText ExifFormattedList[] = {
564         EXIF_FORMATTED_TAG(Camera,              N_("Camera")),
565         EXIF_FORMATTED_TAG(DateTime,            N_("Date")),
566         EXIF_FORMATTED_TAG(ShutterSpeed,        N_("Shutter speed")),
567         EXIF_FORMATTED_TAG(Aperture,            N_("Aperture")),
568         EXIF_FORMATTED_TAG(ExposureBias,        N_("Exposure bias")),
569         EXIF_FORMATTED_TAG(ISOSpeedRating,      N_("ISO sensitivity")),
570         EXIF_FORMATTED_TAG(FocalLength,         N_("Focal length")),
571         EXIF_FORMATTED_TAG(FocalLength35mmFilm, N_("Focal length 35mm")),
572         EXIF_FORMATTED_TAG(SubjectDistance,     N_("Subject distance")),
573         EXIF_FORMATTED_TAG(Flash,               N_("Flash")),
574         EXIF_FORMATTED_TAG(Resolution,          N_("Resolution")),
575         EXIF_FORMATTED_TAG(ColorProfile,        N_("Color profile")),
576         EXIF_FORMATTED_TAG(GPSPosition,         N_("GPS position")),
577         EXIF_FORMATTED_TAG(GPSAltitude,         N_("GPS altitude")),
578         {"file.size",                           N_("File size"),        NULL},
579         {"file.date",                           N_("File date"),        NULL},
580         {"file.mode",                           N_("File mode"),        NULL},
581         { NULL, NULL, NULL }
582 };
583
584 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid)
585 {
586         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
587                 {
588                 gint i;
589
590                 if (key_valid) *key_valid = TRUE;
591
592                 key += EXIF_FORMATTED_LEN;
593                 for (i = 0; ExifFormattedList[i].key; i++)
594                         if (ExifFormattedList[i].build_func && strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
595                                 return ExifFormattedList[i].build_func(exif);
596                 }
597
598         if (key_valid) *key_valid = FALSE;
599         return NULL;
600 }
601
602 gchar *exif_get_description_by_key(const gchar *key)
603 {
604         if (!key) return NULL;
605
606         if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0 ||
607             strncmp(key, "file.", 5) == 0)
608                 {
609                 gint i;
610
611                 for (i = 0; ExifFormattedList[i].key; i++)
612                         if (strcmp(key, ExifFormattedList[i].key) == 0)
613                                 return g_strdup(_(ExifFormattedList[i].description));
614                 }
615
616         return exif_get_tag_description_by_key(key);
617 }
618
619 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value)
620 {
621         ExifItem *item;
622
623         item = exif_get_item(exif, key);
624         return exif_item_get_integer(item, value);
625 }
626
627 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
628 {
629         ExifItem *item;
630
631         item = exif_get_item(exif, key);
632         return exif_item_get_rational(item, sign, 0);
633 }
634
635 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
636 {
637         ExifItem *item;
638         gchar *text;
639         gboolean key_valid;
640
641         if (!key) return NULL;
642
643         text = exif_get_formatted_by_key(exif, key, &key_valid);
644         if (key_valid) return text;
645
646         item = exif_get_item(exif, key);
647         if (item) return exif_item_get_data_as_text(item);
648
649         return NULL;
650 }
651
652
653 static FileCacheData *exif_cache;
654
655 void exif_release_cb(FileData *fd)
656 {
657         exif_free(fd->exif);
658         fd->exif = NULL;
659 }
660
661 void exif_init_cache(void)
662 {
663         g_assert(!exif_cache);
664         exif_cache = file_cache_new(exif_release_cb, 4);
665 }
666
667 ExifData *exif_read_fd(FileData *fd)
668 {
669         gchar *sidecar_path;
670
671         if (!exif_cache) exif_init_cache();
672
673         if (!fd) return NULL;
674
675         if (file_cache_get(exif_cache, fd)) return fd->exif;
676         g_assert(fd->exif == NULL);
677
678         /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are
679          * not writable directly, thus it should contain the most up-to-date version */
680         sidecar_path = NULL;
681
682 #ifdef HAVE_EXIV2
683         /* we are not able to handle XMP sidecars without exiv2 */
684         sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path);
685
686         if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE);
687 #endif
688
689         fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp);
690
691         g_free(sidecar_path);
692         file_cache_put(exif_cache, fd, 1);
693         return fd->exif;
694 }
695
696
697 void exif_free_fd(FileData *fd, ExifData *exif)
698 {
699         if (!fd) return;
700         g_assert(fd->exif == exif);
701 }
702
703 /* embedded icc in jpeg */
704
705 gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size)
706 {
707         guint seg_offset = 0;
708         guint seg_length = 0;
709         guint chunk_offset[255];
710         guint chunk_length[255];
711         guint chunk_count = 0;
712
713         /* For jpeg/jfif, ICC color profile data can be in more than one segment.
714            the data is in APP2 data segments that start with "ICC_PROFILE\x00\xNN\xTT"
715            NN = segment number for data
716            TT = total number of ICC segments (TT in each ICC segment should match)
717          */
718
719         while (jpeg_segment_find(data + seg_offset + seg_length,
720                                       size - seg_offset - seg_length,
721                                       JPEG_MARKER_APP2,
722                                       "ICC_PROFILE\x00", 12,
723                                       &seg_offset, &seg_length))
724                 {
725                 guchar chunk_num;
726                 guchar chunk_tot;
727
728                 if (seg_length < 14) return FALSE;
729
730                 chunk_num = data[seg_offset + 12];
731                 chunk_tot = data[seg_offset + 13];
732
733                 if (chunk_num == 0 || chunk_tot == 0) return FALSE;
734
735                 if (chunk_count == 0)
736                         {
737                         guint i;
738
739                         chunk_count = (guint)chunk_tot;
740                         for (i = 0; i < chunk_count; i++) chunk_offset[i] = 0;
741                         for (i = 0; i < chunk_count; i++) chunk_length[i] = 0;
742                         }
743
744                 if (chunk_tot != chunk_count ||
745                     chunk_num > chunk_count) return FALSE;
746
747                 chunk_num--;
748                 chunk_offset[chunk_num] = seg_offset + 14;
749                 chunk_length[chunk_num] = seg_length - 14;
750                 }
751
752         if (chunk_count > 0)
753                 {
754                 guchar *cp_data;
755                 guint cp_length = 0;
756                 guint i;
757
758                 for (i = 0; i < chunk_count; i++) cp_length += chunk_length[i];
759                 cp_data = g_malloc(cp_length);
760
761                 for (i = 0; i < chunk_count; i++)
762                         {
763                         if (chunk_offset[i] == 0)
764                                 {
765                                 /* error, we never saw this chunk */
766                                 g_free(cp_data);
767                                 return FALSE;
768                                 }
769                         memcpy(cp_data, data + chunk_offset[i], chunk_length[i]);
770                         }
771                 DEBUG_1("Found embedded icc profile in jpeg");
772                 exif_add_jpeg_color_profile(exif, cp_data, cp_length);
773
774                 return TRUE;
775                 }
776
777         return FALSE;
778 }
779
780 /*
781  *-------------------------------------------------------------------
782  * file info
783  * it is here because it shares tag neming infrastructure with exif
784  * we should probably not invest too much effort into this because
785  * new exiv2 will support the same functionality
786  * http://dev.exiv2.org/issues/show/505
787  *-------------------------------------------------------------------
788  */
789
790 static gchar *mode_number(mode_t m)
791 {
792         gint mb, mu, mg, mo;
793         gchar pbuf[12];
794
795         mb = mu = mg = mo = 0;
796
797         if (m & S_ISUID) mb |= 4;
798         if (m & S_ISGID) mb |= 2;
799         if (m & S_ISVTX) mb |= 1;
800
801         if (m & S_IRUSR) mu |= 4;
802         if (m & S_IWUSR) mu |= 2;
803         if (m & S_IXUSR) mu |= 1;
804
805         if (m & S_IRGRP) mg |= 4;
806         if (m & S_IWGRP) mg |= 2;
807         if (m & S_IXGRP) mg |= 1;
808
809         if (m & S_IROTH) mo |= 4;
810         if (m & S_IWOTH) mo |= 2;
811         if (m & S_IXOTH) mo |= 1;
812
813         pbuf[0] = (m & S_IRUSR) ? 'r' : '-';
814         pbuf[1] = (m & S_IWUSR) ? 'w' : '-';
815         pbuf[2] = (m & S_IXUSR) ? 'x' : '-';
816         pbuf[3] = (m & S_IRGRP) ? 'r' : '-';
817         pbuf[4] = (m & S_IWGRP) ? 'w' : '-';
818         pbuf[5] = (m & S_IXGRP) ? 'x' : '-';
819         pbuf[6] = (m & S_IROTH) ? 'r' : '-';
820         pbuf[7] = (m & S_IWOTH) ? 'w' : '-';
821         pbuf[8] = (m & S_IXOTH) ? 'x' : '-';
822         pbuf[9] = '\0';
823
824         return g_strdup_printf("%s (%d%d%d%d)", pbuf, mb, mu, mg, mo);
825 }
826
827 gchar *metadata_file_info(FileData *fd, const gchar *key, MetadataFormat format)
828 {
829         if (strcmp(key, "file.size") == 0)
830                 {
831                 return g_strdup_printf("%ld", (long)fd->size);
832                 }
833         if (strcmp(key, "file.date") == 0)
834                 {
835                 return g_strdup(text_from_time(fd->date));
836                 }
837         if (strcmp(key, "file.mode") == 0)
838                 {
839                 return mode_number(fd->mode);
840                 }
841         return g_strdup("");
842 }
843
844
845 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */