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
|
#ifndef __XMPMeta_hpp__
#define __XMPMeta_hpp__
// =================================================================================================
// Copyright 2003 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.
// =================================================================================================
#include "public/include/XMP_Environment.h"
#include "public/include/XMP_Const.h"
#include "XMPCore/source/XMPCore_Impl.hpp"
#include "source/XMLParserAdapter.hpp"
// -------------------------------------------------------------------------------------------------
#ifndef DumpXMLParseTree
#define DumpXMLParseTree 0
#endif
extern XMP_VarString * xdefaultName; // Needed in XMPMeta-Parse.cpp, MoveExplicitAliases.
class XMPIterator;
class XMPUtils;
// -------------------------------------------------------------------------------------------------
class XMPMeta {
public:
static void
GetVersionInfo ( XMP_VersionInfo * info );
static bool
Initialize();
static void
Terminate() RELEASE_NO_THROW;
// ---------------------------------------------------------------------------------------------
XMPMeta();
virtual ~XMPMeta() RELEASE_NO_THROW;
// ---------------------------------------------------------------------------------------------
static XMP_OptionBits
GetGlobalOptions();
static void
SetGlobalOptions ( XMP_OptionBits options );
// ---------------------------------------------------------------------------------------------
static XMP_Status
DumpNamespaces ( XMP_TextOutputProc outProc,
void * refCon );
// ---------------------------------------------------------------------------------------------
static bool
RegisterNamespace ( XMP_StringPtr namespaceURI,
XMP_StringPtr suggestedPrefix,
XMP_StringPtr * registeredPrefix,
XMP_StringLen * prefixSize );
static bool
GetNamespacePrefix ( XMP_StringPtr namespaceURI,
XMP_StringPtr * namespacePrefix,
XMP_StringLen * prefixSize );
static bool
GetNamespaceURI ( XMP_StringPtr namespacePrefix,
XMP_StringPtr * namespaceURI,
XMP_StringLen * uriSize );
static void
DeleteNamespace ( XMP_StringPtr namespaceURI );
// ---------------------------------------------------------------------------------------------
virtual bool
GetProperty ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr * propValue,
XMP_StringLen * valueSize,
XMP_OptionBits * options ) const;
virtual bool
GetArrayItem ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName,
XMP_Index itemIndex,
XMP_StringPtr * itemValue,
XMP_StringLen * valueSize,
XMP_OptionBits * options ) const;
virtual bool
GetStructField ( XMP_StringPtr schemaNS,
XMP_StringPtr structName,
XMP_StringPtr fieldNS,
XMP_StringPtr fieldName,
XMP_StringPtr * fieldValue,
XMP_StringLen * valueSize,
XMP_OptionBits * options ) const;
virtual bool
GetQualifier ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr qualNS,
XMP_StringPtr qualName,
XMP_StringPtr * qualValue,
XMP_StringLen * valueSize,
XMP_OptionBits * options ) const;
// ---------------------------------------------------------------------------------------------
virtual void
SetProperty ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr propValue,
XMP_OptionBits options );
virtual void
SetArrayItem ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName,
XMP_Index itemIndex,
XMP_StringPtr itemValue,
XMP_OptionBits options );
virtual void
AppendArrayItem ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName,
XMP_OptionBits arrayOptions,
XMP_StringPtr itemValue,
XMP_OptionBits options );
void
SetStructField ( XMP_StringPtr schemaNS,
XMP_StringPtr structName,
XMP_StringPtr fieldNS,
XMP_StringPtr fieldName,
XMP_StringPtr fieldValue,
XMP_OptionBits options );
virtual void
SetQualifier ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr qualNS,
XMP_StringPtr qualName,
XMP_StringPtr qualValue,
XMP_OptionBits options );
// ---------------------------------------------------------------------------------------------
virtual void
DeleteProperty ( XMP_StringPtr schemaNS,
XMP_StringPtr propName );
virtual void
DeleteArrayItem ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName,
XMP_Index itemIndex );
virtual void
DeleteStructField ( XMP_StringPtr schemaNS,
XMP_StringPtr structName,
XMP_StringPtr fieldNS,
XMP_StringPtr fieldName );
virtual void
DeleteQualifier ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr qualNS,
XMP_StringPtr qualName );
// ---------------------------------------------------------------------------------------------
virtual bool
DoesPropertyExist ( XMP_StringPtr schemaNS,
XMP_StringPtr propName ) const;
bool
DoesArrayItemExist ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName,
XMP_Index itemIndex ) const;
bool
DoesStructFieldExist ( XMP_StringPtr schemaNS,
XMP_StringPtr structName,
XMP_StringPtr fieldNS,
XMP_StringPtr fieldName ) const;
bool
DoesQualifierExist ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_StringPtr qualNS,
XMP_StringPtr qualName ) const;
// ---------------------------------------------------------------------------------------------
virtual bool
GetLocalizedText ( XMP_StringPtr schemaNS,
XMP_StringPtr altTextName,
XMP_StringPtr genericLang,
XMP_StringPtr specificLang,
XMP_StringPtr * actualLang,
XMP_StringLen * langSize,
XMP_StringPtr * itemValue,
XMP_StringLen * valueSize,
XMP_OptionBits * options ) const;
virtual void
SetLocalizedText ( XMP_StringPtr schemaNS,
XMP_StringPtr altTextName,
XMP_StringPtr genericLang,
XMP_StringPtr specificLang,
XMP_StringPtr itemValue,
XMP_OptionBits options );
virtual void
DeleteLocalizedText ( XMP_StringPtr schemaNS,
XMP_StringPtr altTextName,
XMP_StringPtr genericLang,
XMP_StringPtr specificLang);
// ---------------------------------------------------------------------------------------------
bool
GetProperty_Bool ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
bool * propValue,
XMP_OptionBits * options ) const;
bool
GetProperty_Int ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_Int32 * propValue,
XMP_OptionBits * options ) const;
bool
GetProperty_Int64 ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_Int64 * propValue,
XMP_OptionBits * options ) const;
bool
GetProperty_Float ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
double * propValue,
XMP_OptionBits * options ) const;
bool
GetProperty_Date ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_DateTime * propValue,
XMP_OptionBits * options ) const;
// ---------------------------------------------------------------------------------------------
void
SetProperty_Bool ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
bool propValue,
XMP_OptionBits options );
void
SetProperty_Int ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_Int32 propValue,
XMP_OptionBits options );
void
SetProperty_Int64 ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_Int64 propValue,
XMP_OptionBits options );
void
SetProperty_Float ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
double propValue,
XMP_OptionBits options );
void
SetProperty_Date ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
const XMP_DateTime & propValue,
XMP_OptionBits options );
// ---------------------------------------------------------------------------------------------
virtual void
GetObjectName ( XMP_StringPtr * namePtr,
XMP_StringLen * nameLen ) const;
virtual void
SetObjectName ( XMP_StringPtr name );
XMP_OptionBits
GetObjectOptions() const;
void
SetObjectOptions ( XMP_OptionBits options );
virtual void
Sort();
virtual void
Erase();
virtual void
Clone ( XMPMeta * clone, XMP_OptionBits options ) const;
virtual XMP_Index
CountArrayItems ( XMP_StringPtr schemaNS,
XMP_StringPtr arrayName ) const;
virtual void
DumpObject ( XMP_TextOutputProc outProc,
void * refCon ) const;
// ---------------------------------------------------------------------------------------------
virtual void
ParseFromBuffer ( XMP_StringPtr buffer,
XMP_StringLen bufferSize,
XMP_OptionBits options );
virtual void
SerializeToBuffer ( XMP_VarString * rdfString,
XMP_OptionBits options,
XMP_StringLen padding,
XMP_StringPtr newline,
XMP_StringPtr indent,
XMP_Index baseIndent ) const;
// ---------------------------------------------------------------------------------------------
static void
SetDefaultErrorCallback ( XMPMeta_ErrorCallbackWrapper wrapperProc,
XMPMeta_ErrorCallbackProc clientProc,
void * context,
XMP_Uns32 limit );
virtual void
SetErrorCallback ( XMPMeta_ErrorCallbackWrapper wrapperProc,
XMPMeta_ErrorCallbackProc clientProc,
void * context,
XMP_Uns32 limit );
virtual void
ResetErrorCallbackLimit ( XMP_Uns32 limit );
class ErrorCallbackInfo : public GenericErrorCallback {
public:
XMPMeta_ErrorCallbackWrapper wrapperProc;
XMPMeta_ErrorCallbackProc clientProc;
void * context;
ErrorCallbackInfo() : wrapperProc(0), clientProc(0), context(0) {};
void Clear() { this->wrapperProc = 0; this->clientProc = 0; this->context = 0;
GenericErrorCallback::Clear(); };
bool CanNotify() const;
bool ClientCallbackWrapper ( XMP_StringPtr filePath, XMP_ErrorSeverity severity, XMP_Int32 cause, XMP_StringPtr messsage ) const;
};
// =============================================================================================
// ---------------------------------------------------------------------------------------------
// - Everything is built out of standard nodes. Each node has a name, value, option flags, a
// vector of child nodes, and a vector of qualifier nodes.
//
// - The option flags are those passed to SetProperty and returned from GetProperty. They tell
// if the node is simple, a struct or an array; whether it has qualifiers, etc.
//
// - The name of the node is an XML qualified name, of the form "prefix:simple-name". Since we
// force all namespaces to be known and to have unique prefixes, this is semantically equivalent
// to using a URI and simple name pair.
//
// - Although the value part is only for leaf properties and the children part is only for
// structs and arrays, it is easier to simply have them in every node. This keeps things visible
// so that debugging is easier
//
// - The top level node children are the namespaces that contain properties, the next level are
// the top level properties, lower levels are the fields of structs or items of arrays. The name
// of the top level nodes is just the namespace prefix, with the colon terminator. The name of
// top level properties includes the namespace prefix.
//
// - Any property node, at any level, can have qualifiers. These are themselves general property
// nodes. And could in fact themselves have qualifiers!
// ! Expose the implementation so that file static functions can see the data.
XMP_Int32 clientRefs; // ! Must be signed to allow decrement from 0.
XMP_ReadWriteLock lock;
// ! Any data member changes must be propagted to the Clone function!
XMP_Node tree;
XMLParserAdapter * xmlParser;
ErrorCallbackInfo errorCallback;
friend class XMPIterator;
friend class XMPUtils;
private:
// ! These are hidden on purpose:
XMPMeta ( const XMPMeta & /* original */ ) : tree(XMP_Node(0,"",0)), clientRefs(0), xmlParser(0)
{ XMP_Throw ( "Call to hidden constructor", kXMPErr_InternalFailure ); };
void operator= ( const XMPMeta & /* rhs */ )
{ XMP_Throw ( "Call to hidden operator=", kXMPErr_InternalFailure ); };
// Special support routines for parsing, here to be able to access the errorCallback.
void ProcessXMLTree ( XMP_OptionBits options );
bool ProcessXMLBuffer ( XMP_StringPtr buffer, XMP_StringLen xmpSize, bool lastClientCall );
void ProcessRDF ( const XML_Node & xmlTree, XMP_OptionBits options );
}; // class XMPMeta
// =================================================================================================
void
DumpNodeOptions(XMP_OptionBits options,
XMP_TextOutputProc outProc,
void * refCon);
void
NormalizeDCArrays(XMP_Node * xmpTree);
void
MoveExplicitAliases(XMP_Node * tree,
XMP_OptionBits parseOptions,
XMPMeta::ErrorCallbackInfo & errorCallback);
void
TouchUpDataModel(XMPMeta * xmp,
XMPMeta::ErrorCallbackInfo & errorCallback);
#endif // __XMPMeta_hpp__
|