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
|
// =================================================================================================
// Copyright Adobe
// Copyright 2004 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"
#include "public/include/XMP_Const.h"
#include "public/include/client-glue/WXMPFiles.hpp"
#include "source/XMP_ProgressTracker.hpp"
#include "XMPFiles/source/XMPFiles_Impl.hpp"
#include "XMPFiles/source/XMPFiles.hpp"
#if XMP_WinBuild
#if XMP_DebugBuild
#pragma warning ( disable : 4297 ) // function assumed not to throw an exception but does
#endif
#endif
#if __cplusplus
extern "C" {
#endif
// =================================================================================================
static WXMP_Result voidResult; // Used for functions that don't use the normal result mechanism.
// =================================================================================================
void WXMPFiles_GetVersionInfo_1 ( XMP_VersionInfo * versionInfo )
{
WXMP_Result * wResult = &voidResult; // ! Needed to "fool" the EnterWrapper macro.
XMP_ENTER_NoLock ( "WXMPFiles_GetVersionInfo_1" )
XMPFiles::GetVersionInfo ( versionInfo );
XMP_EXIT_NoThrow
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_Initialize_1 ( XMP_OptionBits options,
WXMP_Result * wResult )
{
XMP_ENTER_NoLock ( "WXMPFiles_Initialize_1" )
wResult->int32Result = XMPFiles::Initialize ( options, NULL, NULL );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
// -------------------------------------------------------------------------------------------------
void WXMPFiles_Initialize_2 ( XMP_OptionBits options,
const char * pluginFolder,
const char * plugins,
WXMP_Result * wResult )
{
XMP_ENTER_NoLock ( "WXMPFiles_Initialize_1" )
wResult->int32Result = XMPFiles::Initialize ( options, pluginFolder, plugins );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_Terminate_1()
{
WXMP_Result * wResult = &voidResult; // ! Needed to "fool" the EnterWrapper macro.
XMP_ENTER_NoLock ( "WXMPFiles_Terminate_1" )
XMPFiles::Terminate();
XMP_EXIT_NoThrow
}
// =================================================================================================
void WXMPFiles_CTor_1 ( WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_CTor_1" ) // No lib object yet, use the static entry.
XMPFiles * newObj = new XMPFiles();
++newObj->clientRefs;
XMP_Assert ( newObj->clientRefs == 1 );
wResult->ptrResult = newObj;
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_IncrementRefCount_1 ( XMPFilesRef xmpObjRef )
{
WXMP_Result * wResult = &voidResult; // ! Needed to "fool" the EnterWrapper macro.
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_IncrementRefCount_1" )
++thiz->clientRefs;
XMP_Assert ( thiz->clientRefs > 0 );
XMP_EXIT_NoThrow
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_DecrementRefCount_1 ( XMPFilesRef xmpObjRef )
{
WXMP_Result * wResult = &voidResult; // ! Needed to "fool" the EnterWrapper macro.
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_DecrementRefCount_1" )
XMP_Assert ( thiz->clientRefs > 0 );
--thiz->clientRefs;
if ( thiz->clientRefs <= 0 ) {
objLock.Release();
delete ( thiz );
}
XMP_EXIT_NoThrow
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_GetFormatInfo_1 ( XMP_FileFormat format,
XMP_OptionBits * flags,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_GetFormatInfo_1" )
wResult->int32Result = XMPFiles::GetFormatInfo ( format, flags );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_CheckFileFormat_1 ( XMP_StringPtr filePath,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_CheckFileFormat_1" )
wResult->int32Result = XMPFiles::CheckFileFormat ( filePath );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_CheckPackageFormat_1 ( XMP_StringPtr folderPath,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_CheckPackageFormat_1" )
wResult->int32Result = XMPFiles::CheckPackageFormat ( folderPath );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_GetFileModDate_1 ( XMP_StringPtr filePath,
XMP_DateTime * modDate,
XMP_FileFormat * format,
XMP_OptionBits options,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_GetFileModDate_1" )
wResult->int32Result = XMPFiles::GetFileModDate ( filePath, modDate, format, options );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_GetAssociatedResources_1 ( XMP_StringPtr filePath,
void * resourceList,
XMP_FileFormat format,
XMP_OptionBits options,
SetClientStringVectorProc SetClientStringVector,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_GetAssociatedResources_1" )
if ( resourceList == 0 ) XMP_Throw ( "An result resource list vector must be provided", kXMPErr_BadParam );
std::vector<std::string> resList; // Pass a local vector, not the client's.
(*SetClientStringVector) ( resourceList, 0, 0 ); // Clear the client's result vector.
wResult->int32Result = XMPFiles::GetAssociatedResources ( filePath, &resList, format, options );
if ( wResult->int32Result && (! resList.empty()) ) {
const size_t fileCount = resList.size();
std::vector<XMP_StringPtr> ptrArray;
ptrArray.reserve ( fileCount );
for ( size_t i = 0; i < fileCount; ++i ) ptrArray.push_back ( resList[i].c_str() );
(*SetClientStringVector) ( resourceList, ptrArray.data(), static_cast<XMP_Uns32>(fileCount ));
}
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_IsMetadataWritable_1 ( XMP_StringPtr filePath,
XMP_Bool * writable,
XMP_FileFormat format,
XMP_OptionBits options,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_IsMetadataWritable_1" )
wResult->int32Result = XMPFiles::IsMetadataWritable ( filePath, writable, format, options );
XMP_EXIT
}
// =================================================================================================
void WXMPFiles_OpenFile_1 ( XMPFilesRef xmpObjRef,
XMP_StringPtr filePath,
XMP_FileFormat format,
XMP_OptionBits openFlags,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_OpenFile_1" )
StartPerfCheck ( kAPIPerf_OpenFile, filePath );
bool ok = thiz->OpenFile ( filePath, format, openFlags );
wResult->int32Result = ok;
EndPerfCheck ( kAPIPerf_OpenFile );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
#if XMP_StaticBuild // ! Client XMP_IO objects can only be used in static builds.
void WXMPFiles_OpenFile_2 ( XMPFilesRef xmpObjRef,
XMP_IO* clientIO,
XMP_FileFormat format,
XMP_OptionBits openFlags,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_OpenFile_2" )
StartPerfCheck ( kAPIPerf_OpenFile, "<client-managed>" );
bool ok = thiz->OpenFile ( clientIO, format, openFlags );
wResult->int32Result = ok;
EndPerfCheck ( kAPIPerf_OpenFile );
XMP_EXIT
}
#endif
// -------------------------------------------------------------------------------------------------
void WXMPFiles_CloseFile_1 ( XMPFilesRef xmpObjRef,
XMP_OptionBits closeFlags,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_CloseFile_1" )
StartPerfCheck ( kAPIPerf_CloseFile, "" );
thiz->CloseFile ( closeFlags );
EndPerfCheck ( kAPIPerf_CloseFile );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_GetFileInfo_1 ( XMPFilesRef xmpObjRef,
void * clientPath,
XMP_OptionBits * openFlags,
XMP_FileFormat * format,
XMP_OptionBits * handlerFlags,
SetClientStringProc SetClientString,
WXMP_Result * wResult )
{
XMP_ENTER_ObjRead ( XMPFiles, "WXMPFiles_GetFileInfo_1" )
XMP_StringPtr pathStr;
XMP_StringLen pathLen;
bool isOpen = thiz.GetFileInfo ( &pathStr, &pathLen, openFlags, format, handlerFlags );
if ( isOpen && (clientPath != 0) ) (*SetClientString) ( clientPath, pathStr, pathLen );
wResult->int32Result = isOpen;
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_SetAbortProc_1 ( XMPFilesRef xmpObjRef,
XMP_AbortProc abortProc,
void * abortArg,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_SetAbortProc_1" )
thiz->SetAbortProc ( abortProc, abortArg );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_GetXMP_1 ( XMPFilesRef xmpObjRef,
XMPMetaRef xmpRef,
void * clientPacket,
XMP_PacketInfo * packetInfo,
SetClientStringProc SetClientString,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_GetXMP_1" )
StartPerfCheck ( kAPIPerf_GetXMP, "" );
bool hasXMP = false;
XMP_StringPtr packetStr = NULL;
XMP_StringLen packetLen = 0;
/*Adding check to handle case where a client might not send XMPMetaRef but still want xmp packet in return. eg. CTECHXMP-4170329*/
if ( xmpRef == 0 && clientPacket != 0 ) {
hasXMP = thiz->GetXMP ( 0, &packetStr, &packetLen, packetInfo );
} else if ( xmpRef == 0 && clientPacket == 0 ) {
hasXMP = thiz->GetXMP( 0, 0, 0, packetInfo );
}
else {
SXMPMeta xmpObj ( xmpRef );
hasXMP = thiz->GetXMP ( &xmpObj, &packetStr, &packetLen, packetInfo );
}
if ( hasXMP && (clientPacket != 0) ) (*SetClientString) ( clientPacket, packetStr, packetLen );
wResult->int32Result = hasXMP;
EndPerfCheck ( kAPIPerf_GetXMP );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_PutXMP_1 ( XMPFilesRef xmpObjRef,
XMPMetaRef xmpRef, // ! Only one of the XMP object or packet are passed.
XMP_StringPtr xmpPacket,
XMP_StringLen xmpPacketLen,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_PutXMP_1" )
StartPerfCheck ( kAPIPerf_PutXMP, "" );
if ( xmpRef != 0 ) {
thiz->PutXMP ( xmpRef );
} else {
thiz->PutXMP ( xmpPacket, xmpPacketLen );
}
EndPerfCheck ( kAPIPerf_PutXMP );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_CanPutXMP_1 ( XMPFilesRef xmpObjRef,
XMPMetaRef xmpRef, // ! Only one of the XMP object or packet are passed.
XMP_StringPtr xmpPacket,
XMP_StringLen xmpPacketLen,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_CanPutXMP_1" )
StartPerfCheck ( kAPIPerf_CanPutXMP, "" );
if ( xmpRef != 0 ) {
wResult->int32Result = thiz->CanPutXMP ( xmpRef );
} else {
wResult->int32Result = thiz->CanPutXMP ( xmpPacket, xmpPacketLen );
}
EndPerfCheck ( kAPIPerf_CanPutXMP );
XMP_EXIT
}
// =================================================================================================
void WXMPFiles_SetDefaultProgressCallback_1 ( XMP_ProgressReportWrapper wrapperProc,
XMP_ProgressReportProc clientProc,
void * context,
float interval,
XMP_Bool sendStartStop,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_SetDefaultProgressCallback_1" )
XMP_ProgressTracker::CallbackInfo cbInfo ( wrapperProc, clientProc, context, interval, ConvertXMP_BoolToBool( sendStartStop ) );
XMPFiles::SetDefaultProgressCallback ( cbInfo );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_SetProgressCallback_1 ( XMPFilesRef xmpObjRef,
XMP_ProgressReportWrapper wrapperProc,
XMP_ProgressReportProc clientProc,
void * context,
float interval,
XMP_Bool sendStartStop,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_SetProgressCallback_1" )
XMP_ProgressTracker::CallbackInfo cbInfo ( wrapperProc, clientProc, context, interval, ConvertXMP_BoolToBool( sendStartStop) );
thiz->SetProgressCallback ( cbInfo );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_SetDefaultErrorCallback_1 ( XMPFiles_ErrorCallbackWrapper wrapperProc,
XMPFiles_ErrorCallbackProc clientProc,
void * context,
XMP_Uns32 limit,
WXMP_Result * wResult )
{
XMP_ENTER_Static ( "WXMPFiles_SetDefaultErrorCallback_1" )
XMPFiles::SetDefaultErrorCallback ( wrapperProc, clientProc, context, limit );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_SetErrorCallback_1 ( XMPFilesRef xmpObjRef,
XMPFiles_ErrorCallbackWrapper wrapperProc,
XMPFiles_ErrorCallbackProc clientProc,
void * context,
XMP_Uns32 limit,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_SetErrorCallback_1" )
thiz->SetErrorCallback ( wrapperProc, clientProc, context, limit );
XMP_EXIT
}
// -------------------------------------------------------------------------------------------------
void WXMPFiles_ResetErrorCallbackLimit_1 ( XMPFilesRef xmpObjRef,
XMP_Uns32 limit,
WXMP_Result * wResult )
{
XMP_ENTER_ObjWrite ( XMPFiles, "WXMPFiles_ResetErrorCallbackLimit_1" )
thiz->ResetErrorCallbackLimit ( limit );
XMP_EXIT
}
// =================================================================================================
#if __cplusplus
}
#endif
|