-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.cpp
463 lines (383 loc) · 15.4 KB
/
config.cpp
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
#include <OpenColorIO/OpenColorIO.h>
#include <iostream>
#include <sstream>
#include <cstring>
#include <string>
#include "ocio.h"
#include "ocio_abi.h"
#include "storage.h"
#include "colorspace.h"
#include "context.h"
#include "processor.h"
#include "transform.h"
namespace OCIO = OCIO_NAMESPACE;
namespace ocigo {
IndexMap<OCIO::ConfigRcPtr> g_Config_map;
}
extern "C" {
void deleteConfig(Config *p) {
if (p != NULL) {
if (p->handle) {
ocigo::g_Config_map.remove(p->handle);
p->handle = 0;
}
freeHandleContext(p);
}
}
// Config Init
Config* Config_Create() {
return (Config*) NEW_HANDLE_CONTEXT(ocigo::g_Config_map.add(OCIO::Config::Create()));
}
Config* GetCurrentConfig() {
Config* c = NEW_HANDLE_CONTEXT();
BEGIN_CATCH_CTX_ERR(c)
c->handle = ocigo::g_Config_map.add(
OCIO_CONST_POINTER_CAST<OCIO::Config>(OCIO::GetCurrentConfig()));
END_CATCH_CTX_ERR(c)
return c;
}
void SetCurrentConfig(Config* c) {
BEGIN_CATCH_CTX_ERR(c)
OCIO::SetCurrentConfig(ocigo::g_Config_map.get(c->handle));
END_CATCH_CTX_ERR(c)
}
Config* Config_CreateFromEnv() {
Config* c = NEW_HANDLE_CONTEXT();
BEGIN_CATCH_CTX_ERR(c)
c->handle = ocigo::g_Config_map.add(
OCIO_CONST_POINTER_CAST<OCIO::Config>(OCIO::Config::CreateFromEnv()));
END_CATCH_CTX_ERR(c)
return c;
}
Config* Config_CreateFromFile(const char* filename) {
Config* c = NEW_HANDLE_CONTEXT();
BEGIN_CATCH_CTX_ERR(c)
c->handle = ocigo::g_Config_map.add(
OCIO_CONST_POINTER_CAST<OCIO::Config>(OCIO::Config::CreateFromFile(filename)));
END_CATCH_CTX_ERR(c)
return c;
}
Config* Config_CreateFromData(const char* data) {
std::stringstream s;
s << data;
s.seekp(0);
Config* c = NEW_HANDLE_CONTEXT();
BEGIN_CATCH_CTX_ERR(c)
c->handle = ocigo::g_Config_map.add(
OCIO_CONST_POINTER_CAST<OCIO::Config>(OCIO::Config::CreateFromStream(s)));
END_CATCH_CTX_ERR(c)
return c;
}
Config* Config_createEditableCopy(Config* p) {
Config* cpy = NEW_HANDLE_CONTEXT();
BEGIN_CATCH_CTX_ERR(p)
cpy->handle = ocigo::g_Config_map.add(ocigo::g_Config_map.get(p->handle).get()->createEditableCopy());
END_CATCH_CTX_ERR(p)
return cpy;
}
void Config_sanityCheck(Config* p) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->sanityCheck();
END_CATCH_CTX_ERR(p)
}
char* Config_serialize(Config* p) {
std::stringstream s;
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->serialize(s);
END_CATCH_CTX_ERR(p)
char* cstr = new char[s.str().length()+1];
std::strcpy(cstr, s.str().c_str());
return cstr;
}
const char* Config_getCacheID(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getCacheID();
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getCacheIDWithContext(Config* p, ContextId c) {
const char* ret = NULL;
OCIO::ConstContextRcPtr context = ocigo::g_Context_map.get(c->handle);
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getCacheID(context);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getDescription(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDescription();
END_CATCH_CTX_ERR(p)
return ret;
}
// Config Resources
ContextId Config_getCurrentContext(Config* p) {
OCIO::ContextRcPtr ptr;
BEGIN_CATCH_CTX_ERR(p)
ptr = OCIO_CONST_POINTER_CAST<OCIO::Context>(ocigo::g_Config_map.get(p->handle).get()->getCurrentContext());
END_CATCH_CTX_ERR(p)
if (ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Context_map.add(ptr));
}
const char* Config_getSearchPath(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getSearchPath();
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getWorkingDir(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getWorkingDir();
END_CATCH_CTX_ERR(p)
return ret;
}
// Config Processors
ProcessorId Config_getProcessor_CT_CS_CS(Config* p, ContextId ct, ColorSpaceId srcCS, ColorSpaceId dstCS) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstContextRcPtr ct_ptr = ocigo::g_Context_map.get(ct->handle);
OCIO::ConstColorSpaceRcPtr srcCS_ptr = ocigo::g_ColorSpace_map.get(srcCS);
OCIO::ConstColorSpaceRcPtr dstCS_ptr = ocigo::g_ColorSpace_map.get(dstCS);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(ct_ptr, srcCS_ptr, dstCS_ptr);
END_CATCH_CTX_ERR(p)
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_CS_CS(Config* p, ColorSpaceId srcCS, ColorSpaceId dstCS) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstColorSpaceRcPtr srcCS_ptr = ocigo::g_ColorSpace_map.get(srcCS);
OCIO::ConstColorSpaceRcPtr dstCS_ptr = ocigo::g_ColorSpace_map.get(dstCS);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(srcCS_ptr, dstCS_ptr);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_S_S(Config* p, const char* srcName, const char* dstName) {
OCIO::ConstProcessorRcPtr ptr;
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(srcName, dstName);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_CT_S_S(Config* p, ContextId ct, const char* srcName, const char* dstName) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstContextRcPtr ct_ptr = ocigo::g_Context_map.get(ct->handle);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(ct_ptr, srcName, dstName);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_TX(Config* p, TransformId tx) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstTransformRcPtr tx_ptr = ocigo::g_Transform_map.get(tx);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(tx_ptr);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_TX_D(Config* p, TransformId tx, TransformDirection direction) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstTransformRcPtr tx_ptr = ocigo::g_Transform_map.get(tx);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(
tx_ptr, (OCIO::TransformDirection)direction);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
ProcessorId Config_getProcessor_CT_TX_D(Config* p, ContextId ct, TransformId tx, TransformDirection direction) {
OCIO::ConstProcessorRcPtr ptr;
OCIO::ConstContextRcPtr ct_ptr = ocigo::g_Context_map.get(ct->handle);
OCIO::ConstTransformRcPtr tx_ptr = ocigo::g_Transform_map.get(tx);
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getProcessor(
ct_ptr, tx_ptr, (OCIO::TransformDirection)direction);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return NEW_HANDLE_CONTEXT(ocigo::g_Processor_map.add(OCIO_CONST_POINTER_CAST<OCIO::Processor>(ptr)));
}
// Config ColorSpaces
int Config_getNumColorSpaces(Config* p) {
int ret = 0;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getNumColorSpaces();
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getColorSpaceNameByIndex(Config* p, int index) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getColorSpaceNameByIndex(index);
END_CATCH_CTX_ERR(p)
return ret;
}
ColorSpaceId Config_getColorSpace(Config* p, const char* name) {
OCIO::ConstColorSpaceRcPtr ptr;
BEGIN_CATCH_CTX_ERR(p)
ptr = ocigo::g_Config_map.get(p->handle).get()->getColorSpace(name);
END_CATCH_CTX_ERR(p)
if ( ptr == NULL) { return 0; }
return ocigo::g_ColorSpace_map.add(OCIO_CONST_POINTER_CAST<OCIO::ColorSpace>(ptr));
}
int Config_getIndexForColorSpace(Config* p, const char* name) {
int ret = -1;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getIndexForColorSpace(name);
END_CATCH_CTX_ERR(p)
return ret;
}
void Config_addColorSpace(Config* p, ColorSpaceId cs) {
OCIO::ConstColorSpaceRcPtr colorspace = ocigo::g_ColorSpace_map.get(cs);
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->addColorSpace(colorspace);
END_CATCH_CTX_ERR(p)
}
void Config_clearColorSpaces(Config* p) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->clearColorSpaces();
END_CATCH_CTX_ERR(p)
}
const char* Config_parseColorSpaceFromString(Config* p, const char* str) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->parseColorSpaceFromString(str);
END_CATCH_CTX_ERR(p)
return ret;
}
bool Config_isStrictParsingEnabled(Config* p) {
bool ret = false;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->isStrictParsingEnabled();
END_CATCH_CTX_ERR(p)
return ret;
}
void Config_setStrictParsingEnabled(Config* p, bool enabled) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->setStrictParsingEnabled(enabled);
END_CATCH_CTX_ERR(p)
}
// Config Roles
void Config_setRole(Config* p, const char* role, const char* colorSpaceName) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->setRole(role, colorSpaceName);
END_CATCH_CTX_ERR(p)
}
int Config_getNumRoles(Config* p) {
int ret = 0;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getNumRoles();
END_CATCH_CTX_ERR(p)
return ret;
}
bool Config_hasRole(Config* p, const char* role) {
bool ret = false;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->hasRole(role);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getRoleName(Config* p, int index) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getRoleName(index);
END_CATCH_CTX_ERR(p)
return ret;
}
// Config Display/View Registration
const char* Config_getDefaultDisplay(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDefaultDisplay();
END_CATCH_CTX_ERR(p)
return ret;
}
int Config_getNumDisplays(Config* p) {
int ret = 0;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getNumDisplays();
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getDisplay(Config* p, int index) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDisplay(index);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getDefaultView(Config* p, const char* display) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDefaultView(display);
END_CATCH_CTX_ERR(p)
return ret;
}
int Config_getNumViews(Config* p, const char* display) {
int ret = 0;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getNumViews(display);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getView(Config* p, const char* display, int index) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getView(display, index);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getDisplayColorSpaceName(Config* p, const char* display, const char* view) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDisplayColorSpaceName(display, view);
END_CATCH_CTX_ERR(p)
return ret;
}
const char* Config_getDisplayLooks(Config* p, const char* display, const char* view) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getDisplayLooks(display, view);
END_CATCH_CTX_ERR(p)
return ret;
}
void Config_addDisplay(Config* p, const char* display, const char* view, const char* colorSpaceName, const char* looks) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->addDisplay(display, view, colorSpaceName, looks);
END_CATCH_CTX_ERR(p)
}
void Config_clearDisplays(Config* p) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->clearDisplays();
END_CATCH_CTX_ERR(p)
}
void Config_setActiveDisplays(Config* p, const char* displays) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->setActiveDisplays(displays);
END_CATCH_CTX_ERR(p)
}
const char* Config_getActiveDisplays(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getActiveDisplays();
END_CATCH_CTX_ERR(p)
return ret;
}
void Config_setActiveViews(Config* p, const char* views) {
BEGIN_CATCH_CTX_ERR(p)
ocigo::g_Config_map.get(p->handle).get()->setActiveViews(views);
END_CATCH_CTX_ERR(p)
}
const char* Config_getActiveViews(Config* p) {
const char* ret = NULL;
BEGIN_CATCH_CTX_ERR(p)
ret = ocigo::g_Config_map.get(p->handle).get()->getActiveViews();
END_CATCH_CTX_ERR(p)
return ret;
}
}