-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathjs_native_api.h
More file actions
745 lines (654 loc) · 34.2 KB
/
js_native_api.h
File metadata and controls
745 lines (654 loc) · 34.2 KB
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
/**
* Copyright (c) 2017 Node.js API collaborators. All Rights Reserved.
*
* Use of this source code is governed by a MIT license that can be
* found in the LICENSE file in the root of the source tree.
*/
// Copyright 2024 The Lynx Authors. All rights reserved.
// Licensed under the Apache License Version 2.0 that can be found in the
// LICENSE file in the root directory of this source tree.
#ifndef SRC_NAPI_JS_NATIVE_API_H_
#define SRC_NAPI_JS_NATIVE_API_H_
// This file needs to be compatible with C compilers.
#include <stdbool.h> // NOLINT(modernize-deprecated-headers)
#include <stddef.h> // NOLINT(modernize-deprecated-headers)
#ifdef ENABLE_CODECACHE
#include <functional>
#include <string>
#include <vector>
#endif // ENABLE_CODECACHE
#ifndef PRIMJS_NAPI_VERSION
// The baseline version for N-API
#define PRIMJS_NAPI_VERSION 2
#endif
#include "js_native_api_types.h"
#ifdef USE_PRIMJS_NAPI
#include "primjs_napi_defines.h"
#endif
// If you need __declspec(dllimport), either include <node_api.h> instead, or
// define NAPI_EXTERN as __declspec(dllimport) on the compiler's command line.
#ifndef NAPI_EXTERN
#ifdef _WIN32
#define NAPI_EXTERN __declspec(dllexport)
#elif defined(__wasm32__)
#define NAPI_EXTERN \
__attribute__((visibility("default"))) \
__attribute__((__import_module__("napi")))
#else
#define NAPI_EXTERN __attribute__((visibility("default")))
#endif
#endif
#if defined(__GNUC__)
#define NAPI_NO_RETURN __attribute__((noreturn))
#elif defined(_WIN32)
#define NAPI_NO_RETURN __declspec(noreturn)
#else
#define NAPI_NO_RETURN
#endif
#if defined(__GNUC__) || defined(__clang__)
#define NAPI_DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)
#define NAPI_DEPRECATED __declspec(deprecated)
#else
#define NAPI_DEPRECATED
#endif
#if (defined(__GNUC__) || defined(__clang__)) && defined(NDEBUG)
#define NAPI_INLINE inline __attribute__((__always_inline__))
#elif defined(_MSC_VER) && defined(NDEBUG)
#define NAPI_INLINE __forceinline
#else
#define NAPI_INLINE inline
#endif
#define NAPI_AUTO_LENGTH SIZE_MAX
#ifdef __cplusplus
#define EXTERN_C_START extern "C" {
#define EXTERN_C_END }
#else
#define EXTERN_C_START
#define EXTERN_C_END
#endif
#if defined(ENABLE_CODECACHE) && defined(PROFILE_CODECACHE) && \
!defined(BAZEL_BUILD)
#include <chrono>
#include "basic/log/logging.h"
#define LOG_TIME_START() \
auto _t_start_ = std::chrono::high_resolution_clock::now()
#define LOG_TIME_END(...) \
auto _t_end_ = std::chrono::high_resolution_clock::now(); \
std::chrono::duration<double, std::milli> interval_time = \
_t_end_ - _t_start_; \
VLOGD("time comsumption: %f ms", interval_time.count()); \
VLOGD(__VA_ARGS__)
#else
#define LOG_TIME_START()
#define LOG_TIME_END(...)
#endif
struct napi_env__ {
napi_state state;
napi_runtime rt;
napi_context ctx;
// Warning: Keep in-sync with macros in napi_macro.h!
// Always append function at the end to keep ABI compatible!
napi_status (*napi_get_version)(napi_env env, uint32_t* result);
// ENGINE CALL
// Getters for defined singletons
napi_status (*napi_get_undefined)(napi_env env, napi_value* result);
napi_status (*napi_get_null)(napi_env env, napi_value* result);
napi_status (*napi_get_global)(napi_env env, napi_value* result);
napi_status (*napi_get_boolean)(napi_env env, bool value, napi_value* result);
// Methods to create Primitive types/Objects
napi_status (*napi_create_object)(napi_env env, napi_value* result);
napi_status (*napi_create_array)(napi_env env, napi_value* result);
napi_status (*napi_create_array_with_length)(napi_env env, size_t length,
napi_value* result);
napi_status (*napi_create_double)(napi_env env, double value,
napi_value* result);
napi_status (*napi_create_int32)(napi_env env, int32_t value,
napi_value* result);
napi_status (*napi_create_uint32)(napi_env env, uint32_t value,
napi_value* result);
napi_status (*napi_create_int64)(napi_env env, int64_t value,
napi_value* result);
napi_status (*napi_create_string_latin1)(napi_env env, const char* str,
size_t length, napi_value* result);
napi_status (*napi_create_string_utf8)(napi_env env, const char* str,
size_t length, napi_value* result);
napi_status (*napi_create_string_utf16)(napi_env env, const char16_t* str,
size_t length, napi_value* result);
napi_status (*napi_create_symbol)(napi_env env, napi_value description,
napi_value* result);
napi_status (*napi_create_function)(napi_env env, const char* utf8name,
size_t length, napi_callback cb,
void* data, napi_value* result);
napi_status (*napi_create_error)(napi_env env, napi_value code,
napi_value msg, napi_value* result);
napi_status (*napi_create_type_error)(napi_env env, napi_value code,
napi_value msg, napi_value* result);
napi_status (*napi_create_range_error)(napi_env env, napi_value code,
napi_value msg, napi_value* result);
// Methods to get the native napi_value from Primitive type
napi_status (*napi_typeof)(napi_env env, napi_value value,
napi_valuetype* result);
napi_status (*napi_get_value_double)(napi_env env, napi_value value,
double* result);
napi_status (*napi_get_value_int32)(napi_env env, napi_value value,
int32_t* result);
napi_status (*napi_get_value_uint32)(napi_env env, napi_value value,
uint32_t* result);
napi_status (*napi_get_value_int64)(napi_env env, napi_value value,
int64_t* result);
napi_status (*napi_get_value_bool)(napi_env env, napi_value value,
bool* result);
// Copies LATIN-1 encoded bytes from a string into a buffer.
napi_status (*napi_get_value_string_latin1)(napi_env env, napi_value value,
char* buf, size_t bufsize,
size_t* result);
// Copies UTF-8 encoded bytes from a string into a buffer.
napi_status (*napi_get_value_string_utf8)(napi_env env, napi_value value,
char* buf, size_t bufsize,
size_t* result);
// Copies UTF-16 encoded bytes from a string into a buffer.
napi_status (*napi_get_value_string_utf16)(napi_env env, napi_value value,
char16_t* buf, size_t bufsize,
size_t* result);
// Methods to coerce values
// These APIs may execute user scripts
napi_status (*napi_coerce_to_bool)(napi_env env, napi_value value,
napi_value* result);
napi_status (*napi_coerce_to_number)(napi_env env, napi_value value,
napi_value* result);
napi_status (*napi_coerce_to_object)(napi_env env, napi_value value,
napi_value* result);
napi_status (*napi_coerce_to_string)(napi_env env, napi_value value,
napi_value* result);
// Methods to work with Objects
napi_status (*napi_get_prototype)(napi_env env, napi_value object,
napi_value* result);
napi_status (*napi_get_property_names)(napi_env env, napi_value object,
napi_value* result);
napi_status (*napi_set_property)(napi_env env, napi_value object,
napi_value key, napi_value value);
napi_status (*napi_has_property)(napi_env env, napi_value object,
napi_value key, bool* result);
napi_status (*napi_get_property)(napi_env env, napi_value object,
napi_value key, napi_value* result);
napi_status (*napi_delete_property)(napi_env env, napi_value object,
napi_value key, bool* result);
napi_status (*napi_has_own_property)(napi_env env, napi_value object,
napi_value key, bool* result);
napi_status (*napi_set_named_property)(napi_env env, napi_value object,
const char* utf8name,
napi_value value);
napi_status (*napi_has_named_property)(napi_env env, napi_value object,
const char* utf8name, bool* result);
napi_status (*napi_get_named_property)(napi_env env, napi_value object,
const char* utf8name,
napi_value* result);
napi_status (*napi_set_element)(napi_env env, napi_value object,
uint32_t index, napi_value value);
napi_status (*napi_has_element)(napi_env env, napi_value object,
uint32_t index, bool* result);
napi_status (*napi_get_element)(napi_env env, napi_value object,
uint32_t index, napi_value* result);
napi_status (*napi_delete_element)(napi_env env, napi_value object,
uint32_t index, bool* result);
napi_status (*napi_define_properties)(
napi_env env, napi_value object, size_t property_count,
const napi_property_descriptor* properties);
// Methods to work with Arrays
napi_status (*napi_is_array)(napi_env env, napi_value value, bool* result);
napi_status (*napi_get_array_length)(napi_env env, napi_value value,
uint32_t* result);
// Methods to compare values
napi_status (*napi_strict_equals)(napi_env env, napi_value lhs,
napi_value rhs, bool* result);
// Methods to work with Functions
napi_status (*napi_call_function)(napi_env env, napi_value recv,
napi_value func, size_t argc,
const napi_value* argv, napi_value* result);
napi_status (*napi_new_instance)(napi_env env, napi_value constructor,
size_t argc, const napi_value* argv,
napi_value* result);
napi_status (*napi_instanceof)(napi_env env, napi_value object,
napi_value constructor, bool* result);
// Methods to work with napi_callbacks
// Gets all callback info in a single call. (Ugly, but faster.)
napi_status (*napi_get_cb_info)(
napi_env env, // [in] NAPI environment handle
napi_callback_info cbinfo, // [in] Opaque callback-info handle
size_t* argc, // [in-out] Specifies the size of the provided argv array
// and receives the actual count of args.
napi_value* argv, // [out] Array of values
napi_value* this_arg, // [out] Receives the JS 'this' arg for the call
void** data); // [out] Receives the data pointer for the callback.
napi_status (*napi_get_new_target)(napi_env env, napi_callback_info cbinfo,
napi_value* result);
napi_status (*napi_define_class)(napi_env env, const char* utf8name,
size_t length, napi_callback constructor,
void* data, size_t property_count,
const napi_property_descriptor* properties,
napi_class super_class, napi_class* result);
napi_status (*napi_release_class)(napi_env env, napi_class clazz);
napi_status (*napi_class_get_function)(napi_env env, napi_class clazz,
napi_value* result);
// Methods to work with external data objects
napi_status (*napi_wrap)(napi_env env, napi_value js_object,
void* native_object, napi_finalize finalize_cb,
void* finalize_hint, napi_ref* result);
napi_status (*napi_unwrap)(napi_env env, napi_value js_object, void** result);
napi_status (*napi_remove_wrap)(napi_env env, napi_value js_object,
void** result);
napi_status (*napi_create_external)(napi_env env, void* data,
napi_finalize finalize_cb,
void* finalize_hint, napi_value* result);
napi_status (*napi_get_value_external)(napi_env env, napi_value value,
void** result);
// Methods to control object lifespan
// Set initial_refcount to 0 for a weak reference, >0 for a strong reference.
napi_status (*napi_create_reference)(napi_env env, napi_value value,
uint32_t initial_refcount,
napi_ref* result);
// Deletes a reference. The referenced value is released, and may
// be GC'd unless there are other references to it.
napi_status (*napi_delete_reference)(napi_env env, napi_ref ref);
// Increments the reference count, optionally returning the resulting count.
// After this call the reference will be a strong reference because its
// refcount is >0, and the referenced object is effectively "pinned".
// Calling this when the refcount is 0 and the object is unavailable
// results in an error.
napi_status (*napi_reference_ref)(napi_env env, napi_ref ref,
uint32_t* result);
// Decrements the reference count, optionally returning the resulting count.
// If the result is 0 the reference is now weak and the object may be GC'd
// at any time if there are no other references. Calling this when the
// refcount is already 0 results in an error.
napi_status (*napi_reference_unref)(napi_env env, napi_ref ref,
uint32_t* result);
// Attempts to get a referenced value. If the reference is weak,
// the value might no longer be available, in that case the call
// is still successful but the result is NULL.
napi_status (*napi_get_reference_value)(napi_env env, napi_ref ref,
napi_value* result);
napi_status (*napi_open_handle_scope)(napi_env env,
napi_handle_scope* result);
napi_status (*napi_close_handle_scope)(napi_env env, napi_handle_scope scope);
napi_status (*napi_open_escapable_handle_scope)(
napi_env env, napi_escapable_handle_scope* result);
napi_status (*napi_close_escapable_handle_scope)(
napi_env env, napi_escapable_handle_scope scope);
napi_status (*napi_escape_handle)(napi_env env,
napi_escapable_handle_scope scope,
napi_value escapee, napi_value* result);
// Methods to support error handling
napi_status (*napi_throw_)(napi_env env, napi_value error);
napi_status (*napi_throw_error)(napi_env env, const char* code,
const char* msg);
napi_status (*napi_throw_type_error)(napi_env env, const char* code,
const char* msg);
napi_status (*napi_throw_range_error)(napi_env env, const char* code,
const char* msg);
napi_status (*napi_is_error)(napi_env env, napi_value value, bool* result);
// Methods to support catching exceptions
napi_status (*napi_is_exception_pending)(napi_env env, bool* result);
napi_status (*napi_get_and_clear_last_exception)(napi_env env,
napi_value* result);
// Methods to work with array buffers and typed arrays
napi_status (*napi_is_arraybuffer)(napi_env env, napi_value value,
bool* result);
napi_status (*napi_create_arraybuffer)(napi_env env, size_t byte_length,
void** data, napi_value* result);
napi_status (*napi_create_external_arraybuffer)(
napi_env env, void* external_data, size_t byte_length,
napi_finalize finalize_cb, void* finalize_hint, napi_value* result);
napi_status (*napi_get_arraybuffer_info)(napi_env env, napi_value arraybuffer,
void** data, size_t* byte_length);
napi_status (*napi_is_typedarray)(napi_env env, napi_value value,
bool* result);
napi_status (*napi_create_typedarray)(napi_env env, napi_typedarray_type type,
size_t length, napi_value arraybuffer,
size_t byte_offset, napi_value* result);
napi_status (*napi_is_typedarray_of)(napi_env env, napi_value typedarray,
napi_typedarray_type type, bool* result);
napi_status (*napi_get_typedarray_info)(napi_env env, napi_value typedarray,
napi_typedarray_type* type,
size_t* length, void** data,
napi_value* arraybuffer,
size_t* byte_offset);
napi_status (*napi_create_dataview)(napi_env env, size_t length,
napi_value arraybuffer,
size_t byte_offset, napi_value* result);
napi_status (*napi_is_dataview)(napi_env env, napi_value value, bool* result);
napi_status (*napi_get_dataview_info)(napi_env env, napi_value dataview,
size_t* bytelength, void** data,
napi_value* arraybuffer,
size_t* byte_offset);
// Promises
napi_status (*napi_create_promise)(napi_env env, napi_deferred* deferred,
napi_value* promise);
napi_status (*napi_release_deferred)(napi_env env, napi_deferred deferred,
napi_value resolution,
napi_deferred_release_mode mode);
napi_status (*napi_is_promise)(napi_env env, napi_value value,
bool* is_promise);
// Running a script
napi_status (*napi_run_script)(napi_env env, const char* script,
size_t length, const char* filename,
napi_value* result);
// Memory management
napi_status (*napi_adjust_external_memory)(napi_env env,
int64_t change_in_bytes,
int64_t* adjusted_value);
// Add finalizer for pointer
napi_status (*napi_add_finalizer)(napi_env env, napi_value js_object,
void* native_object,
napi_finalize finalize_cb,
void* finalize_hint, napi_ref* result);
// Instance data
napi_status_legacy (*napi_set_instance_data)(napi_env env, uint64_t key,
void* data,
napi_finalize finalize_cb,
void* finalize_hint);
napi_status (*napi_get_instance_data)(napi_env env, uint64_t key,
void** data);
// ENGINE CALL END
// Universal CALL
napi_status (*napi_get_last_error_info)(
napi_env env, const napi_extended_error_info** result);
napi_status (*napi_add_env_cleanup_hook)(napi_env env, void (*fun)(void* arg),
void* arg);
napi_status (*napi_remove_env_cleanup_hook)(napi_env env,
void (*fun)(void* arg),
void* arg);
napi_status (*napi_create_async_work)(napi_env env, napi_value async_resource,
napi_value async_resource_name,
napi_async_execute_callback execute,
napi_async_complete_callback complete,
void* data, napi_async_work* result);
napi_status (*napi_delete_async_work)(napi_env env, napi_async_work work);
napi_status (*napi_queue_async_work)(napi_env env, napi_async_work work);
napi_status (*napi_cancel_async_work)(napi_env env, napi_async_work work);
// Calling into JS from other threads
napi_status (*napi_create_threadsafe_function)(
napi_env env, void* thread_finalize_data,
napi_finalize thread_finalize_cb, void* context,
napi_threadsafe_function_call_js call_js_cb,
napi_threadsafe_function* result);
napi_status (*napi_get_threadsafe_function_context)(
napi_threadsafe_function func, void** result);
napi_status (*napi_call_threadsafe_function)(
napi_threadsafe_function func, void* data,
napi_threadsafe_function_call_mode is_blocking);
// no need to acquire tsfn, just hold the pointer and release in any thread
napi_status NAPI_DEPRECATED (*napi_acquire_threadsafe_function)(
napi_threadsafe_function func);
napi_status (*napi_delete_threadsafe_function)(napi_threadsafe_function func);
// no need to ref thread
napi_status NAPI_DEPRECATED (*napi_unref_threadsafe_function)(
napi_env env, napi_threadsafe_function func);
// no need to ref thread
napi_status NAPI_DEPRECATED (*napi_ref_threadsafe_function)(
napi_env env, napi_threadsafe_function func);
napi_status (*napi_get_loader)(napi_env env, napi_value* result);
// UNIVERSAL CALL END
napi_status (*napi_open_context_scope)(napi_env env,
napi_context_scope* result);
napi_status_legacy (*napi_close_context_scope)(napi_env env,
napi_context_scope scope);
napi_status (*napi_open_error_scope)(napi_env env, napi_error_scope* result);
napi_status (*napi_close_error_scope)(napi_env env, napi_error_scope scope);
// loose equals
napi_status (*napi_equals)(napi_env env, napi_value lhs, napi_value rhs,
bool* result);
napi_status (*napi_get_unhandled_rejection_exception)(napi_env env,
napi_value* result);
napi_status (*napi_get_own_property_descriptor)(napi_env env, napi_value obj,
napi_value prop,
napi_value* result);
#ifdef ENABLE_CODECACHE
napi_status (*napi_post_worker_task)(napi_env env,
std::function<void()> task);
napi_status (*napi_store_code_cache)(napi_env env,
const std::string& filename,
const uint8_t* data, int length);
napi_status (*napi_get_code_cache)(napi_env env, const std::string& filename,
const uint8_t** data, int* length);
napi_status (*napi_output_code_cache)(napi_env env,
unsigned int place_holder);
// this interface may be optimized by
// discarding the parameter of std::function type
napi_status (*napi_init_code_cache)(napi_env env, int capacity,
const std::string& cache_file,
std::function<void(bool)> callback);
napi_status (*napi_dump_code_cache_status)(napi_env env, void* dump_vec);
napi_status (*napi_run_script_cache)(napi_env env, const char* script,
size_t length, const char* filename,
napi_value* result);
napi_status (*napi_run_code_cache)(napi_env env, const uint8_t* data,
int length, napi_value* result);
napi_status (*napi_gen_code_cache)(napi_env env, const char* script,
size_t script_len, const uint8_t** data,
int* length);
#endif // ENABLE_CODECACHE
napi_status (*napi_set_instance_data_spec_compliant)(
napi_env env, uint64_t key, void* data, napi_finalize finalize_cb,
void* finalize_hint);
napi_status (*napi_define_properties_spec_compliant)(
napi_env env, napi_value object, size_t property_count,
const napi_property_descriptor* properties);
napi_status (*napi_define_class_spec_compliant)(
napi_env env, const char* utf8name, size_t length,
napi_callback constructor, void* data, size_t property_count,
const napi_property_descriptor* properties, napi_class super_class,
napi_class* result);
napi_status (*napi_call_function_spec_compliant)(napi_env env,
napi_value recv,
napi_value func, size_t argc,
const napi_value* argv,
napi_value* result);
napi_status (*napi_wrap_spec_compliant)(napi_env env, napi_value js_object,
void* native_object,
napi_finalize finalize_cb,
void* finalize_hint,
napi_ref* result);
napi_status (*napi_unwrap_spec_compliant)(napi_env env, napi_value js_object,
void** result);
napi_status (*napi_remove_wrap_spec_compliant)(napi_env env,
napi_value js_object,
void** result);
napi_status (*napi_create_date)(napi_env env, double time,
napi_value* result);
napi_status (*napi_is_date)(napi_env env, napi_value value, bool* is_date);
napi_status (*napi_get_date_value)(napi_env env, napi_value value,
double* result);
napi_status (*napi_get_all_property_names)(napi_env env, napi_value object,
napi_key_collection_mode key_mode,
napi_key_filter key_filter,
napi_key_conversion key_conversion,
napi_value* result);
napi_status (*napi_create_threadsafe_function_spec_compliant)(
napi_env env, void* thread_finalize_data,
napi_finalize thread_finalize_cb, void* context,
napi_threadsafe_function_call_js call_js_cb, size_t max_queue_size,
size_t thread_count, napi_threadsafe_function* result);
napi_status (*napi_create_bigint_int64)(napi_env env, int64_t value,
napi_value* result);
napi_status (*napi_create_bigint_uint64)(napi_env env, uint64_t value,
napi_value* result);
napi_status (*napi_get_value_bigint_int64)(napi_env env, napi_value value,
int64_t* result, bool* lossless);
napi_status (*napi_get_value_bigint_uint64)(napi_env env, napi_value value,
uint64_t* result, bool* lossless);
napi_status (*napi_create_bigint_words)(napi_env env, int sign_bit,
size_t word_count,
const uint64_t* words,
napi_value* result);
napi_status (*napi_get_value_bigint_words)(napi_env env, napi_value value,
int* sign_bit, size_t* word_count,
uint64_t* words);
};
#ifdef ENABLE_CODECACHE
#define NAPI_RUNTIME_CODECACHE_CALL(V) \
V(post_worker_task) \
V(store_code_cache) \
V(get_code_cache) \
V(output_code_cache) \
V(init_code_cache) \
V(dump_code_cache_status)
#define NAPI_ENGINE_CACHE_CALL(V) \
V(run_script_cache) \
V(run_code_cache) \
V(gen_code_cache)
#else
#define NAPI_RUNTIME_CODECACHE_CALL(V)
#define NAPI_ENGINE_CACHE_CALL(V)
#endif // ENABLE_CODECACHE
// These functions are different in JS engines
#define FOR_EACH_NAPI_ENGINE_CALL(V) \
V(get_undefined) \
V(get_null) \
V(get_global) \
V(get_boolean) \
V(create_object) \
V(create_array) \
V(create_array_with_length) \
V(create_double) \
V(create_int32) \
V(create_uint32) \
V(create_int64) \
V(create_string_latin1) \
V(create_string_utf8) \
V(create_string_utf16) \
V(create_symbol) \
V(create_function) \
V(create_error) \
V(create_type_error) \
V(create_range_error) \
V(typeof) \
V(get_value_double) \
V(get_value_int32) \
V(get_value_uint32) \
V(get_value_int64) \
V(get_value_bool) \
V(get_value_string_latin1) \
V(get_value_string_utf8) \
V(get_value_string_utf16) \
V(coerce_to_bool) \
V(coerce_to_number) \
V(coerce_to_object) \
V(coerce_to_string) \
V(get_prototype) \
V(get_property_names) \
V(set_property) \
V(has_property) \
V(get_property) \
V(delete_property) \
V(has_own_property) \
V(set_named_property) \
V(has_named_property) \
V(get_named_property) \
V(set_element) \
V(has_element) \
V(get_element) \
V(delete_element) \
V(define_properties) \
V(is_array) \
V(get_array_length) \
V(strict_equals) \
V(equals) \
V(call_function) \
V(new_instance) \
V(instanceof) \
V(get_cb_info) \
V(get_new_target) \
V(define_class) \
V(release_class) \
V(class_get_function) \
V(wrap) \
V(unwrap) \
V(remove_wrap) \
V(create_external) \
V(get_value_external) \
V(create_reference) \
V(delete_reference) \
V(reference_ref) \
V(reference_unref) \
V(get_reference_value) \
V(open_handle_scope) \
V(close_handle_scope) \
V(open_escapable_handle_scope) \
V(close_escapable_handle_scope) \
V(escape_handle) \
V(throw_) \
V(throw_error) \
V(throw_type_error) \
V(throw_range_error) \
V(is_error) \
V(is_exception_pending) \
V(get_and_clear_last_exception) \
V(get_unhandled_rejection_exception) \
V(is_arraybuffer) \
V(create_arraybuffer) \
V(create_external_arraybuffer) \
V(get_arraybuffer_info) \
V(is_typedarray) \
V(create_typedarray) \
V(is_typedarray_of) \
V(get_typedarray_info) \
V(create_dataview) \
V(is_dataview) \
V(get_dataview_info) \
V(create_promise) \
V(release_deferred) \
V(is_promise) \
V(run_script) \
V(adjust_external_memory) \
V(add_finalizer) \
V(set_instance_data) \
V(get_instance_data) \
V(open_context_scope) \
V(close_context_scope) \
V(get_own_property_descriptor) \
V(set_instance_data_spec_compliant) \
V(define_properties_spec_compliant) \
V(define_class_spec_compliant) \
V(call_function_spec_compliant) \
V(wrap_spec_compliant) \
V(unwrap_spec_compliant) \
V(remove_wrap_spec_compliant) \
V(create_date) \
V(is_date) \
V(get_date_value) \
V(get_all_property_names) \
V(create_bigint_int64) \
V(create_bigint_uint64) \
V(get_value_bigint_int64) \
V(get_value_bigint_uint64) \
V(create_bigint_words) \
V(get_value_bigint_words) \
NAPI_ENGINE_CACHE_CALL(V)
// These functions share same implementations across JS engines
#define FOR_EACH_NAPI_ENV_CALL(V) \
V(get_last_error_info) \
V(get_version) \
V(add_env_cleanup_hook) \
V(remove_env_cleanup_hook) \
V(get_loader)
// These functions are different in different JS runtimes
#define FOR_EACH_NAPI_RUNTIME_CALL(V) \
V(create_async_work) \
V(delete_async_work) \
V(queue_async_work) \
V(cancel_async_work) \
V(create_threadsafe_function) \
V(get_threadsafe_function_context) \
V(call_threadsafe_function) \
V(delete_threadsafe_function) \
V(open_error_scope) \
V(close_error_scope) \
V(create_threadsafe_function_spec_compliant)
#define NAPI_ENV_CALL(API, ENV, ...) \
napi_env(ENV)->napi_##API((ENV), __VA_ARGS__)
#ifdef USE_PRIMJS_NAPI
#include "primjs_napi_undefs.h"
#endif
#endif // SRC_NAPI_JS_NATIVE_API_H_