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