XMPSchemaRegistryImpl.java
15.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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.internal.xmp.impl;
import com.adobe.internal.xmp.XMPConst;
import com.adobe.internal.xmp.XMPException;
import com.adobe.internal.xmp.XMPSchemaRegistry;
import com.adobe.internal.xmp.impl.ParameterAsserts;
import com.adobe.internal.xmp.impl.Utils;
import com.adobe.internal.xmp.impl.XMPNodeUtils;
import com.adobe.internal.xmp.options.AliasOptions;
import com.adobe.internal.xmp.options.PropertyOptions;
import com.adobe.internal.xmp.properties.XMPAliasInfo;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public final class XMPSchemaRegistryImpl
implements XMPSchemaRegistry,
XMPConst {
private Map namespaceToPrefixMap = new HashMap();
private Map prefixToNamespaceMap = new HashMap();
private Map aliasMap = new HashMap();
private Pattern p = Pattern.compile("[/*?\\[\\]]");
public XMPSchemaRegistryImpl() {
try {
this.registerStandardNamespaces();
this.registerStandardAliases();
}
catch (XMPException e) {
throw new RuntimeException("The XMPSchemaRegistry cannot be initialized!");
}
}
public synchronized String registerNamespace(String namespaceURI, String suggestedPrefix) throws XMPException {
ParameterAsserts.assertSchemaNS(namespaceURI);
ParameterAsserts.assertPrefix(suggestedPrefix);
if (suggestedPrefix.charAt(suggestedPrefix.length() - 1) != ':') {
suggestedPrefix = suggestedPrefix + ':';
}
if (!Utils.isXMLNameNS(suggestedPrefix.substring(0, suggestedPrefix.length() - 1))) {
throw new XMPException("The prefix is a bad XML name", 201);
}
String registeredPrefix = (String)this.namespaceToPrefixMap.get(namespaceURI);
String registeredNS = (String)this.prefixToNamespaceMap.get(suggestedPrefix);
if (registeredPrefix != null) {
return registeredPrefix;
}
if (registeredNS != null) {
String generatedPrefix = suggestedPrefix;
int i = 1;
while (this.prefixToNamespaceMap.containsKey(generatedPrefix)) {
generatedPrefix = suggestedPrefix.substring(0, suggestedPrefix.length() - 1) + "_" + i + "_:";
++i;
}
suggestedPrefix = generatedPrefix;
}
this.prefixToNamespaceMap.put(suggestedPrefix, namespaceURI);
this.namespaceToPrefixMap.put(namespaceURI, suggestedPrefix);
return suggestedPrefix;
}
public synchronized void deleteNamespace(String namespaceURI) {
String prefixToDelete = this.getNamespacePrefix(namespaceURI);
if (prefixToDelete != null) {
this.namespaceToPrefixMap.remove(namespaceURI);
this.prefixToNamespaceMap.remove(prefixToDelete);
}
}
public synchronized String getNamespacePrefix(String namespaceURI) {
return (String)this.namespaceToPrefixMap.get(namespaceURI);
}
public synchronized String getNamespaceURI(String namespacePrefix) {
if (namespacePrefix != null && !namespacePrefix.endsWith(":")) {
namespacePrefix = namespacePrefix + ":";
}
return (String)this.prefixToNamespaceMap.get(namespacePrefix);
}
public synchronized Map getNamespaces() {
return Collections.unmodifiableMap(new TreeMap(this.namespaceToPrefixMap));
}
public synchronized Map getPrefixes() {
return Collections.unmodifiableMap(new TreeMap(this.prefixToNamespaceMap));
}
private void registerStandardNamespaces() throws XMPException {
this.registerNamespace("http://www.w3.org/XML/1998/namespace", "xml");
this.registerNamespace("http://www.w3.org/1999/02/22-rdf-syntax-ns#", "rdf");
this.registerNamespace("http://purl.org/dc/elements/1.1/", "dc");
this.registerNamespace("http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/", "Iptc4xmpCore");
this.registerNamespace("http://iptc.org/std/Iptc4xmpExt/2008-02-29/", "Iptc4xmpExt");
this.registerNamespace("http://ns.adobe.com/DICOM/", "DICOM");
this.registerNamespace("http://ns.useplus.org/ldf/xmp/1.0/", "plus");
this.registerNamespace("adobe:ns:meta/", "x");
this.registerNamespace("http://ns.adobe.com/iX/1.0/", "iX");
this.registerNamespace("http://ns.adobe.com/xap/1.0/", "xmp");
this.registerNamespace("http://ns.adobe.com/xap/1.0/rights/", "xmpRights");
this.registerNamespace("http://ns.adobe.com/xap/1.0/mm/", "xmpMM");
this.registerNamespace("http://ns.adobe.com/xap/1.0/bj/", "xmpBJ");
this.registerNamespace("http://ns.adobe.com/xmp/note/", "xmpNote");
this.registerNamespace("http://ns.adobe.com/pdf/1.3/", "pdf");
this.registerNamespace("http://ns.adobe.com/pdfx/1.3/", "pdfx");
this.registerNamespace("http://www.npes.org/pdfx/ns/id/", "pdfxid");
this.registerNamespace("http://www.aiim.org/pdfa/ns/schema#", "pdfaSchema");
this.registerNamespace("http://www.aiim.org/pdfa/ns/property#", "pdfaProperty");
this.registerNamespace("http://www.aiim.org/pdfa/ns/type#", "pdfaType");
this.registerNamespace("http://www.aiim.org/pdfa/ns/field#", "pdfaField");
this.registerNamespace("http://www.aiim.org/pdfa/ns/id/", "pdfaid");
this.registerNamespace("http://www.aiim.org/pdfa/ns/extension/", "pdfaExtension");
this.registerNamespace("http://ns.adobe.com/photoshop/1.0/", "photoshop");
this.registerNamespace("http://ns.adobe.com/album/1.0/", "album");
this.registerNamespace("http://ns.adobe.com/exif/1.0/", "exif");
this.registerNamespace("http://cipa.jp/exif/1.0/", "exifEX");
this.registerNamespace("http://ns.adobe.com/exif/1.0/aux/", "aux");
this.registerNamespace("http://ns.adobe.com/tiff/1.0/", "tiff");
this.registerNamespace("http://ns.adobe.com/png/1.0/", "png");
this.registerNamespace("http://ns.adobe.com/jpeg/1.0/", "jpeg");
this.registerNamespace("http://ns.adobe.com/jp2k/1.0/", "jp2k");
this.registerNamespace("http://ns.adobe.com/camera-raw-settings/1.0/", "crs");
this.registerNamespace("http://ns.adobe.com/StockPhoto/1.0/", "bmsp");
this.registerNamespace("http://ns.adobe.com/creatorAtom/1.0/", "creatorAtom");
this.registerNamespace("http://ns.adobe.com/asf/1.0/", "asf");
this.registerNamespace("http://ns.adobe.com/xmp/wav/1.0/", "wav");
this.registerNamespace("http://ns.adobe.com/bwf/bext/1.0/", "bext");
this.registerNamespace("http://ns.adobe.com/riff/info/", "riffinfo");
this.registerNamespace("http://ns.adobe.com/xmp/1.0/Script/", "xmpScript");
this.registerNamespace("http://ns.adobe.com/TransformXMP/", "txmp");
this.registerNamespace("http://ns.adobe.com/swf/1.0/", "swf");
this.registerNamespace("http://ns.adobe.com/xmp/1.0/DynamicMedia/", "xmpDM");
this.registerNamespace("http://ns.adobe.com/xmp/transient/1.0/", "xmpx");
this.registerNamespace("http://ns.adobe.com/xap/1.0/t/", "xmpT");
this.registerNamespace("http://ns.adobe.com/xap/1.0/t/pg/", "xmpTPg");
this.registerNamespace("http://ns.adobe.com/xap/1.0/g/", "xmpG");
this.registerNamespace("http://ns.adobe.com/xap/1.0/g/img/", "xmpGImg");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/Font#", "stFnt");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/Dimensions#", "stDim");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/ResourceEvent#", "stEvt");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/ResourceRef#", "stRef");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/Version#", "stVer");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/Job#", "stJob");
this.registerNamespace("http://ns.adobe.com/xap/1.0/sType/ManifestItem#", "stMfs");
this.registerNamespace("http://ns.adobe.com/xmp/Identifier/qual/1.0/", "xmpidq");
}
public synchronized XMPAliasInfo resolveAlias(String aliasNS, String aliasProp) {
String aliasPrefix = this.getNamespacePrefix(aliasNS);
if (aliasPrefix == null) {
return null;
}
return (XMPAliasInfo)this.aliasMap.get(aliasPrefix + aliasProp);
}
public synchronized XMPAliasInfo findAlias(String qname) {
return (XMPAliasInfo)this.aliasMap.get(qname);
}
public synchronized XMPAliasInfo[] findAliases(String aliasNS) {
String prefix = this.getNamespacePrefix(aliasNS);
ArrayList<XMPAliasInfo> result = new ArrayList<XMPAliasInfo>();
if (prefix != null) {
for (String qname : this.aliasMap.keySet()) {
if (!qname.startsWith(prefix)) continue;
result.add(this.findAlias(qname));
}
}
return result.toArray(new XMPAliasInfo[result.size()]);
}
synchronized void registerAlias(String aliasNS, String aliasProp, final String actualNS, final String actualProp, AliasOptions aliasForm) throws XMPException {
AliasOptions aliasOpts;
ParameterAsserts.assertSchemaNS(aliasNS);
ParameterAsserts.assertPropName(aliasProp);
ParameterAsserts.assertSchemaNS(actualNS);
ParameterAsserts.assertPropName(actualProp);
AliasOptions aliasOptions = aliasOpts = aliasForm != null ? new AliasOptions(XMPNodeUtils.verifySetOptions(aliasForm.toPropertyOptions(), null).getOptions()) : new AliasOptions();
if (this.p.matcher(aliasProp).find() || this.p.matcher(actualProp).find()) {
throw new XMPException("Alias and actual property names must be simple", 102);
}
String aliasPrefix = this.getNamespacePrefix(aliasNS);
final String actualPrefix = this.getNamespacePrefix(actualNS);
if (aliasPrefix == null) {
throw new XMPException("Alias namespace is not registered", 101);
}
if (actualPrefix == null) {
throw new XMPException("Actual namespace is not registered", 101);
}
String key = aliasPrefix + aliasProp;
if (this.aliasMap.containsKey(key)) {
throw new XMPException("Alias is already existing", 4);
}
if (this.aliasMap.containsKey(actualPrefix + actualProp)) {
throw new XMPException("Actual property is already an alias, use the base property", 4);
}
XMPAliasInfo aliasInfo = new XMPAliasInfo(){
public String getNamespace() {
return actualNS;
}
public String getPrefix() {
return actualPrefix;
}
public String getPropName() {
return actualProp;
}
public AliasOptions getAliasForm() {
return aliasOpts;
}
public String toString() {
return actualPrefix + actualProp + " NS(" + actualNS + "), FORM (" + this.getAliasForm() + ")";
}
};
this.aliasMap.put(key, aliasInfo);
}
public synchronized Map getAliases() {
return Collections.unmodifiableMap(new TreeMap(this.aliasMap));
}
private void registerStandardAliases() throws XMPException {
AliasOptions aliasToArrayOrdered = new AliasOptions().setArrayOrdered(true);
AliasOptions aliasToArrayAltText = new AliasOptions().setArrayAltText(true);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Author", "http://purl.org/dc/elements/1.1/", "creator", aliasToArrayOrdered);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Authors", "http://purl.org/dc/elements/1.1/", "creator", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Description", "http://purl.org/dc/elements/1.1/", "description", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Format", "http://purl.org/dc/elements/1.1/", "format", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Keywords", "http://purl.org/dc/elements/1.1/", "subject", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Locale", "http://purl.org/dc/elements/1.1/", "language", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/", "Title", "http://purl.org/dc/elements/1.1/", "title", null);
this.registerAlias("http://ns.adobe.com/xap/1.0/rights/", "Copyright", "http://purl.org/dc/elements/1.1/", "rights", null);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "Author", "http://purl.org/dc/elements/1.1/", "creator", aliasToArrayOrdered);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "BaseURL", "http://ns.adobe.com/xap/1.0/", "BaseURL", null);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "CreationDate", "http://ns.adobe.com/xap/1.0/", "CreateDate", null);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "Creator", "http://ns.adobe.com/xap/1.0/", "CreatorTool", null);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "ModDate", "http://ns.adobe.com/xap/1.0/", "ModifyDate", null);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "Subject", "http://purl.org/dc/elements/1.1/", "description", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/pdf/1.3/", "Title", "http://purl.org/dc/elements/1.1/", "title", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Author", "http://purl.org/dc/elements/1.1/", "creator", aliasToArrayOrdered);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Caption", "http://purl.org/dc/elements/1.1/", "description", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Copyright", "http://purl.org/dc/elements/1.1/", "rights", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Keywords", "http://purl.org/dc/elements/1.1/", "subject", null);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Marked", "http://ns.adobe.com/xap/1.0/rights/", "Marked", null);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "Title", "http://purl.org/dc/elements/1.1/", "title", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/photoshop/1.0/", "WebStatement", "http://ns.adobe.com/xap/1.0/rights/", "WebStatement", null);
this.registerAlias("http://ns.adobe.com/tiff/1.0/", "Artist", "http://purl.org/dc/elements/1.1/", "creator", aliasToArrayOrdered);
this.registerAlias("http://ns.adobe.com/tiff/1.0/", "Copyright", "http://purl.org/dc/elements/1.1/", "rights", null);
this.registerAlias("http://ns.adobe.com/tiff/1.0/", "DateTime", "http://ns.adobe.com/xap/1.0/", "ModifyDate", null);
this.registerAlias("http://ns.adobe.com/tiff/1.0/", "ImageDescription", "http://purl.org/dc/elements/1.1/", "description", null);
this.registerAlias("http://ns.adobe.com/tiff/1.0/", "Software", "http://ns.adobe.com/xap/1.0/", "CreatorTool", null);
this.registerAlias("http://ns.adobe.com/png/1.0/", "Author", "http://purl.org/dc/elements/1.1/", "creator", aliasToArrayOrdered);
this.registerAlias("http://ns.adobe.com/png/1.0/", "Copyright", "http://purl.org/dc/elements/1.1/", "rights", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/png/1.0/", "CreationTime", "http://ns.adobe.com/xap/1.0/", "CreateDate", null);
this.registerAlias("http://ns.adobe.com/png/1.0/", "Description", "http://purl.org/dc/elements/1.1/", "description", aliasToArrayAltText);
this.registerAlias("http://ns.adobe.com/png/1.0/", "ModificationTime", "http://ns.adobe.com/xap/1.0/", "ModifyDate", null);
this.registerAlias("http://ns.adobe.com/png/1.0/", "Software", "http://ns.adobe.com/xap/1.0/", "CreatorTool", null);
this.registerAlias("http://ns.adobe.com/png/1.0/", "Title", "http://purl.org/dc/elements/1.1/", "title", aliasToArrayAltText);
}
}