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
|
/*
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_NODEJS_NAPI_H_INCLUDED_
#define _NXT_NODEJS_NAPI_H_INCLUDED_
#include <node_api.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "version.h"
#include <nxt_unit.h>
#if NXT_VERNUM != NXT_NODE_VERNUM
#error "libunit version mismatch."
#endif
#include <nxt_unit_response.h>
#include <nxt_unit_request.h>
#ifdef __cplusplus
} /* extern "C" */
#endif
struct nxt_napi {
struct exception {
exception(const char *s) : str(s) { }
const char *str;
};
nxt_napi(napi_env env) : env_(env) { }
inline napi_value
coerce_to_string(napi_value val)
{
napi_value res;
napi_status status;
status = napi_coerce_to_string(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to coerce to string");
}
return res;
}
inline napi_value
create_buffer(size_t size, void **data)
{
napi_value res;
napi_status status;
status = napi_create_buffer(env_, size, data, &res);
if (status != napi_ok) {
throw exception("Failed to create buffer");
}
return res;
}
inline napi_value
create_function(const char *name, size_t len, napi_callback cb, void *data)
{
napi_value res;
napi_status status;
status = napi_create_function(env_, name, len, cb, data, &res);
if (status != napi_ok) {
throw exception("Failed to create function");
}
return res;
}
inline napi_value
create_function(napi_callback cb)
{
return create_function(NULL, 0, cb, NULL);
}
inline napi_value
create_object()
{
napi_value res;
napi_status status;
status = napi_create_object(env_, &res);
if (status != napi_ok) {
throw exception("Failed to create object");
}
return res;
}
inline napi_ref
create_reference(napi_value val, int ref_count = 1)
{
napi_ref res;
napi_status status;
status = napi_create_reference(env_, val, ref_count, &res);
if (status != napi_ok) {
throw exception("Failed to create reference");
}
return res;
}
inline napi_value
create_string_latin1(const char *str, size_t len)
{
napi_value res;
napi_status status;
status = napi_create_string_latin1(env_, str, len, &res);
if (status != napi_ok) {
throw exception("Failed to create latin1 string");
}
return res;
}
inline napi_value
create_string_latin1(nxt_unit_sptr_t &str, size_t len)
{
const char *p;
p = (const char *) nxt_unit_sptr_get(&str);
return create_string_latin1(p, len);
}
inline napi_value
define_class(const char *name, napi_callback ctor, size_t prop_count,
const napi_property_descriptor* props)
{
napi_value res;
napi_status status;
status = napi_define_class(env_, name, NAPI_AUTO_LENGTH, ctor, nullptr,
prop_count, props, &res);
if (status != napi_ok) {
throw exception("Failed to define class");
}
return res;
}
inline void
delete_reference(napi_ref ref)
{
napi_delete_reference(env_, ref);
}
inline uint32_t
get_array_length(napi_value val)
{
uint32_t res;
napi_status status;
status = napi_get_array_length(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to get array length");
}
return res;
}
inline napi_value
get_cb_info(napi_callback_info info, size_t &argc, napi_value *argv)
{
napi_value res;
napi_status status;
status = napi_get_cb_info(env_, info, &argc, argv, &res, nullptr);
if (status != napi_ok) {
throw exception("Failed to get arguments from js");
}
return res;
}
inline napi_value
get_cb_info(napi_callback_info info)
{
napi_value res;
napi_status status;
status = napi_get_cb_info(env_, info, nullptr, nullptr, &res, nullptr);
if (status != napi_ok) {
throw exception("Failed to get arguments from js");
}
return res;
}
inline napi_value
get_element(napi_value obj, uint32_t i)
{
napi_value res;
napi_status status;
status = napi_get_element(env_, obj, i, &res);
if (status != napi_ok) {
throw exception("Failed to get element");
}
return res;
}
inline napi_value
get_named_property(napi_value obj, const char *name)
{
napi_value res;
napi_status status;
status = napi_get_named_property(env_, obj, name, &res);
if (status != napi_ok) {
throw exception("Failed to get named property");
}
return res;
}
inline napi_value
get_new_target(napi_callback_info info)
{
napi_value res;
napi_status status;
status = napi_get_new_target(env_, info, &res);
if (status != napi_ok) {
throw exception("Failed to get new target");
}
return res;
}
inline napi_value
get_property(napi_value val, napi_value key)
{
napi_value res;
napi_status status;
status = napi_get_property(env_, val, key, &res);
if (status != napi_ok) {
throw exception("Failed to get property");
}
return res;
}
inline napi_value
get_property_names(napi_value val)
{
napi_value res;
napi_status status;
status = napi_get_property_names(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to get property names");
}
return res;
}
inline napi_value
get_reference_value(napi_ref ref)
{
napi_value res;
napi_status status;
status = napi_get_reference_value(env_, ref, &res);
if (status != napi_ok) {
throw exception("Failed to get reference value");
}
return res;
}
inline nxt_unit_request_info_t *
get_request_info(napi_value obj)
{
int64_t n;
napi_status status;
status = napi_get_value_int64(env_, obj, &n);
if (status != napi_ok) {
throw exception("Failed to get request pointer");
}
return (nxt_unit_request_info_t *) (intptr_t) n;
}
inline size_t
get_value_string_latin1(napi_value val, char *buf, size_t bufsize)
{
size_t res;
napi_status status;
status = napi_get_value_string_latin1(env_, val, buf, bufsize, &res);
if (status != napi_ok) {
throw exception("Failed to get string latin1");
}
return res;
}
inline uint32_t
get_value_uint32(napi_value obj)
{
uint32_t res;
napi_status status;
status = napi_get_value_uint32(env_, obj, &res);
if (status != napi_ok) {
throw exception("Failed to get uint32_t");
}
return res;
}
inline bool
is_array(napi_value val)
{
bool res;
napi_status status;
status = napi_is_array(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to confirm value is array");
}
return res;
}
inline napi_value
make_callback(napi_async_context ctx, napi_value val, napi_value func,
int argc, const napi_value *argv)
{
napi_value res, ex;
napi_status status;
status = napi_make_callback(env_, ctx, val, func, argc, argv, &res);
if (status != napi_ok) {
if (status != napi_pending_exception) {
throw exception("Failed to make callback");
}
status = napi_get_and_clear_last_exception(env_, &ex);
if (status != napi_ok) {
throw exception("Failed to get and clear last exception");
}
/* Logging a description of the error and call stack. */
status = napi_fatal_exception(env_, ex);
if (status != napi_ok) {
throw exception("Failed napi_fatal_exception()");
}
}
return res;
}
inline napi_value
new_instance(napi_value ctor)
{
napi_value res;
napi_status status;
status = napi_new_instance(env_, ctor, 0, NULL, &res);
if (status != napi_ok) {
throw exception("Failed to create instance");
}
return res;
}
inline napi_value
new_instance(napi_value ctor, napi_value param)
{
napi_value res;
napi_status status;
status = napi_new_instance(env_, ctor, 1, ¶m, &res);
if (status != napi_ok) {
throw exception("Failed to create instance");
}
return res;
}
inline void
set_element(napi_value obj, uint32_t i, napi_value val)
{
napi_status status;
status = napi_set_element(env_, obj, i, val);
if (status != napi_ok) {
throw exception("Failed to set element");
}
}
inline void
set_named_property(napi_value obj, const char *name, napi_value val)
{
napi_status status;
status = napi_set_named_property(env_, obj, name, val);
if (status != napi_ok) {
throw exception("Failed to set named property");
}
}
inline void
set_named_property(napi_value obj, const char *name, napi_callback cb)
{
set_named_property(obj, name, create_function(cb));
}
inline napi_value
set_named_property(napi_value obj, const char *name, nxt_unit_sptr_t &val,
size_t len)
{
napi_value str;
str = create_string_latin1(val, len);
set_named_property(obj, name, str);
return str;
}
inline void
set_named_property(napi_value obj, const char *name, intptr_t val)
{
napi_value ptr;
napi_status status;
status = napi_create_int64(env_, val, &ptr);
if (status != napi_ok) {
throw exception("Failed to create int64");
}
set_named_property(obj, name, ptr);
}
inline void
throw_error(const char *str)
{
napi_throw_error(env_, NULL, str);
}
inline void
throw_error(const exception &e)
{
napi_throw_error(env_, NULL, e.str);
}
inline napi_valuetype
type_of(napi_value val)
{
napi_status status;
napi_valuetype res;
status = napi_typeof(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to get typeof");
}
return res;
}
inline void *
unwrap(napi_value val)
{
void *res;
napi_status status;
status = napi_unwrap(env_, val, &res);
if (status != napi_ok) {
throw exception("Failed to unwrap");
}
return res;
}
inline napi_ref
wrap(napi_value val, void *obj, napi_finalize fin_cb, void *hint = nullptr)
{
napi_ref res;
napi_status status;
status = napi_wrap(env_, val, obj, fin_cb, hint, &res);
if (status != napi_ok) {
throw exception("Failed to wrap");
}
return res;
}
inline
operator napi_env()
{
return env_;
}
napi_env env()
{
return env_;
}
private:
napi_env env_;
};
struct nxt_handle_scope : public nxt_napi {
nxt_handle_scope(napi_env env) : nxt_napi(env)
{
napi_status status;
status = napi_open_handle_scope(env, &scope_);
if (status != napi_ok) {
throw exception("Failed to open handle scope");
}
}
~nxt_handle_scope()
{
napi_status status;
status = napi_close_handle_scope(env(), scope_);
if (status != napi_ok) {
throw_error("Failed to close handle scope");
}
}
private:
napi_handle_scope scope_;
};
struct nxt_async_context : public nxt_napi {
nxt_async_context(napi_env env, const char *name) :
nxt_napi(env)
{
napi_value name_val;
napi_status status;
name_val = create_string_latin1(name, NAPI_AUTO_LENGTH);
status = napi_async_init(env, NULL, name_val, &context_);
if (status != napi_ok) {
throw exception("Failed to init async object");
}
}
operator napi_async_context() {
return context_;
}
~nxt_async_context()
{
napi_status status;
status = napi_async_destroy(env(), context_);
if (status != napi_ok) {
throw_error("Failed to destroy async object");
}
}
private:
napi_async_context context_;
};
struct nxt_callback_scope : public nxt_napi {
nxt_callback_scope(nxt_async_context& ctx) :
nxt_napi(ctx.env())
{
napi_value resource;
napi_status status;
resource = create_object();
status = napi_open_callback_scope(env(), resource, ctx, &scope_);
if (status != napi_ok) {
throw exception("Failed to open callback scope");
}
}
~nxt_callback_scope()
{
napi_status status;
status = napi_close_callback_scope(env(), scope_);
if (status != napi_ok) {
throw_error("Failed to close callback scope");
}
}
private:
napi_callback_scope scope_;
};
#endif /* _NXT_NODEJS_NAPI_H_INCLUDED_ */
|