-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathG2JNI.java
380 lines (315 loc) · 10 KB
/
G2JNI.java
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
/**********************************************************************************
* © Copyright Senzing, Inc. 2017-2024
* The source code for this program is not published or otherwise divested
* of its trade secrets, irrespective of what has been deposited with the U.S.
* Copyright Office.
**********************************************************************************/
package com.senzing.g2.engine;
/**
* Implements the {@link NativeEngine} interface to call the native implementations of each
* function.
*/
public class G2JNI implements NativeEngine {
static {
System.loadLibrary("G2");
}
/** {@inheritDoc} */
@Override
public native int init(String moduleName, String iniParams, boolean verboseLogging);
/** {@inheritDoc} */
@Override
public native int initWithConfigID(
String moduleName, String iniParams, long initConfigID, boolean verboseLogging);
/** {@inheritDoc} */
@Override
public native int reinit(long initConfigID);
/** {@inheritDoc} */
@Override
public native int destroy();
/** {@inheritDoc} */
@Override
public native int primeEngine();
/** {@inheritDoc} */
@Override
public native String stats();
/** {@inheritDoc} */
@Override
public native String getLastException();
/** {@inheritDoc} */
@Override
public native int getLastExceptionCode();
/** {@inheritDoc} */
@Override
public native void clearLastException();
/** {@inheritDoc} */
@Override
public native int getActiveConfigID(Result<Long> configID);
/** {@inheritDoc} */
@Override
public native int addRecord(String dataSourceCode, String recordID, String jsonData);
/** {@inheritDoc} */
@Override
public native int addRecordWithInfo(
String dataSourceCode, String recordID, String jsonData, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int deleteRecord(String dataSourceCode, String recordID);
/** {@inheritDoc} */
@Override
public native int deleteRecordWithInfo(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int reevaluateRecord(String dataSourceCode, String recordID, long flags);
/** {@inheritDoc} */
@Override
public native int reevaluateEntity(long entityID, long flags);
/** {@inheritDoc} */
@Override
public native int reevaluateRecordWithInfo(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int reevaluateEntityWithInfo(long entityID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int searchByAttributes(String jsonData, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int searchByAttributes(String jsonData, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int searchByAttributes(
String jsonData, String searchProfile, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getEntityByEntityID(long entityID, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getEntityByEntityID(long entityID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getEntityByRecordID(
String dataSourceCode, String recordID, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getEntityByRecordID(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findInterestingEntitiesByEntityID(
long entityID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findInterestingEntitiesByRecordID(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathByEntityID(
long entityID1, long entityID2, int maxDegree, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathByEntityID(
long entityID1, long entityID2, int maxDegree, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathExcludingByEntityID(
long entityID1,
long entityID2,
int maxDegree,
String excludedEntities,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathExcludingByEntityID(
long entityID1,
long entityID2,
int maxDegree,
String excludedEntities,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathExcludingByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
String excludedEntities,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathExcludingByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
String excludedEntities,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathIncludingSourceByEntityID(
long entityID1,
long entityID2,
int maxDegree,
String excludedEntities,
String requiredDsrcs,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathIncludingSourceByEntityID(
long entityID1,
long entityID2,
int maxDegree,
String excludedEntities,
String requiredDsrcs,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathIncludingSourceByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
String excludedEntities,
String requiredDsrcs,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findPathIncludingSourceByRecordID(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
int maxDegree,
String excludedEntities,
String requiredDsrcs,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findNetworkByEntityID(
String entityList, int maxDegree, int buildOutDegree, int maxEntities, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findNetworkByEntityID(
String entityList,
int maxDegree,
int buildOutDegree,
int maxEntities,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findNetworkByRecordID(
String recordList, int maxDegree, int buildOutDegree, int maxEntities, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int findNetworkByRecordID(
String recordList,
int maxDegree,
int buildOutDegree,
int maxEntities,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyRecordInEntity(
String dataSourceCode, String recordID, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyRecordInEntity(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyRecords(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyRecords(
String dataSourceCode1,
String recordID1,
String dataSourceCode2,
String recordID2,
long flags,
StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyEntities(long entityID1, long entityID2, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int whyEntities(long entityID1, long entityID2, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int howEntityByEntityID(long entityID, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int howEntityByEntityID(long entityID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getVirtualEntityByRecordID(String recordList, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getVirtualEntityByRecordID(
String recordList, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getRecord(String dataSourceCode, String recordID, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getRecord(
String dataSourceCode, String recordID, long flags, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int exportJSONEntityReport(long flags, Result<Long> exportHandle);
/** {@inheritDoc} */
@Override
public native int exportCSVEntityReport(
String csvColumnList, long flags, Result<Long> exportHandle);
/** {@inheritDoc} */
@Override
public native int fetchNext(long exportHandle, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int closeExport(long exportHandle);
/** {@inheritDoc} */
@Override
public native int processRedoRecord(String redoRecord);
/** {@inheritDoc} */
@Override
public native int processRedoRecordWithInfo(String redoRecord, StringBuffer response);
/** {@inheritDoc} */
@Override
public native int getRedoRecord(StringBuffer record);
/** {@inheritDoc} */
@Override
public native long countRedoRecords();
}