-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathnjsModule.h
998 lines (878 loc) · 34.4 KB
/
njsModule.h
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
// Copyright (c) 2019, 2025, Oracle and/or its affiliates.
//-----------------------------------------------------------------------------
//
// This software is dual-licensed to you under the Universal Permissive License
// (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
// 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose
// either license.
//
// If you elect to accept the software under the Apache License, Version 2.0,
// the following applies:
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// NAME
// njsModule.h
//
// DESCRIPTION
// Definitions used by the module.
//
//-----------------------------------------------------------------------------
#ifndef __NJSMODULE_H__
#define __NJSMODULE_H__
#define NAPI_VERSION 6
#include <node_api.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "dpi.h"
#include "uv.h"
// maximum length of error messages
#define NJS_MAX_ERROR_MSG_LEN 256
// define macros for clearing memory
#define NJS_FREE_AND_CLEAR(var) \
if (var) { \
free((void*) var); \
var = NULL; \
}
#define NJS_DELETE_REF_AND_CLEAR(var) \
if (var) { \
napi_delete_reference(env, var); \
var = NULL; \
}
// define macro for checking the result of an Node-API call
#define NJS_CHECK_NAPI(env, status) \
if ((status) != napi_ok) \
return njsUtils_genericThrowError(env, __FILE__, __LINE__);
// define macro for synchronous Node-API methods
#define NJS_NAPI_METHOD_DECL_SYNC(name) \
static bool name##_(napi_env, napi_value*, napi_value, njsModuleGlobals*, \
void*, napi_value*); \
static napi_value name(napi_env, napi_callback_info)
#define NJS_NAPI_METHOD_IMPL_SYNC(name, numArgs, classDef) \
static napi_value name(napi_env env, napi_callback_info info) { \
napi_value callingObj, args[numArgs + 1], returnValue = NULL; \
void* callingInstance; \
njsModuleGlobals *globals; \
if (!njsUtils_validateArgs(env, info, numArgs, args, &globals, \
&callingObj, classDef, (void**) &callingInstance)) \
return NULL; \
if (!name##_(env, args, callingObj, globals, callingInstance, \
&returnValue)) { \
return NULL; \
} \
return returnValue; \
} \
static bool name##_(napi_env env, napi_value *args, \
napi_value callingObj, njsModuleGlobals *globals, \
void *callingInstance, napi_value *returnValue)
// define macro for asynchronous Node-API methods
#define NJS_NAPI_METHOD_DECL_ASYNC(name) \
static bool name##_(napi_env, napi_value*, njsBaton*, \
napi_value*); \
static napi_value name(napi_env, napi_callback_info)
#define NJS_NAPI_METHOD_IMPL_ASYNC(name, numArgs, classDef) \
static napi_value name(napi_env env, napi_callback_info info) { \
napi_value args[numArgs + 1], returnValue = NULL; \
njsBaton *baton = NULL; \
if (!njsUtils_createBaton(env, info, numArgs, args, classDef, &baton)) \
return NULL; \
if (!name##_(env, args, baton, &returnValue)) { \
if (baton->deferred) { \
napi_reject_deferred(env, baton->deferred, NULL); \
njsBaton_free(baton, env); \
} else { \
njsBaton_reportError(baton, env); \
} \
return NULL; \
} \
return returnValue; \
} \
static bool name##_(napi_env env, napi_value* args, njsBaton *baton, \
napi_value *returnValue)
// define macros for defining other Node-API functions; many are identical but
// different names are used to make it easier to read
#define NJS_NAPI_GETTER(name) \
napi_value name(napi_env, napi_callback_info)
#define NJS_NAPI_SETTER(name) \
napi_value name(napi_env, napi_callback_info)
#define NJS_NAPI_FINALIZE(name) \
void name(napi_env, void*, void*)
#define NJS_ASYNC_METHOD(name) \
bool name(njsBaton*)
#define NJS_ASYNC_POST_METHOD(name) \
bool name(njsBaton*, napi_env, napi_value*)
#define NJS_PROCESS_ARGS_METHOD(name) \
bool name(njsBaton*, napi_env, napi_value*)
// default value for bind option maxSize
#define NJS_MAX_OUT_BIND_SIZE 200
// max number of bytes for data converted to string with fetchAsString or
// fetchInfo
#define NJS_MAX_FETCH_AS_STRING_SIZE 200
// encoding name to use for all strings
#define NJS_ENCODING "UTF-8"
//-----------------------------------------------------------------------------
// enumerations
//-----------------------------------------------------------------------------
// bind directions
#define NJS_BIND_IN 3001
#define NJS_BIND_INOUT 3002
#define NJS_BIND_OUT 3003
// data types (loosely based on Javascript types)
#define NJS_DATATYPE_DEFAULT 0
#define NJS_DATATYPE_STR DPI_ORACLE_TYPE_VARCHAR
#define NJS_DATATYPE_NUM DPI_ORACLE_TYPE_NUMBER
#define NJS_DATATYPE_DATE DPI_ORACLE_TYPE_TIMESTAMP_LTZ
#define NJS_DATATYPE_CURSOR DPI_ORACLE_TYPE_STMT
#define NJS_DATATYPE_BUFFER DPI_ORACLE_TYPE_RAW
#define NJS_DATATYPE_CLOB DPI_ORACLE_TYPE_CLOB
#define NJS_DATATYPE_NCLOB DPI_ORACLE_TYPE_NCLOB
#define NJS_DATATYPE_BLOB DPI_ORACLE_TYPE_BLOB
#define NJS_DATATYPE_BFILE DPI_ORACLE_TYPE_BFILE
#define NJS_DATATYPE_BOOLEAN DPI_ORACLE_TYPE_BOOLEAN
#define NJS_DATATYPE_OBJECT DPI_ORACLE_TYPE_OBJECT
#define NJS_DATATYPE_JSON DPI_ORACLE_TYPE_JSON
// error messages used in the C code
#define NJS_ERR_UNSUPPORTED_DATA_TYPE \
"NJS-010: unsupported data type %d in column %u"
#define NJS_ERR_INSUFFICIENT_BUFFER_FOR_BINDS \
"NJS-016: buffer is too small for OUT binds"
#define NJS_ERR_INSUFFICIENT_MEMORY \
"NJS-024: memory allocation failed"
#define NJS_ERR_UNSUPPORTED_DATA_TYPE_IN_JSON \
"NJS-078: unsupported data type %d in JSON value"
#define NJS_ERR_VECTOR_FORMAT_NOT_SUPPORTED \
"NJS-144: VECTOR format %d is not supported"
#define NJS_ERR_INTERNAL \
"NJS-106: internal error: "
// pool statuses
#define NJS_POOL_STATUS_OPEN 6000
#define NJS_POOL_STATUS_DRAINING 6001
#define NJS_POOL_STATUS_CLOSED 6002
#define NJS_POOL_STATUS_RECONFIGURING 6003
// values used for SODA collection creation mode
#define NJS_SODA_COLL_CREATE_MODE_DEFAULT 0
#define NJS_SODA_COLL_CREATE_MODE_MAP 5001
// max value used for duplicate name composition (requires space for maximum
// name length (128) and suffix added
#define NJS_MAX_COL_NAME_BUFFER_LENGTH 200
//-----------------------------------------------------------------------------
// forward declarations
//-----------------------------------------------------------------------------
typedef struct njsAqDeqOptions njsAqDeqOptions;
typedef struct njsAqEnqOptions njsAqEnqOptions;
typedef struct njsAqMessage njsAqMessage;
typedef struct njsAqQueue njsAqQueue;
typedef struct njsBaton njsBaton;
typedef struct njsClassDef njsClassDef;
typedef struct njsConnection njsConnection;
typedef struct njsDataTypeInfo njsDataTypeInfo;
typedef struct njsImplicitResult njsImplicitResult;
typedef struct njsJsonBuffer njsJsonBuffer;
typedef struct njsLob njsLob;
typedef struct njsLobBuffer njsLobBuffer;
typedef struct njsModuleGlobals njsModuleGlobals;
typedef struct njsPool njsPool;
typedef struct njsResultSet njsResultSet;
typedef struct njsSodaCollection njsSodaCollection;
typedef struct njsSodaDatabase njsSodaDatabase;
typedef struct njsSodaDocCursor njsSodaDocCursor;
typedef struct njsSodaDocument njsSodaDocument;
typedef struct njsSodaOperation njsSodaOperation;
typedef struct njsSubscription njsSubscription;
typedef struct njsVariable njsVariable;
typedef struct njsVariableBuffer njsVariableBuffer;
typedef struct njsDbObject njsDbObject;
typedef struct njsDbObjectType njsDbObjectType;
typedef struct njsDbObjectAttr njsDbObjectAttr;
typedef struct njsTokenCallback njsTokenCallback;
//-----------------------------------------------------------------------------
// class definitions (defined in class implementation files)
//-----------------------------------------------------------------------------
extern const njsClassDef njsClassDefAqDeqOptions;
extern const njsClassDef njsClassDefAqEnqOptions;
extern const njsClassDef njsClassDefAqMessage;
extern const njsClassDef njsClassDefAqQueue;
extern const njsClassDef njsClassDefDbObject;
extern const njsClassDef njsClassDefConnection;
extern const njsClassDef njsClassDefLob;
extern const njsClassDef njsClassDefOracleDb;
extern const njsClassDef njsClassDefPool;
extern const njsClassDef njsClassDefResultSet;
extern const njsClassDef njsClassDefSodaCollection;
extern const njsClassDef njsClassDefSodaDatabase;
extern const njsClassDef njsClassDefSodaDocCursor;
extern const njsClassDef njsClassDefSodaDocument;
extern const njsClassDef njsClassDefSodaOperation;
//-----------------------------------------------------------------------------
// structures
//-----------------------------------------------------------------------------
// data for class AqDeqOptions exposed to JS.
struct njsAqDeqOptions {
dpiDeqOptions *handle;
};
// data for class AqEnqOptions exposed to JS.
struct njsAqEnqOptions {
dpiEnqOptions *handle;
uint16_t deliveryMode;
};
// data for class AqMessage exposed to JS.
struct njsAqMessage {
dpiMsgProps *handle;
njsDbObjectType *objectType;
bool isPayloadJsonType;
};
// data for class AqQueue exposed to JS.
struct njsAqQueue {
dpiQueue *handle;
njsConnection *conn;
njsDbObjectType *payloadObjectType;
bool isJson;
};
// data for asynchronous functions
struct njsBaton {
// assumed to be available at all times
njsModuleGlobals *globals;
void *callingInstance;
// version information
dpiVersionInfo versionInfo;
// error handling
bool dpiError;
bool hasError;
char error[NJS_MAX_ERROR_MSG_LEN + 1];
dpiErrorInfo errorInfo;
dpiErrorInfo warningInfo;
// strings (requires free)
char *sql;
size_t sqlLength;
char *user;
size_t userLength;
char *password;
size_t passwordLength;
char *newPassword;
size_t newPasswordLength;
char *connectString;
size_t connectStringLength;
char *connectionClass;
size_t connectionClassLength;
char *edition;
size_t editionLength;
char *ipAddress;
size_t ipAddressLength;
char *name;
size_t nameLength;
char *plsqlFixupCallback;
size_t plsqlFixupCallbackLength;
char *tag;
size_t tagLength;
char *sodaMetaData;
size_t sodaMetaDataLength;
char *startsWith;
size_t startsWithLength;
char *indexSpec;
size_t indexSpecLength;
char *key;
size_t keyLength;
char *filter;
size_t filterLength;
char *version;
size_t versionLength;
char *hint;
size_t hintLength;
char *pfile; // for DB startup
size_t pfileLength;
char *token;
size_t tokenLength;
char *privateKey;
size_t privateKeyLength;
// various buffers (requires free)
uint32_t numBindNames;
const char **bindNames;
uint32_t *bindNameLengths;
dpiSodaOperOptions *sodaOperOptions;
dpiStringList *sodaCollNames;
dpiStringList *indexList;
njsLobBuffer *lob;
// ODPI-C handles (requires release)
dpiConn *dpiConnHandle;
dpiLob *dpiLobHandle;
dpiPool *dpiPoolHandle;
dpiStmt *dpiStmtHandle;
dpiObjectType *dpiObjectTypeHandle;
dpiQueue *dpiQueueHandle;
dpiSodaColl *dpiSodaCollHandle;
dpiSodaDoc *dpiSodaDocHandle;
dpiSodaDocCursor *dpiSodaDocCursorHandle;
uint32_t numSodaDocs;
dpiSodaDoc **sodaDocs;
uint32_t numMsgProps;
dpiMsgProps **msgProps;
// SODA operation keys (requires free)
uint32_t numKeys;
char **keys;
uint32_t *keysLengths;
// variables (requires free)
uint32_t numQueryVars;
njsVariable *queryVars;
uint32_t numBindVars;
njsVariable *bindVars;
// batch errors (requires free)
uint32_t numBatchErrorInfos;
dpiErrorInfo *batchErrorInfos;
// array DML row counts (no free required)
uint32_t numRowCounts;
uint64_t *rowCounts;
// implicit results (requires free)
njsImplicitResult *implicitResults;
// other structures (no free required)
dpiStmtInfo stmtInfo;
// integer values
uint32_t poolMin;
uint32_t poolMax;
uint32_t poolMaxPerShard;
uint32_t poolIncrement;
uint32_t poolTimeout;
uint32_t poolWaitTimeout;
int32_t poolPingInterval;
int32_t poolPingTimeout;
uint32_t stmtCacheSize;
uint32_t maxRows;
uint32_t bindArraySize;
uint32_t fetchArraySize;
uint32_t privilege;
uint32_t rowsFetched;
uint32_t bufferRowIndex;
uint64_t rowsAffected;
int32_t limit;
uint32_t createCollectionMode;
uint64_t docCount;
uint32_t lobType;
uint32_t lobOffset;
uint32_t lobAmount;
uint32_t timeout;
uint32_t qos;
uint32_t operations;
uint32_t portNumber;
uint32_t subscrGroupingClass;
uint32_t subscrGroupingValue;
uint32_t subscrGroupingType;
uint32_t shutdownMode;
uint32_t startupMode;
uint32_t prefetchRows;
// boolean values
bool externalAuth;
bool homogeneous;
bool autoCommit;
bool events;
bool batchErrors;
bool dmlRowCounts;
bool matchAnyTag;
bool dropSession;
bool newSession;
bool isDropped;
bool replaced;
bool force;
bool clientInitiated;
bool sodaMetadataCache;
bool keepInStmtCache;
bool isJson;
bool isOson;
bool fileExists;
// LOB buffer (requires free only if string was used)
uint64_t bufferSize;
char *bufferPtr;
// subscriptions (no free required)
njsSubscription *subscription;
// njsCallback (no free required)
njsTokenCallback *accessTokenCallback;
// sharding (requires free)
dpiShardingKeyColumn *shardingKeyColumns;
dpiShardingKeyColumn *superShardingKeyColumns;
uint8_t numShardingKeyColumns;
uint8_t numSuperShardingKeyColumns;
// TPC/XA related fields (requires free)
dpiXid* xid;
uint32_t tpcFlags;
bool tpcOnePhase;
bool tpcCommitNeeded;
uint32_t tpcTxnTimeout;
// references that are held (requires free)
napi_ref jsBufferRef;
napi_ref jsCallingObjRef;
napi_ref jsSubscriptionRef;
napi_ref jsExecuteOptionsRef;
// constructors and other functions that are called from inside C
napi_value jsLobConstructor;
napi_value jsResultSetConstructor;
napi_value jsDbObjectConstructor;
napi_value jsGetDateComponentsFn;
napi_value jsMakeDateFn;
napi_value jsDecodeVectorFn;
napi_value jsEncodeVectorFn;
napi_value jsJsonIdConstructor;
napi_value jsSparseVectorConstructor;
napi_value jsIntervalYMConstructor;
napi_value jsIntervalDSConstructor;
// calling object value (used for setting a reference on created objects)
napi_value jsCallingObj;
// asynchronous work parameters
napi_async_work asyncWork;
bool (*workCallback)(njsBaton*);
bool (*afterWorkCallback)(njsBaton*, napi_env, napi_value*);
napi_deferred deferred;
};
// data for class definitions exposed to JS
struct njsClassDef {
const char *name;
size_t structSize;
napi_finalize finalizeFn;
const napi_property_descriptor *properties;
bool propertiesOnInstance;
};
// data for class Connection exposed to JS.
struct njsConnection {
dpiConn *handle;
dpiVersionInfo versionInfo;
char *tag;
size_t tagLength;
bool retag;
dpiErrorInfo warningInfo;
};
// data for acquiring implicit results
struct njsImplicitResult {
dpiStmt *stmt;
uint32_t numQueryVars;
njsVariable *queryVars;
njsImplicitResult *next;
};
// data for values that will be converted to JSON in the database
struct njsJsonBuffer {
dpiJsonNode topNode;
dpiDataBuffer topNodeBuffer;
uint32_t allocatedBuffers;
uint32_t numBuffers;
char **buffers;
};
// data for class Lob exposed to JS.
struct njsLob {
dpiLob *handle;
uint32_t dataType;
char *bufferPtr;
uint64_t bufferSize;
uint32_t pieceSize;
uint32_t chunkSize;
uint64_t length;
bool dirtyLength;
};
// data for keeping track of LOBs in the worker thread
struct njsLobBuffer {
dpiLob *handle;
uint32_t dataType;
uint32_t chunkSize;
uint64_t length;
};
// data for module globals
struct njsModuleGlobals {
dpiContext *context;
dpiVersionInfo clientVersionInfo;
napi_ref jsAqDeqOptionsConstructor;
napi_ref jsAqEnqOptionsConstructor;
napi_ref jsAqMessageConstructor;
napi_ref jsAqQueueConstructor;
napi_ref jsDbObjectConstructor;
napi_ref jsConnectionConstructor;
napi_ref jsLobConstructor;
napi_ref jsPoolConstructor;
napi_ref jsResultSetConstructor;
napi_ref jsSodaCollectionConstructor;
napi_ref jsSodaDatabaseConstructor;
napi_ref jsSodaDocCursorConstructor;
napi_ref jsSodaDocumentConstructor;
napi_ref jsSodaOperationConstructor;
napi_ref jsGetDateComponentsFn;
napi_ref jsMakeDateFn;
napi_ref jsDecodeVectorFn;
napi_ref jsEncodeVectorFn;
napi_ref jsJsonIdConstructor;
napi_ref jsSparseVectorConstructor;
napi_ref jsIntervalYMConstructor;
napi_ref jsIntervalDSConstructor;
};
// data for class Pool exposed to JS.
struct njsPool {
dpiPool *handle;
uint32_t poolMin;
uint32_t poolMax;
uint32_t poolMaxPerShard;
uint32_t poolIncrement;
uint32_t poolTimeout;
uint32_t stmtCacheSize;
int32_t poolPingInterval;
int32_t poolPingTimeout;
bool sodaMetadataCache;
bool externalAuth;
njsTokenCallback *accessTokenCallback;
dpiErrorInfo warningInfo;
};
// data for class ResultSet exposed to JS.
struct njsResultSet {
dpiStmt *handle;
njsConnection *conn;
uint32_t numQueryVars;
njsVariable *queryVars;
uint32_t fetchArraySize;
bool isNested;
bool varsDefined;
};
// data for class SodaCollection exposed to JS.
struct njsSodaCollection {
dpiSodaColl *handle;
njsSodaDatabase *db;
};
// data for class SodaDatabase exposed to JS.
struct njsSodaDatabase {
dpiSodaDb *handle;
};
// data for class SodaDocCursor exposed to JS.
struct njsSodaDocCursor {
dpiSodaDocCursor *handle;
};
// data for class SodaDocument exposed to JS.
struct njsSodaDocument {
dpiSodaDoc *handle;
};
// data for class SodaOperation exposed to JS.
struct njsSodaOperation {
njsSodaCollection *coll;
};
// data for managing subscriptions
struct njsSubscription {
dpiSubscr *handle;
uv_async_t async;
uv_mutex_t mutex;
uv_barrier_t barrier;
dpiSubscrMessage *message;
njsModuleGlobals *globals;
uint32_t subscrNamespace;
uint64_t regId;
napi_ref jsCallback;
napi_env env;
bool notifications;
};
// data for keeping track of variables used for binding/fetching data
struct njsVariable {
char *name;
size_t nameLength;
napi_value jsName;
uint32_t pos;
dpiOracleTypeNum dbTypeNum;
dpiOracleTypeNum varTypeNum;
dpiNativeTypeNum nativeTypeNum;
dpiObjectType *dpiObjectTypeHandle;
njsDbObjectType *objectType;
dpiVar *dpiVarHandle;
uint32_t bindDir;
uint32_t maxArraySize;
uint32_t maxSize;
uint32_t dbSizeInBytes;
int16_t precision;
int8_t scale;
bool isArray;
bool isNullable;
bool isJson;
bool isOson;
const char *domainSchema;
size_t domainSchemaLength;
const char *domainName;
size_t domainNameLength;
size_t numAnnotations;
dpiAnnotation *dpiAnnotations;
uint32_t vectorDimensions;
uint8_t vectorFormat;
uint8_t vectorFlags;
njsVariableBuffer *buffer;
uint32_t numDmlReturningBuffers;
njsVariableBuffer *dmlReturningBuffers;
};
// data for keeping track of ODPI-C buffers and LOBs
struct njsVariableBuffer {
uint32_t numElements;
dpiData *dpiVarData;
njsLobBuffer *lobs;
uint32_t numQueryVars;
njsVariable *queryVars;
};
// data for DbObject class exposed to JS
struct njsDbObject {
dpiObject *handle;
njsDbObjectType *type;
};
// data for type information
struct njsDataTypeInfo {
dpiOracleTypeNum oracleTypeNum;
dpiNativeTypeNum nativeTypeNum;
int16_t precision;
int8_t scale;
uint32_t dbSizeInBytes;
njsDbObjectType *objectType;
};
// data for DbObjectType class exposed to JS
struct njsDbObjectType {
dpiObjectType *handle;
uint16_t numAttributes;
njsDbObjectAttr *attributes;
njsDataTypeInfo elementTypeInfo;
napi_ref jsDbObjectType;
char *fqn;
size_t fqnLength;
};
// data for object type attribute information
struct njsDbObjectAttr {
dpiObjectAttr *handle;
njsDataTypeInfo typeInfo;
njsModuleGlobals *globals;
const char *name;
uint32_t nameLength;
};
// data for managing callback
struct njsTokenCallback {
dpiAccessToken *accessToken;
njsModuleGlobals *globals;
uv_async_t async;
uv_mutex_t mutex;
uv_barrier_t barrier;
napi_ref jsPool;
napi_ref jsCallback;
napi_ref jsAccessTokenConfig;
napi_env env;
bool result;
};
//-----------------------------------------------------------------------------
// definition of error functions
//-----------------------------------------------------------------------------
void njsErrors_getMessage(char *buffer, int errNum, ...);
void njsErrors_getMessageVaList(char *buffer, int errNum, va_list vaList);
//-----------------------------------------------------------------------------
// definition of JSON buffer functions
//-----------------------------------------------------------------------------
void njsJsonBuffer_free(njsJsonBuffer *buf);
bool njsJsonBuffer_fromValue(njsJsonBuffer *buf, napi_env env,
napi_value value, njsBaton *baton);
//-----------------------------------------------------------------------------
// definition of functions for njsBaton class
//-----------------------------------------------------------------------------
bool njsBaton_commonConnectProcessArgs(njsBaton *baton, napi_env env,
napi_value *args);
bool njsBaton_create(njsBaton *baton, napi_env env, napi_callback_info info,
size_t numArgs, napi_value *args, const njsClassDef *classDef);
void njsBaton_free(njsBaton *baton, napi_env env);
bool njsBaton_getJsonNodeValue(njsBaton *baton, dpiJsonNode *node,
napi_env env, napi_value *value);uint32_t njsBaton_getNumOutBinds(njsBaton *baton);
bool njsBaton_getSodaDocument(njsBaton *baton, njsSodaDatabase *db,
napi_env env, napi_value obj, dpiSodaDoc **handle);
bool njsBaton_initCommonCreateParams(njsBaton *baton,
dpiCommonCreateParams *params);
bool njsBaton_isBindValue(njsBaton *baton, napi_env env, napi_value value);
bool njsBaton_isDate(njsBaton *baton, napi_env env, napi_value value,
bool *isDate);
bool njsBaton_queueWork(njsBaton *baton, napi_env env, const char *methodName,
bool (*workCallback)(njsBaton*),
bool (*afterWorkCallback)(njsBaton*, napi_env, napi_value*),
napi_value *promise);
bool njsBaton_reportError(njsBaton *baton, napi_env env);
bool njsBaton_setErrorInsufficientBufferForBinds(njsBaton *baton);
bool njsBaton_setErrorInsufficientMemory(njsBaton *baton);
bool njsBaton_setErrorUnsupportedDataType(njsBaton *baton,
uint32_t oracleTypeNum, uint32_t columnNum);
bool njsBaton_setErrorUnsupportedDataTypeInJson(njsBaton *baton,
uint32_t oracleTypeNum);
bool njsBaton_setErrorDPI(njsBaton *baton);
bool njsBaton_setJsValues(njsBaton *baton, napi_env env);
bool njsBaton_getVectorValue(njsBaton *baton, dpiVector *vector,
napi_env env, napi_value *value);
bool njsBaton_getIntervalYM(njsBaton *baton, dpiIntervalYM *data, napi_env env,
napi_value *value);
bool njsBaton_getIntervalDS(njsBaton *baton, dpiIntervalDS *data, napi_env env,
napi_value *value);
bool njsBaton_setErrorUnsupportedVectorFormat(njsBaton *baton,
uint8_t format);
//-----------------------------------------------------------------------------
// definition of functions for njsDbObject class
//-----------------------------------------------------------------------------
bool njsDbObject_getInstance(njsModuleGlobals *globals, napi_env env,
napi_value value, njsDbObject **obj);
bool njsDbObject_getSubClass(njsBaton *baton, dpiObjectType *objectTypeHandle,
napi_env env, napi_value *cls, njsDbObjectType **objectType);
bool njsDbObject_new(njsDbObjectType *objType, dpiObject *objHandle,
napi_env env, njsModuleGlobals *globals, napi_value *value);
bool njsDbObjectType_getFromClass(napi_env env, napi_value cls,
njsDbObjectType **objType);
//-----------------------------------------------------------------------------
// definition of functions for njsAqMessage class
//-----------------------------------------------------------------------------
bool njsAqMessage_createFromHandle(njsBaton *baton, dpiMsgProps *handle,
napi_env env, njsAqQueue *queue, napi_value *messageObj);
//-----------------------------------------------------------------------------
// definition of functions for njsAqQueue class
//-----------------------------------------------------------------------------
bool njsAqQueue_createFromHandle(njsBaton *baton, napi_env env,
napi_value *obj);
//-----------------------------------------------------------------------------
// definition of functions for njsConnection class
//-----------------------------------------------------------------------------
bool njsConnection_newFromBaton(njsBaton *baton, napi_env env,
napi_value *connObj);
//-----------------------------------------------------------------------------
// definition of functions for njsLob class
//-----------------------------------------------------------------------------
bool njsLob_populateBuffer(njsBaton *baton, njsLobBuffer *buffer);
bool njsLob_new(njsModuleGlobals *globals, njsLobBuffer *buffer, napi_env env,
napi_value parentObj, napi_value *lobObj);
//-----------------------------------------------------------------------------
// definition of functions for njsResultSet class
//-----------------------------------------------------------------------------
bool njsResultSet_new(njsBaton *baton, napi_env env, njsConnection *conn,
dpiStmt *handle, njsVariable *vars, uint32_t numVars,
napi_value *rsObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSodaCollection class
//-----------------------------------------------------------------------------
bool njsSodaCollection_newFromBaton(njsBaton *baton, napi_env env,
napi_value *connObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSodaDocCursor class
//-----------------------------------------------------------------------------
bool njsSodaDocCursor_newFromBaton(njsBaton *baton, napi_env env,
napi_value *cursorObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSodaDocument class
//-----------------------------------------------------------------------------
bool njsSodaDocument_createFromHandle(napi_env env, dpiSodaDoc *handle,
njsModuleGlobals *globals, napi_value *docObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSodaDatabase class
//-----------------------------------------------------------------------------
bool njsSodaDatabase_createFromHandle(napi_env env, napi_value connObj,
njsModuleGlobals *globals, dpiSodaDb *handle, napi_value *dbObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSodaOperation class
//-----------------------------------------------------------------------------
bool njsSodaOperation_createFromCollection(napi_env env,
napi_value collObj, njsModuleGlobals *globals, njsSodaCollection *coll,
napi_value *opObj);
//-----------------------------------------------------------------------------
// definition of functions for njsSubscription class
//-----------------------------------------------------------------------------
void njsSubscription_eventHandler(njsSubscription *subscr,
dpiSubscrMessage *incomingMessage);
bool njsSubscription_new(njsBaton *baton, napi_env env);
bool njsSubscription_startNotifications(njsSubscription *subscr,
napi_env env, njsBaton *baton);
bool njsSubscription_stopNotifications(njsSubscription *subscr);
//-----------------------------------------------------------------------------
// definition of utility functions
//-----------------------------------------------------------------------------
bool njsUtils_addTypeProperties(napi_env env, napi_value obj,
const char *propertyNamePrefix, uint32_t oracleTypeNum,
njsDbObjectType *objType);
bool njsUtils_addMetaDataProperties(napi_env env, napi_value obj,
dpiDataTypeInfo *info);
bool njsUtils_copyString(napi_env env, char *source, size_t sourceLength,
char **dest, size_t *destLength);
bool njsUtils_copyStringFromJS(napi_env env, napi_value value, char **result,
size_t *resultLength);
bool njsUtils_createBaton(napi_env env, napi_callback_info info,
size_t numArgs, napi_value *args, const njsClassDef *classDef,
njsBaton **baton);
bool njsUtils_genericNew(napi_env env, const njsClassDef *classDef,
napi_ref constructorRef, napi_value *instanceObj, void **instance);
bool njsUtils_genericThrowError(napi_env env, const char *fileName,
int lineNum);
bool njsUtils_getDateValue(uint32_t varTypeNum, napi_env env,
napi_value makeDateFn, dpiTimestamp *timestamp, napi_value *value);
bool njsUtils_getError(napi_env env, dpiErrorInfo *errorInfo,
const char *buffer, napi_value *error);
bool njsUtils_getNamedProperty(napi_env env, napi_value value,
const char *name, napi_value *propertyValue);
bool njsUtils_getNamedPropertyBool(napi_env env, napi_value value,
const char *name, bool *outValue);
bool njsUtils_getNamedPropertyInt(napi_env env, napi_value value,
const char *name, int32_t *outValue);
bool njsUtils_getNamedPropertyShardingKey(napi_env env, napi_value value,
const char *name, uint8_t *numShardingKeyColumns,
dpiShardingKeyColumn **shardingKeyColumns);
bool njsUtils_getNamedPropertyString(napi_env env, napi_value value,
const char *name, char **result, size_t *resultLength);
bool njsUtils_getNamedPropertyStringArray(napi_env env, napi_value value,
const char *name, uint32_t *resultNumElems, char ***resultElems,
uint32_t **resultElemLengths);
bool njsUtils_getNamedPropertyStringOrBuffer(napi_env env, napi_value value,
const char *name, char **result, size_t *resultLength);
bool njsUtils_getNamedPropertyUnsignedInt(napi_env env, napi_value value,
const char *name, uint32_t *outValue);
bool njsUtils_getNamedPropertyUnsignedIntArray(napi_env env, napi_value value,
const char *name, uint32_t *numElements, uint32_t **elements);
bool njsUtils_getXid(napi_env env, napi_value xidObj, dpiXid **xid);
bool njsUtils_isInstance(napi_env env, napi_value value, const char *name);
bool njsUtils_setDateValue(uint32_t varTypeNum, napi_env env, napi_value value,
napi_value getComponentsFn, dpiTimestamp *timestamp);
bool njsUtils_throwErrorDPI(napi_env env, njsModuleGlobals *globals);
bool njsUtils_throwInsufficientMemory(napi_env env);
bool njsUtils_throwUnsupportedDataType(napi_env env, uint32_t oracleTypeNum,
uint32_t columnNum);
bool njsUtils_validateArgs(napi_env env, napi_callback_info info,
size_t numArgs, napi_value *args, njsModuleGlobals **globals,
napi_value *callingObj, const njsClassDef *classDef, void **instance);
bool njsUtils_setIntervalYM(napi_env env, napi_value value,
dpiIntervalYM *data);
bool njsUtils_setIntervalDS(napi_env env, napi_value value,
dpiIntervalDS *data);
//-----------------------------------------------------------------------------
// definition of variable functions
//-----------------------------------------------------------------------------
bool njsVariable_createBuffer(njsVariable *var, njsConnection *conn,
njsBaton *baton);
void njsVariable_free(njsVariable *var);
bool njsVariable_getArrayValue(njsVariable *var, njsConnection *conn,
uint32_t pos, njsBaton *baton, napi_env env, napi_value *value);
bool njsVariable_getMetadataMany(njsVariable *vars, uint32_t numVars,
napi_env env, napi_value *metadata);
bool njsVariable_getMetadataOne(njsVariable *var, napi_env env,
napi_value *metadata);
bool njsVariable_getScalarValue(njsVariable *var, njsConnection *conn,
njsVariableBuffer *buffer, uint32_t pos, njsBaton *baton, napi_env env,
napi_value *value);
bool njsVariable_initForQuery(njsVariable *vars, uint32_t numVars,
dpiStmt *handle, njsBaton *baton);
bool njsVariable_initForQueryJS(njsVariable *vars, uint32_t numVars,
napi_env env, njsBaton *baton);
bool njsVariable_process(njsVariable *vars, uint32_t numVars, uint32_t numRows,
njsBaton *baton);
bool njsVariable_processJS(njsVariable *vars, uint32_t numVars, napi_env env,
njsBaton *baton);
bool njsVariable_setScalarValue(njsVariable *var, uint32_t pos, napi_env env,
napi_value value, njsBaton *baton);
//-----------------------------------------------------------------------------
// definition of functions for njsTokenCallback class
//-----------------------------------------------------------------------------
int njsTokenCallback_eventHandler(njsTokenCallback *callback,
dpiAccessToken *accessToken);
bool njsTokenCallback_new(njsBaton *baton, napi_env env,
napi_value userCallback, napi_value accessTokenConfig);
bool njsTokenCallback_startNotifications(njsTokenCallback *callback,
napi_env env);
bool njsTokenCallback_returnAccessToken(njsTokenCallback *callback,
napi_env env, napi_value accessToken);
bool njsTokenCallback_stopNotifications(njsTokenCallback *callback);
#endif /* __NJSMODULE_H__ */