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