Mercurial > geeqie.yaz
annotate src/exiv2.cc @ 1572:df4e69170f2b
compilation fixes
author | nadvornik |
---|---|
date | Mon, 27 Apr 2009 21:39:56 +0000 |
parents | 6fdb447d87b7 |
children | 7f9a99258d13 |
rev | line source |
---|---|
475 | 1 /* |
2 * Geeqie | |
1284 | 3 * Copyright (C) 2008 - 2009 The Geeqie Team |
475 | 4 * |
5 * Author: Vladimir Nadvornik | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
178 | 11 |
686 | 12 #include "config.h" |
178 | 13 |
14 #ifdef HAVE_EXIV2 | |
15 | |
16 #include <exiv2/image.hpp> | |
17 #include <exiv2/exif.hpp> | |
18 #include <iostream> | |
19 | |
200 | 20 // EXIV2_TEST_VERSION is defined in Exiv2 0.15 and newer. |
21 #ifndef EXIV2_TEST_VERSION | |
22 # define EXIV2_TEST_VERSION(major,minor,patch) \ | |
23 ( EXIV2_VERSION >= EXIV2_MAKE_VERSION(major,minor,patch) ) | |
24 #endif | |
25 | |
26 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
27 #include <sys/types.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
28 #include <sys/stat.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
29 #include <unistd.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
30 #include <fcntl.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
31 #include <sys/mman.h> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
32 |
1008 | 33 #if !EXIV2_TEST_VERSION(0,17,90) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
34 #include <exiv2/tiffparser.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
35 #include <exiv2/tiffcomposite.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
36 #include <exiv2/tiffvisitor.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
37 #include <exiv2/tiffimage.hpp> |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
38 #include <exiv2/cr2image.hpp> |
191 | 39 #include <exiv2/crwimage.hpp> |
200 | 40 #if EXIV2_TEST_VERSION(0,16,0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
41 #include <exiv2/orfimage.hpp> |
200 | 42 #endif |
43 #if EXIV2_TEST_VERSION(0,13,0) | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
44 #include <exiv2/rafimage.hpp> |
200 | 45 #endif |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
46 #include <exiv2/futils.hpp> |
1008 | 47 #else |
48 #include <exiv2/preview.hpp> | |
49 #endif | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
50 |
1070 | 51 #if EXIV2_TEST_VERSION(0,17,0) |
52 #include <exiv2/convert.hpp> | |
1071 | 53 #include <exiv2/xmpsidecar.hpp> |
1070 | 54 #endif |
55 | |
178 | 56 extern "C" { |
995 | 57 #include <glib.h> |
507 | 58 |
281 | 59 #include "main.h" |
178 | 60 #include "exif.h" |
507 | 61 |
586 | 62 #include "filefilter.h" |
496
a1f13fab6686
fixed a bug in opening files with non-utf8 locales in exiv2.cc
nadvornik
parents:
495
diff
changeset
|
63 #include "ui_fileops.h" |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
64 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
65 #include "misc.h" |
184 | 66 } |
178 | 67 |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
68 typedef struct _AltKey AltKey; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
69 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
70 struct _AltKey |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
71 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
72 const gchar *xmp_key; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
73 const gchar *exif_key; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
74 const gchar *iptc_key; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
75 }; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
76 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
77 /* this is a list of keys that should be converted, even with the older Exiv2 which does not support it directly */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
78 static const AltKey alt_keys[] = { |
1460 | 79 {"Xmp.tiff.Orientation", "Exif.Image.Orientation", NULL}, |
80 {"Xmp.dc.title", NULL, "Iptc.Application2.ObjectName" }, | |
81 {"Xmp.photoshop.Urgency", NULL, "Iptc.Application2.Urgency" }, | |
82 {"Xmp.photoshop.Category", NULL, "Iptc.Application2.Category" }, | |
83 {"Xmp.photoshop.SupplementalCategory", NULL, "Iptc.Application2.SuppCategory" }, | |
84 {"Xmp.dc.subject", NULL, "Iptc.Application2.Keywords" }, | |
85 {"Xmp.iptc.Location", NULL, "Iptc.Application2.LocationName" }, | |
86 {"Xmp.photoshop.Instruction", NULL, "Iptc.Application2.SpecialInstructions" }, | |
87 {"Xmp.photoshop.DateCreated", NULL, "Iptc.Application2.DateCreated" }, | |
88 {"Xmp.dc.creator", NULL, "Iptc.Application2.Byline" }, | |
89 {"Xmp.photoshop.AuthorsPosition", NULL, "Iptc.Application2.BylineTitle" }, | |
90 {"Xmp.photoshop.City", NULL, "Iptc.Application2.City" }, | |
91 {"Xmp.photoshop.State", NULL, "Iptc.Application2.ProvinceState" }, | |
92 {"Xmp.iptc.CountryCode", NULL, "Iptc.Application2.CountryCode" }, | |
93 {"Xmp.photoshop.Country", NULL, "Iptc.Application2.CountryName" }, | |
94 {"Xmp.photoshop.TransmissionReference", NULL, "Iptc.Application2.TransmissionReference"}, | |
95 {"Xmp.photoshop.Headline", NULL, "Iptc.Application2.Headline" }, | |
96 {"Xmp.photoshop.Credit", NULL, "Iptc.Application2.Credit" }, | |
97 {"Xmp.photoshop.Source", NULL, "Iptc.Application2.Source" }, | |
98 {"Xmp.dc.rights", NULL, "Iptc.Application2.Copyright" }, | |
99 {"Xmp.dc.description", NULL, "Iptc.Application2.Caption" }, | |
100 {"Xmp.photoshop.CaptionWriter", NULL, "Iptc.Application2.Writer" }, | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
101 {NULL, NULL, NULL} |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
102 }; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
103 |
1528 | 104 static void debug_exception(Exiv2::AnyError& e) |
105 { | |
106 gchar *str = g_locale_from_utf8(e.what(), -1, NULL, NULL, NULL); | |
107 DEBUG_1("Exiv2: %s", str); | |
108 g_free(str); | |
109 } | |
110 | |
178 | 111 struct _ExifData |
112 { | |
185 | 113 Exiv2::ExifData::const_iterator exifIter; /* for exif_get_next_item */ |
114 Exiv2::IptcData::const_iterator iptcIter; /* for exif_get_next_item */ | |
200 | 115 #if EXIV2_TEST_VERSION(0,16,0) |
185 | 116 Exiv2::XmpData::const_iterator xmpIter; /* for exif_get_next_item */ |
200 | 117 #endif |
184 | 118 |
1069 | 119 virtual ~_ExifData() |
120 { | |
121 } | |
122 | |
1211 | 123 virtual void writeMetadata(gchar *path = NULL) |
184 | 124 { |
1069 | 125 g_critical("Unsupported method of writing metadata"); |
126 } | |
127 | |
128 virtual ExifData *original() | |
129 { | |
130 return NULL; | |
131 } | |
132 | |
133 virtual Exiv2::Image *image() = 0; | |
134 | |
135 virtual Exiv2::ExifData &exifData() = 0; | |
136 | |
137 virtual Exiv2::IptcData &iptcData() = 0; | |
200 | 138 |
139 #if EXIV2_TEST_VERSION(0,16,0) | |
1069 | 140 virtual Exiv2::XmpData &xmpData() = 0; |
141 #endif | |
142 | |
143 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) = 0; | |
144 | |
145 virtual guchar *get_jpeg_color_profile(guint *data_len) = 0; | |
146 }; | |
147 | |
148 // This allows read-only access to the original metadata | |
149 struct _ExifDataOriginal : public _ExifData | |
150 { | |
151 protected: | |
152 Exiv2::Image::AutoPtr image_; | |
153 | |
154 /* the icc profile in jpeg is not technically exif - store it here */ | |
155 unsigned char *cp_data_; | |
156 guint cp_length_; | |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
157 gboolean valid_; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
158 |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
159 Exiv2::ExifData emptyExifData_; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
160 Exiv2::IptcData emptyIptcData_; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
161 #if EXIV2_TEST_VERSION(0,16,0) |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
162 Exiv2::XmpData emptyXmpData_; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
163 #endif |
1069 | 164 |
165 public: | |
1071 | 166 _ExifDataOriginal(Exiv2::Image::AutoPtr image) |
167 { | |
168 cp_data_ = NULL; | |
169 cp_length_ = 0; | |
170 image_ = image; | |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
171 valid_ = TRUE; |
1071 | 172 } |
1069 | 173 |
174 _ExifDataOriginal(gchar *path) | |
175 { | |
176 cp_data_ = NULL; | |
177 cp_length_ = 0; | |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
178 valid_ = TRUE; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
179 |
1069 | 180 gchar *pathl = path_from_utf8(path); |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
181 try |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
182 { |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
183 image_ = Exiv2::ImageFactory::open(pathl); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
184 // g_assert (image.get() != 0); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
185 image_->readMetadata(); |
1069 | 186 |
187 #if EXIV2_TEST_VERSION(0,16,0) | |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
188 if (image_->mimeType() == "application/rdf+xml") |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
189 { |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
190 //Exiv2 sidecar converts xmp to exif and iptc, we don't want it. |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
191 image_->clearExifData(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
192 image_->clearIptcData(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
193 } |
1069 | 194 #endif |
449 | 195 |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
196 #if EXIV2_TEST_VERSION(0,14,0) |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
197 if (image_->mimeType() == "image/jpeg") |
1196 | 198 { |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
199 /* try to get jpeg color profile */ |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
200 Exiv2::BasicIo &io = image_->io(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
201 gint open = io.isopen(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
202 if (!open) io.open(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
203 if (io.isopen()) |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
204 { |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
205 unsigned char *mapped = (unsigned char*)io.mmap(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
206 if (mapped) exif_jpeg_parse_color(this, mapped, io.size()); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
207 io.munmap(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
208 } |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
209 if (!open) io.close(); |
1196 | 210 } |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
211 #endif |
449 | 212 } |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
213 catch (Exiv2::AnyError& e) |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
214 { |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
215 valid_ = FALSE; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
216 } |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
217 g_free(pathl); |
184 | 218 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
219 |
1069 | 220 virtual ~_ExifDataOriginal() |
449 | 221 { |
1069 | 222 if (cp_data_) g_free(cp_data_); |
449 | 223 } |
224 | |
1069 | 225 virtual Exiv2::Image *image() |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
226 { |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
227 if (!valid_) return NULL; |
1069 | 228 return image_.get(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
229 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
230 |
1069 | 231 virtual Exiv2::ExifData &exifData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
232 { |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
233 if (!valid_) return emptyExifData_; |
1069 | 234 return image_->exifData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
235 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
236 |
1069 | 237 virtual Exiv2::IptcData &iptcData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
238 { |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
239 if (!valid_) return emptyIptcData_; |
1069 | 240 return image_->iptcData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
241 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
242 |
200 | 243 #if EXIV2_TEST_VERSION(0,16,0) |
1069 | 244 virtual Exiv2::XmpData &xmpData () |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
245 { |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
246 if (!valid_) return emptyXmpData_; |
1069 | 247 return image_->xmpData(); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
248 } |
200 | 249 #endif |
184 | 250 |
1069 | 251 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) |
252 { | |
253 if (cp_data_) g_free(cp_data_); | |
254 cp_data_ = cp_data; | |
255 cp_length_ = cp_length; | |
256 } | |
257 | |
258 virtual guchar *get_jpeg_color_profile(guint *data_len) | |
259 { | |
260 if (cp_data_) | |
261 { | |
262 if (data_len) *data_len = cp_length_; | |
263 return (unsigned char *) g_memdup(cp_data_, cp_length_); | |
264 } | |
265 return NULL; | |
266 } | |
178 | 267 }; |
268 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
269 extern "C" { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
270 static void _ExifDataProcessed_update_xmp(gpointer key, gpointer value, gpointer data); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
271 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
272 |
1069 | 273 // This allows read-write access to the metadata |
274 struct _ExifDataProcessed : public _ExifData | |
275 { | |
276 protected: | |
277 _ExifDataOriginal *imageData_; | |
278 _ExifDataOriginal *sidecarData_; | |
279 | |
280 Exiv2::ExifData exifData_; | |
281 Exiv2::IptcData iptcData_; | |
282 #if EXIV2_TEST_VERSION(0,16,0) | |
283 Exiv2::XmpData xmpData_; | |
284 #endif | |
285 | |
286 public: | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
287 _ExifDataProcessed(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp) |
1069 | 288 { |
289 imageData_ = new _ExifDataOriginal(path); | |
290 sidecarData_ = NULL; | |
291 #if EXIV2_TEST_VERSION(0,16,0) | |
1224 | 292 if (sidecar_path) |
1069 | 293 { |
294 sidecarData_ = new _ExifDataOriginal(sidecar_path); | |
295 xmpData_ = sidecarData_->xmpData(); | |
296 } | |
1224 | 297 else |
298 { | |
299 xmpData_ = imageData_->xmpData(); | |
300 } | |
301 | |
1069 | 302 #endif |
303 exifData_ = imageData_->exifData(); | |
304 iptcData_ = imageData_->iptcData(); | |
1070 | 305 #if EXIV2_TEST_VERSION(0,17,0) |
306 syncExifWithXmp(exifData_, xmpData_); | |
307 #endif | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
308 if (modified_xmp) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
309 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
310 g_hash_table_foreach(modified_xmp, _ExifDataProcessed_update_xmp, this); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
311 } |
1069 | 312 } |
313 | |
314 virtual ~_ExifDataProcessed() | |
315 { | |
316 if (imageData_) delete imageData_; | |
317 if (sidecarData_) delete sidecarData_; | |
318 } | |
319 | |
320 virtual ExifData *original() | |
321 { | |
322 return imageData_; | |
323 } | |
324 | |
1211 | 325 virtual void writeMetadata(gchar *path = NULL) |
1069 | 326 { |
1211 | 327 if (!path) |
1069 | 328 { |
1211 | 329 #if EXIV2_TEST_VERSION(0,17,0) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
330 if (options->metadata.save_legacy_IPTC) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
331 copyXmpToIptc(xmpData_, iptcData_); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
332 else |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
333 iptcData_.clear(); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
334 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
335 copyXmpToExif(xmpData_, exifData_); |
1211 | 336 #endif |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
337 Exiv2::Image *image = imageData_->image(); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
338 |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
339 if (!image) Exiv2::Error(21); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
340 image->setExifData(exifData_); |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
341 image->setIptcData(iptcData_); |
1245 | 342 #if EXIV2_TEST_VERSION(0,16,0) |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
343 image->setXmpData(xmpData_); |
1245 | 344 #endif |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
345 image->writeMetadata(); |
1211 | 346 } |
1069 | 347 else |
348 { | |
1071 | 349 #if EXIV2_TEST_VERSION(0,17,0) |
1211 | 350 gchar *pathl = path_from_utf8(path);; |
1071 | 351 |
1211 | 352 Exiv2::Image::AutoPtr sidecar = Exiv2::ImageFactory::create(Exiv2::ImageType::xmp, pathl); |
1071 | 353 |
1211 | 354 g_free(pathl); |
355 | |
356 sidecar->setXmpData(xmpData_); | |
357 sidecar->writeMetadata(); | |
358 #else | |
359 throw Exiv2::Error(3, "xmp"); | |
1071 | 360 #endif |
1069 | 361 } |
362 } | |
363 | |
364 virtual Exiv2::Image *image() | |
365 { | |
366 return imageData_->image(); | |
367 } | |
368 | |
369 virtual Exiv2::ExifData &exifData () | |
370 { | |
371 return exifData_; | |
372 } | |
373 | |
374 virtual Exiv2::IptcData &iptcData () | |
375 { | |
376 return iptcData_; | |
377 } | |
378 | |
379 #if EXIV2_TEST_VERSION(0,16,0) | |
380 virtual Exiv2::XmpData &xmpData () | |
381 { | |
382 return xmpData_; | |
383 } | |
384 #endif | |
385 | |
386 virtual void add_jpeg_color_profile(unsigned char *cp_data, guint cp_length) | |
387 { | |
388 imageData_->add_jpeg_color_profile(cp_data, cp_length); | |
389 } | |
390 | |
391 virtual guchar *get_jpeg_color_profile(guint *data_len) | |
392 { | |
393 return imageData_->get_jpeg_color_profile(data_len); | |
394 } | |
395 }; | |
396 | |
397 | |
398 | |
399 | |
184 | 400 extern "C" { |
178 | 401 |
1288 | 402 |
403 void exif_init(void) | |
404 { | |
405 #ifdef EXV_ENABLE_NLS | |
406 bind_textdomain_codeset (EXV_PACKAGE, "UTF-8"); | |
407 #endif | |
408 } | |
409 | |
410 | |
411 | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
412 static void _ExifDataProcessed_update_xmp(gpointer key, gpointer value, gpointer data) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
413 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
414 exif_update_metadata((ExifData *)data, (gchar *)key, (GList *)value); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
415 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
416 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
417 ExifData *exif_read(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp) |
178 | 418 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
496
diff
changeset
|
419 DEBUG_1("exif read %s, sidecar: %s", path, sidecar_path ? sidecar_path : "-"); |
178 | 420 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
421 return new _ExifDataProcessed(path, sidecar_path, modified_xmp); |
178 | 422 } |
423 catch (Exiv2::AnyError& e) { | |
1528 | 424 debug_exception(e); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
425 return NULL; |
178 | 426 } |
179
37004d5a584a
and first version that actually shows some exif data (see advanced view)
nadvornik
parents:
178
diff
changeset
|
427 |
178 | 428 } |
429 | |
1211 | 430 gboolean exif_write(ExifData *exif) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
431 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
432 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
433 exif->writeMetadata(); |
1211 | 434 return TRUE; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
435 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
436 catch (Exiv2::AnyError& e) { |
1528 | 437 debug_exception(e); |
1211 | 438 return FALSE; |
439 } | |
440 } | |
441 | |
442 gboolean exif_write_sidecar(ExifData *exif, gchar *path) | |
443 { | |
444 try { | |
445 exif->writeMetadata(path); | |
446 return TRUE; | |
447 } | |
448 catch (Exiv2::AnyError& e) { | |
1528 | 449 debug_exception(e); |
1211 | 450 return FALSE; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
451 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
452 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
453 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
454 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
455 |
178 | 456 void exif_free(ExifData *exif) |
457 { | |
1072 | 458 if (!exif) return; |
1069 | 459 g_assert(dynamic_cast<_ExifDataProcessed *>(exif)); // this should not be called on ExifDataOriginal |
182 | 460 delete exif; |
178 | 461 } |
462 | |
1069 | 463 ExifData *exif_get_original(ExifData *exif) |
464 { | |
465 return exif->original(); | |
466 } | |
467 | |
468 | |
184 | 469 ExifItem *exif_get_item(ExifData *exif, const gchar *key) |
178 | 470 { |
183 | 471 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
472 Exiv2::Metadatum *item = NULL; |
185 | 473 try { |
474 Exiv2::ExifKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
475 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
476 if (pos == exif->exifData().end()) return NULL; |
185 | 477 item = &*pos; |
478 } | |
479 catch (Exiv2::AnyError& e) { | |
480 try { | |
481 Exiv2::IptcKey ekey(key); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
482 Exiv2::IptcData::iterator pos = exif->iptcData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
483 if (pos == exif->iptcData().end()) return NULL; |
185 | 484 item = &*pos; |
485 } | |
486 catch (Exiv2::AnyError& e) { | |
200 | 487 #if EXIV2_TEST_VERSION(0,16,0) |
185 | 488 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
489 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
490 if (pos == exif->xmpData().end()) return NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
491 item = &*pos; |
200 | 492 #endif |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
493 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
494 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
495 return (ExifItem *)item; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
496 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
497 catch (Exiv2::AnyError& e) { |
1528 | 498 debug_exception(e); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
499 return NULL; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
500 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
501 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
502 |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
503 ExifItem *exif_add_item(ExifData *exif, const gchar *key) |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
504 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
505 try { |
452
0a69a779395a
fixed color profile code for older versions of exiv2
nadvornik
parents:
449
diff
changeset
|
506 Exiv2::Metadatum *item = NULL; |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
507 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
508 Exiv2::ExifKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
509 exif->exifData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
510 Exiv2::ExifData::iterator pos = exif->exifData().end(); // a hack, there should be a better way to get the currently added item |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
511 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
512 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
513 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
514 catch (Exiv2::AnyError& e) { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
515 try { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
516 Exiv2::IptcKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
517 exif->iptcData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
518 Exiv2::IptcData::iterator pos = exif->iptcData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
519 pos--; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
520 item = &*pos; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
521 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
522 catch (Exiv2::AnyError& e) { |
200 | 523 #if EXIV2_TEST_VERSION(0,16,0) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
524 Exiv2::XmpKey ekey(key); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
525 exif->xmpData().add(ekey, NULL); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
526 Exiv2::XmpData::iterator pos = exif->xmpData().end(); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
527 pos--; |
185 | 528 item = &*pos; |
200 | 529 #endif |
185 | 530 } |
531 } | |
184 | 532 return (ExifItem *)item; |
183 | 533 } |
534 catch (Exiv2::AnyError& e) { | |
1528 | 535 debug_exception(e); |
184 | 536 return NULL; |
537 } | |
538 } | |
539 | |
540 | |
541 ExifItem *exif_get_first_item(ExifData *exif) | |
542 { | |
543 try { | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
544 exif->exifIter = exif->exifData().begin(); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
545 exif->iptcIter = exif->iptcData().begin(); |
200 | 546 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
547 exif->xmpIter = exif->xmpData().begin(); |
200 | 548 #endif |
995 | 549 if (exif->exifIter != exif->exifData().end()) |
185 | 550 { |
551 const Exiv2::Metadatum *item = &*exif->exifIter; | |
552 exif->exifIter++; | |
553 return (ExifItem *)item; | |
554 } | |
995 | 555 if (exif->iptcIter != exif->iptcData().end()) |
185 | 556 { |
557 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
558 exif->iptcIter++; | |
559 return (ExifItem *)item; | |
560 } | |
200 | 561 #if EXIV2_TEST_VERSION(0,16,0) |
995 | 562 if (exif->xmpIter != exif->xmpData().end()) |
185 | 563 { |
564 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
565 exif->xmpIter++; | |
566 return (ExifItem *)item; | |
567 } | |
200 | 568 #endif |
185 | 569 return NULL; |
570 | |
184 | 571 } |
572 catch (Exiv2::AnyError& e) { | |
1528 | 573 debug_exception(e); |
183 | 574 return NULL; |
575 } | |
178 | 576 } |
577 | |
578 ExifItem *exif_get_next_item(ExifData *exif) | |
579 { | |
184 | 580 try { |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
581 if (exif->exifIter != exif->exifData().end()) |
185 | 582 { |
583 const Exiv2::Metadatum *item = &*exif->exifIter; | |
584 exif->exifIter++; | |
585 return (ExifItem *)item; | |
586 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
587 if (exif->iptcIter != exif->iptcData().end()) |
185 | 588 { |
589 const Exiv2::Metadatum *item = &*exif->iptcIter; | |
590 exif->iptcIter++; | |
591 return (ExifItem *)item; | |
592 } | |
200 | 593 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
594 if (exif->xmpIter != exif->xmpData().end()) |
185 | 595 { |
596 const Exiv2::Metadatum *item = &*exif->xmpIter; | |
597 exif->xmpIter++; | |
598 return (ExifItem *)item; | |
599 } | |
200 | 600 #endif |
185 | 601 return NULL; |
184 | 602 } |
603 catch (Exiv2::AnyError& e) { | |
1528 | 604 debug_exception(e); |
184 | 605 return NULL; |
606 } | |
178 | 607 } |
608 | |
185 | 609 char *exif_item_get_tag_name(ExifItem *item) |
178 | 610 { |
184 | 611 try { |
612 if (!item) return NULL; | |
185 | 613 return g_strdup(((Exiv2::Metadatum *)item)->key().c_str()); |
184 | 614 } |
615 catch (Exiv2::AnyError& e) { | |
1528 | 616 debug_exception(e); |
184 | 617 return NULL; |
618 } | |
178 | 619 } |
620 | |
621 guint exif_item_get_tag_id(ExifItem *item) | |
622 { | |
184 | 623 try { |
624 if (!item) return 0; | |
185 | 625 return ((Exiv2::Metadatum *)item)->tag(); |
184 | 626 } |
627 catch (Exiv2::AnyError& e) { | |
1528 | 628 debug_exception(e); |
184 | 629 return 0; |
630 } | |
178 | 631 } |
632 | |
633 guint exif_item_get_elements(ExifItem *item) | |
634 { | |
184 | 635 try { |
636 if (!item) return 0; | |
185 | 637 return ((Exiv2::Metadatum *)item)->count(); |
184 | 638 } |
639 catch (Exiv2::AnyError& e) { | |
1528 | 640 debug_exception(e); |
185 | 641 return 0; |
184 | 642 } |
178 | 643 } |
644 | |
645 char *exif_item_get_data(ExifItem *item, guint *data_len) | |
646 { | |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
647 try { |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
648 if (!item) return 0; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
649 Exiv2::Metadatum *md = (Exiv2::Metadatum *)item; |
855 | 650 if (data_len) *data_len = md->size(); |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
651 char *data = (char *)g_malloc(md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
652 long res = md->copy((Exiv2::byte *)data, Exiv2::littleEndian /* should not matter */); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
653 g_assert(res == md->size()); |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
654 return data; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
655 } |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
656 catch (Exiv2::AnyError& e) { |
1528 | 657 debug_exception(e); |
414
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
658 return NULL; |
49c1cbe058ae
partially fixed reading embedded color profiles with exiv2
nadvornik
parents:
304
diff
changeset
|
659 } |
178 | 660 } |
661 | |
182 | 662 char *exif_item_get_description(ExifItem *item) |
178 | 663 { |
184 | 664 try { |
665 if (!item) return NULL; | |
1288 | 666 return utf8_validate_or_convert(((Exiv2::Metadatum *)item)->tagLabel().c_str()); |
184 | 667 } |
185 | 668 catch (std::exception& e) { |
1528 | 669 // debug_exception(e); |
184 | 670 return NULL; |
671 } | |
178 | 672 } |
673 | |
674 /* | |
675 invalidTypeId, unsignedByte, asciiString, unsignedShort, | |
676 unsignedLong, unsignedRational, signedByte, undefined, | |
677 signedShort, signedLong, signedRational, string, | |
678 date, time, comment, directory, | |
679 xmpText, xmpAlt, xmpBag, xmpSeq, | |
995 | 680 langAlt, lastTypeId |
178 | 681 */ |
682 | |
184 | 683 static guint format_id_trans_tbl [] = { |
684 EXIF_FORMAT_UNKNOWN, | |
685 EXIF_FORMAT_BYTE_UNSIGNED, | |
686 EXIF_FORMAT_STRING, | |
687 EXIF_FORMAT_SHORT_UNSIGNED, | |
688 EXIF_FORMAT_LONG_UNSIGNED, | |
689 EXIF_FORMAT_RATIONAL_UNSIGNED, | |
690 EXIF_FORMAT_BYTE, | |
691 EXIF_FORMAT_UNDEFINED, | |
692 EXIF_FORMAT_SHORT, | |
693 EXIF_FORMAT_LONG, | |
694 EXIF_FORMAT_RATIONAL, | |
695 EXIF_FORMAT_STRING, | |
696 EXIF_FORMAT_STRING, | |
697 EXIF_FORMAT_STRING, | |
698 EXIF_FORMAT_UNDEFINED, | |
699 EXIF_FORMAT_STRING, | |
700 EXIF_FORMAT_STRING, | |
701 EXIF_FORMAT_STRING, | |
702 EXIF_FORMAT_STRING | |
703 }; | |
704 | |
705 | |
178 | 706 |
707 guint exif_item_get_format_id(ExifItem *item) | |
708 { | |
184 | 709 try { |
710 if (!item) return EXIF_FORMAT_UNKNOWN; | |
185 | 711 guint id = ((Exiv2::Metadatum *)item)->typeId(); |
184 | 712 if (id >= (sizeof(format_id_trans_tbl) / sizeof(format_id_trans_tbl[0])) ) return EXIF_FORMAT_UNKNOWN; |
713 return format_id_trans_tbl[id]; | |
714 } | |
715 catch (Exiv2::AnyError& e) { | |
1528 | 716 debug_exception(e); |
184 | 717 return EXIF_FORMAT_UNKNOWN; |
718 } | |
178 | 719 } |
184 | 720 |
1422 | 721 const char *exif_item_get_format_name(ExifItem *item, gboolean brief) |
178 | 722 { |
184 | 723 try { |
724 if (!item) return NULL; | |
185 | 725 return ((Exiv2::Metadatum *)item)->typeName(); |
184 | 726 } |
727 catch (Exiv2::AnyError& e) { | |
1528 | 728 debug_exception(e); |
184 | 729 return NULL; |
730 } | |
178 | 731 } |
732 | |
733 | |
734 gchar *exif_item_get_data_as_text(ExifItem *item) | |
735 { | |
183 | 736 try { |
184 | 737 if (!item) return NULL; |
676 | 738 Exiv2::Metadatum *metadatum = (Exiv2::Metadatum *)item; |
677 | 739 #if EXIV2_TEST_VERSION(0,17,0) |
1288 | 740 return utf8_validate_or_convert(metadatum->print().c_str()); |
676 | 741 #else |
742 std::stringstream str; | |
743 Exiv2::Exifdatum *exifdatum; | |
744 Exiv2::Iptcdatum *iptcdatum; | |
686 | 745 #if EXIV2_TEST_VERSION(0,16,0) |
676 | 746 Exiv2::Xmpdatum *xmpdatum; |
686 | 747 #endif |
855 | 748 if ((exifdatum = dynamic_cast<Exiv2::Exifdatum *>(metadatum))) |
676 | 749 str << *exifdatum; |
750 else if ((iptcdatum = dynamic_cast<Exiv2::Iptcdatum *>(metadatum))) | |
751 str << *iptcdatum; | |
752 #if EXIV2_TEST_VERSION(0,16,0) | |
753 else if ((xmpdatum = dynamic_cast<Exiv2::Xmpdatum *>(metadatum))) | |
754 str << *xmpdatum; | |
755 #endif | |
756 | |
1288 | 757 return utf8_validate_or_convert(str.str().c_str()); |
676 | 758 #endif |
183 | 759 } |
760 catch (Exiv2::AnyError& e) { | |
761 return NULL; | |
762 } | |
178 | 763 } |
764 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
765 gchar *exif_item_get_string(ExifItem *item, int idx) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
766 { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
767 try { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
768 if (!item) return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
769 Exiv2::Metadatum *em = (Exiv2::Metadatum *)item; |
200 | 770 #if EXIV2_TEST_VERSION(0,16,0) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
771 std::string str = em->toString(idx); |
200 | 772 #else |
773 std::string str = em->toString(); // FIXME | |
774 #endif | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
775 if (idx == 0 && str == "") str = em->toString(); |
995 | 776 if (str.length() > 5 && str.substr(0, 5) == "lang=") |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
777 { |
995 | 778 std::string::size_type pos = str.find_first_of(' '); |
779 if (pos != std::string::npos) str = str.substr(pos+1); | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
780 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
781 |
1288 | 782 return utf8_validate_or_convert(str.c_str()); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
783 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
784 catch (Exiv2::AnyError& e) { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
785 return NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
786 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
787 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
187
diff
changeset
|
788 |
178 | 789 |
790 gint exif_item_get_integer(ExifItem *item, gint *value) | |
791 { | |
184 | 792 try { |
793 if (!item) return 0; | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
794 *value = ((Exiv2::Metadatum *)item)->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
795 return 1; |
184 | 796 } |
797 catch (Exiv2::AnyError& e) { | |
1528 | 798 debug_exception(e); |
184 | 799 return 0; |
800 } | |
178 | 801 } |
802 | |
1058
b600689a677e
Fix up few signed vs unsigned warnings: exif_item_get_rational() last parameter is now of guint type.
zas_
parents:
1055
diff
changeset
|
803 ExifRational *exif_item_get_rational(ExifItem *item, gint *sign, guint n) |
178 | 804 { |
184 | 805 try { |
806 if (!item) return NULL; | |
1052 | 807 if (n >= exif_item_get_elements(item)) return NULL; |
808 Exiv2::Rational v = ((Exiv2::Metadatum *)item)->toRational(n); | |
184 | 809 static ExifRational ret; |
810 ret.num = v.first; | |
811 ret.den = v.second; | |
485 | 812 if (sign) *sign = (((Exiv2::Metadatum *)item)->typeId() == Exiv2::signedRational); |
184 | 813 return &ret; |
814 } | |
815 catch (Exiv2::AnyError& e) { | |
1528 | 816 debug_exception(e); |
184 | 817 return NULL; |
818 } | |
178 | 819 } |
820 | |
1053
77ca9a5d42be
fixed charset of exiv2 strings in non-utf8 locales
nadvornik
parents:
1052
diff
changeset
|
821 gchar *exif_get_tag_description_by_key(const gchar *key) |
178 | 822 { |
184 | 823 try { |
824 Exiv2::ExifKey ekey(key); | |
1442 | 825 return utf8_validate_or_convert(ekey.tagLabel().c_str()); |
184 | 826 } |
827 catch (Exiv2::AnyError& e) { | |
1442 | 828 try { |
829 Exiv2::IptcKey ikey(key); | |
830 return utf8_validate_or_convert(ikey.tagLabel().c_str()); | |
831 } | |
832 catch (Exiv2::AnyError& e) { | |
833 try { | |
834 #if EXIV2_TEST_VERSION(0,16,0) | |
835 Exiv2::XmpKey xkey(key); | |
836 return utf8_validate_or_convert(xkey.tagLabel().c_str()); | |
837 #endif | |
838 } | |
839 catch (Exiv2::AnyError& e) { | |
1528 | 840 debug_exception(e); |
1442 | 841 return NULL; |
842 } | |
843 } | |
184 | 844 } |
1442 | 845 return NULL; |
178 | 846 } |
847 | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
848 static const AltKey *find_alt_key(const gchar *xmp_key) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
849 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
850 gint i = 0; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
851 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
852 while (alt_keys[i].xmp_key) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
853 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
854 if (strcmp(xmp_key, alt_keys[i].xmp_key) == 0) return &alt_keys[i]; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
855 i++; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
856 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
857 return NULL; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
858 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
859 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
860 static gint exif_update_metadata_simple(ExifData *exif, const gchar *key, const GList *values) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
861 { |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
862 try { |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
863 const GList *work = values; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
864 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
865 try { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
866 Exiv2::ExifKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
867 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
868 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
869 while (pos != exif->exifData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
870 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
871 exif->exifData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
872 pos = exif->exifData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
873 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
874 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
875 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
876 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
877 exif->exifData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
878 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
879 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
880 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
881 catch (Exiv2::AnyError& e) { |
1245 | 882 #if EXIV2_TEST_VERSION(0,16,0) |
883 try | |
884 #endif | |
885 { | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
886 Exiv2::IptcKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
887 Exiv2::IptcData::iterator pos = exif->iptcData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
888 while (pos != exif->iptcData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
889 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
890 exif->iptcData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
891 pos = exif->iptcData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
892 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
893 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
894 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
895 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
896 exif->iptcData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
897 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
898 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
899 } |
1245 | 900 #if EXIV2_TEST_VERSION(0,16,0) |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
901 catch (Exiv2::AnyError& e) { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
902 Exiv2::XmpKey ekey(key); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
903 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
904 while (pos != exif->xmpData().end()) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
905 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
906 exif->xmpData().erase(pos); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
907 pos = exif->xmpData().findKey(ekey); |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
908 } |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
909 |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
910 while (work) |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
911 { |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
912 exif->xmpData()[key] = (gchar *)work->data; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
913 work = work->next; |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
914 } |
1245 | 915 } |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
916 #endif |
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
917 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
918 return 1; |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1196
diff
changeset
|
919 } |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
920 catch (Exiv2::AnyError& e) { |
1528 | 921 debug_exception(e); |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
922 return 0; |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
923 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
924 } |
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
925 |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
926 gint exif_update_metadata(ExifData *exif, const gchar *key, const GList *values) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
927 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
928 gint ret = exif_update_metadata_simple(exif, key, values); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
929 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
930 if ( |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
931 #if !EXIV2_TEST_VERSION(0,17,0) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
932 TRUE || /* no conversion support */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
933 #endif |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
934 !values || /* deleting item */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
935 !ret /* writing to the explicitely given xmp tag failed */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
936 ) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
937 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
938 /* deleted xmp metadatum can't be converted, we have to delete also the corresponding legacy tag */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
939 /* if we can't write xmp, update at least the legacy tag */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
940 const AltKey *alt_key = find_alt_key(key); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
941 if (alt_key && alt_key->iptc_key) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
942 ret = exif_update_metadata_simple(exif, alt_key->iptc_key, values); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
943 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
944 if (alt_key && alt_key->exif_key) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
945 ret = exif_update_metadata_simple(exif, alt_key->exif_key, values); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
946 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
947 return ret; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
948 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
949 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
950 |
1288 | 951 static GList *exif_add_value_to_glist(GList *list, Exiv2::Metadatum &item, MetadataFormat format, const Exiv2::ExifData *metadata) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
952 { |
1245 | 953 #if EXIV2_TEST_VERSION(0,16,0) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
954 Exiv2::TypeId id = item.typeId(); |
1288 | 955 if (format == METADATA_FORMATTED || |
956 id == Exiv2::asciiString || | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
957 id == Exiv2::undefined || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
958 id == Exiv2::string || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
959 id == Exiv2::date || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
960 id == Exiv2::time || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
961 id == Exiv2::xmpText || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
962 id == Exiv2::langAlt || |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
963 id == Exiv2::comment |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
964 ) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
965 { |
1245 | 966 #endif |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
967 /* read as a single entry */ |
1288 | 968 std::string str; |
969 | |
970 if (format == METADATA_FORMATTED) | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
971 { |
1288 | 972 #if EXIV2_TEST_VERSION(0,17,0) |
973 str = item.print( | |
974 #if EXIV2_TEST_VERSION(0,18,0) | |
975 metadata | |
976 #endif | |
977 ); | |
978 #else | |
979 std::stringstream stream; | |
980 Exiv2::Exifdatum *exifdatum; | |
981 Exiv2::Iptcdatum *iptcdatum; | |
982 #if EXIV2_TEST_VERSION(0,16,0) | |
983 Exiv2::Xmpdatum *xmpdatum; | |
984 #endif | |
1572 | 985 if ((exifdatum = dynamic_cast<Exiv2::Exifdatum *>(&item))) |
1288 | 986 stream << *exifdatum; |
1572 | 987 else if ((iptcdatum = dynamic_cast<Exiv2::Iptcdatum *>(&item))) |
1288 | 988 stream << *iptcdatum; |
989 #if EXIV2_TEST_VERSION(0,16,0) | |
1572 | 990 else if ((xmpdatum = dynamic_cast<Exiv2::Xmpdatum *>(&item))) |
1288 | 991 stream << *xmpdatum; |
992 #endif | |
993 str = stream.str(); | |
994 #endif | |
995 if (str.length() > 1024) | |
996 { | |
997 /* truncate very long strings, they cause problems in gui */ | |
998 str.erase(1024); | |
999 str.append("..."); | |
1000 } | |
1001 } | |
1002 else | |
1003 { | |
1004 str = item.toString(); | |
1005 if (str.length() > 5 && str.substr(0, 5) == "lang=") | |
1006 { | |
1007 std::string::size_type pos = str.find_first_of(' '); | |
1008 if (pos != std::string::npos) str = str.substr(pos+1); | |
1009 } | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1010 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1011 list = g_list_append(list, utf8_validate_or_convert(str.c_str())); |
1245 | 1012 #if EXIV2_TEST_VERSION(0,16,0) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1013 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1014 else |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1015 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1016 /* read as a list */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1017 gint i; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1018 for (i = 0; i < item.count(); i++) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1019 list = g_list_append(list, utf8_validate_or_convert(item.toString(i).c_str())); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1020 } |
1245 | 1021 #endif |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1022 return list; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1023 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1024 |
1288 | 1025 static GList *exif_get_metadata_simple(ExifData *exif, const gchar *key, MetadataFormat format) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1026 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1027 GList *list = NULL; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1028 try { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1029 try { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1030 Exiv2::ExifKey ekey(key); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1031 Exiv2::ExifData::iterator pos = exif->exifData().findKey(ekey); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1032 if (pos != exif->exifData().end()) |
1288 | 1033 list = exif_add_value_to_glist(list, *pos, format, &exif->exifData()); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1034 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1035 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1036 catch (Exiv2::AnyError& e) { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1037 try { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1038 Exiv2::IptcKey ekey(key); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1039 Exiv2::IptcData::iterator pos = exif->iptcData().begin(); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1040 while (pos != exif->iptcData().end()) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1041 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1042 if (pos->key() == key) |
1288 | 1043 list = exif_add_value_to_glist(list, *pos, format, NULL); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1044 ++pos; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1045 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1046 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1047 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1048 catch (Exiv2::AnyError& e) { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1049 #if EXIV2_TEST_VERSION(0,16,0) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1050 Exiv2::XmpKey ekey(key); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1051 Exiv2::XmpData::iterator pos = exif->xmpData().findKey(ekey); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1052 if (pos != exif->xmpData().end()) |
1288 | 1053 list = exif_add_value_to_glist(list, *pos, format, NULL); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1054 #endif |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1055 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1056 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1057 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1058 catch (Exiv2::AnyError& e) { |
1528 | 1059 debug_exception(e); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1060 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1061 return list; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1062 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1063 |
1288 | 1064 GList *exif_get_metadata(ExifData *exif, const gchar *key, MetadataFormat format) |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1065 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1066 GList *list = NULL; |
1288 | 1067 |
1068 if (!key) return NULL; | |
1069 | |
1070 if (format == METADATA_FORMATTED) | |
1071 { | |
1072 gchar *text; | |
1073 gint key_valid; | |
1074 text = exif_get_formatted_by_key(exif, key, &key_valid); | |
1075 if (key_valid) return g_list_append(NULL, text); | |
1076 } | |
1077 | |
1078 list = exif_get_metadata_simple(exif, key, format); | |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1079 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1080 /* the following code can be ifdefed out as soon as Exiv2 supports it */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1081 if (!list) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1082 { |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1083 const AltKey *alt_key = find_alt_key(key); |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1084 if (alt_key && alt_key->iptc_key) |
1288 | 1085 list = exif_get_metadata_simple(exif, alt_key->iptc_key, format); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1086 |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1087 #if !EXIV2_TEST_VERSION(0,17,0) |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1088 /* with older Exiv2 versions exif is not synced */ |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1089 if (!list && alt_key && alt_key->exif_key) |
1288 | 1090 list = exif_get_metadata_simple(exif, alt_key->exif_key, format); |
1238
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1091 #endif |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1092 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1093 return list; |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1094 } |
947e603a52c6
simplified metadata interface, dropped metadata_read,
nadvornik
parents:
1224
diff
changeset
|
1095 |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
1096 |
449 | 1097 void exif_add_jpeg_color_profile(ExifData *exif, unsigned char *cp_data, guint cp_length) |
1098 { | |
1069 | 1099 exif->add_jpeg_color_profile(cp_data, cp_length); |
449 | 1100 } |
1101 | |
1008 | 1102 guchar *exif_get_color_profile(ExifData *exif, guint *data_len) |
449 | 1103 { |
1069 | 1104 guchar *ret = exif->get_jpeg_color_profile(data_len); |
1105 if (ret) return ret; | |
1106 | |
449 | 1107 ExifItem *prof_item = exif_get_item(exif, "Exif.Image.InterColorProfile"); |
1108 if (prof_item && exif_item_get_format_id(prof_item) == EXIF_FORMAT_UNDEFINED) | |
1069 | 1109 ret = (guchar *)exif_item_get_data(prof_item, data_len); |
1110 return ret; | |
449 | 1111 } |
1112 | |
1008 | 1113 #if EXIV2_TEST_VERSION(0,17,90) |
187
9eafc4957f1a
write support in Exiv2 wrapper; for now only string values
nadvornik
parents:
186
diff
changeset
|
1114 |
1060 | 1115 guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 1116 { |
1117 if (!exif) return NULL; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1118 |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
1119 if (!exif->image()) return NULL; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
1120 |
1069 | 1121 const char* path = exif->image()->io().path().c_str(); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1122 /* given image pathname, first do simple (and fast) file extension test */ |
1060 | 1123 gboolean is_raw = filter_file_class(path, FORMAT_CLASS_RAWIMAGE); |
1124 | |
1125 if (!is_raw && requested_width == 0) return NULL; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1126 |
1008 | 1127 try { |
1128 | |
1069 | 1129 Exiv2::PreviewManager pm(*exif->image()); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1130 |
1064 | 1131 Exiv2::PreviewPropertiesList list = pm.getPreviewProperties(); |
1008 | 1132 |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1133 if (!list.empty()) |
1008 | 1134 { |
1060 | 1135 Exiv2::PreviewPropertiesList::iterator pos; |
1136 Exiv2::PreviewPropertiesList::iterator last = --list.end(); | |
1137 | |
1138 if (requested_width == 0) | |
1139 { | |
1140 pos = last; // the largest | |
1141 } | |
1142 else | |
1143 { | |
1144 pos = list.begin(); | |
1145 while (pos != last) | |
1146 { | |
1147 if (pos->width_ >= (uint32_t)requested_width && | |
1148 pos->height_ >= (uint32_t)requested_height) break; | |
1149 ++pos; | |
1150 } | |
1151 | |
1152 // we are not interested in smaller thumbnails in normal image formats - we can use full image instead | |
1153 if (!is_raw) | |
1154 { | |
1155 if (pos->width_ < (uint32_t)requested_width || pos->height_ < (uint32_t)requested_height) return NULL; | |
1156 } | |
1157 } | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1158 |
1064 | 1159 Exiv2::PreviewImage image = pm.getPreviewImage(*pos); |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1160 |
1064 | 1161 Exiv2::DataBuf buf = image.copy(); |
1008 | 1162 std::pair<Exiv2::byte*, long> p = buf.release(); |
1163 | |
1164 *data_len = p.second; | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1165 return p.first; |
1008 | 1166 } |
1167 return NULL; | |
1168 } | |
1169 catch (Exiv2::AnyError& e) { | |
1528 | 1170 debug_exception(e); |
1008 | 1171 return NULL; |
1172 } | |
1173 } | |
1174 | |
1175 void exif_free_preview(guchar *buf) | |
1176 { | |
1177 delete[] (Exiv2::byte*)buf; | |
1178 } | |
1179 #endif | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1180 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1181 } |
1008 | 1182 #if !EXIV2_TEST_VERSION(0,17,90) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1183 |
995 | 1184 /* This is a dirty hack to support raw file preview, bassed on |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1185 tiffparse.cpp from Exiv2 examples */ |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1186 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1187 class RawFile { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1188 public: |
995 | 1189 |
1008 | 1190 RawFile(Exiv2::BasicIo &io); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1191 ~RawFile(); |
995 | 1192 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1193 const Exiv2::Value *find(uint16_t tag, uint16_t group); |
995 | 1194 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1195 unsigned long preview_offset(); |
995 | 1196 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1197 private: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1198 int type; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1199 Exiv2::TiffComponent::AutoPtr rootDir; |
1008 | 1200 Exiv2::BasicIo &io_; |
1201 const Exiv2::byte *map_data; | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1202 size_t map_len; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1203 unsigned long offset; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1204 }; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1205 |
1008 | 1206 typedef struct _UnmapData UnmapData; |
1207 struct _UnmapData | |
1208 { | |
1209 guchar *ptr; | |
1210 guchar *map_data; | |
1211 size_t map_len; | |
1212 }; | |
1213 | |
1214 static GList *exif_unmap_list = 0; | |
1215 | |
1060 | 1216 extern "C" guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height) |
1008 | 1217 { |
1218 unsigned long offset; | |
1219 | |
1220 if (!exif) return NULL; | |
1426
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
1221 if (!exif->image()) return NULL; |
cd88fe4e5588
handle sidecar files for raw formats that are not known to exiv2
nadvornik
parents:
1422
diff
changeset
|
1222 |
1069 | 1223 const char* path = exif->image()->io().path().c_str(); |
1008 | 1224 |
1225 /* given image pathname, first do simple (and fast) file extension test */ | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1226 if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL; |
1008 | 1227 |
1228 try { | |
1229 struct stat st; | |
1230 guchar *map_data; | |
1231 size_t map_len; | |
1232 UnmapData *ud; | |
1233 int fd; | |
1234 | |
1069 | 1235 RawFile rf(exif->image()->io()); |
1008 | 1236 offset = rf.preview_offset(); |
1237 DEBUG_1("%s: offset %lu", path, offset); | |
1238 | |
1239 fd = open(path, O_RDONLY); | |
1240 if (fd == -1) | |
1241 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1242 return NULL; |
1008 | 1243 } |
1244 | |
1245 if (fstat(fd, &st) == -1) | |
1246 { | |
1247 close(fd); | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1248 return NULL; |
1008 | 1249 } |
1250 map_len = st.st_size; | |
1251 map_data = (guchar *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0); | |
1252 close(fd); | |
1253 if (map_data == MAP_FAILED) | |
1254 { | |
1048
95c418661be8
updated preview loader to work with current svn version of libexiv2
nadvornik
parents:
1025
diff
changeset
|
1255 return NULL; |
1008 | 1256 } |
1257 *data_len = map_len - offset; | |
1258 ud = g_new(UnmapData, 1); | |
1259 ud->ptr = map_data + offset; | |
1260 ud->map_data = map_data; | |
1261 ud->map_len = map_len; | |
1262 | |
1263 exif_unmap_list = g_list_prepend(exif_unmap_list, ud); | |
1264 return ud->ptr; | |
1265 | |
1266 } | |
1267 catch (Exiv2::AnyError& e) { | |
1528 | 1268 debug_exception(e); |
1008 | 1269 } |
1270 return NULL; | |
1271 | |
1272 } | |
1273 | |
1274 void exif_free_preview(guchar *buf) | |
1275 { | |
1276 GList *work = exif_unmap_list; | |
1277 | |
1278 while (work) | |
1279 { | |
1280 UnmapData *ud = (UnmapData *)work->data; | |
1281 if (ud->ptr == buf) | |
1282 { | |
1283 munmap(ud->map_data, ud->map_len); | |
1284 exif_unmap_list = g_list_remove_link(exif_unmap_list, work); | |
1285 g_free(ud); | |
1286 return; | |
1287 } | |
1025 | 1288 work = work->next; |
1008 | 1289 } |
1290 g_assert_not_reached(); | |
1291 } | |
1292 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1293 using namespace Exiv2; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1294 |
1008 | 1295 RawFile::RawFile(BasicIo &io) : io_(io), map_data(NULL), map_len(0), offset(0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1296 { |
1008 | 1297 /* |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1298 struct stat st; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1299 if (fstat(fd, &st) == -1) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1300 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1301 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1302 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1303 map_len = st.st_size; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1304 map_data = (Exiv2::byte *) mmap(0, map_len, PROT_READ, MAP_PRIVATE, fd, 0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1305 if (map_data == MAP_FAILED) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1306 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1307 throw Error(14); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1308 } |
1008 | 1309 */ |
1310 if (io.open() != 0) { | |
1311 throw Error(9, io.path(), strError()); | |
1312 } | |
1313 | |
1314 map_data = io.mmap(); | |
1315 map_len = io.size(); | |
1316 | |
1317 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1318 type = Exiv2::ImageFactory::getType(map_data, map_len); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1319 |
200 | 1320 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1321 TiffHeaderBase *tiffHeader = NULL; |
200 | 1322 #else |
201 | 1323 TiffHeade2 *tiffHeader = NULL; |
200 | 1324 #endif |
201 | 1325 Cr2Header *cr2Header = NULL; |
1326 | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1327 switch (type) { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1328 case Exiv2::ImageType::tiff: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1329 tiffHeader = new TiffHeade2(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1330 break; |
201 | 1331 case Exiv2::ImageType::cr2: |
1332 cr2Header = new Cr2Header(); | |
1333 break; | |
200 | 1334 #if EXIV2_TEST_VERSION(0,16,0) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1335 case Exiv2::ImageType::orf: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1336 tiffHeader = new OrfHeader(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1337 break; |
200 | 1338 #endif |
1339 #if EXIV2_TEST_VERSION(0,13,0) | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1340 case Exiv2::ImageType::raf: |
995 | 1341 if (map_len < 84 + 4) throw Error(14); |
1342 offset = getULong(map_data + 84, bigEndian); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1343 return; |
200 | 1344 #endif |
191 | 1345 case Exiv2::ImageType::crw: |
1346 { | |
1347 // Parse the image, starting with a CIFF header component | |
1348 Exiv2::CiffHeader::AutoPtr parseTree(new Exiv2::CiffHeader); | |
1349 parseTree->read(map_data, map_len); | |
995 | 1350 CiffComponent *entry = parseTree->findComponent(0x2007, 0); |
191 | 1351 if (entry) offset = entry->pData() - map_data; |
1352 return; | |
1353 } | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1354 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1355 default: |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1356 throw Error(3, "RAW"); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1357 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1358 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1359 // process tiff-like formats |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1360 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1361 TiffCompFactoryFct createFct = TiffCreator::create; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1362 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1363 rootDir = createFct(Tag::root, Group::none); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1364 if (0 == rootDir.get()) { |
995 | 1365 throw Error(1, "No root element defined in TIFF structure"); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1366 } |
201 | 1367 |
1368 if (tiffHeader) | |
1369 { | |
1370 if (!tiffHeader->read(map_data, map_len)) throw Error(3, "TIFF"); | |
200 | 1371 #if EXIV2_TEST_VERSION(0,16,0) |
201 | 1372 rootDir->setStart(map_data + tiffHeader->offset()); |
200 | 1373 #else |
201 | 1374 rootDir->setStart(map_data + tiffHeader->ifdOffset()); |
200 | 1375 #endif |
201 | 1376 } |
1377 | |
1378 if (cr2Header) | |
1379 { | |
1380 rootDir->setStart(map_data + cr2Header->offset()); | |
1381 } | |
1382 | |
1383 TiffRwState::AutoPtr state(new TiffRwState(tiffHeader ? tiffHeader->byteOrder() : littleEndian, 0, createFct)); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1384 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1385 TiffReader reader(map_data, |
995 | 1386 map_len, |
1387 rootDir.get(), | |
1388 state); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1389 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1390 rootDir->accept(reader); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1391 |
995 | 1392 if (tiffHeader) |
201 | 1393 delete tiffHeader; |
995 | 1394 if (cr2Header) |
201 | 1395 delete cr2Header; |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1396 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1397 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1398 RawFile::~RawFile(void) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1399 { |
1008 | 1400 io_.munmap(); |
1401 io_.close(); | |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1402 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1403 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1404 const Value * RawFile::find(uint16_t tag, uint16_t group) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1405 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1406 TiffFinder finder(tag, group); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1407 rootDir->accept(finder); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1408 TiffEntryBase* te = dynamic_cast<TiffEntryBase*>(finder.result()); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1409 if (te) |
194 | 1410 { |
495 | 1411 DEBUG_1("(tag: %04x %04x) ", tag, group); |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1412 return te->pValue(); |
194 | 1413 } |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1414 else |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1415 return NULL; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1416 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1417 |
609
b690cecbf5b8
Use function(void) instead of function() for declaring functions which
zas_
parents:
586
diff
changeset
|
1418 unsigned long RawFile::preview_offset(void) |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1419 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1420 const Value *val; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1421 if (offset) return offset; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1422 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1423 if (type == Exiv2::ImageType::cr2) |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1424 { |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1425 val = find(0x111, Group::ifd0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1426 if (val) return val->toLong(); |
995 | 1427 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1428 return 0; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1429 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1430 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1431 val = find(0x201, Group::sub0_0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1432 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1433 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1434 val = find(0x201, Group::ifd0); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1435 if (val) return val->toLong(); |
995 | 1436 |
186
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1437 val = find(0x201, Group::ignr); // for PEF files, originally it was probably ifd2 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1438 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1439 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1440 val = find(0x111, Group::sub0_1); // dng |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1441 if (val) return val->toLong(); |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1442 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1443 return 0; |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1444 } |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1445 |
bd3fc1aa7fe9
a hack to read raw previews with exiv2 0.16, however it should be fixed
nadvornik
parents:
185
diff
changeset
|
1446 |
1008 | 1447 #endif |
178 | 1448 |
1449 | |
995 | 1450 #endif |
178 | 1451 /* HAVE_EXIV2 */ |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
1452 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |