annotate src/exiv2.cc @ 1238:947e603a52c6

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