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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
|
// =================================================================================================
// Copyright Adobe
// Copyright 2008 Adobe
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it. If you have received this file from a source other
// than Adobe, then your use, modification, or distribution of it requires the prior written permission
// of Adobe.
// =================================================================================================
#include "public/include/XMP_Environment.h" // ! XMP_Environment.h must be the first included header.
#include <sstream>
#include "public/include/XMP_Const.h"
#include "public/include/XMP_IO.hpp"
#include "XMPFiles/source/XMPFiles_Impl.hpp"
#include "source/XMPFiles_IO.hpp"
#include "source/XIO.hpp"
// must have access to handler class fields...
#include "XMPFiles/source/FormatSupport/RIFF.hpp"
#include "XMPFiles/source/FileHandlers/RIFF_Handler.hpp"
#include "XMPFiles/source/FormatSupport/RIFF_Support.hpp"
#include "XMPFiles/source/FormatSupport/Reconcile_Impl.hpp"
#define MIN(a, b) ((a) < (b) ? (a) : (b))
using namespace RIFF;
namespace RIFF {
// The minimum BEXT chunk size should be 610 (incl. 8 byte header/size field)
XMP_Int32 MIN_BEXT_SIZE = 610; // = > 8 + ( 256+32+32+10+8+4+4+2+64+190+0 )
// An assumed secure max value of 100 MB.
XMP_Int32 MAX_BEXT_SIZE = 100 * 1024 * 1024;
// CR8R, PrmL have fixed sizes
XMP_Int32 CR8R_SIZE = 0x5C;
XMP_Int32 PRML_SIZE = 0x122;
// IDIT chunk size
XMP_Int32 IDIT_SIZE = 0x1A;
static const char* sHexChars = "0123456789ABCDEF";
// Encode a string of raw data bytes into a HexString (w/o spaces, i.e. "DEADBEEF").
// No insertation/acceptance of whitespace/linefeeds. No output/tolerance of lowercase.
// returns true, if *all* characters returned are zero (or if 0 bytes are returned).
static bool EncodeToHexString ( XMP_StringPtr rawStr,
XMP_StringLen rawLen,
std::string* encodedStr )
{
bool allZero = true; // assume for now
if ( (rawStr == 0) && (rawLen != 0) )
XMP_Throw ( "EncodeToHexString: null rawStr", kXMPErr_BadParam );
if ( encodedStr == 0 )
XMP_Throw ( "EncodeToHexString: null encodedStr", kXMPErr_BadParam );
encodedStr->erase();
if ( rawLen == 0 ) return allZero;
encodedStr->reserve ( rawLen * 2 );
for( XMP_Uns32 i = 0; i < rawLen; i++ )
{
// first, second nibble
XMP_Uns8 first = rawStr[i] >> 4;
XMP_Uns8 second = rawStr[i] & 0xF;
if ( allZero && (( first != 0 ) || (second != 0)))
allZero = false;
encodedStr->append( 1, sHexChars[first] );
encodedStr->append( 1, sHexChars[second] );
}
return allZero;
} // EncodeToHexString
// -------------------------------------------------------------------------------------------------
// DecodeFromHexString
// ----------------
//
// Decode a hex string to raw data bytes.
// * Input must be all uppercase and w/o any whitespace, strictly (0-9A-Z)* (i.e. "DEADBEEF0099AABC")
// * No insertation/acceptance of whitespace/linefeeds.
// * bNo use/tolerance of lowercase.
// * Number of bytes in the encoded String must be even.
// * returns true if everything went well, false if illegal (non 0-9A-F) character encountered
static bool DecodeFromHexString ( XMP_StringPtr encodedStr,
XMP_StringLen encodedLen,
std::string* rawStr )
{
if ( (encodedLen % 2) != 0 )
return false;
rawStr->erase();
if ( encodedLen == 0 ) return true;
rawStr->reserve ( encodedLen / 2 );
for( XMP_Uns32 i = 0; i < encodedLen; )
{
XMP_Uns8 upperNibble = encodedStr[i];
if ( (upperNibble < 48) || ( (upperNibble > 57 ) && ( upperNibble < 65 ) ) || (upperNibble > 70) )
return false;
if ( upperNibble >= 65 )
upperNibble -= 7; // shift A-F area adjacent to 0-9
upperNibble -= 48; // 'shift' to a value [0..15]
upperNibble = ( upperNibble << 4 );
i++;
XMP_Uns8 lowerNibble = encodedStr[i];
if ( (lowerNibble < 48) || ( (lowerNibble > 57 ) && ( lowerNibble < 65 ) ) || (lowerNibble > 70) )
return false;
if ( lowerNibble >= 65 )
lowerNibble -= 7; // shift A-F area adjacent to 0-9
lowerNibble -= 48; // 'shift' to a value [0..15]
i++;
rawStr->append ( 1, (upperNibble + lowerNibble) );
}
return true;
} // DecodeFromHexString
// Converts input string to an ascii output string
// - terminates at first 0
// - replaces all non ascii with 0x3F ('?')
// - produces up to maxOut characters (note that several UTF-8 character bytes can 'melt' to one byte '?' in ascii.)
static XMP_StringLen convertToASCII( XMP_StringPtr input, XMP_StringLen inputLen, std::string* output, XMP_StringLen maxOutputLen )
{
if ( (input == 0) && (inputLen != 0) )
XMP_Throw ( "convertToASCII: null input string", kXMPErr_BadParam );
if ( output == 0)
XMP_Throw ( "convertToASCII: null output string", kXMPErr_BadParam );
if ( maxOutputLen == 0)
XMP_Throw ( "convertToASCII: zero maxOutputLen chars", kXMPErr_BadParam );
output->reserve(inputLen);
output->erase();
bool isUTF8 = ReconcileUtils::IsUTF8( input, inputLen );
XMP_StringLen outputLen = 0;
for ( XMP_Uns32 i=0; i < inputLen; i++ )
{
XMP_Uns8 c = (XMP_Uns8) input[i];
if ( c == 0 ) // early 0 termination, leave.
break;
if ( c > 127 ) // uft-8 multi-byte sequence.
{
if ( isUTF8 ) // skip all high bytes
{
// how many bytes in this ?
if ( c >= 0xC2 && c <= 0xDF )
i+=1; // 2-byte sequence
else if ( c >= 0xE0 && c <= 0xEF )
i+=2; // 3-byte sequence
else if ( c >= 0xF0 && c <= 0xF4 )
i+=3; // 4-byte sequence
else
continue; //invalid sequence, look for next 'low' byte ..
} // thereafter and 'else': just append a question mark:
output->append( 1, '?' );
}
else // regular valid ascii. 1 byte.
{
output->append( 1, input[i] );
}
outputLen++;
if ( outputLen >= maxOutputLen )
break; // (may be even or even greater due to UFT-8 multi-byte jumps)
}
return outputLen;
}
/**
* ensures that native property gets returned as UTF-8 (may or mayn not already be UTF-8)
* - also takes care of "moot padding" (pre-mature zero termination)
* - propertyExists: it is important to know if there as an existing, non zero property
* even (in the event of serverMode) it is not actually returned, but an empty string instead.
*/
static std::string nativePropertyToUTF8 ( XMP_StringPtr cstring, XMP_StringLen maxSize, bool* propertyExists )
{
// the value might be properly 0-terminated, prematurely or not
// at all, hence scan through to find actual size
XMP_StringLen size = 0;
for ( size = 0; size < maxSize; size++ )
{
if ( cstring[size] == 0 )
break;
}
(*propertyExists) = ( size > 0 );
std::string utf8("");
if ( ReconcileUtils::IsUTF8( cstring, size ) )
utf8 = std::string( cstring, size ); //use utf8 directly
else
{
if ( ! ignoreLocalText )
{
#if ! UNIX_ENV // n/a anyway, since always ignoreLocalText on Unix
ReconcileUtils::LocalToUTF8( cstring, size, &utf8 );
#endif
}
}
return utf8;
}
// reads maxSize bytes from file (not "up to", exactly fullSize)
// puts it into a string, sets respective tree property
static std::string getBextField ( const char* data, XMP_Uns32 offset, XMP_Uns32 maxSize )
{
if (data == 0)
XMP_Throw ( "getBextField: null data pointer", kXMPErr_BadParam );
if ( maxSize == 0)
XMP_Throw ( "getBextField: maxSize must be greater than 0", kXMPErr_BadParam );
std::string r;
convertToASCII( data+offset, maxSize, &r, maxSize );
return r;
}
static void importBextChunkToXMP( RIFF_MetaHandler* handler, ValueChunk* bextChunk )
{
// if there's a bext chunk, there is data...
handler->containsXMP = true; // very important for treatment on caller level
XMP_Enforce( bextChunk->oldSize >= MIN_BEXT_SIZE );
XMP_Enforce( bextChunk->oldSize < MAX_BEXT_SIZE );
const char* data = bextChunk->oldValue.data();
std::string value;
// register bext namespace:
SXMPMeta::RegisterNamespace( kXMP_NS_BWF, "bext:", 0 );
// bextDescription ------------------------------------------------
value = getBextField( data, 0, 256 );
if ( value.size() > 0 )
handler->xmpObj.SetProperty( bextDescription.ns, bextDescription.prop, value.c_str() );
// bextOriginator -------------------------------------------------
value = getBextField( data, 256, 32 );
if ( value.size() > 0 )
handler->xmpObj.SetProperty( bextOriginator.ns , bextOriginator.prop, value.c_str() );
// bextOriginatorRef ----------------------------------------------
value = getBextField( data, 256+32, 32 );
if ( value.size() > 0 )
handler->xmpObj.SetProperty( bextOriginatorRef.ns , bextOriginatorRef.prop, value.c_str() );
// bextOriginationDate --------------------------------------------
value = getBextField( data, 256+32+32, 10 );
if ( value.size() > 0 )
handler->xmpObj.SetProperty( bextOriginationDate.ns , bextOriginationDate.prop, value.c_str() );
// bextOriginationTime --------------------------------------------
value = getBextField( data, 256+32+32+10, 8 );
if ( value.size() > 0 )
handler->xmpObj.SetProperty( bextOriginationTime.ns , bextOriginationTime.prop, value.c_str() );
// bextTimeReference ----------------------------------------------
// thanx to nice byte order, all 8 bytes can be read as one:
XMP_Uns64 timeReferenceFull = GetUns64LE( &(data[256+32+32+10+8 ] ) );
value.erase();
SXMPUtils::ConvertFromInt64( timeReferenceFull, "%llu", &value );
handler->xmpObj.SetProperty( bextTimeReference.ns, bextTimeReference.prop, value );
// bextVersion ----------------------------------------------------
XMP_Uns16 bwfVersion = GetUns16LE( &(data[256+32+32+10+8+8] ) );
value.erase();
SXMPUtils::ConvertFromInt( bwfVersion, "", &value );
handler->xmpObj.SetProperty( bextVersion.ns, bextVersion.prop, value );
// bextUMID -------------------------------------------------------
// binary string is already in memory, must convert to hex string
std::string umidString;
bool allZero = EncodeToHexString( &(data[256+32+32+10+8+8+2]), 64, &umidString );
if (! allZero )
handler->xmpObj.SetProperty( bextUMID.ns, bextUMID.prop, umidString );
// bextCodingHistory ----------------------------------------------
bool hasCodingHistory = bextChunk->oldSize > MIN_BEXT_SIZE;
if ( hasCodingHistory )
{
XMP_StringLen codingHistorySize = (XMP_StringLen) (bextChunk->oldSize - MIN_BEXT_SIZE);
std::string codingHistory;
convertToASCII( &data[MIN_BEXT_SIZE-8], codingHistorySize, &codingHistory, codingHistorySize );
if (! codingHistory.empty() )
handler->xmpObj.SetProperty( bextCodingHistory.ns, bextCodingHistory.prop, codingHistory );
}
} // importBextChunkToXMP
static XMP_Int32 GetMonth( const char * valuePtr )
{
// This will check 3 characters (4,5,6) of the input and return corresponding months as 1,2,...,12
// else it will return 0
// Input should as follows : wda mon dd hh:mm:ss yyyy\n\0
char firstChar = tolower( valuePtr[ 4 ] );
char secondChar = tolower( valuePtr[ 5 ] );
char thirdChar = tolower( valuePtr[ 6 ] );
if ( firstChar == 'j' && secondChar == 'a' && thirdChar == 'n' )
return 1;
if ( firstChar == 'f' && secondChar == 'e' && thirdChar == 'b' )
return 2;
if ( firstChar == 'm' && secondChar == 'a' )
{
if ( thirdChar == 'r' )
return 3;
if ( thirdChar == 'y' )
return 5;
}
if ( firstChar == 'a' && secondChar == 'p' && thirdChar == 'r' )
return 4;
if ( firstChar == 'j' && secondChar == 'u' )
{
if ( thirdChar == 'n' )
return 6;
if ( thirdChar == 'l' )
return 7;
}
if ( firstChar == 'a' && secondChar == 'u' && thirdChar == 'g' )
return 8;
if ( firstChar == 's' && secondChar == 'e' && thirdChar == 'p' )
return 9;
if ( firstChar == 'o' && secondChar == 'c' && thirdChar == 't' )
return 10;
if ( firstChar == 'n' && secondChar == 'o' && thirdChar == 'v' )
return 11;
if ( firstChar == 'd' && secondChar == 'e' && thirdChar == 'c' )
return 12;
return 0;
}
static XMP_Uns32 GatherUnsignedInt ( const char * strPtr, size_t count )
{
XMP_Uns32 value = 0;
const char * strEnd = strPtr + count;
while ( strPtr < strEnd ) {
if ( *strPtr == ' ' ) ++strPtr;
else break;
}
while ( strPtr < strEnd ) {
char ch = *strPtr;
if ( (ch < '0') || (ch > '9') ) break;
value = value*10 + (ch - '0');
++strPtr;
}
return value;
} // GatherUnsignedInt
static void importIditChunkToXMP( RIFF_MetaHandler* handler, ValueChunk* iditChunk )
{
// if there iss a IDIT chunk, there is data...
handler->containsXMP = true; // very important for treatment on caller level
// Size has been already checked in calling function
XMP_Enforce( iditChunk->oldSize == IDIT_SIZE + 8 );
const char * valuePtr = iditChunk->oldValue.c_str();
XMP_Enforce( valuePtr[ IDIT_SIZE - 2 ] == 0x0A );
XMP_Enforce( valuePtr[ 13 ] == ':' && valuePtr[ 16 ] == ':' );
XMP_DateTime dateTime;
dateTime.month = GetMonth( valuePtr );
dateTime.day = GatherUnsignedInt( valuePtr + 8, 2 );
dateTime.hour = GatherUnsignedInt( valuePtr + 11, 2 );
dateTime.minute = GatherUnsignedInt( valuePtr + 14, 2 );
dateTime.second = GatherUnsignedInt( valuePtr + 17, 2 );
dateTime.year = GatherUnsignedInt( valuePtr + 20, 4 );
handler->xmpObj.SetProperty_Date( kXMP_NS_EXIF, "DateTimeOriginal", dateTime );
} // importIditChunkToXMP
static void importPrmLToXMP( RIFF_MetaHandler* handler, ValueChunk* prmlChunk )
{
bool haveXMP = false;
XMP_Enforce( prmlChunk->oldSize == PRML_SIZE );
PrmLBoxContent rawPrmL;
XMP_Assert ( sizeof ( rawPrmL ) == PRML_SIZE - 8 ); // double check tight packing.
XMP_Assert ( sizeof ( rawPrmL.filePath ) == 260 );
memcpy ( &rawPrmL, prmlChunk->oldValue.data(), sizeof (rawPrmL) );
if ( rawPrmL.magic != 0xBEEFCAFE ) {
Flip4 ( &rawPrmL.exportType ); // The only numeric field that we care about.
}
rawPrmL.filePath[259] = 0; // Ensure a terminating nul.
if ( rawPrmL.filePath[0] != 0 ) {
if ( rawPrmL.filePath[0] == '/' ) {
haveXMP = true;
handler->xmpObj.SetStructField ( kXMP_NS_CreatorAtom, "macAtom",
kXMP_NS_CreatorAtom, "posixProjectPath", rawPrmL.filePath );
} else if ( XMP_LitNMatch ( rawPrmL.filePath, "\\\\?\\", 4 ) ) {
haveXMP = true;
handler->xmpObj.SetStructField ( kXMP_NS_CreatorAtom, "windowsAtom",
kXMP_NS_CreatorAtom, "uncProjectPath", rawPrmL.filePath );
}
}
const char * exportStr = 0;
switch ( rawPrmL.exportType ) {
case kExportTypeMovie : exportStr = "movie"; break;
case kExportTypeStill : exportStr = "still"; break;
case kExportTypeAudio : exportStr = "audio"; break;
case kExportTypeCustom : exportStr = "custom"; break;
}
if ( exportStr != 0 ) {
haveXMP = true;
handler->xmpObj.SetStructField ( kXMP_NS_DM, "projectRef", kXMP_NS_DM, "type", exportStr );
}
handler->containsXMP |= haveXMP; // mind the '|='
} // importCr8rToXMP
static void importCr8rToXMP( RIFF_MetaHandler* handler, ValueChunk* cr8rChunk )
{
bool haveXMP = false;
XMP_Enforce( cr8rChunk->oldSize == CR8R_SIZE );
Cr8rBoxContent rawCr8r;
XMP_Assert ( sizeof ( rawCr8r ) == CR8R_SIZE - 8 ); // double check tight packing.
memcpy ( &rawCr8r, cr8rChunk->oldValue.data(), sizeof (rawCr8r) );
if ( rawCr8r.magic != 0xBEEFCAFE ) {
Flip4 ( &rawCr8r.creatorCode ); // The only numeric fields that we care about.
Flip4 ( &rawCr8r.appleEvent );
}
std::string fieldPath;
SXMPUtils::ComposeStructFieldPath ( kXMP_NS_CreatorAtom, "macAtom", kXMP_NS_CreatorAtom, "applicationCode", &fieldPath );
if ( rawCr8r.creatorCode != 0 ) {
haveXMP = true;
handler->xmpObj.SetProperty_Int64 ( kXMP_NS_CreatorAtom, fieldPath.c_str(), (XMP_Int64)rawCr8r.creatorCode ); // ! Unsigned trickery.
}
SXMPUtils::ComposeStructFieldPath ( kXMP_NS_CreatorAtom, "macAtom", kXMP_NS_CreatorAtom, "invocationAppleEvent", &fieldPath );
if ( rawCr8r.appleEvent != 0 ) {
haveXMP = true;
handler->xmpObj.SetProperty_Int64 ( kXMP_NS_CreatorAtom, fieldPath.c_str(), (XMP_Int64)rawCr8r.appleEvent ); // ! Unsigned trickery.
}
rawCr8r.fileExt[15] = 0; // Ensure a terminating nul.
if ( rawCr8r.fileExt[0] != 0 ) {
haveXMP = true;
handler->xmpObj.SetStructField ( kXMP_NS_CreatorAtom, "windowsAtom", kXMP_NS_CreatorAtom, "extension", rawCr8r.fileExt );
}
rawCr8r.appOptions[15] = 0; // Ensure a terminating nul.
if ( rawCr8r.appOptions[0] != 0 ) {
haveXMP = true;
handler->xmpObj.SetStructField ( kXMP_NS_CreatorAtom, "windowsAtom", kXMP_NS_CreatorAtom, "invocationFlags", rawCr8r.appOptions );
}
rawCr8r.appName[31] = 0; // Ensure a terminating nul.
if ( rawCr8r.appName[0] != 0 ) {
haveXMP = true;
handler->xmpObj.SetProperty ( kXMP_NS_XMP, "CreatorTool", rawCr8r.appName );
}
handler->containsXMP |= haveXMP; // mind the '|='
} // importCr8rToXMP
static void importListChunkToXMP( RIFF_MetaHandler* handler, ContainerChunk* listChunk, Mapping mapping[], bool xmpHasPriority )
{
valueMap* cm = &listChunk->childmap;
for (int p=0; mapping[p].chunkID != 0; p++) // go through legacy chunks
{
valueMapIter result = cm->find(mapping[p].chunkID);
if( result != cm->end() ) // if value found
{
ValueChunk* propChunk = result->second;
bool propertyExists = false;
std::string utf8 = nativePropertyToUTF8(
propChunk->oldValue.c_str(),
(XMP_StringLen)propChunk->oldValue.size(), &propertyExists );
if ( utf8.size() > 0 ) // if property is not-empty, set Property
{
switch ( mapping[p].propType )
{
case prop_TIMEVALUE:
if ( xmpHasPriority &&
handler->xmpObj.DoesStructFieldExist( mapping[p].ns, mapping[p].prop, kXMP_NS_DM, "timeValue" ))
break; // skip if XMP has precedence and exists
handler->xmpObj.SetStructField( mapping[p].ns, mapping[p].prop,
kXMP_NS_DM, "timeValue", utf8.c_str() );
break;
case prop_LOCALIZED_TEXT:
if ( xmpHasPriority && handler->xmpObj.GetLocalizedText( mapping[p].ns ,
mapping[p].prop, "" , "x-default", 0, 0, 0 ))
break; // skip if XMP has precedence and exists
handler->xmpObj.SetLocalizedText( mapping[p].ns , mapping[p].prop,
"" , "x-default" , utf8.c_str() );
if ( mapping[p].chunkID == kPropChunkINAM )
handler->hasListInfoINAM = true; // needs to be known for special 3-way merge around dc:title
break;
case prop_ARRAYITEM:
if ( xmpHasPriority &&
handler->xmpObj.DoesArrayItemExist( mapping[p].ns, mapping[p].prop, 1 ))
break; // skip if XMP has precedence and exists
handler->xmpObj.DeleteProperty( mapping[p].ns, mapping[p].prop );
handler->xmpObj.AppendArrayItem( mapping[p].ns, mapping[p].prop, kXMP_PropValueIsArray, utf8.c_str(), kXMP_NoOptions );
break;
case prop_SIMPLE:
if ( xmpHasPriority &&
handler->xmpObj.DoesPropertyExist( mapping[p].ns, mapping[p].prop ))
break; // skip if XMP has precedence and exists
handler->xmpObj.SetProperty( mapping[p].ns, mapping[p].prop, utf8.c_str() );
break;
default:
XMP_Throw( "internal error" , kXMPErr_InternalFailure );
}
handler->containsXMP = true; // very important for treatment on caller level
}
else if ( ! propertyExists) // otherwise remove it.
{ // [2389942] don't, if legacy value is existing but non-retrievable (due to server mode)
switch ( mapping[p].propType )
{
case prop_TIMEVALUE:
if ( (!xmpHasPriority) && // forward deletion only if XMP has no priority
handler->xmpObj.DoesPropertyExist( mapping[p].ns, mapping[p].prop ))
handler->xmpObj.DeleteProperty( mapping[p].ns, mapping[p].prop );
break;
case prop_LOCALIZED_TEXT:
if ( (!xmpHasPriority) && // forward deletion only if XMP has no priority
handler->xmpObj.DoesPropertyExist( mapping[p].ns, mapping[p].prop ))
handler->xmpObj.DeleteLocalizedText( mapping[p].ns, mapping[p].prop, "", "x-default" );
break;
case prop_ARRAYITEM:
case prop_SIMPLE:
if ( (!xmpHasPriority) && // forward deletion only if XMP has no priority
handler->xmpObj.DoesPropertyExist( mapping[p].ns, mapping[p].prop ))
handler->xmpObj.DeleteProperty( mapping[p].ns, mapping[p].prop );
break;
default:
XMP_Throw( "internal error" , kXMPErr_InternalFailure );
}
}
}
} // for
}
void importProperties( RIFF_MetaHandler* handler )
{
bool hasDigest = handler->xmpObj.GetProperty( kXMP_NS_WAV, "NativeDigest", NULL , NULL );
if ( hasDigest )
{
// remove! since it now becomse a 'new' handler file
handler->xmpObj.DeleteProperty( kXMP_NS_WAV, "NativeDigest" );
}
// BWF Bext extension chunk -----------------------------------------------
if ( handler->parent->format == kXMP_WAVFile && // applies only to WAV
handler->bextChunk != 0 ) //skip if no BEXT chunk found.
{
importBextChunkToXMP( handler, handler->bextChunk );
}
// PrmL chunk --------------------------------------------------------------
if ( handler->prmlChunk != 0 && handler->prmlChunk->oldSize == PRML_SIZE )
{
importPrmLToXMP( handler, handler->prmlChunk );
}
// Cr8r chunk --------------------------------------------------------------
if ( handler->cr8rChunk != 0 && handler->cr8rChunk->oldSize == CR8R_SIZE )
{
importCr8rToXMP( handler, handler->cr8rChunk );
}
// LIST:INFO --------------------------------------------------------------
if ( handler->listInfoChunk != 0) //skip if no LIST:INFO chunk found.
importListChunkToXMP( handler, handler->listInfoChunk, listInfoProps, hasDigest );
// LIST:Tdat --------------------------------------------------------------
if ( handler->listTdatChunk != 0)
importListChunkToXMP( handler, handler->listTdatChunk, listTdatProps, hasDigest );
// DISP (do last, higher priority than INAM ) -----------------------------
bool takeXMP = false; // assume for now
if ( hasDigest )
{
std::string actualLang, value;
bool r = handler->xmpObj.GetLocalizedText( kXMP_NS_DC, "title", "" , "x-default" , &actualLang, &value, NULL );
if ( r && (actualLang == "x-default") ) takeXMP = true;
}
if ( (!takeXMP) && handler->dispChunk != 0) //skip if no LIST:INFO chunk found.
{
std::string* value = &handler->dispChunk->oldValue;
if ( value->size() >= 4 ) // ignore contents if file too small
{
XMP_StringPtr cstring = value->c_str();
XMP_StringLen size = (XMP_StringLen) value->size();
size -= 4; // skip first four bytes known to contain constant
cstring += 4;
bool propertyExists = false;
std::string utf8 = nativePropertyToUTF8( cstring, size, &propertyExists );
if ( utf8.size() > 0 )
{
handler->xmpObj.SetLocalizedText( kXMP_NS_DC, "title", "" , "x-default" , utf8.c_str() );
handler->containsXMP = true; // very important for treatment on caller level
}
else
{
// found as part of [2389942]
// forward deletion may only happen if no LIST:INFO/INAM is present:
if ( ! handler->hasListInfoINAM &&
! propertyExists ) // ..[2389942]part2: and if truly no legacy property
{ // (not just an unreadable one due to ServerMode).
handler->xmpObj.DeleteProperty( kXMP_NS_DC, "title" );
}
}
} // if size sufficient
} // handler->dispChunk
// IDIT chunk --------------------------------------------------------------
if ( handler->parent->format == kXMP_AVIFile && // Only for AVI file
handler->iditChunk != 0 && handler->iditChunk->oldSize == IDIT_SIZE + 8 ) // Including header size i.e, ID + size
{
importIditChunkToXMP( handler, handler->iditChunk );
}
} // importProperties
////////////////////////////////////////////////////////////////////////////////
// EXPORT
////////////////////////////////////////////////////////////////////////////////
void relocateWronglyPlacedXMPChunk( RIFF_MetaHandler* handler )
{
XMP_IO* file = handler->parent->ioRef;
RIFF::containerVect *rc = &handler->riffChunks;
RIFF::ContainerChunk* lastChunk = rc->at( rc->size()-1 );
// 1) XMPPacket
// needChunk exists but is not in lastChunk ?
if (
handler->xmpChunk != 0 && // XMP Chunk existing?
(XMP_Uns32)rc->size() > 1 && // more than 1 top-level chunk (otherwise pointless)
lastChunk->getChild( handler->xmpChunk ) == lastChunk->children.end() // not already in last chunk?
)
{
RIFF::ContainerChunk* cur = NULL;
chunkVectIter child;
XMP_Int32 chunkNo;
// find and relocate to last chunk:
for ( chunkNo = (XMP_Int32)rc->size()-2 ; chunkNo >= 0; chunkNo-- ) // ==> start with second-last chunk
{
cur = rc->at(chunkNo);
child = cur->getChild( handler->xmpChunk );
if ( child != cur->children.end() ) // found?
break;
} // for
if ( chunkNo < 0 ) // already in place? nothing left to do.
return;
lastChunk->children.push_back( *child ); // nb: order matters!
cur->replaceChildWithJunk( *child, false );
cur->hasChange = true; // [2414649] initialize early-on i.e: here
} // if
} // relocateWronglyPlacedXMPChunk
// writes to buffer up to max size,
// 0 termination only if shorter than maxSize
// converts down to ascii
static void setBextField ( std::string* value, XMP_Uns8* data, XMP_Uns32 offset, XMP_Uns32 maxSize )
{
XMP_Validate( value != 0, "setBextField: null value string pointer", kXMPErr_BadParam );
XMP_Validate( data != 0, "setBextField: null data value", kXMPErr_BadParam );
XMP_Validate( maxSize > 0, "setBextField: maxSize must be greater than 0", kXMPErr_BadParam );
std::string ascii;
XMP_StringLen actualSize = convertToASCII( value->data(), (XMP_StringLen) value->size() , &ascii , maxSize );
strncpy( (char*)(data + offset), ascii.data(), actualSize );
}
// add bwf-bext related data to bext chunk, create if not existing yet.
// * in fact, since bext is fully fixed and known, there can be no unknown subchunks worth keeping:
// * prepare bext chunk in buffer
// * value changed/created if needed only, otherways remove chunk
// * remove bext-mapped properties from xmp (non-redundant storage)
// note: ValueChunk**: adress of pointer to allow changing the pointer itself (i.e. chunk creation)
static void exportXMPtoBextChunk( RIFF_MetaHandler* handler, ValueChunk** bextChunk )
{
// register bext namespace ( if there was no import, this is news, otherwise harmless moot)
SXMPMeta::RegisterNamespace( kXMP_NS_BWF, "bext:", 0 );
bool chunkUsed = false; // assume for now
SXMPMeta* xmp = &handler->xmpObj;
// prepare buffer, need to know CodingHistory size as the only variable
XMP_Int32 bextBufferSize = MIN_BEXT_SIZE - 8; // -8 because of header
std::string value;
if ( xmp->GetProperty( bextCodingHistory.ns, bextCodingHistory.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ))
{
bextBufferSize += ((XMP_StringLen)value.size()) + 1 ; // add to size (and a trailing zero)
}
// create and clear buffer
XMP_Uns8* buffer = new XMP_Uns8[bextBufferSize];
for (XMP_Int32 i = 0; i < bextBufferSize; i++ )
buffer[i] = 0;
// grab props, write into buffer, remove from XMP ///////////////////////////
// bextDescription ------------------------------------------------
if ( xmp->GetProperty( bextDescription.ns, bextDescription.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
setBextField( &value, (XMP_Uns8*) buffer, 0, 256 );
xmp->DeleteProperty( bextDescription.ns, bextDescription.prop) ;
chunkUsed = true;
}
// bextOriginator -------------------------------------------------
if ( xmp->GetProperty( bextOriginator.ns , bextOriginator.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
setBextField( &value, (XMP_Uns8*) buffer, 256, 32 );
xmp->DeleteProperty( bextOriginator.ns , bextOriginator.prop );
chunkUsed = true;
}
// bextOriginatorRef ----------------------------------------------
if ( xmp->GetProperty( bextOriginatorRef.ns , bextOriginatorRef.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
setBextField( &value, (XMP_Uns8*) buffer, 256+32, 32 );
xmp->DeleteProperty( bextOriginatorRef.ns , bextOriginatorRef.prop );
chunkUsed = true;
}
// bextOriginationDate --------------------------------------------
if ( xmp->GetProperty( bextOriginationDate.ns , bextOriginationDate.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
setBextField( &value, (XMP_Uns8*) buffer, 256+32+32, 10 );
xmp->DeleteProperty( bextOriginationDate.ns , bextOriginationDate.prop );
chunkUsed = true;
}
// bextOriginationTime --------------------------------------------
if ( xmp->GetProperty( bextOriginationTime.ns , bextOriginationTime.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
setBextField( &value, (XMP_Uns8*) buffer, 256+32+32+10, 8 );
xmp->DeleteProperty( bextOriginationTime.ns , bextOriginationTime.prop );
chunkUsed = true;
}
// bextTimeReference ----------------------------------------------
// thanx to friendly byte order, all 8 bytes can be written in one go:
if ( xmp->GetProperty( bextTimeReference.ns, bextTimeReference.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
try
{
XMP_Int64 v = SXMPUtils::ConvertToInt64( value.c_str() );
PutUns64LE( v, &(buffer[256+32+32+10+8] ));
chunkUsed = true;
}
catch (XMP_Error& e)
{
if ( e.GetID() != kXMPErr_BadParam )
throw e; // re-throw on any other error
} // 'else' tolerate ( time reference remains 0x00000000 )
// valid or not, do not store redundantly:
xmp->DeleteProperty( bextTimeReference.ns, bextTimeReference.prop );
}
// bextVersion ----------------------------------------------------
// set version=1, no matter what.
PutUns16LE( 1, &(buffer[256+32+32+10+8+8]) );
xmp->DeleteProperty( bextVersion.ns, bextVersion.prop );
// bextUMID -------------------------------------------------------
if ( xmp->GetProperty( bextUMID.ns, bextUMID.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
std::string rawStr;
if ( !DecodeFromHexString( value.data(), (XMP_StringLen) value.size(), &rawStr ) )
{
delete [] buffer; // important.
XMP_Throw ( "EncodeFromHexString: illegal umid string. Must contain an even number of 0-9 and uppercase A-F chars.", kXMPErr_BadParam );
}
// if UMID is smaller/longer than 64 byte for any reason,
// truncate/do a partial write (just like for any other bext property)
memcpy( (char*) &(buffer[256+32+32+10+8+8+2]), rawStr.data(), MIN( 64, rawStr.size() ) );
xmp->DeleteProperty( bextUMID.ns, bextUMID.prop );
chunkUsed = true;
}
// bextCodingHistory ----------------------------------------------
if ( xmp->GetProperty( bextCodingHistory.ns, bextCodingHistory.prop, &value, (XMP_OptionBits *) kXMP_NoOptions ) )
{
std::string ascii;
convertToASCII( value.data(), (XMP_StringLen) value.size() , &ascii, (XMP_StringLen) value.size() );
strncpy( (char*) &(buffer[MIN_BEXT_SIZE-8]), ascii.data(), ascii.size() );
xmp->DeleteProperty( bextCodingHistory.ns, bextCodingHistory.prop );
chunkUsed = true;
}
// always delete old, recreate if needed
if ( *bextChunk != 0 )
{
(*bextChunk)->parent->replaceChildWithJunk( *bextChunk );
(*bextChunk) = 0; // clear direct Chunk pointer
}
if ( chunkUsed)
*bextChunk = new ValueChunk( handler->riffChunks.at(0), std::string( (char*)buffer, bextBufferSize ), kChunk_bext );
delete [] buffer; // important.
}
static inline void SetBufferedString ( char * dest, const std::string source, size_t limit )
{
memset ( dest, 0, limit );
size_t count = source.size();
if ( count >= limit ) count = limit - 1; // Ensure a terminating nul.
memcpy ( dest, source.c_str(), count );
}
static void exportXMPtoCr8rChunk ( RIFF_MetaHandler* handler, ValueChunk** cr8rChunk )
{
const SXMPMeta & xmp = handler->xmpObj;
// Make sure an existing Cr8r chunk has the proper fixed length.
bool haveOldCr8r = (*cr8rChunk != 0);
if ( haveOldCr8r && ((*cr8rChunk)->oldSize != sizeof(Cr8rBoxContent)+8) ) {
(*cr8rChunk)->parent->replaceChildWithJunk ( *cr8rChunk ); // Wrong length, the existing chunk must be bad.
(*cr8rChunk) = 0;
haveOldCr8r = false;
}
bool haveNewCr8r = false;
std::string creatorCode, appleEvent, fileExt, appOptions, appName;
haveNewCr8r |= xmp.GetStructField ( kXMP_NS_CreatorAtom, "macAtom", kXMP_NS_CreatorAtom, "applicationCode", &creatorCode, 0 );
haveNewCr8r |= xmp.GetStructField ( kXMP_NS_CreatorAtom, "macAtom", kXMP_NS_CreatorAtom, "invocationAppleEvent", &appleEvent, 0 );
haveNewCr8r |= xmp.GetStructField ( kXMP_NS_CreatorAtom, "windowsAtom", kXMP_NS_CreatorAtom, "extension", &fileExt, 0 );
haveNewCr8r |= xmp.GetStructField ( kXMP_NS_CreatorAtom, "windowsAtom", kXMP_NS_CreatorAtom, "invocationFlags", &appOptions, 0 );
haveNewCr8r |= xmp.GetProperty ( kXMP_NS_XMP, "CreatorTool", &appName, 0 );
if ( ! haveNewCr8r ) { // Get rid of an existing Cr8r chunk if there is no new XMP.
if ( haveOldCr8r ) {
(*cr8rChunk)->parent->replaceChildWithJunk ( *cr8rChunk );
*cr8rChunk = 0;
}
return;
}
if ( ! haveOldCr8r ) {
*cr8rChunk = new ValueChunk ( handler->lastChunk, std::string(), kChunk_Cr8r );
}
std::string strValue;
strValue.assign ( (sizeof(Cr8rBoxContent) - 1), '\0' ); // ! Use size-1 because SetValue appends a trailing 0 byte.
(*cr8rChunk)->SetValue ( strValue ); // ! Just get the space available.
XMP_Assert ( (*cr8rChunk)->newValue.size() == sizeof(Cr8rBoxContent) );
(*cr8rChunk)->hasChange = true;
Cr8rBoxContent * newCr8r = (Cr8rBoxContent*) (*cr8rChunk)->newValue.data();
if ( ! haveOldCr8r ) {
newCr8r->magic = MakeUns32LE ( 0xBEEFCAFE );
newCr8r->size = MakeUns32LE ( sizeof(Cr8rBoxContent) );
newCr8r->majorVer = MakeUns16LE ( 1 );
} else {
const Cr8rBoxContent * oldCr8r = (Cr8rBoxContent*) (*cr8rChunk)->oldValue.data();
memcpy ( newCr8r, oldCr8r, sizeof(Cr8rBoxContent) );
if ( GetUns32LE ( &newCr8r->magic ) != 0xBEEFCAFE ) { // Make sure we write LE numbers.
Flip4 ( &newCr8r->magic );
Flip4 ( &newCr8r->size );
Flip2 ( &newCr8r->majorVer );
Flip2 ( &newCr8r->minorVer );
Flip4 ( &newCr8r->creatorCode );
Flip4 ( &newCr8r->appleEvent );
}
}
if ( ! creatorCode.empty() ) {
newCr8r->creatorCode = MakeUns32LE ( (XMP_Uns32) strtoul ( creatorCode.c_str(), 0, 0 ) );
}
if ( ! appleEvent.empty() ) {
newCr8r->appleEvent = MakeUns32LE ( (XMP_Uns32) strtoul ( appleEvent.c_str(), 0, 0 ) );
}
if ( ! fileExt.empty() ) SetBufferedString ( newCr8r->fileExt, fileExt, sizeof ( newCr8r->fileExt ) );
if ( ! appOptions.empty() ) SetBufferedString ( newCr8r->appOptions, appOptions, sizeof ( newCr8r->appOptions ) );
if ( ! appName.empty() ) SetBufferedString ( newCr8r->appName, appName, sizeof ( newCr8r->appName ) );
}
// Returns numbers of leap years between 1800 and provided year value. Both end values will be inclusive for getting this field.
// For leap year this will be handled later in GetIDITString() function
static XMP_Uns32 GetLeapYearsNumber( const XMP_Uns32 & year )
{
XMP_Uns32 numLeapYears = ( year / 4 );
numLeapYears -= ( year / 100 );
numLeapYears += ( ( year + 200 ) / 400 ); // 200 is added becuase our base is 1800 which give modulas 200 by divinding with 400
return numLeapYears;
} //GetLeapYearsNumber
static XMP_Uns32 GetDays( const XMP_Int32 & month, const bool &isLeapYear )
{
// Adding number of days as per last month of the provided year
// Leap year case is handled later
XMP_Uns32 numDays = 0;
switch ( month )
{
case 2:
numDays = 31;
break;
case 3:
numDays = 31 + 28;
break;
case 4:
numDays = 31 + 28 + 31;
break;
case 5:
numDays = 31 + 28 + 31 + 30;
break;
case 6:
numDays = 31 + 28 + 31 + 30 + 31;
break;
case 7:
numDays = 31 + 28 + 31 + 30 + 31 + 30;
break;
case 8:
numDays = 31 + 28 + 31 + 30 + 31 + 30 + 31;
break;
case 9:
numDays = 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31;
break;
case 10:
numDays = 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30;
break;
case 11:
numDays = 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31;
break;
case 12:
numDays = 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30;
break;
default:
break;
}
// Adding one day for leap year and month above than feb
if ( isLeapYear == true && month > 2 )
numDays += 1;
return numDays;
} // GetDays
static const std::string GetIDITString( const XMP_DateTime & targetDate )
{
// Date 1 Jan 1800 is treating as base date for handling this issue
// 1800 is chosen becuase of consistency in calender after 1752
XMP_Uns64 numOfDays = 0; // Specifies number of days after 1 jan 1800
XMP_Uns32 year = targetDate.year - 1800;
// 2000 was the first exception when year dividing by 100 was still a leap year
bool isLeapYear = ( year % 4 != 0 ) ? false : ( year % 100 != 0 ) ? true : ( ( year % 400 != 200 ) ? false : true );
// Adding days according to normal year and adjusting days for leap years
numOfDays = 365 * year;
numOfDays += GetLeapYearsNumber( year );
// Adding days according to the month
numOfDays += GetDays( targetDate.month, isLeapYear );
// GetLeapYearsNumber() function is also considering provided year for calculating number of leap numbers between provided year
// and 1800. This consideration is done by inclusive both end values. So both GetLeapYearsNumber() and GetDays() would have added
// extra day for higher end year for leap year.
// So, we need to decrease one day from number of days field
if ( isLeapYear )
--numOfDays;
// Adding days according to provided month
numOfDays += targetDate.day;
// Weekday starting from Wednesday i.e., Wed will be the first day of the week.
// This day was choosen because 1 Jan 1800 was Wednesday
XMP_Uns8 weekDayNum = numOfDays % 7;
std::string weekDay;
switch ( weekDayNum )
{
case 0:
weekDay = "Tue";
break;
case 1:
weekDay = "Wed";
break;
case 2:
weekDay = "Thu";
break;
case 3:
weekDay = "Fri";
break;
case 4:
weekDay = "Sat";
break;
case 5:
weekDay = "Sun";
break;
case 6:
weekDay = "Mon";
break;
default:
break;
}
// Stream to convert into IDIT format
std::stringstream iditStream;
iditStream << weekDay;
iditStream.put( ' ' );
// IDIT needs 3 character codes for month
const char * monthArray[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
iditStream << monthArray[ targetDate.month - 1 ];
iditStream.put( ' ' );
if ( targetDate.day < 10 )
iditStream.put( '0' );
iditStream << targetDate.day;
iditStream.put( ' ' );
if ( targetDate.hour < 10 )
iditStream.put( '0' );
iditStream << targetDate.hour;
iditStream.put( ':' );
if ( targetDate.minute < 10 )
iditStream.put( '0' );
iditStream << targetDate.minute;
iditStream.put( ':' );
if ( targetDate.second < 10 )
iditStream.put( '0' );
iditStream << targetDate.second;
iditStream.put( ' ' );
// No need to handle casese for year 1 to 999
/*
if ( targetDate.year < 10 )
iditStream << " ";
else if ( targetDate.year < 100 )
iditStream << " ";
else if ( targetDate.year < 1000 )
iditStream << " ";
*/
// Year will be in the range of 1800-3999
iditStream << targetDate.year;
// Adding new line charcter for IDIT
iditStream.put( '\n' );
return iditStream.str();
} // GetIDITString
static void exportXMPtoIDITChunk( RIFF_MetaHandler* handler )
{
// exif:DateTimeOriginal -> IDIT chunk
ContainerChunk * hdlrChunk = handler->listHdlrChunk;
if ( hdlrChunk == 0 )
XMP_Throw( "Header of AVI file (hdlr chunk) must exists", kXMPErr_BadFileFormat );
XMP_DateTime dateTime;
bool propExists = handler->xmpObj.GetProperty_Date( kXMP_NS_EXIF, "DateTimeOriginal", &dateTime, 0 );
if ( !propExists )
{
if ( handler->iditChunk != 0 )
{
// Exception would have thrown if we don't find hdlr chunk for AVI file
XMP_Assert( hdlrChunk != 0 );
bool isSuccess = hdlrChunk->removeValue( kChunk_IDIT );
if ( !isSuccess )
XMP_Throw( "Removal of IDIT block fails", kXMPErr_InternalFailure );
handler->iditChunk = 0;
hdlrChunk->hasChange = true;
}
// Else no need to do anything
}
else
{
if ( dateTime.year < 1800 || dateTime.year > 3999 )
XMP_Throw( "For IDIT block, XMP currently supports years in between 1800 and 3999 (Both inclusive).", kXMPErr_InternalFailure );
/*
Conversion need to be done from XMP date time to IDIT structure.
XMP_DateTime accepts any value but IDIT needs to have weekday, month-day, month, year and time.
*/
// Silently modifying dateTime for invalid dates.
if ( dateTime.month < 1 )
dateTime.month = 1;
if ( dateTime.month > 12 )
dateTime.month = 12;
if ( dateTime.day < 1 )
dateTime.day = 1;
if ( dateTime.day > 31 )
dateTime.day = 31;
const std::string iditString = GetIDITString( dateTime );
// If no IDIT exits then create one
if ( handler->iditChunk == 0 )
handler->iditChunk = new ValueChunk( hdlrChunk, std::string(), kChunk_IDIT );
else if ( strncmp( iditString.c_str(), handler->iditChunk->oldValue.c_str(), IDIT_SIZE ) == 0 ) // Equal
return;
// Setting the IDIT value
handler->iditChunk->hasChange = true;
handler->iditChunk->SetValue( iditString, true );
}
} // exportXMPtoIDITChunk
static void exportXMPtoListChunk( XMP_Uns32 id, XMP_Uns32 containerType,
RIFF_MetaHandler* handler, ContainerChunk** listChunk, Mapping mapping[])
{
// note: ContainerChunk**: adress of pointer to allow changing the pointer itself (i.e. chunk creation)
SXMPMeta* xmp = &handler->xmpObj;
bool listChunkIsNeeded = false; // assume for now
// ! The NUL is optional in WAV to avoid a parsing bug in Audition 3 - can't handle implicit pad byte.
bool optionalNUL = (handler->parent->format == kXMP_WAVFile);
for ( int p=0; mapping[p].chunkID != 0; ++p ) { // go through all potential property mappings
bool propExists = false;
std::string value, actualLang;
switch ( mapping[p].propType ) {
// get property. if existing, remove from XMP (to avoid redundant storage)
case prop_TIMEVALUE:
propExists = xmp->GetStructField ( mapping[p].ns, mapping[p].prop, kXMP_NS_DM, "timeValue", &value, 0 );
break;
case prop_LOCALIZED_TEXT:
propExists = xmp->GetLocalizedText ( mapping[p].ns, mapping[p].prop, "", "x-default", &actualLang, &value, 0);
if ( actualLang != "x-default" ) propExists = false; // no "x-default" => nothing to reconcile !
break;
case prop_ARRAYITEM:
propExists = xmp->GetArrayItem ( mapping[p].ns, mapping[p].prop, 1, &value, 0 );
break;
case prop_SIMPLE:
propExists = xmp->GetProperty ( mapping[p].ns, mapping[p].prop, &value, 0 );
break;
default:
XMP_Throw ( "internal error", kXMPErr_InternalFailure );
}
if ( ! propExists ) {
if ( *listChunk != 0 ) (*listChunk)->removeValue ( mapping[p].chunkID );
} else {
listChunkIsNeeded = true;
if ( *listChunk == 0 ) *listChunk = new ContainerChunk ( handler->riffChunks[0], id, containerType );
valueMap* cm = &(*listChunk)->childmap;
valueMapIter result = cm->find( mapping[p].chunkID );
ValueChunk* propChunk = 0;
if ( result != cm->end() ) {
propChunk = result->second;
} else {
propChunk = new ValueChunk ( *listChunk, std::string(), mapping[p].chunkID );
}
propChunk->SetValue ( value.c_str(), optionalNUL );
}
} // for each property
if ( (! listChunkIsNeeded) && (*listChunk != 0) && ((*listChunk)->children.size() == 0) ) {
(*listChunk)->parent->replaceChildWithJunk ( *listChunk );
(*listChunk) = 0; // reset direct Chunk pointer
}
}
void exportAndRemoveProperties ( RIFF_MetaHandler* handler )
{
SXMPMeta xmpObj = handler->xmpObj;
exportXMPtoCr8rChunk ( handler, &handler->cr8rChunk );
// 1/5 BWF Bext extension chunk -----------------------------------------------
if ( handler->parent->format == kXMP_WAVFile ) { // applies only to WAV
exportXMPtoBextChunk ( handler, &handler->bextChunk );
}
// 2/5 DISP chunk
if ( handler->parent->format == kXMP_WAVFile ) { // create for WAVE only
std::string actualLang, xmpValue;
bool r = xmpObj.GetLocalizedText ( kXMP_NS_DC, "title", "" , "x-default" , &actualLang, &xmpValue, 0 );
if ( r && ( actualLang == "x-default" ) ) { // prop exists?
// the 'right' DISP is lead by a 32 bit low endian 0x0001
std::string dispValue = std::string( "\x1\0\0\0", 4 );
dispValue.append ( xmpValue );
if ( handler->dispChunk == 0 ) {
handler->dispChunk = new RIFF::ValueChunk ( handler->riffChunks.at(0), std::string(), kChunk_DISP );
}
// ! The NUL is optional in WAV to avoid a parsing bug in Audition 3 - can't handle implicit pad byte.
handler->dispChunk->SetValue ( dispValue, ValueChunk::kNULisOptional );
} else { // remove Disp Chunk..
if ( handler->dispChunk != 0 ) { // ..if existing
ContainerChunk* mainChunk = handler->riffChunks.at(0);
Chunk* needle = handler->dispChunk;
chunkVectIter iter = mainChunk->getChild ( needle );
if ( iter != mainChunk->children.end() ) {
mainChunk->replaceChildWithJunk ( *iter );
handler->dispChunk = 0;
mainChunk->hasChange = true;
}
}
}
}
// 3/5 LIST:INFO
exportXMPtoListChunk ( kChunk_LIST, kType_INFO, handler, &handler->listInfoChunk, listInfoProps );
// 4/5 LIST:Tdat
exportXMPtoListChunk ( kChunk_LIST, kType_Tdat, handler, &handler->listTdatChunk, listTdatProps );
// 5/5 LIST:HDRL:IDIT
if ( handler->parent->format == kXMP_AVIFile )
exportXMPtoIDITChunk ( handler );
}
} // namespace RIFF
|