-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwlmio.c
545 lines (416 loc) · 12.1 KB
/
wlmio.c
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
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wlmio.h>
//#include <js_native_api.h>
#include <node_api.h>
#include <uv.h>
static uv_poll_t handle;
static void uv_callback(uv_poll_t* handle, int status, int events)
{
wlmio_tick();
}
static napi_value cleanup(napi_env env, napi_callback_info info)
{
uv_poll_stop(&handle);
return NULL;
}
static void handle_exception(napi_env env)
{
bool r;
napi_status s = napi_is_exception_pending(env, &r);
if(s != napi_ok || !r)
{ return; }
napi_value ex;
s = napi_get_and_clear_last_exception(env, &ex);
if(s != napi_ok)
{ return; }
s = napi_fatal_exception(env, ex);
}
static napi_env status_callback_env = NULL;
static napi_ref status_callback_ref = NULL;
static napi_value set_status_callback(napi_env env, napi_callback_info info)
{
size_t argc = 1;
napi_value argv;
napi_status status = napi_get_cb_info(env, info, &argc, &argv, NULL, NULL);
if(status != napi_ok)
{ return NULL; }
napi_valuetype type;
status = napi_typeof(env, argv, &type);
if(status != napi_ok || type != napi_function)
{ return NULL; }
if(status_callback_ref != NULL)
{
napi_delete_reference(env, status_callback_ref);
status_callback_ref = NULL;
}
status_callback_env = env;
napi_create_reference(env, argv, 1, &status_callback_ref);
return NULL;
}
static napi_status status_to_object(napi_env env, const struct wlmio_status* const status, napi_value* const object)
{
napi_status s = napi_create_object(env, object);
if(s != napi_ok)
{ goto exit; }
napi_value uptime;
s = napi_create_uint32(env, status->uptime, &uptime);
if(s != napi_ok)
{ goto exit; }
s = napi_set_named_property(env, *object, "uptime", uptime);
if(s != napi_ok)
{ goto exit; }
napi_value health;
s = napi_create_uint32(env, status->health, &health);
if(s != napi_ok)
{ goto exit; }
s = napi_set_named_property(env, *object, "health", health);
if(s != napi_ok)
{ goto exit; }
napi_value mode;
s = napi_create_uint32(env, status->mode, &mode);
if(s != napi_ok)
{ goto exit; }
s = napi_set_named_property(env, *object, "mode", mode);
if(s != napi_ok)
{ goto exit; }
napi_value vendor_status;
s = napi_create_uint32(env, status->vendor_status, &vendor_status);
if(s != napi_ok)
{ goto exit; }
s = napi_set_named_property(env, *object, "vendorStatus", vendor_status);
if(s != napi_ok)
{ goto exit; }
exit:
return s;
}
static void status_callback(const uint8_t node_id, const struct wlmio_status* const old_status, const struct wlmio_status* const new_status)
{
if(status_callback_ref == NULL)
{ return; }
napi_env env = status_callback_env;
napi_handle_scope scope;
napi_status status = napi_open_handle_scope(env, &scope);
napi_value callback;
status = napi_get_reference_value(env, status_callback_ref, &callback);
if(status != napi_ok)
{ goto exit; }
napi_value global;
status = napi_get_global(env, &global);
if(status != napi_ok)
{ goto exit; }
napi_value argv[3];
status = napi_create_uint32(env, node_id, &argv[0]);
if(status != napi_ok)
{ goto exit; }
status = status_to_object(env, old_status, &argv[1]);
if(status != napi_ok)
{ goto exit; }
status = status_to_object(env, new_status, &argv[2]);
if(status != napi_ok)
{ goto exit; }
status = napi_call_function(env, global, callback, 3, argv, NULL);
if(status != napi_ok)
{ goto exit; }
handle_exception(env);
exit:
napi_close_handle_scope(env, scope);
return;
}
static napi_value get_node_id(napi_env env, napi_callback_info info)
{
napi_value node_id;
napi_status s = napi_create_uint32(env, wlmio_get_node_id(), &node_id);
if(s != napi_ok)
{ return NULL; }
return node_id;
}
struct register_list_param
{
napi_env env;
napi_ref callback_ref;
char name[51];
};
static void register_list_callback(const int32_t r, void* const p)
{
struct register_list_param* const param = p;
napi_env env = param->env;
napi_handle_scope scope;
napi_status s = napi_open_handle_scope(env, &scope);
napi_value callback;
s = napi_get_reference_value(env, param->callback_ref, &callback);
if(s != napi_ok)
{ goto exit; }
napi_value global;
s = napi_get_global(env, &global);
if(s != napi_ok)
{ goto exit; }
napi_value argv[2];
s = napi_create_int32(env, r, &argv[0]);
if(s != napi_ok)
{ goto exit; }
s = napi_create_string_utf8(env, param->name, NAPI_AUTO_LENGTH, &argv[1]);
if(s != napi_ok)
{ goto exit; }
s = napi_call_function(env, global, callback, sizeof(argv) / sizeof(napi_value), argv, NULL);
if(s != napi_ok)
{ goto exit; }
handle_exception(env);
exit:
napi_delete_reference(env, param->callback_ref);
napi_close_handle_scope(env, scope);
free(p);
}
static napi_value register_list(napi_env env, napi_callback_info info)
{
size_t argc = 3;
napi_value argv[3];
napi_status s = napi_get_cb_info(env, info, &argc, argv, NULL, NULL);
if(s != napi_ok || argc != 3)
{ goto exit; }
napi_valuetype type;
s = napi_typeof(env, argv[0], &type);
if(s != napi_ok || type != napi_number)
{ goto exit; }
s = napi_typeof(env, argv[1], &type);
if(s != napi_ok || type != napi_number)
{ goto exit; }
s = napi_typeof(env, argv[2], &type);
if(s != napi_ok || type != napi_function)
{ goto exit; }
uint32_t node_id;
s = napi_get_value_uint32(env, argv[0], &node_id);
if(s != napi_ok || node_id > 127)
{ goto exit; }
uint32_t index;
s = napi_get_value_uint32(env, argv[1], &index);
if(s != napi_ok)
{ goto exit; }
struct register_list_param* const param = malloc(sizeof(struct register_list_param));
param->env = env;
napi_create_reference(env, argv[2], 1, ¶m->callback_ref);
int32_t r = wlmio_register_list(node_id, index, param->name, register_list_callback, param);
if(r < 0)
{
napi_delete_reference(env, param->callback_ref);
free(param);
goto exit;
}
exit:
return NULL;
}
struct register_access_param
{
napi_env env;
napi_ref callback_ref;
struct wlmio_register_access regr;
};
static void register_access_callback(const int32_t r, void* const p)
{
struct register_access_param* const param = p;
napi_env env = param->env;
napi_handle_scope scope;
napi_status s = napi_open_handle_scope(env, &scope);
napi_value callback;
s = napi_get_reference_value(env, param->callback_ref, &callback);
if(s != napi_ok)
{ goto exit; }
napi_value global;
s = napi_get_global(env, &global);
if(s != napi_ok)
{ goto exit; }
napi_value argv[2];
s = napi_create_int32(env, r, &argv[0]);
if(s != napi_ok)
{ goto exit; }
void* data;
s = napi_create_arraybuffer(env, sizeof(struct wlmio_register_access), &data, &argv[1]);
if(s != napi_ok)
{ goto exit; }
memcpy(data, ¶m->regr, sizeof(struct wlmio_register_access));
s = napi_call_function(env, global, callback, sizeof(argv) / sizeof(napi_value), argv, NULL);
if(s != napi_ok)
{
handle_exception(env);
goto exit;
}
exit:
napi_delete_reference(env, param->callback_ref);
napi_close_handle_scope(env, scope);
free(p);
}
static napi_value register_access(napi_env env, napi_callback_info info)
{
int32_t r = 0;
size_t argc = 4;
napi_value argv[4];
napi_status s = napi_get_cb_info(env, info, &argc, argv, NULL, NULL);
if(s != napi_ok || argc != 4)
{
r = -EINVAL;
goto exit;
}
napi_valuetype type;
s = napi_typeof(env, argv[0], &type);
if(s != napi_ok || type != napi_number)
{
r = -EINVAL;
goto exit;
}
s = napi_typeof(env, argv[1], &type);
if(s != napi_ok || type != napi_string)
{
r = -EINVAL;
goto exit;
}
bool is_arraybuffer;
s = napi_is_arraybuffer(env, argv[2], &is_arraybuffer);
if(s != napi_ok || !is_arraybuffer)
{
r = -EINVAL;
goto exit;
}
s = napi_typeof(env, argv[3], &type);
if(s != napi_ok || type != napi_function)
{
r = -EINVAL;
goto exit;
}
uint32_t node_id;
s = napi_get_value_uint32(env, argv[0], &node_id);
if(s != napi_ok || node_id > 127)
{
r = -EINVAL;
goto exit;
}
char name[51];
s = napi_get_value_string_utf8(env, argv[1], name, sizeof(name), NULL);
if(s != napi_ok)
{
r = -EINVAL;
goto exit;
}
size_t length;
void* data;
s = napi_get_arraybuffer_info(env, argv[2], &data, &length);
if(s != napi_ok || length < sizeof(struct wlmio_register_access))
{
r = -EINVAL;
goto exit;
}
struct register_access_param* const param = malloc(sizeof(struct register_access_param));
param->env = env;
napi_create_reference(env, argv[3], 1, ¶m->callback_ref);
r = wlmio_register_access(node_id, name, data, ¶m->regr, register_access_callback, param);
if(r < 0)
{
napi_delete_reference(env, param->callback_ref);
free(param);
goto exit;
}
napi_value result;
exit:
napi_create_int32(env, r, &result);
return result;
}
struct get_info_param
{
napi_env env;
napi_ref callback_ref;
struct wlmio_node_info info;
};
static void get_info_callback(const int32_t r, void* const p)
{
struct get_info_param* const param = p;
napi_env env = param->env;
napi_handle_scope scope;
napi_status s = napi_open_handle_scope(env, &scope);
napi_value callback;
s = napi_get_reference_value(env, param->callback_ref, &callback);
if(s != napi_ok)
{ goto exit; }
napi_value global;
s = napi_get_global(env, &global);
if(s != napi_ok)
{ goto exit; }
napi_value argv[2];
s = napi_create_int32(env, r, &argv[0]);
if(s != napi_ok)
{ goto exit; }
void* data;
s = napi_create_arraybuffer(env, sizeof(struct wlmio_node_info), &data, &argv[1]);
if(s != napi_ok)
{ goto exit; }
memcpy(data, ¶m->info, sizeof(struct wlmio_node_info));
s = napi_call_function(env, global, callback, sizeof(argv) / sizeof(napi_value), argv, NULL);
if(s != napi_ok)
{
handle_exception(env);
goto exit;
}
exit:
napi_delete_reference(env, param->callback_ref);
napi_close_handle_scope(env, scope);
free(p);
}
static napi_value get_info(napi_env env, napi_callback_info info)
{
size_t argc = 2;
napi_value argv[2];
napi_status s = napi_get_cb_info(env, info, &argc, argv, NULL, NULL);
if(s != napi_ok || argc != 2)
{ goto exit; }
napi_valuetype type;
s = napi_typeof(env, argv[0], &type);
if(s != napi_ok || type != napi_number)
{ goto exit; }
s = napi_typeof(env, argv[1], &type);
if(s != napi_ok || type != napi_function)
{ goto exit; }
uint32_t node_id;
s = napi_get_value_uint32(env, argv[0], &node_id);
if(s != napi_ok || node_id > 127)
{ goto exit; }
struct get_info_param* const param = malloc(sizeof(struct get_info_param));
param->env = env;
napi_create_reference(env, argv[1], 1, ¶m->callback_ref);
int32_t r = wlmio_get_node_info(node_id, ¶m->info, get_info_callback, param);
if(r < 0)
{
napi_delete_reference(env, param->callback_ref);
free(param);
goto exit;
}
exit:
return NULL;
}
napi_property_descriptor desc[] =
{
(napi_property_descriptor){"shutdown", NULL, cleanup, NULL, NULL, NULL, napi_enumerable, NULL},
(napi_property_descriptor){"setStatusCallback", NULL, set_status_callback, NULL, NULL, NULL, napi_enumerable, NULL},
(napi_property_descriptor){"nodeId", NULL, NULL, get_node_id, NULL, NULL, napi_enumerable, NULL},
(napi_property_descriptor){"registerList", NULL, register_list, NULL, NULL, NULL, napi_enumerable, NULL},
(napi_property_descriptor){"registerAccess", NULL, register_access, NULL, NULL, NULL, napi_enumerable, NULL},
(napi_property_descriptor){"getInfo", NULL, get_info, NULL, NULL, NULL, napi_enumerable, NULL}
};
napi_value init(napi_env env, napi_value exports)
{
napi_status status;
status = napi_define_properties(env, exports, sizeof(desc) / sizeof(napi_property_descriptor), desc);
if(status != napi_ok)
{ return NULL; }
uv_loop_t* loop;
status = napi_get_uv_event_loop(env, &loop);
if(status != napi_ok)
{ return NULL; }
int32_t r = wlmio_init();
wlmio_set_status_callback(status_callback);
uv_poll_init(loop, &handle, wlmio_get_epoll_fd());
uv_poll_start(&handle, UV_READABLE, uv_callback);
return exports;
}
NAPI_MODULE(NODE_GYP_MODULE_NAME, init)