-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.go
More file actions
593 lines (413 loc) · 17.4 KB
/
context.go
File metadata and controls
593 lines (413 loc) · 17.4 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
package facesdk
/*
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
void* TDVContext_create(void** eh);
void TDVContext_destroy(void* context, void** eh);
void* TDVContext_createFromEncodedImage(const uint8_t* data, uint64_t dataSize, void** eh);
void* TDVContext_createFromFrame(uint8_t* data, int32_t width, int32_t height, int32_t format, int32_t baseAngle, void** eh);
void* TDVContext_createFromJsonFile(const char* path, void** eh);
void* TDVContext_getByIndex(void* ctx, int key, void** eh);
void* TDVContext_getByKey(void* ctx, const char* key, void** eh);
void* TDVContext_getOrInsertByKey(void* ctx, const char* key, void** eh);
void TDVContext_putStr(void* ctx, const char* str, void** eh);
void TDVContext_putLong(void* ctx, int64_t val, void** eh);
void TDVContext_putDouble(void* ctx, double val, void** eh);
void TDVContext_putBool(void* ctx, bool val, void** eh);
unsigned char* TDVContext_putDataPtr(void* ctx, unsigned char* val, uint64_t copy_sz, void** eh);
void TDVContext_putContextTemplate(void* context, void* value, void** errorHandler);
void TDVContext_putDynamicTemplateIndex(void* context, void* value, void** errorHandler);
const char* TDVContext_getStr(void* ctx, void** eh);
uint64_t TDVContext_getStrSize(void* ctx, void** eh);
int64_t TDVContext_getLong(void* ctx, void** eh);
uint64_t TDVContext_getUnsignedLong(void* ctx, void** eh);
double TDVContext_getDouble(void* ctx, void** eh);
bool TDVContext_getBool(void* ctx, void** eh);
unsigned char* TDVContext_getDataPtr(void* ctx, void** eh);
void* TDVContext_getContextTemplate(void* ctx, void** errorHandler);
void* TDVContext_getDynamicTemplateIndex(void* ctx, void** eh);
bool TDVContext_isNone(void* ctx, void** eh);
bool TDVContext_isArray(void* ctx, void** eh);
bool TDVContext_isObject(void* ctx, void** eh);
bool TDVContext_isBool(void* ctx, void** eh);
bool TDVContext_isLong(void* ctx, void** eh);
bool TDVContext_isUnsignedLong(void* ctx, void** eh);
bool TDVContext_isDouble(void* ctx, void** eh);
bool TDVContext_isString(void* ctx, void** eh);
bool TDVContext_isDataPtr(void* ctx, void** eh);
bool TDVContext_isDynamicTemplateIndex(void* ctx, void** eh);
bool TDVContext_isContextTemplate(void* ctx, void** eh);
void TDVContext_copy(void* src, void* dst, void** eh);
void* TDVContext_clone(void* ctx, void** eh);
void TDVContext_clear(void* ctx, void** eh);
void TDVContext_erase(void* ctx, const char* key, void** eh);
void TDVContext_reserve(void* ctx, const uint64_t size, void** eh);
bool TDVContext_contains(void* ctx, const char* key, void** eh);
bool TDVContext_empty(void* ctx, void** eh);
bool TDVContext_compare(void* ctx, void* ctx2, void** eh);
uint64_t TDVContext_getLength(void* ctx, void** eh);
char** TDVContext_getKeys(void* ctx, uint64_t length, void** eh);
void TDVContext_pushBack(void* handle_, void* data, bool copy, void** eh);
const char* TDVContext_serializeToJson(void* ctx, void** eh);
void TDVContext_saveToJsonFile(void* ctx, const char* path, void** eh);
void TDVContext_deleteString(const char* str, void** eh);
*/
import "C"
import (
"encoding/json"
"errors"
"unsafe"
)
type Format int
const (
FORMAT_BGR Format = iota
FORMAT_RGB
FORMAT_BGRA8888
FORMAT_YUV420
FORMAT_YUV_NV12
FORMAT_NV21
)
type Context struct {
implementation unsafe.Pointer
}
// Create empty Context
func CreateContext() (Context, error) {
exception := createException()
context := C.TDVContext_create(&exception)
return Context{implementation: context}, checkProcessingBlockException(exception)
}
// Create Context with prepared fields for using with ProcessingBlock from images like .jpeg, .png, ...
func CreateContextFromEncodedImage(data []byte) (Context, error) {
exception := createException()
dataPtr := C.CBytes(data)
context := C.TDVContext_createFromEncodedImage((*C.uint8_t)(dataPtr), C.uint64_t(len(data)), &exception)
C.free(dataPtr)
return Context{implementation: context}, checkProcessingBlockException(exception)
}
// Create Context with prepared fields for using with ProcessingBlock from raw bytes
func CreateContextFromFrame(data []byte, width int, height int, format Format, baseAngle int) (Context, error) {
exception := createException()
dataPtr := C.CBytes(data)
result := C.TDVContext_createFromFrame((*C.uint8_t)(dataPtr), C.int32_t(width), C.int32_t(height), C.int32_t(format), C.int32_t(baseAngle), &exception)
C.free(dataPtr)
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Create Context from .json file
func CreateContextFromJsonFile(path string) (Context, error) {
exception := createException()
pathPtr := C.CString(path)
result := C.TDVContext_createFromJsonFile(pathPtr, &exception)
C.free(unsafe.Pointer(pathPtr))
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Get Context field by index(Context must be array)
func (context Context) GetByIndex(index int) (Context, error) {
exception := createException()
result := C.TDVContext_getByIndex(context.implementation, C.int32_t(index), &exception)
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Get Context field by key(Context must be object)
func (context Context) GetByKey(key string) (Context, error) {
exception := createException()
keyPtr := C.CString(key)
result := C.TDVContext_getByKey(context.implementation, keyPtr, &exception)
C.free(unsafe.Pointer(keyPtr))
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Get or if key doesn't exist create Context field(Context must be object)
func (context *Context) GetOrInsertByKey(key string) (Context, error) {
exception := createException()
keyPtr := C.CString(key)
result := C.TDVContext_getOrInsertByKey(context.implementation, keyPtr, &exception)
C.free(unsafe.Pointer(keyPtr))
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Set string value
func (context *Context) SetString(value string) error {
exception := createException()
valuePtr := C.CString(value)
C.TDVContext_putStr(context.implementation, valuePtr, &exception)
C.free(unsafe.Pointer(valuePtr))
return checkProcessingBlockException(exception)
}
// Set int64 value
func (context *Context) SetInt(value int64) error {
exception := createException()
C.TDVContext_putLong(context.implementation, C.int64_t(value), &exception)
return checkProcessingBlockException(exception)
}
// Set float64 value
func (context *Context) SetFloat(value float64) error {
exception := createException()
C.TDVContext_putDouble(context.implementation, C.double(value), &exception)
return checkProcessingBlockException(exception)
}
// Set bool value
func (context *Context) SetBool(value bool) error {
exception := createException()
C.TDVContext_putBool(context.implementation, C.bool(value), &exception)
return checkProcessingBlockException(exception)
}
// Set []byte value
func (context *Context) SetDataPointer(value []byte) (unsafe.Pointer, error) {
exception := createException()
dataPtr := C.CBytes(value)
result := unsafe.Pointer(C.TDVContext_putDataPtr(context.implementation, (*C.uint8_t)(dataPtr), C.uint64_t(len(value)), &exception))
C.free(dataPtr)
return result, checkProcessingBlockException(exception)
}
// Set ContextTemplate value
func (context *Context) SetContextTemplate(value ContextTemplate) error {
exception := createException()
C.TDVContext_putContextTemplate(context.implementation, value.implementation, &exception)
return checkProcessingBlockException(exception)
}
// Set DynamicTemplateIndex value
func (context *Context) SetDynamicTemplateIndex(value DynamicTemplateIndex) error {
exception := createException()
C.TDVContext_putDynamicTemplateIndex(context.implementation, value.implementation, &exception)
return checkProcessingBlockException(exception)
}
// Get string value from Context
func (context Context) GetString() (string, error) {
exception := createException()
result := C.GoString(C.TDVContext_getStr(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get string size from Context
func (context Context) GetStringSize() (uint64, error) {
exception := createException()
result := (uint64)(C.TDVContext_getStrSize(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get int64 value from Context
func (context Context) GetInt() (int64, error) {
exception := createException()
result := (int64)(C.TDVContext_getLong(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get uint64 value from Context
func (context Context) GetUnsignedInt() (uint64, error) {
exception := createException()
result := (uint64)(C.TDVContext_getUnsignedLong(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get float64 value from Context
func (context Context) GetFloat() (float64, error) {
exception := createException()
result := (float64)(C.TDVContext_getDouble(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get ContextTemplate value from Context
func (context Context) GetContextTemplate() (ContextTemplate, error) {
exception := createException()
result := C.TDVContext_getContextTemplate(context.implementation, &exception)
return ContextTemplate{implementation: result}, checkProcessingBlockException(exception)
}
// Get DynamicTemplateIndex value from Context
func (context Context) GetDynamicTemplateIndex() (DynamicTemplateIndex, error) {
exception := createException()
result := C.TDVContext_getDynamicTemplateIndex(context.implementation, &exception)
return DynamicTemplateIndex{implementation: result}, checkProcessingBlockException(exception)
}
// Get bool value from Context
func (context Context) GetBool() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_getBool(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get unsafe.Pointer value from Context
func (context Context) GetDataPointer() (unsafe.Pointer, error) {
exception := createException()
result := unsafe.Pointer(C.TDVContext_getDataPtr(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is NULL
func (context Context) IsNone() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isNone(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is array
func (context Context) IsArray() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isArray(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is object
func (context Context) IsObject() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isObject(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is bool
func (context Context) IsBool() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isBool(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is int64
func (context Context) IsInt() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isLong(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is uint64
func (context Context) IsUnsignedInt() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isUnsignedLong(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is float64
func (context Context) IsFloat() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isDouble(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is string
func (context Context) IsString() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isString(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is unsafe.Pointer
func (context Context) IsDataPointer() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isDataPtr(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is DynamicTemplateIndex
func (context Context) IsDynamicTemplateIndex() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isDynamicTemplateIndex(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Check if Context is ContextTemplateIndex
func (context Context) IsContextTemplate() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_isContextTemplate(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Copy values from another Context
func (context *Context) Copy(value Context) error {
exception := createException()
C.TDVContext_copy(value.implementation, context.implementation, &exception)
return checkProcessingBlockException(exception)
}
// Create copy of this Context
func (context Context) Clone() (Context, error) {
exception := createException()
result := C.TDVContext_clone(context.implementation, &exception)
return Context{implementation: result}, checkProcessingBlockException(exception)
}
// Clear all data from Context
func (context *Context) Clear() error {
exception := createException()
C.TDVContext_clear(context.implementation, &exception)
return checkProcessingBlockException(exception)
}
// Remove value from Context
func (context *Context) Erase(key string) error {
exception := createException()
keyPtr := C.CString(key)
C.TDVContext_erase(context.implementation, keyPtr, &exception)
C.free(unsafe.Pointer(keyPtr))
return checkProcessingBlockException(exception)
}
// Reserve size for array values
func (context *Context) Reserve(size uint64) error {
exception := createException()
C.TDVContext_reserve(context.implementation, C.uint64_t(size), &exception)
return checkProcessingBlockException(exception)
}
// Check if value with key exists
func (context Context) Contains(key string) (bool, error) {
exception := createException()
keyPtr := C.CString(key)
result := (bool)(C.TDVContext_contains(context.implementation, keyPtr, &exception))
C.free(unsafe.Pointer(keyPtr))
return result, checkProcessingBlockException(exception)
}
// Check if Context has no values
func (context Context) IsEmpty() (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_empty(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Compare 2 Contexts
func (context Context) Compare(value Context) (bool, error) {
exception := createException()
result := (bool)(C.TDVContext_compare(context.implementation, value.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get Context array size
func (context Context) GetLength() (uint64, error) {
exception := createException()
result := (uint64)(C.TDVContext_getLength(context.implementation, &exception))
return result, checkProcessingBlockException(exception)
}
// Get all keys from object Context
func (context Context) GetKeys() ([]string, error) {
exception := createException()
length, err := context.GetLength()
if err != nil {
return []string{}, err
}
temp := C.TDVContext_getKeys(context.implementation, C.uint64_t(length), &exception)
err = checkProcessingBlockException(exception)
if err != nil {
return []string{}, err
}
result := make([]string, 0, length)
for i := 0; i < int(length); i++ {
result = append(result, getStringByIndex(temp, i))
}
return result, err
}
// Add value to Context array
func (context *Context) PushBack(value Context) error {
exception := createException()
C.TDVContext_pushBack(context.implementation, value.implementation, C.bool(true), &exception)
return checkProcessingBlockException(exception)
}
// Convert Context to JSON string
func (context Context) SerializeToJson() (string, error) {
serializeException := createException()
temp := C.TDVContext_serializeToJson(context.implementation, &serializeException)
err := checkProcessingBlockException(serializeException)
if err != nil {
return "", err
}
result := C.GoString(temp)
deleteException := createException()
C.TDVContext_deleteString(temp, &deleteException)
return result, checkProcessingBlockException(deleteException)
}
// Save Context to .json file
func (context Context) SaveToJsonFile(path string) error {
exception := createException()
pathPtr := C.CString(path)
C.TDVContext_saveToJsonFile(context.implementation, pathPtr, &exception)
C.free(unsafe.Pointer(pathPtr))
return checkProcessingBlockException(exception)
}
// Convert Context to map[string]any
func (context Context) ToMap() (map[string]any, error) {
jsonString, err := context.SerializeToJson()
if err != nil {
return nil, err
}
var result map[string]any
return result, json.Unmarshal([]byte(jsonString), &result)
}
// Destroy Context
func (context *Context) Close() error {
if context.implementation == nil {
return errors.New("Context already destroyed")
}
exception := createException()
C.TDVContext_destroy(context.implementation, &exception)
context.implementation = nil
return checkProcessingBlockException(exception)
}