forked from 0xInfection/TIDoS-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexiv2wrapper.cpp
More file actions
1408 lines (1251 loc) · 37.8 KB
/
Copy pathexiv2wrapper.cpp
File metadata and controls
1408 lines (1251 loc) · 37.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// *****************************************************************************
/*
* Copyright (C) 2006-2011 Olivier Tilloy <olivier@tilloy.net>
*
* This file is part of the pyexiv2 distribution.
*
* pyexiv2 is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* pyexiv2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with pyexiv2; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
*/
/*
Author: Olivier Tilloy <olivier@tilloy.net>
*/
// *****************************************************************************
#include "exiv2wrapper.hpp"
#include "boost/python/stl_iterator.hpp"
#include <fstream>
// Custom error codes for Exiv2 exceptions
#define METADATA_NOT_READ 101
#define NON_REPEATABLE 102
#define KEY_NOT_FOUND 103
#define INVALID_VALUE 104
#define EXISTING_PREFIX 105
#define BUILTIN_NS 106
#define NOT_REGISTERED 107
// Custom macros
#define CHECK_METADATA_READ \
if (!_dataRead) throw Exiv2::Error(METADATA_NOT_READ);
namespace exiv2wrapper
{
void Image::_instantiate_image()
{
_exifThumbnail = 0;
// If an exception is thrown, it has to be done outside of the
// Py_{BEGIN,END}_ALLOW_THREADS block.
Exiv2::Error error(0);
// Release the GIL to allow other python threads to run
// while opening the file.
Py_BEGIN_ALLOW_THREADS
try
{
if (_data != 0)
{
_image = Exiv2::ImageFactory::open(_data, _size);
}
else
{
_image = Exiv2::ImageFactory::open(_filename);
}
}
catch (Exiv2::Error& err)
{
error = err;
}
// Re-acquire the GIL
Py_END_ALLOW_THREADS
if (error.code() == 0)
{
assert(_image.get() != 0);
_dataRead = false;
}
else
{
throw error;
}
}
// Base constructor
Image::Image(const std::string& filename)
{
_filename = filename;
_data = 0;
_instantiate_image();
}
// From buffer constructor
Image::Image(const std::string& buffer, unsigned long size)
{
// Deep copy of the data buffer
_data = new Exiv2::byte[size];
for (unsigned long i = 0; i < size; ++i)
{
_data[i] = buffer[i];
}
_size = size;
_instantiate_image();
}
// Copy constructor
Image::Image(const Image& image)
{
_filename = image._filename;
_instantiate_image();
}
Image::~Image()
{
if (_data != 0)
{
delete[] _data;
}
if (_exifThumbnail != 0)
{
delete _exifThumbnail;
}
}
void Image::readMetadata()
{
// If an exception is thrown, it has to be done outside of the
// Py_{BEGIN,END}_ALLOW_THREADS block.
Exiv2::Error error(0);
// Release the GIL to allow other python threads to run
// while reading metadata.
Py_BEGIN_ALLOW_THREADS
try
{
_image->readMetadata();
_exifData = &_image->exifData();
_iptcData = &_image->iptcData();
_xmpData = &_image->xmpData();
_dataRead = true;
}
catch (Exiv2::Error& err)
{
error = err;
}
// Re-acquire the GIL
Py_END_ALLOW_THREADS
if (error.code() != 0)
{
throw error;
}
}
void Image::writeMetadata()
{
CHECK_METADATA_READ
// If an exception is thrown, it has to be done outside of the
// Py_{BEGIN,END}_ALLOW_THREADS block.
Exiv2::Error error(0);
// Release the GIL to allow other python threads to run
// while writing metadata.
Py_BEGIN_ALLOW_THREADS
try
{
_image->writeMetadata();
}
catch (Exiv2::Error& err)
{
error = err;
}
// Re-acquire the GIL
Py_END_ALLOW_THREADS
if (error.code() != 0)
{
throw error;
}
}
unsigned int Image::pixelWidth() const
{
CHECK_METADATA_READ
return _image->pixelWidth();
}
unsigned int Image::pixelHeight() const
{
CHECK_METADATA_READ
return _image->pixelHeight();
}
std::string Image::mimeType() const
{
CHECK_METADATA_READ
return _image->mimeType();
}
boost::python::list Image::exifKeys()
{
CHECK_METADATA_READ
boost::python::list keys;
for(Exiv2::ExifMetadata::iterator i = _exifData->begin();
i != _exifData->end();
++i)
{
keys.append(i->key());
}
return keys;
}
const ExifTag Image::getExifTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::ExifKey exifKey = Exiv2::ExifKey(key);
if(_exifData->findKey(exifKey) == _exifData->end())
{
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
return ExifTag(key, &(*_exifData)[key], _exifData, _image->byteOrder());
}
void Image::deleteExifTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::ExifKey exifKey = Exiv2::ExifKey(key);
Exiv2::ExifMetadata::iterator datum = _exifData->findKey(exifKey);
if(datum == _exifData->end())
{
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
_exifData->erase(datum);
}
boost::python::list Image::iptcKeys()
{
CHECK_METADATA_READ
boost::python::list keys;
for(Exiv2::IptcMetadata::iterator i = _iptcData->begin();
i != _iptcData->end();
++i)
{
// The key is appended to the list if and only if it is not already
// present.
if (keys.count(i->key()) == 0)
{
keys.append(i->key());
}
}
return keys;
}
const IptcTag Image::getIptcTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::IptcKey iptcKey = Exiv2::IptcKey(key);
if(_iptcData->findKey(iptcKey) == _iptcData->end())
{
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
return IptcTag(key, _iptcData);
}
void Image::deleteIptcTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::IptcKey iptcKey = Exiv2::IptcKey(key);
Exiv2::IptcMetadata::iterator dataIterator = _iptcData->findKey(iptcKey);
if (dataIterator == _iptcData->end())
{
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
while (dataIterator != _iptcData->end())
{
if (dataIterator->key() == key)
{
dataIterator = _iptcData->erase(dataIterator);
}
else
{
++dataIterator;
}
}
}
boost::python::list Image::xmpKeys()
{
CHECK_METADATA_READ
boost::python::list keys;
for(Exiv2::XmpMetadata::iterator i = _xmpData->begin();
i != _xmpData->end();
++i)
{
keys.append(i->key());
}
return keys;
}
const XmpTag Image::getXmpTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::XmpKey xmpKey = Exiv2::XmpKey(key);
if(_xmpData->findKey(xmpKey) == _xmpData->end())
{
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
return XmpTag(key, &(*_xmpData)[key]);
}
void Image::deleteXmpTag(std::string key)
{
CHECK_METADATA_READ
Exiv2::XmpKey xmpKey = Exiv2::XmpKey(key);
Exiv2::XmpMetadata::iterator i = _xmpData->findKey(xmpKey);
if(i != _xmpData->end())
{
_xmpData->erase(i);
}
else
throw Exiv2::Error(KEY_NOT_FOUND, key);
}
const std::string Image::getComment() const
{
CHECK_METADATA_READ
return _image->comment();
}
void Image::setComment(const std::string& comment)
{
CHECK_METADATA_READ
_image->setComment(comment);
}
void Image::clearComment()
{
CHECK_METADATA_READ
_image->clearComment();
}
boost::python::list Image::previews()
{
CHECK_METADATA_READ
boost::python::list previews;
Exiv2::PreviewManager pm(*_image);
Exiv2::PreviewPropertiesList props = pm.getPreviewProperties();
for (Exiv2::PreviewPropertiesList::const_iterator i = props.begin();
i != props.end();
++i)
{
previews.append(Preview(pm.getPreviewImage(*i)));
}
return previews;
}
void Image::copyMetadata(Image& other, bool exif, bool iptc, bool xmp) const
{
CHECK_METADATA_READ
if (!other._dataRead) throw Exiv2::Error(METADATA_NOT_READ);
if (exif)
other._image->setExifData(*_exifData);
if (iptc)
other._image->setIptcData(*_iptcData);
if (xmp)
other._image->setXmpData(*_xmpData);
}
std::string Image::getDataBuffer() const
{
std::string buffer;
// Release the GIL to allow other python threads to run
// while reading the image data.
Py_BEGIN_ALLOW_THREADS
Exiv2::BasicIo& io = _image->io();
unsigned long size = io.size();
long pos = -1;
if (io.isopen())
{
// Remember the current position in the stream
pos = io.tell();
// Go to the beginning of the stream
io.seek(0, Exiv2::BasicIo::beg);
}
else
{
io.open();
}
// Copy the data buffer in a string. Since the data buffer can contain null
// characters ('\x00'), the string cannot be simply constructed like that:
// _data = std::string((char*) previewImage.pData());
// because it would be truncated after the first occurence of a null
// character. Therefore, it has to be copied character by character.
// First allocate the memory for the whole string...
buffer.resize(size, ' ');
// ... then fill it with the raw data.
for (unsigned long i = 0; i < size; ++i)
{
io.read((Exiv2::byte*) &buffer[i], 1);
}
if (pos == -1)
{
// The stream was initially closed
io.close();
}
else
{
// Reset to the initial position in the stream
io.seek(pos, Exiv2::BasicIo::beg);
}
// Re-acquire the GIL
Py_END_ALLOW_THREADS
return buffer;
}
Exiv2::ByteOrder Image::getByteOrder() const
{
CHECK_METADATA_READ
return _image->byteOrder();
}
Exiv2::ExifThumb* Image::_getExifThumbnail()
{
CHECK_METADATA_READ
if (_exifThumbnail == 0)
{
_exifThumbnail = new Exiv2::ExifThumb(*_exifData);
}
return _exifThumbnail;
}
const std::string Image::getExifThumbnailMimeType()
{
return std::string(_getExifThumbnail()->mimeType());
}
const std::string Image::getExifThumbnailExtension()
{
return std::string(_getExifThumbnail()->extension());
}
void Image::writeExifThumbnailToFile(const std::string& path)
{
_getExifThumbnail()->writeFile(path);
}
const std::string Image::getExifThumbnailData()
{
Exiv2::DataBuf buffer = _getExifThumbnail()->copy();
// Copy the data buffer in a string. Since the data buffer can contain null
// characters ('\x00'), the string cannot be simply constructed like that:
// data = std::string((char*) buffer.pData_);
// because it would be truncated after the first occurence of a null
// character. Therefore, it has to be copied character by character.
// First allocate the memory for the whole string...
std::string data = std::string(buffer.size_, ' ');
// ... then fill it with the raw data.
for(unsigned int i = 0; i < buffer.size_; ++i)
{
data[i] = buffer.pData_[i];
}
return data;
}
void Image::eraseExifThumbnail()
{
_getExifThumbnail()->erase();
}
void Image::setExifThumbnailFromFile(const std::string& path)
{
_getExifThumbnail()->setJpegThumbnail(path);
}
void Image::setExifThumbnailFromData(const std::string& data)
{
const Exiv2::byte* buffer = (const Exiv2::byte*) data.c_str();
_getExifThumbnail()->setJpegThumbnail(buffer, data.size());
}
const std::string Image::getIptcCharset() const
{
CHECK_METADATA_READ
const char* charset = _iptcData->detectCharset();
if (charset != 0)
{
return std::string(charset);
}
else
{
return std::string();
}
}
ExifTag::ExifTag(const std::string& key,
Exiv2::Exifdatum* datum, Exiv2::ExifData* data,
Exiv2::ByteOrder byteOrder):
_key(key), _byteOrder(byteOrder)
{
if (datum != 0 && data != 0)
{
_datum = datum;
_data = data;
}
else
{
_datum = new Exiv2::Exifdatum(_key);
_data = 0;
}
// Conditional code, exiv2 0.21 changed APIs we need
// (see https://bugs.launchpad.net/pyexiv2/+bug/684177).
#if EXIV2_TEST_VERSION(0,21,0)
Exiv2::ExifKey exifKey(key);
_type = Exiv2::TypeInfo::typeName(exifKey.defaultTypeId());
// Where available, extract the type from the metadata, it is more reliable
// than static type information. The exception is for user comments, for
// which we’d rather keep the 'Comment' type instead of 'Undefined'.
if ((_data != 0) && (_type != "Comment"))
{
_type = _datum->typeName();
}
_name = exifKey.tagName();
_label = exifKey.tagLabel();
_description = exifKey.tagDesc();
_sectionName = Exiv2::ExifTags::sectionName(exifKey);
// The section description is not exposed in the API any longer
// (see http://dev.exiv2.org/issues/744). For want of anything better,
// fall back on the section’s name.
_sectionDescription = _sectionName;
#else
const uint16_t tag = _datum->tag();
const Exiv2::IfdId ifd = _datum->ifdId();
_type = Exiv2::TypeInfo::typeName(Exiv2::ExifTags::tagType(tag, ifd));
// Where available, extract the type from the metadata, it is more reliable
// than static type information. The exception is for user comments, for
// which we’d rather keep the 'Comment' type instead of 'Undefined'.
if ((_data != 0) && (_type != "Comment"))
{
_type = _datum->typeName();
}
_name = Exiv2::ExifTags::tagName(tag, ifd);
_label = Exiv2::ExifTags::tagLabel(tag, ifd);
_description = Exiv2::ExifTags::tagDesc(tag, ifd);
_sectionName = Exiv2::ExifTags::sectionName(tag, ifd);
_sectionDescription = Exiv2::ExifTags::sectionDesc(tag, ifd);
#endif
}
ExifTag::~ExifTag()
{
if (_data == 0)
{
delete _datum;
}
}
void ExifTag::setRawValue(const std::string& value)
{
int result = _datum->setValue(value);
if (result != 0)
{
throw Exiv2::Error(INVALID_VALUE);
}
}
void ExifTag::setParentImage(Image& image)
{
Exiv2::ExifData* data = image.getExifData();
if (data == _data)
{
// The parent image is already the one passed as a parameter.
// This happens when replacing a tag by itself. In this case, don’t do
// anything (see https://bugs.launchpad.net/pyexiv2/+bug/622739).
return;
}
_data = data;
std::string value = _datum->toString();
delete _datum;
_datum = &(*_data)[_key.key()];
_datum->setValue(value);
_byteOrder = image.getByteOrder();
}
const std::string ExifTag::getKey()
{
return _key.key();
}
const std::string ExifTag::getType()
{
return _type;
}
const std::string ExifTag::getName()
{
return _name;
}
const std::string ExifTag::getLabel()
{
return _label;
}
const std::string ExifTag::getDescription()
{
return _description;
}
const std::string ExifTag::getSectionName()
{
return _sectionName;
}
const std::string ExifTag::getSectionDescription()
{
return _sectionDescription;
}
const std::string ExifTag::getRawValue()
{
return _datum->toString();
}
const std::string ExifTag::getHumanValue()
{
return _datum->print(_data);
}
int ExifTag::getByteOrder()
{
return _byteOrder;
}
IptcTag::IptcTag(const std::string& key, Exiv2::IptcData* data): _key(key)
{
_from_data = (data != 0);
if (_from_data)
{
_data = data;
}
else
{
_data = new Exiv2::IptcData();
_data->add(Exiv2::Iptcdatum(_key));
}
Exiv2::IptcMetadata::iterator iterator = _data->findKey(_key);
const uint16_t tag = iterator->tag();
const uint16_t record = iterator->record();
_type = Exiv2::TypeInfo::typeName(Exiv2::IptcDataSets::dataSetType(tag, record));
_name = Exiv2::IptcDataSets::dataSetName(tag, record);
_title = Exiv2::IptcDataSets::dataSetTitle(tag, record);
_description = Exiv2::IptcDataSets::dataSetDesc(tag, record);
// What is the photoshop name anyway? Where is it used?
_photoshopName = Exiv2::IptcDataSets::dataSetPsName(tag, record);
_repeatable = Exiv2::IptcDataSets::dataSetRepeatable(tag, record);
_recordName = Exiv2::IptcDataSets::recordName(record);
_recordDescription = Exiv2::IptcDataSets::recordDesc(record);
if (_from_data)
{
// Check that we are not trying to assign multiple values to a tag that
// is not repeatable.
unsigned int nb_values = 0;
for(Exiv2::IptcMetadata::iterator iterator = _data->begin();
iterator != _data->end(); ++iterator)
{
if (iterator->key() == key)
{
++nb_values;
if (!_repeatable && (nb_values > 1))
{
throw Exiv2::Error(NON_REPEATABLE);
}
}
}
}
}
IptcTag::~IptcTag()
{
if (!_from_data)
{
delete _data;
}
}
void IptcTag::setRawValues(const boost::python::list& values)
{
if (!_repeatable && (boost::python::len(values) > 1))
{
// The tag is not repeatable but we are trying to assign it more than
// one value.
throw Exiv2::Error(NON_REPEATABLE);
}
unsigned int index = 0;
unsigned int max = boost::python::len(values);
Exiv2::IptcMetadata::iterator iterator = _data->findKey(_key);
while (index < max)
{
std::string value = boost::python::extract<std::string>(values[index++]);
if (iterator != _data->end())
{
// Override an existing value
int result = iterator->setValue(value);
if (result != 0)
{
throw Exiv2::Error(INVALID_VALUE);
}
// Jump to the next datum matching the key
++iterator;
while ((iterator != _data->end()) && (iterator->key() != _key.key()))
{
++iterator;
}
}
else
{
// Append a new value
Exiv2::Iptcdatum datum(_key);
int result = datum.setValue(value);
if (result != 0)
{
throw Exiv2::Error(INVALID_VALUE);
}
int state = _data->add(datum);
if (state == 6)
{
throw Exiv2::Error(NON_REPEATABLE);
}
// Reset iterator that has been invalidated by appending a datum
iterator = _data->end();
}
}
// Erase the remaining values if any
while (iterator != _data->end())
{
if (iterator->key() == _key.key())
{
iterator = _data->erase(iterator);
}
else
{
++iterator;
}
}
}
void IptcTag::setParentImage(Image& image)
{
Exiv2::IptcData* data = image.getIptcData();
if (data == _data)
{
// The parent image is already the one passed as a parameter.
// This happens when replacing a tag by itself. In this case, don’t do
// anything (see https://bugs.launchpad.net/pyexiv2/+bug/622739).
return;
}
const boost::python::list values = getRawValues();
delete _data;
_from_data = true;
_data = data;
setRawValues(values);
}
const std::string IptcTag::getKey()
{
return _key.key();
}
const std::string IptcTag::getType()
{
return _type;
}
const std::string IptcTag::getName()
{
return _name;
}
const std::string IptcTag::getTitle()
{
return _title;
}
const std::string IptcTag::getDescription()
{
return _description;
}
const std::string IptcTag::getPhotoshopName()
{
return _photoshopName;
}
const bool IptcTag::isRepeatable()
{
return _repeatable;
}
const std::string IptcTag::getRecordName()
{
return _recordName;
}
const std::string IptcTag::getRecordDescription()
{
return _recordDescription;
}
const boost::python::list IptcTag::getRawValues()
{
boost::python::list values;
for(Exiv2::IptcMetadata::iterator iterator = _data->begin();
iterator != _data->end(); ++iterator)
{
if (iterator->key() == _key.key())
{
values.append(iterator->toString());
}
}
return values;
}
XmpTag::XmpTag(const std::string& key, Exiv2::Xmpdatum* datum): _key(key)
{
_from_datum = (datum != 0);
if (_from_datum)
{
_datum = datum;
_exiv2_type = datum->typeName();
}
else
{
_datum = new Exiv2::Xmpdatum(_key);
_exiv2_type = Exiv2::TypeInfo::typeName(Exiv2::XmpProperties::propertyType(_key));
}
const char* title = Exiv2::XmpProperties::propertyTitle(_key);
if (title != 0)
{
_title = title;
}
const char* description = Exiv2::XmpProperties::propertyDesc(_key);
if (description != 0)
{
_description = description;
}
const Exiv2::XmpPropertyInfo* info = Exiv2::XmpProperties::propertyInfo(_key);
if (info != 0)
{
_name = info->name_;
_type = info->xmpValueType_;
}
}
XmpTag::~XmpTag()
{
if (!_from_datum)
{
delete _datum;
}
}
void XmpTag::setTextValue(const std::string& value)
{
_datum->setValue(value);
}
void XmpTag::setArrayValue(const boost::python::list& values)
{
// Reset the value
_datum->setValue(0);
for(boost::python::stl_input_iterator<std::string> iterator(values);
iterator != boost::python::stl_input_iterator<std::string>();
++iterator)
{
_datum->setValue(*iterator);
}
}
void XmpTag::setLangAltValue(const boost::python::dict& values)
{
// Reset the value
_datum->setValue(0);
for(boost::python::stl_input_iterator<std::string> iterator(values);
iterator != boost::python::stl_input_iterator<std::string>();
++iterator)
{
std::string key = *iterator;
std::string value = boost::python::extract<std::string>(values.get(key));
_datum->setValue("lang=\"" + key + "\" " + value);
}
}
void XmpTag::setParentImage(Image& image)
{
Exiv2::Xmpdatum* datum = &(*image.getXmpData())[_key.key()];
if (datum == _datum)
{
// The parent image is already the one passed as a parameter.
// This happens when replacing a tag by itself. In this case, don’t do
// anything (see https://bugs.launchpad.net/pyexiv2/+bug/622739).
return;
}
switch (Exiv2::XmpProperties::propertyType(_key))
{
case Exiv2::xmpText:
{
const std::string value = getTextValue();
delete _datum;
_from_datum = true;
_datum = &(*image.getXmpData())[_key.key()];
setTextValue(value);
break;
}
case Exiv2::xmpAlt:
case Exiv2::xmpBag:
case Exiv2::xmpSeq:
{
const boost::python::list value = getArrayValue();
delete _datum;
_from_datum = true;
_datum = &(*image.getXmpData())[_key.key()];
setArrayValue(value);
break;
}
case Exiv2::langAlt:
{
const boost::python::dict value = getLangAltValue();
delete _datum;
_from_datum = true;
_datum = &(*image.getXmpData())[_key.key()];
setLangAltValue(value);
break;
}
default:
// Should not happen, this case is here for the sake
// of completeness and to avoid compiler warnings.
assert(0);
}
}
const std::string XmpTag::getKey()
{
return _key.key();
}