XMPMetaImpl.java
28.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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.internal.xmp.impl;
import com.adobe.internal.xmp.XMPConst;
import com.adobe.internal.xmp.XMPDateTime;
import com.adobe.internal.xmp.XMPException;
import com.adobe.internal.xmp.XMPIterator;
import com.adobe.internal.xmp.XMPMeta;
import com.adobe.internal.xmp.XMPPathFactory;
import com.adobe.internal.xmp.XMPUtils;
import com.adobe.internal.xmp.impl.ParameterAsserts;
import com.adobe.internal.xmp.impl.Utils;
import com.adobe.internal.xmp.impl.XMPIteratorImpl;
import com.adobe.internal.xmp.impl.XMPNode;
import com.adobe.internal.xmp.impl.XMPNodeUtils;
import com.adobe.internal.xmp.impl.XMPNormalizer;
import com.adobe.internal.xmp.impl.xpath.XMPPath;
import com.adobe.internal.xmp.impl.xpath.XMPPathParser;
import com.adobe.internal.xmp.options.IteratorOptions;
import com.adobe.internal.xmp.options.ParseOptions;
import com.adobe.internal.xmp.options.PropertyOptions;
import com.adobe.internal.xmp.properties.XMPProperty;
import java.util.Calendar;
import java.util.Iterator;
public class XMPMetaImpl
implements XMPMeta,
XMPConst {
private static final int VALUE_STRING = 0;
private static final int VALUE_BOOLEAN = 1;
private static final int VALUE_INTEGER = 2;
private static final int VALUE_LONG = 3;
private static final int VALUE_DOUBLE = 4;
private static final int VALUE_DATE = 5;
private static final int VALUE_CALENDAR = 6;
private static final int VALUE_BASE64 = 7;
private XMPNode tree;
private String packetHeader = null;
public XMPMetaImpl() {
this.tree = new XMPNode(null, null, null);
}
public XMPMetaImpl(XMPNode tree) {
this.tree = tree;
}
public void appendArrayItem(String schemaNS, String arrayName, PropertyOptions arrayOptions, String itemValue, PropertyOptions itemOptions) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
if (arrayOptions == null) {
arrayOptions = new PropertyOptions();
}
if (!arrayOptions.isOnlyArrayOptions()) {
throw new XMPException("Only array form flags allowed for arrayOptions", 103);
}
arrayOptions = XMPNodeUtils.verifySetOptions(arrayOptions, null);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, false, null);
if (arrayNode != null) {
if (!arrayNode.getOptions().isArray()) {
throw new XMPException("The named property is not an array", 102);
}
} else if (arrayOptions.isArray()) {
arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, true, arrayOptions);
if (arrayNode == null) {
throw new XMPException("Failure creating array node", 102);
}
} else {
throw new XMPException("Explicit arrayOptions required to create new array", 103);
}
this.doSetArrayItem(arrayNode, -1, itemValue, itemOptions, true);
}
public void appendArrayItem(String schemaNS, String arrayName, String itemValue) throws XMPException {
this.appendArrayItem(schemaNS, arrayName, null, itemValue, null);
}
public int countArrayItems(String schemaNS, String arrayName) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, false, null);
if (arrayNode == null) {
return 0;
}
if (arrayNode.getOptions().isArray()) {
return arrayNode.getChildrenLength();
}
throw new XMPException("The named property is not an array", 102);
}
public void deleteArrayItem(String schemaNS, String arrayName, int itemIndex) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
this.deleteProperty(schemaNS, itemPath);
}
catch (XMPException e) {
// empty catch block
}
}
public void deleteProperty(String schemaNS, String propName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
XMPNode propNode = XMPNodeUtils.findNode(this.tree, expPath, false, null);
if (propNode != null) {
XMPNodeUtils.deleteNode(propNode);
}
}
catch (XMPException e) {
// empty catch block
}
}
public void deleteQualifier(String schemaNS, String propName, String qualNS, String qualName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
this.deleteProperty(schemaNS, qualPath);
}
catch (XMPException e) {
// empty catch block
}
}
public void deleteStructField(String schemaNS, String structName, String fieldNS, String fieldName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertStructName(structName);
String fieldPath = structName + XMPPathFactory.composeStructFieldPath(fieldNS, fieldName);
this.deleteProperty(schemaNS, fieldPath);
}
catch (XMPException e) {
// empty catch block
}
}
public boolean doesPropertyExist(String schemaNS, String propName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
XMPNode propNode = XMPNodeUtils.findNode(this.tree, expPath, false, null);
return propNode != null;
}
catch (XMPException e) {
return false;
}
}
public boolean doesArrayItemExist(String schemaNS, String arrayName, int itemIndex) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
String path = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
return this.doesPropertyExist(schemaNS, path);
}
catch (XMPException e) {
return false;
}
}
public boolean doesStructFieldExist(String schemaNS, String structName, String fieldNS, String fieldName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertStructName(structName);
String path = XMPPathFactory.composeStructFieldPath(fieldNS, fieldName);
return this.doesPropertyExist(schemaNS, structName + path);
}
catch (XMPException e) {
return false;
}
}
public boolean doesQualifierExist(String schemaNS, String propName, String qualNS, String qualName) {
try {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
String path = XMPPathFactory.composeQualifierPath(qualNS, qualName);
return this.doesPropertyExist(schemaNS, propName + path);
}
catch (XMPException e) {
return false;
}
}
public XMPProperty getArrayItem(String schemaNS, String arrayName, int itemIndex) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
return this.getProperty(schemaNS, itemPath);
}
public XMPProperty getLocalizedText(String schemaNS, String altTextName, String genericLang, String specificLang) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(altTextName);
ParameterAsserts.assertSpecificLang(specificLang);
genericLang = genericLang != null ? Utils.normalizeLangValue(genericLang) : null;
specificLang = Utils.normalizeLangValue(specificLang);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, altTextName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, false, null);
if (arrayNode == null) {
return null;
}
Object[] result = XMPNodeUtils.chooseLocalizedText(arrayNode, genericLang, specificLang);
int match = (Integer)result[0];
final XMPNode itemNode = (XMPNode)result[1];
if (match != 0) {
return new XMPProperty(){
public String getValue() {
return itemNode.getValue();
}
public PropertyOptions getOptions() {
return itemNode.getOptions();
}
public String getLanguage() {
return itemNode.getQualifier(1).getValue();
}
public String toString() {
return itemNode.getValue().toString();
}
};
}
return null;
}
public void setLocalizedText(String schemaNS, String altTextName, String genericLang, String specificLang, String itemValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(altTextName);
ParameterAsserts.assertSpecificLang(specificLang);
genericLang = genericLang != null ? Utils.normalizeLangValue(genericLang) : null;
specificLang = Utils.normalizeLangValue(specificLang);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, altTextName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, true, new PropertyOptions(7680));
if (arrayNode == null) {
throw new XMPException("Failed to find or create array node", 102);
}
if (!arrayNode.getOptions().isArrayAltText()) {
if (!arrayNode.hasChildren() && arrayNode.getOptions().isArrayAlternate()) {
arrayNode.getOptions().setArrayAltText(true);
} else {
throw new XMPException("Specified property is no alt-text array", 102);
}
}
boolean haveXDefault = false;
XMPNode xdItem = null;
Iterator it = arrayNode.iterateChildren();
while (it.hasNext()) {
XMPNode currItem = (XMPNode)it.next();
if (!currItem.hasQualifier() || !"xml:lang".equals(currItem.getQualifier(1).getName())) {
throw new XMPException("Language qualifier must be first", 102);
}
if (!"x-default".equals(currItem.getQualifier(1).getValue())) continue;
xdItem = currItem;
haveXDefault = true;
break;
}
if (xdItem != null && arrayNode.getChildrenLength() > 1) {
arrayNode.removeChild(xdItem);
arrayNode.addChild(1, xdItem);
}
Object[] result = XMPNodeUtils.chooseLocalizedText(arrayNode, genericLang, specificLang);
int match = (Integer)result[0];
XMPNode itemNode = (XMPNode)result[1];
boolean specificXDefault = "x-default".equals(specificLang);
switch (match) {
case 0: {
XMPNodeUtils.appendLangItem(arrayNode, "x-default", itemValue);
haveXDefault = true;
if (specificXDefault) break;
XMPNodeUtils.appendLangItem(arrayNode, specificLang, itemValue);
break;
}
case 1: {
if (!specificXDefault) {
if (haveXDefault && xdItem != itemNode && xdItem != null && xdItem.getValue().equals(itemNode.getValue())) {
xdItem.setValue(itemValue);
}
itemNode.setValue(itemValue);
break;
}
assert (haveXDefault && xdItem == itemNode);
Iterator it2 = arrayNode.iterateChildren();
while (it2.hasNext()) {
XMPNode currItem = (XMPNode)it2.next();
if (currItem == xdItem || !currItem.getValue().equals(xdItem != null ? xdItem.getValue() : null)) continue;
currItem.setValue(itemValue);
}
if (xdItem == null) break;
xdItem.setValue(itemValue);
break;
}
case 2: {
if (haveXDefault && xdItem != itemNode && xdItem != null && xdItem.getValue().equals(itemNode.getValue())) {
xdItem.setValue(itemValue);
}
itemNode.setValue(itemValue);
break;
}
case 3: {
XMPNodeUtils.appendLangItem(arrayNode, specificLang, itemValue);
if (!specificXDefault) break;
haveXDefault = true;
break;
}
case 4: {
if (xdItem != null && arrayNode.getChildrenLength() == 1) {
xdItem.setValue(itemValue);
}
XMPNodeUtils.appendLangItem(arrayNode, specificLang, itemValue);
break;
}
case 5: {
XMPNodeUtils.appendLangItem(arrayNode, specificLang, itemValue);
if (!specificXDefault) break;
haveXDefault = true;
break;
}
default: {
throw new XMPException("Unexpected result from ChooseLocalizedText", 9);
}
}
if (!haveXDefault && arrayNode.getChildrenLength() == 1) {
XMPNodeUtils.appendLangItem(arrayNode, "x-default", itemValue);
}
}
public void setLocalizedText(String schemaNS, String altTextName, String genericLang, String specificLang, String itemValue) throws XMPException {
this.setLocalizedText(schemaNS, altTextName, genericLang, specificLang, itemValue, null);
}
public XMPProperty getProperty(String schemaNS, String propName) throws XMPException {
return this.getProperty(schemaNS, propName, 0);
}
protected XMPProperty getProperty(String schemaNS, String propName, int valueType) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
final XMPNode propNode = XMPNodeUtils.findNode(this.tree, expPath, false, null);
if (propNode != null) {
if (valueType != 0 && propNode.getOptions().isCompositeProperty()) {
throw new XMPException("Property must be simple when a value type is requested", 102);
}
final Object value = this.evaluateNodeValue(valueType, propNode);
return new XMPProperty(){
public String getValue() {
return value != null ? value.toString() : null;
}
public PropertyOptions getOptions() {
return propNode.getOptions();
}
public String getLanguage() {
return null;
}
public String toString() {
return value.toString();
}
};
}
return null;
}
protected Object getPropertyObject(String schemaNS, String propName, int valueType) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
XMPNode propNode = XMPNodeUtils.findNode(this.tree, expPath, false, null);
if (propNode != null) {
if (valueType != 0 && propNode.getOptions().isCompositeProperty()) {
throw new XMPException("Property must be simple when a value type is requested", 102);
}
return this.evaluateNodeValue(valueType, propNode);
}
return null;
}
public Boolean getPropertyBoolean(String schemaNS, String propName) throws XMPException {
return (Boolean)this.getPropertyObject(schemaNS, propName, 1);
}
public void setPropertyBoolean(String schemaNS, String propName, boolean propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, propValue ? "True" : "False", options);
}
public void setPropertyBoolean(String schemaNS, String propName, boolean propValue) throws XMPException {
this.setProperty(schemaNS, propName, propValue ? "True" : "False", null);
}
public Integer getPropertyInteger(String schemaNS, String propName) throws XMPException {
return (Integer)this.getPropertyObject(schemaNS, propName, 2);
}
public void setPropertyInteger(String schemaNS, String propName, int propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, new Integer(propValue), options);
}
public void setPropertyInteger(String schemaNS, String propName, int propValue) throws XMPException {
this.setProperty(schemaNS, propName, new Integer(propValue), null);
}
public Long getPropertyLong(String schemaNS, String propName) throws XMPException {
return (Long)this.getPropertyObject(schemaNS, propName, 3);
}
public void setPropertyLong(String schemaNS, String propName, long propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, new Long(propValue), options);
}
public void setPropertyLong(String schemaNS, String propName, long propValue) throws XMPException {
this.setProperty(schemaNS, propName, new Long(propValue), null);
}
public Double getPropertyDouble(String schemaNS, String propName) throws XMPException {
return (Double)this.getPropertyObject(schemaNS, propName, 4);
}
public void setPropertyDouble(String schemaNS, String propName, double propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, new Double(propValue), options);
}
public void setPropertyDouble(String schemaNS, String propName, double propValue) throws XMPException {
this.setProperty(schemaNS, propName, new Double(propValue), null);
}
public XMPDateTime getPropertyDate(String schemaNS, String propName) throws XMPException {
return (XMPDateTime)this.getPropertyObject(schemaNS, propName, 5);
}
public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, propValue, options);
}
public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue) throws XMPException {
this.setProperty(schemaNS, propName, propValue, null);
}
public Calendar getPropertyCalendar(String schemaNS, String propName) throws XMPException {
return (Calendar)this.getPropertyObject(schemaNS, propName, 6);
}
public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, propValue, options);
}
public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue) throws XMPException {
this.setProperty(schemaNS, propName, propValue, null);
}
public byte[] getPropertyBase64(String schemaNS, String propName) throws XMPException {
return (byte[])this.getPropertyObject(schemaNS, propName, 7);
}
public String getPropertyString(String schemaNS, String propName) throws XMPException {
return (String)this.getPropertyObject(schemaNS, propName, 0);
}
public void setPropertyBase64(String schemaNS, String propName, byte[] propValue, PropertyOptions options) throws XMPException {
this.setProperty(schemaNS, propName, propValue, options);
}
public void setPropertyBase64(String schemaNS, String propName, byte[] propValue) throws XMPException {
this.setProperty(schemaNS, propName, propValue, null);
}
public XMPProperty getQualifier(String schemaNS, String propName, String qualNS, String qualName) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
return this.getProperty(schemaNS, qualPath);
}
public XMPProperty getStructField(String schemaNS, String structName, String fieldNS, String fieldName) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertStructName(structName);
String fieldPath = structName + XMPPathFactory.composeStructFieldPath(fieldNS, fieldName);
return this.getProperty(schemaNS, fieldPath);
}
public XMPIterator iterator() throws XMPException {
return this.iterator(null, null, null);
}
public XMPIterator iterator(IteratorOptions options) throws XMPException {
return this.iterator(null, null, options);
}
public XMPIterator iterator(String schemaNS, String propName, IteratorOptions options) throws XMPException {
return new XMPIteratorImpl(this, schemaNS, propName, options);
}
public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, false, null);
if (arrayNode == null) {
throw new XMPException("Specified array does not exist", 102);
}
this.doSetArrayItem(arrayNode, itemIndex, itemValue, options, false);
}
public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue) throws XMPException {
this.setArrayItem(schemaNS, arrayName, itemIndex, itemValue, null);
}
public void insertArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertArrayName(arrayName);
XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
XMPNode arrayNode = XMPNodeUtils.findNode(this.tree, arrayPath, false, null);
if (arrayNode == null) {
throw new XMPException("Specified array does not exist", 102);
}
this.doSetArrayItem(arrayNode, itemIndex, itemValue, options, true);
}
public void insertArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue) throws XMPException {
this.insertArrayItem(schemaNS, arrayName, itemIndex, itemValue, null);
}
public void setProperty(String schemaNS, String propName, Object propValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
options = XMPNodeUtils.verifySetOptions(options, propValue);
XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
XMPNode propNode = XMPNodeUtils.findNode(this.tree, expPath, true, options);
if (propNode == null) {
throw new XMPException("Specified property does not exist", 102);
}
this.setNode(propNode, propValue, options, false);
}
public void setProperty(String schemaNS, String propName, Object propValue) throws XMPException {
this.setProperty(schemaNS, propName, propValue, null);
}
public void setQualifier(String schemaNS, String propName, String qualNS, String qualName, String qualValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertPropName(propName);
if (!this.doesPropertyExist(schemaNS, propName)) {
throw new XMPException("Specified property does not exist!", 102);
}
String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
this.setProperty(schemaNS, qualPath, qualValue, options);
}
public void setQualifier(String schemaNS, String propName, String qualNS, String qualName, String qualValue) throws XMPException {
this.setQualifier(schemaNS, propName, qualNS, qualName, qualValue, null);
}
public void setStructField(String schemaNS, String structName, String fieldNS, String fieldName, String fieldValue, PropertyOptions options) throws XMPException {
ParameterAsserts.assertSchemaNS(schemaNS);
ParameterAsserts.assertStructName(structName);
String fieldPath = structName + XMPPathFactory.composeStructFieldPath(fieldNS, fieldName);
this.setProperty(schemaNS, fieldPath, fieldValue, options);
}
public void setStructField(String schemaNS, String structName, String fieldNS, String fieldName, String fieldValue) throws XMPException {
this.setStructField(schemaNS, structName, fieldNS, fieldName, fieldValue, null);
}
public String getObjectName() {
return this.tree.getName() != null ? this.tree.getName() : "";
}
public void setObjectName(String name) {
this.tree.setName(name);
}
public String getPacketHeader() {
return this.packetHeader;
}
public void setPacketHeader(String packetHeader) {
this.packetHeader = packetHeader;
}
public Object clone() {
XMPNode clonedTree = (XMPNode)this.tree.clone();
return new XMPMetaImpl(clonedTree);
}
public String dumpObject() {
return this.getRoot().dumpNode(true);
}
public void sort() {
this.tree.sort();
}
public void normalize(ParseOptions options) throws XMPException {
if (options == null) {
options = new ParseOptions();
}
XMPNormalizer.process(this, options);
}
public XMPNode getRoot() {
return this.tree;
}
private void doSetArrayItem(XMPNode arrayNode, int itemIndex, String itemValue, PropertyOptions itemOptions, boolean insert) throws XMPException {
int maxIndex;
XMPNode itemNode = new XMPNode("[]", null);
itemOptions = XMPNodeUtils.verifySetOptions(itemOptions, itemValue);
int n = maxIndex = insert ? arrayNode.getChildrenLength() + 1 : arrayNode.getChildrenLength();
if (itemIndex == -1) {
itemIndex = maxIndex;
}
if (1 <= itemIndex && itemIndex <= maxIndex) {
if (!insert) {
arrayNode.removeChild(itemIndex);
}
} else {
throw new XMPException("Array index out of bounds", 104);
}
arrayNode.addChild(itemIndex, itemNode);
this.setNode(itemNode, itemValue, itemOptions, false);
}
void setNode(XMPNode node, Object value, PropertyOptions newOptions, boolean deleteExisting) throws XMPException {
if (deleteExisting) {
node.clear();
}
node.getOptions().mergeWith(newOptions);
if (!node.getOptions().isCompositeProperty()) {
XMPNodeUtils.setNodeValue(node, value);
} else {
if (value != null && value.toString().length() > 0) {
throw new XMPException("Composite nodes can't have values", 102);
}
node.removeChildren();
}
}
private Object evaluateNodeValue(int valueType, XMPNode propNode) throws XMPException {
Object value;
String rawValue = propNode.getValue();
switch (valueType) {
case 1: {
value = new Boolean(XMPUtils.convertToBoolean(rawValue));
break;
}
case 2: {
value = new Integer(XMPUtils.convertToInteger(rawValue));
break;
}
case 3: {
value = new Long(XMPUtils.convertToLong(rawValue));
break;
}
case 4: {
value = new Double(XMPUtils.convertToDouble(rawValue));
break;
}
case 5: {
value = XMPUtils.convertToDate(rawValue);
break;
}
case 6: {
XMPDateTime dt = XMPUtils.convertToDate(rawValue);
value = dt.getCalendar();
break;
}
case 7: {
value = XMPUtils.decodeBase64(rawValue);
break;
}
default: {
value = rawValue != null || propNode.getOptions().isCompositeProperty() ? rawValue : "";
}
}
return value;
}
}