-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJNodeNative.cc
406 lines (342 loc) · 10.6 KB
/
JNodeNative.cc
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
#include "JNodeNative.h"
#include "node.h"
#include <string>
#include <vector>
// Made with *some* help from:
// - https://nodejs.org/api/addons.html
/* exported for use by JNodeCB addon: */
// XXX FUTURE TBD find a smarter way to export this:
JNIEnv * jnode_jni_env;
struct PersistentFunctionStruct {
PersistentFunctionStruct(v8::Isolate * isolate, v8::Local<v8::Function> & f) :
isolate(isolate), f(isolate, f) { }
v8::Isolate * isolate;
v8::Persistent<v8::Function> f;
};
enum fco_type {
FCO_NONE = 0,
FCO_STRING,
FCO_DOUBLE,
FCO_INT,
FCO_TYPE_COUNT
};
struct fco_param {
fco_param(const char * value) : type(FCO_STRING), stringValue(strdup(value)) { }
fco_param(double value) : type(FCO_DOUBLE), doubleValue(value) { }
fco_param(int value) : type(FCO_INT), intValue(value) { }
fco_param(const fco_param & rhs) : type(rhs.type) {
switch(rhs.type) {
case FCO_STRING:
// XXX TODO: extra strdup/free should not be necessary!
stringValue = strdup(rhs.stringValue);
break;
case FCO_DOUBLE:
doubleValue = rhs.doubleValue;
break;
case FCO_INT:
intValue = rhs.intValue;
break;
// XXX TODO other cases
}
}
fco_param & operator=(const fco_param & rhs) {
type = rhs.type;
// XXX TODO REPEATED CODE
switch(rhs.type) {
case FCO_STRING:
// XXX TODO: extra strdup/free should not be necessary!
stringValue = strdup(rhs.stringValue);
break;
case FCO_DOUBLE:
doubleValue = rhs.doubleValue;
break;
case FCO_INT:
intValue = rhs.intValue;
break;
// XXX TODO other cases
}
return *this;
}
~fco_param() {
if (type == FCO_STRING) {
// XXX TODO
free(stringValue);
}
}
fco_type type;
union {
char * stringValue;
double doubleValue;
int intValue;
};
};
struct FunctionCallObject {
FunctionCallObject(PersistentFunctionStruct * pfs) : pfs(pfs) { }
PersistentFunctionStruct * pfs;
std::vector<fco_param> params;
};
/*
* Class: JNodeNative
* Method: start
* Signature: ([Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_start
(JNIEnv * e, jclass, jobjectArray a)
{
std::string s;
std::vector<int> v;
jnode_jni_env = e;
// http://stackoverflow.com/questions/19591873/get-an-array-of-strings-from-java-to-c-jni
int l = e->GetArrayLength(a);
for (int i=0; i<l; ++i) {
v.push_back(s.length());
jstring js = (jstring)e->GetObjectArrayElement(a, i);
const char * cs = e->GetStringUTFChars(js, 0);
s += cs;
s += '\0';
e->ReleaseStringUTFChars(js, cs);
e->DeleteLocalRef(js);
}
int argc = v.size();
const char * all_args = s.c_str();
const char * argv[argc];
for (int i=0; i<argc; ++i)
argv[i] = all_args + v[i];
node::Start(argc, (char **)argv);
}
/*
* Class: JNodeNative
* Method: fciArgCount
* Signature: (J)I
*/
JNIEXPORT jint JNICALL Java_JNodeNative_fciArgCount
(JNIEnv *, jclass, jlong fciHandle)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return fci.Length();
}
/*
* Class: JNodeNative
* Method: fciArgIsString
* Signature: (JI)Z
*/
JNIEXPORT jboolean JNICALL Java_JNodeNative_fciArgIsString
(JNIEnv *, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return fci[argIndex]->IsString();
}
/*
* Class: JNodeNative
* Method: fciArgIsNumber
* Signature: (JI)Z
*/
JNIEXPORT jboolean JNICALL Java_JNodeNative_fciArgIsNumber
(JNIEnv *, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return fci[argIndex]->IsNumber();
}
/*
* Class: JNodeNative
* Method: fciArgIsFunction
* Signature: (JI)Z
*/
JNIEXPORT jboolean JNICALL Java_JNodeNative_fciArgIsFunction
(JNIEnv *, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return fci[argIndex]->IsFunction();
}
/*
* Class: JNodeNative
* Method: fciArgStringValue
* Signature: (JI)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_JNodeNative_fciArgStringValue
(JNIEnv * env, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return env->NewStringUTF(*v8::String::Utf8Value(fci[argIndex]->ToString()));
}
/*
* Class: JNodeNative
* Method: fciArgNumberValue
* Signature: (JI)D
*/
JNIEXPORT jdouble JNICALL Java_JNodeNative_fciArgNumberValue
(JNIEnv *, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
return fci[argIndex]->NumberValue();
}
/*
* Class: JNodeNative
* Method: fciArgFunctionAsPersistentHandle
* Signature: (JI)J
*/
JNIEXPORT jlong JNICALL Java_JNodeNative_fciArgFunctionAsPersistentHandle
(JNIEnv *, jclass, jlong fciHandle, jint argIndex)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
v8::Isolate * isolate = fci.GetIsolate();
v8::Local<v8::Function> f = v8::Local<v8::Function>::Cast(fci[argIndex]);
return reinterpret_cast<long>(new PersistentFunctionStruct(isolate, f));
}
/*
* Class: JNodeNative
* Method: fciSetReturnStringValue
* Signature: (JLjava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fciSetReturnStringValue
(JNIEnv * e, jclass, jlong fciHandle, jstring stringValue)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
const char * cs = e->GetStringUTFChars(stringValue, 0);
v8::Local<v8::String> s = v8::String::NewFromUtf8(fci.GetIsolate(), cs);
fci.GetReturnValue().Set(s);
e->ReleaseStringUTFChars(stringValue, cs);
e->DeleteLocalRef(stringValue);
}
/*
* Class: JNodeNative
* Method: fciSetReturnNumberValue
* Signature: (JD)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fciSetReturnNumberValue
(JNIEnv *, jclass, jlong fciHandle, jdouble numberValue)
{
v8::FunctionCallbackInfo<v8::Value> & fci = *(v8::FunctionCallbackInfo<v8::Value> *)fciHandle;
v8::Local<v8::Number> n = v8::Number::New(fci.GetIsolate(), numberValue);
fci.GetReturnValue().Set(n);
}
/*
* Class: JNodeNative
* Method: fcoFromHandle
* Signature: (J)J
*/
JNIEXPORT jlong JNICALL Java_JNodeNative_fcoFromHandle
(JNIEnv *, jclass, jlong functionPerisstentHandle)
{
PersistentFunctionStruct * pfs = reinterpret_cast<PersistentFunctionStruct *>(
reinterpret_cast<void *>(functionPerisstentHandle));
return reinterpret_cast<long>(new FunctionCallObject(pfs));
}
/*
* Class: JNodeNative
* Method: fcoAddStringParameter
* Signature: (JLjava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fcoAddStringParameter
(JNIEnv * e, jclass, jlong fcoHandle, jstring stringValue)
{
FunctionCallObject * fco = reinterpret_cast<FunctionCallObject *>(
reinterpret_cast<void *>(fcoHandle));
const char * cs = e->GetStringUTFChars(stringValue, 0);
fco->params.push_back(fco_param(cs));
e->ReleaseStringUTFChars(stringValue, cs);
e->DeleteLocalRef(stringValue);
}
/*
* Class: JNodeNative
* Method: fcoAddDoubleParameter
* Signature: (JD)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fcoAddDoubleParameter
(JNIEnv *, jclass, jlong fcoHandle, jdouble value)
{
FunctionCallObject * fco = reinterpret_cast<FunctionCallObject *>(
reinterpret_cast<void *>(fcoHandle));
fco->params.push_back(fco_param(value));
}
/*
* Class: JNodeNative
* Method: fcoAddIntegerParameter
* Signature: (JI)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fcoAddIntegerParameter
(JNIEnv *, jclass, jlong fcoHandle, jint value)
{
FunctionCallObject * fco = reinterpret_cast<FunctionCallObject *>(
reinterpret_cast<void *>(fcoHandle));
fco->params.push_back(fco_param(value));
}
/*
* Class: JNodeNative
* Method: fcoVoidCallAndDestroy
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_fcoVoidCallAndDestroy
(JNIEnv *, jclass, jlong fcoHandle)
{
FunctionCallObject * fco = reinterpret_cast<FunctionCallObject *>(
reinterpret_cast<void *>(fcoHandle));
PersistentFunctionStruct * pfs = fco->pfs;
v8::Local<v8::Function> f = v8::Local<v8::Function>::New(pfs->isolate, pfs->f);
// XXX TODO factor out repeated code:
std::vector<v8::Local<v8::Value>> av;
for (std::vector<fco_param>::iterator iter = fco->params.begin();
iter != fco->params.end(); ++iter) {
switch(iter->type) {
case FCO_STRING:
av.push_back(v8::String::NewFromUtf8(pfs->isolate, iter->stringValue));
break;
case FCO_DOUBLE:
av.push_back(v8::Number::New(pfs->isolate, iter->doubleValue));
break;
case FCO_INT:
av.push_back(v8::Number::New(pfs->isolate, iter->intValue));
break;
}
}
// trick from: http://stackoverflow.com/questions/2923272/how-to-convert-vector-to-array-c
f->Call(v8::Null(pfs->isolate), av.size(), &av[0]);
delete fco;
}
/*
* Class: JNodeNative
* Method: fcoIntCallAndDestroy
* Signature: (J)I
*/
JNIEXPORT jint JNICALL Java_JNodeNative_fcoIntCallAndDestroy
(JNIEnv *, jclass, jlong fcoHandle)
{
FunctionCallObject * fco = reinterpret_cast<FunctionCallObject *>(
reinterpret_cast<void *>(fcoHandle));
PersistentFunctionStruct * pfs = fco->pfs;
v8::Local<v8::Function> f = v8::Local<v8::Function>::New(pfs->isolate, pfs->f);
// XXX TODO factor out repeated code:
std::vector<v8::Local<v8::Value>> av;
for (std::vector<fco_param>::iterator iter = fco->params.begin();
iter != fco->params.end(); ++iter) {
switch(iter->type) {
case FCO_STRING:
av.push_back(v8::String::NewFromUtf8(pfs->isolate, iter->stringValue));
break;
case FCO_DOUBLE:
av.push_back(v8::Number::New(pfs->isolate, iter->doubleValue));
break;
case FCO_INT:
av.push_back(v8::Number::New(pfs->isolate, iter->intValue));
break;
}
}
// trick from: http://stackoverflow.com/questions/2923272/how-to-convert-vector-to-array-c
v8::Local<v8::Value> rv = f->Call(v8::Null(pfs->isolate), av.size(), &av[0]);
delete fco;
// ref: http://stackoverflow.com/a/11387695/1283667
return rv->IsInt32() ? rv->ToInt32()->Value() : 0;
}
/*
* Class: JNodeNative
* Method: functionPersistentHandleDestroy
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_JNodeNative_functionPersistentHandleDestroy
(JNIEnv *, jclass, jlong functionPerisstentHandle)
{
PersistentFunctionStruct * pfs = reinterpret_cast<PersistentFunctionStruct *>(
reinterpret_cast<void *>(functionPerisstentHandle));
pfs->f.Reset();
delete pfs;
}