@kungfu-tech/libnode-win32-x64 22.22.3-kf.0 → 22.22.3-kf.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/include/acorn_version.h +6 -0
- package/dist/node/include/aliased_buffer-inl.h +244 -0
- package/dist/node/include/aliased_buffer.h +206 -0
- package/dist/node/include/aliased_struct-inl.h +54 -0
- package/dist/node/include/aliased_struct.h +63 -0
- package/dist/node/include/amaro_version.h +6 -0
- package/dist/node/include/async_context_frame.h +33 -0
- package/dist/node/include/async_wrap-inl.h +96 -0
- package/dist/node/include/async_wrap.h +243 -0
- package/dist/node/include/base_object-inl.h +335 -0
- package/dist/node/include/base_object.h +342 -0
- package/dist/node/include/base_object_types.h +74 -0
- package/dist/node/include/blob_serializer_deserializer-inl.h +385 -0
- package/dist/node/include/blob_serializer_deserializer.h +132 -0
- package/dist/node/include/callback_queue-inl.h +97 -0
- package/dist/node/include/callback_queue.h +79 -0
- package/dist/node/include/cares_wrap.h +447 -0
- package/dist/node/include/cjs_module_lexer_version.h +6 -0
- package/dist/node/include/cleanup_queue-inl.h +36 -0
- package/dist/node/include/cleanup_queue.h +79 -0
- package/dist/node/include/compile_cache.h +104 -0
- package/dist/node/include/connect_wrap.h +26 -0
- package/dist/node/include/connection_wrap.h +30 -0
- package/dist/node/include/cppgc/allocation.h +310 -0
- package/dist/node/include/cppgc/common.h +28 -0
- package/dist/node/include/cppgc/cross-thread-persistent.h +466 -0
- package/dist/node/include/cppgc/custom-space.h +97 -0
- package/dist/node/include/cppgc/default-platform.h +67 -0
- package/dist/node/include/cppgc/ephemeron-pair.h +30 -0
- package/dist/node/include/cppgc/explicit-management.h +100 -0
- package/dist/node/include/cppgc/garbage-collected.h +106 -0
- package/dist/node/include/cppgc/heap-consistency.h +309 -0
- package/dist/node/include/cppgc/heap-handle.h +48 -0
- package/dist/node/include/cppgc/heap-state.h +82 -0
- package/dist/node/include/cppgc/heap-statistics.h +120 -0
- package/dist/node/include/cppgc/heap.h +202 -0
- package/dist/node/include/cppgc/internal/api-constants.h +87 -0
- package/dist/node/include/cppgc/internal/atomic-entry-flag.h +48 -0
- package/dist/node/include/cppgc/internal/base-page-handle.h +45 -0
- package/dist/node/include/cppgc/internal/caged-heap-local-data.h +121 -0
- package/dist/node/include/cppgc/internal/caged-heap.h +68 -0
- package/dist/node/include/cppgc/internal/compiler-specific.h +38 -0
- package/dist/node/include/cppgc/internal/finalizer-trait.h +93 -0
- package/dist/node/include/cppgc/internal/gc-info.h +148 -0
- package/dist/node/include/cppgc/internal/logging.h +50 -0
- package/dist/node/include/cppgc/internal/member-storage.h +256 -0
- package/dist/node/include/cppgc/internal/name-trait.h +137 -0
- package/dist/node/include/cppgc/internal/persistent-node.h +214 -0
- package/dist/node/include/cppgc/internal/pointer-policies.h +243 -0
- package/dist/node/include/cppgc/internal/write-barrier.h +487 -0
- package/dist/node/include/cppgc/liveness-broker.h +78 -0
- package/dist/node/include/cppgc/macros.h +35 -0
- package/dist/node/include/cppgc/member.h +629 -0
- package/dist/node/include/cppgc/name-provider.h +65 -0
- package/dist/node/include/cppgc/object-size-trait.h +58 -0
- package/dist/node/include/cppgc/persistent.h +377 -0
- package/dist/node/include/cppgc/platform.h +163 -0
- package/dist/node/include/cppgc/prefinalizer.h +75 -0
- package/dist/node/include/cppgc/process-heap-statistics.h +36 -0
- package/dist/node/include/cppgc/sentinel-pointer.h +39 -0
- package/dist/node/include/cppgc/source-location.h +16 -0
- package/dist/node/include/cppgc/testing.h +106 -0
- package/dist/node/include/cppgc/trace-trait.h +128 -0
- package/dist/node/include/cppgc/type-traits.h +271 -0
- package/dist/node/include/cppgc/visitor.h +504 -0
- package/dist/node/include/crypto/crypto_aes.h +88 -0
- package/dist/node/include/crypto/crypto_bio.h +193 -0
- package/dist/node/include/crypto/crypto_cipher.h +293 -0
- package/dist/node/include/crypto/crypto_clienthello-inl.h +90 -0
- package/dist/node/include/crypto/crypto_clienthello.h +131 -0
- package/dist/node/include/crypto/crypto_common.h +64 -0
- package/dist/node/include/crypto/crypto_context.h +171 -0
- package/dist/node/include/crypto/crypto_dh.h +126 -0
- package/dist/node/include/crypto/crypto_dsa.h +52 -0
- package/dist/node/include/crypto/crypto_ec.h +164 -0
- package/dist/node/include/crypto/crypto_hash.h +91 -0
- package/dist/node/include/crypto/crypto_hkdf.h +61 -0
- package/dist/node/include/crypto/crypto_hmac.h +92 -0
- package/dist/node/include/crypto/crypto_keygen.h +299 -0
- package/dist/node/include/crypto/crypto_keys.h +392 -0
- package/dist/node/include/crypto/crypto_pbkdf2.h +74 -0
- package/dist/node/include/crypto/crypto_random.h +124 -0
- package/dist/node/include/crypto/crypto_rsa.h +136 -0
- package/dist/node/include/crypto/crypto_scrypt.h +85 -0
- package/dist/node/include/crypto/crypto_sig.h +165 -0
- package/dist/node/include/crypto/crypto_spkac.h +21 -0
- package/dist/node/include/crypto/crypto_timing.h +20 -0
- package/dist/node/include/crypto/crypto_tls.h +305 -0
- package/dist/node/include/crypto/crypto_util.h +725 -0
- package/dist/node/include/crypto/crypto_x509.h +140 -0
- package/dist/node/include/dataqueue/queue.h +306 -0
- package/dist/node/include/debug_utils-inl.h +278 -0
- package/dist/node/include/debug_utils.h +196 -0
- package/dist/node/include/diagnosticfilename-inl.h +33 -0
- package/dist/node/include/embedded_data.h +17 -0
- package/dist/node/include/encoding_binding.h +61 -0
- package/dist/node/include/env-inl.h +984 -0
- package/dist/node/include/env.h +1287 -0
- package/dist/node/include/env_properties.h +540 -0
- package/dist/node/include/handle_wrap.h +123 -0
- package/dist/node/include/histogram-inl.h +107 -0
- package/dist/node/include/histogram.h +279 -0
- package/dist/node/include/inspector/io_agent.h +30 -0
- package/dist/node/include/inspector/main_thread_interface.h +116 -0
- package/dist/node/include/inspector/network_agent.h +94 -0
- package/dist/node/include/inspector/network_inspector.h +45 -0
- package/dist/node/include/inspector/network_requests_buffer.h +195 -0
- package/dist/node/include/inspector/network_resource_manager.h +29 -0
- package/dist/node/include/inspector/node_json.h +24 -0
- package/dist/node/include/inspector/node_string.h +101 -0
- package/dist/node/include/inspector/protocol_helper.h +27 -0
- package/dist/node/include/inspector/runtime_agent.h +41 -0
- package/dist/node/include/inspector/target_agent.h +75 -0
- package/dist/node/include/inspector/tracing_agent.h +43 -0
- package/dist/node/include/inspector/worker_agent.h +40 -0
- package/dist/node/include/inspector/worker_inspector.h +124 -0
- package/dist/node/include/inspector_agent.h +165 -0
- package/dist/node/include/inspector_io.h +78 -0
- package/dist/node/include/inspector_profiler.h +149 -0
- package/dist/node/include/inspector_socket.h +60 -0
- package/dist/node/include/inspector_socket_server.h +110 -0
- package/dist/node/include/js_native_api.h +607 -0
- package/dist/node/include/js_native_api_types.h +226 -0
- package/dist/node/include/js_native_api_v8.h +485 -0
- package/dist/node/include/js_native_api_v8_internals.h +45 -0
- package/dist/node/include/js_stream.h +52 -0
- package/dist/node/include/json_utils.h +172 -0
- package/dist/node/include/large_pages/node_large_page.h +34 -0
- package/dist/node/include/libplatform/libplatform-export.h +29 -0
- package/dist/node/include/libplatform/libplatform.h +112 -0
- package/dist/node/include/libplatform/v8-tracing.h +333 -0
- package/dist/node/include/memory_tracker-inl.h +359 -0
- package/dist/node/include/memory_tracker.h +289 -0
- package/dist/node/include/module_wrap.h +216 -0
- package/dist/node/include/node.h +1593 -0
- package/dist/node/include/node_api.h +265 -0
- package/dist/node/include/node_api_internals.h +48 -0
- package/dist/node/include/node_api_types.h +56 -0
- package/dist/node/include/node_binding.h +161 -0
- package/dist/node/include/node_blob.h +159 -0
- package/dist/node/include/node_bob-inl.h +36 -0
- package/dist/node/include/node_bob.h +107 -0
- package/dist/node/include/node_buffer.h +92 -0
- package/dist/node/include/node_builtins.h +220 -0
- package/dist/node/include/node_config_file.h +46 -0
- package/dist/node/include/node_constants.h +82 -0
- package/dist/node/include/node_context_data.h +168 -0
- package/dist/node/include/node_contextify.h +204 -0
- package/dist/node/include/node_crypto.h +56 -0
- package/dist/node/include/node_debug.h +30 -0
- package/dist/node/include/node_dir.h +52 -0
- package/dist/node/include/node_dotenv.h +45 -0
- package/dist/node/include/node_errors.h +380 -0
- package/dist/node/include/node_exit_code.h +54 -0
- package/dist/node/include/node_external_reference.h +165 -0
- package/dist/node/include/node_file-inl.h +406 -0
- package/dist/node/include/node_file.h +537 -0
- package/dist/node/include/node_http2.h +1177 -0
- package/dist/node/include/node_http2_state.h +159 -0
- package/dist/node/include/node_http_common-inl.h +202 -0
- package/dist/node/include/node_http_common.h +535 -0
- package/dist/node/include/node_i18n.h +132 -0
- package/dist/node/include/node_internals.h +483 -0
- package/dist/node/include/node_main_instance.h +67 -0
- package/dist/node/include/node_mem-inl.h +113 -0
- package/dist/node/include/node_mem.h +45 -0
- package/dist/node/include/node_messaging.h +389 -0
- package/dist/node/include/node_metadata.h +164 -0
- package/dist/node/include/node_modules.h +91 -0
- package/dist/node/include/node_mutex.h +323 -0
- package/dist/node/include/node_object_wrap.h +132 -0
- package/dist/node/include/node_options-inl.h +490 -0
- package/dist/node/include/node_options.h +615 -0
- package/dist/node/include/node_perf.h +166 -0
- package/dist/node/include/node_perf_common.h +102 -0
- package/dist/node/include/node_platform.h +238 -0
- package/dist/node/include/node_process-inl.h +26 -0
- package/dist/node/include/node_process.h +112 -0
- package/dist/node/include/node_realm-inl.h +151 -0
- package/dist/node/include/node_realm.h +183 -0
- package/dist/node/include/node_report.h +43 -0
- package/dist/node/include/node_revert.h +82 -0
- package/dist/node/include/node_root_certs.h +3520 -0
- package/dist/node/include/node_sea.h +74 -0
- package/dist/node/include/node_shadow_realm.h +46 -0
- package/dist/node/include/node_snapshot_builder.h +57 -0
- package/dist/node/include/node_snapshotable.h +174 -0
- package/dist/node/include/node_sockaddr-inl.h +257 -0
- package/dist/node/include/node_sockaddr.h +394 -0
- package/dist/node/include/node_sqlite.h +270 -0
- package/dist/node/include/node_stat_watcher.h +73 -0
- package/dist/node/include/node_task_runner.h +92 -0
- package/dist/node/include/node_threadsafe_cow-inl.h +54 -0
- package/dist/node/include/node_threadsafe_cow.h +105 -0
- package/dist/node/include/node_union_bytes.h +81 -0
- package/dist/node/include/node_url.h +96 -0
- package/dist/node/include/node_v8.h +77 -0
- package/dist/node/include/node_v8_platform-inl.h +185 -0
- package/dist/node/include/node_version.h +110 -0
- package/dist/node/include/node_wasi.h +184 -0
- package/dist/node/include/node_wasm_web_api.h +55 -0
- package/dist/node/include/node_watchdog.h +154 -0
- package/dist/node/include/node_webstorage.h +60 -0
- package/dist/node/include/node_worker.h +158 -0
- package/dist/node/include/path.h +33 -0
- package/dist/node/include/permission/addon_permission.h +31 -0
- package/dist/node/include/permission/child_process_permission.h +31 -0
- package/dist/node/include/permission/fs_permission.h +167 -0
- package/dist/node/include/permission/inspector_permission.h +31 -0
- package/dist/node/include/permission/permission.h +138 -0
- package/dist/node/include/permission/permission_base.h +65 -0
- package/dist/node/include/permission/wasi_permission.h +31 -0
- package/dist/node/include/permission/worker_permission.h +31 -0
- package/dist/node/include/pipe_wrap.h +80 -0
- package/dist/node/include/quic/application.h +159 -0
- package/dist/node/include/quic/bindingdata.h +272 -0
- package/dist/node/include/quic/cid.h +127 -0
- package/dist/node/include/quic/data.h +148 -0
- package/dist/node/include/quic/defs.h +245 -0
- package/dist/node/include/quic/endpoint.h +458 -0
- package/dist/node/include/quic/http3.h +15 -0
- package/dist/node/include/quic/logstream.h +81 -0
- package/dist/node/include/quic/packet.h +152 -0
- package/dist/node/include/quic/preferredaddress.h +72 -0
- package/dist/node/include/quic/session.h +443 -0
- package/dist/node/include/quic/sessionticket.h +108 -0
- package/dist/node/include/quic/streams.h +232 -0
- package/dist/node/include/quic/tlscontext.h +227 -0
- package/dist/node/include/quic/tokens.h +256 -0
- package/dist/node/include/quic/transportparams.h +165 -0
- package/dist/node/include/req_wrap-inl.h +171 -0
- package/dist/node/include/req_wrap.h +77 -0
- package/dist/node/include/spawn_sync.h +243 -0
- package/dist/node/include/stream_base-inl.h +173 -0
- package/dist/node/include/stream_base.h +478 -0
- package/dist/node/include/stream_pipe.h +76 -0
- package/dist/node/include/stream_wrap.h +132 -0
- package/dist/node/include/string_bytes.h +113 -0
- package/dist/node/include/string_decoder-inl.h +31 -0
- package/dist/node/include/string_decoder.h +49 -0
- package/dist/node/include/tcp_wrap.h +105 -0
- package/dist/node/include/threadpoolwork-inl.h +70 -0
- package/dist/node/include/timer_wrap-inl.h +32 -0
- package/dist/node/include/timer_wrap.h +85 -0
- package/dist/node/include/timers.h +70 -0
- package/dist/node/include/tracing/agent.h +195 -0
- package/dist/node/include/tracing/node_trace_buffer.h +83 -0
- package/dist/node/include/tracing/node_trace_writer.h +75 -0
- package/dist/node/include/tracing/trace_event.h +722 -0
- package/dist/node/include/tracing/trace_event_common.h +1109 -0
- package/dist/node/include/tracing/traced_value.h +129 -0
- package/dist/node/include/tty_wrap.h +65 -0
- package/dist/node/include/udp_wrap.h +230 -0
- package/dist/node/include/undici_version.h +6 -0
- package/dist/node/include/util-inl.h +700 -0
- package/dist/node/include/util.h +1021 -0
- package/dist/node/include/uv/aix.h +32 -0
- package/dist/node/include/uv/bsd.h +34 -0
- package/dist/node/include/uv/darwin.h +61 -0
- package/dist/node/include/uv/errno.h +483 -0
- package/dist/node/include/uv/linux.h +34 -0
- package/dist/node/include/uv/os390.h +33 -0
- package/dist/node/include/uv/posix.h +31 -0
- package/dist/node/include/uv/sunos.h +44 -0
- package/dist/node/include/uv/threadpool.h +37 -0
- package/dist/node/include/uv/tree.h +521 -0
- package/dist/node/include/uv/unix.h +512 -0
- package/dist/node/include/uv/version.h +43 -0
- package/dist/node/include/uv/win.h +698 -0
- package/dist/node/include/uv.h +1990 -0
- package/dist/node/include/v8-array-buffer.h +525 -0
- package/dist/node/include/v8-callbacks.h +462 -0
- package/dist/node/include/v8-container.h +183 -0
- package/dist/node/include/v8-context.h +485 -0
- package/dist/node/include/v8-cppgc.h +245 -0
- package/dist/node/include/v8-data.h +80 -0
- package/dist/node/include/v8-date.h +48 -0
- package/dist/node/include/v8-debug.h +168 -0
- package/dist/node/include/v8-embedder-heap.h +82 -0
- package/dist/node/include/v8-embedder-state-scope.h +52 -0
- package/dist/node/include/v8-exception.h +223 -0
- package/dist/node/include/v8-extension.h +62 -0
- package/dist/node/include/v8-external.h +37 -0
- package/dist/node/include/v8-fast-api-calls.h +984 -0
- package/dist/node/include/v8-forward.h +82 -0
- package/dist/node/include/v8-function-callback.h +607 -0
- package/dist/node/include/v8-function.h +140 -0
- package/dist/node/include/v8-handle-base.h +137 -0
- package/dist/node/include/v8-initialization.h +289 -0
- package/dist/node/include/v8-inspector-protocol.h +13 -0
- package/dist/node/include/v8-inspector.h +419 -0
- package/dist/node/include/v8-internal.h +1397 -0
- package/dist/node/include/v8-isolate.h +1767 -0
- package/dist/node/include/v8-json.h +47 -0
- package/dist/node/include/v8-local-handle.h +758 -0
- package/dist/node/include/v8-locker.h +138 -0
- package/dist/node/include/v8-maybe.h +160 -0
- package/dist/node/include/v8-memory-span.h +198 -0
- package/dist/node/include/v8-message.h +233 -0
- package/dist/node/include/v8-metrics.h +264 -0
- package/dist/node/include/v8-microtask-queue.h +157 -0
- package/dist/node/include/v8-microtask.h +28 -0
- package/dist/node/include/v8-object.h +824 -0
- package/dist/node/include/v8-persistent-handle.h +582 -0
- package/dist/node/include/v8-platform.h +1358 -0
- package/dist/node/include/v8-primitive-object.h +118 -0
- package/dist/node/include/v8-primitive.h +877 -0
- package/dist/node/include/v8-profiler.h +1302 -0
- package/dist/node/include/v8-promise.h +174 -0
- package/dist/node/include/v8-proxy.h +50 -0
- package/dist/node/include/v8-regexp.h +106 -0
- package/dist/node/include/v8-script.h +904 -0
- package/dist/node/include/v8-snapshot.h +266 -0
- package/dist/node/include/v8-source-location.h +92 -0
- package/dist/node/include/v8-statistics.h +238 -0
- package/dist/node/include/v8-template.h +1297 -0
- package/dist/node/include/v8-traced-handle.h +432 -0
- package/dist/node/include/v8-typed-array.h +390 -0
- package/dist/node/include/v8-unwinder-state.h +31 -0
- package/dist/node/include/v8-unwinder.h +132 -0
- package/dist/node/include/v8-util.h +665 -0
- package/dist/node/include/v8-value-serializer-version.h +24 -0
- package/dist/node/include/v8-value-serializer.h +316 -0
- package/dist/node/include/v8-value.h +655 -0
- package/dist/node/include/v8-version-string.h +38 -0
- package/dist/node/include/v8-version.h +20 -0
- package/dist/node/include/v8-wasm-trap-handler-posix.h +31 -0
- package/dist/node/include/v8-wasm-trap-handler-win.h +28 -0
- package/dist/node/include/v8-wasm.h +201 -0
- package/dist/node/include/v8-weak-callback-info.h +80 -0
- package/dist/node/include/v8.h +88 -0
- package/dist/node/include/v8config.h +981 -0
- package/dist/node/include/zlib_version.h +6 -0
- package/dist/node/libnode.dll +0 -0
- package/dist/node/libnode.lib +0 -0
- package/dist/node/libnodebuildinfo.json +10 -0
- package/dist/node/link_node.lib +0 -0
- package/dist/node/link_node.node +0 -0
- package/libnode.release.json +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
#ifndef SRC_NODE_API_H_
|
|
2
|
+
#define SRC_NODE_API_H_
|
|
3
|
+
|
|
4
|
+
#if defined(BUILDING_NODE_EXTENSION) && !defined(NAPI_EXTERN)
|
|
5
|
+
#ifdef _WIN32
|
|
6
|
+
// Building native addon against node
|
|
7
|
+
#define NAPI_EXTERN __declspec(dllimport)
|
|
8
|
+
#elif defined(__wasm__)
|
|
9
|
+
#define NAPI_EXTERN __attribute__((__import_module__("napi")))
|
|
10
|
+
#endif
|
|
11
|
+
#endif
|
|
12
|
+
#include "js_native_api.h"
|
|
13
|
+
#include "node_api_types.h"
|
|
14
|
+
|
|
15
|
+
struct uv_loop_s; // Forward declaration.
|
|
16
|
+
|
|
17
|
+
#ifdef _WIN32
|
|
18
|
+
#define NAPI_MODULE_EXPORT __declspec(dllexport)
|
|
19
|
+
#else
|
|
20
|
+
#ifdef __EMSCRIPTEN__
|
|
21
|
+
#define NAPI_MODULE_EXPORT \
|
|
22
|
+
__attribute__((visibility("default"))) __attribute__((used))
|
|
23
|
+
#else
|
|
24
|
+
#define NAPI_MODULE_EXPORT __attribute__((visibility("default")))
|
|
25
|
+
#endif
|
|
26
|
+
#endif
|
|
27
|
+
|
|
28
|
+
#if defined(__GNUC__)
|
|
29
|
+
#define NAPI_NO_RETURN __attribute__((noreturn))
|
|
30
|
+
#elif defined(_WIN32)
|
|
31
|
+
#define NAPI_NO_RETURN __declspec(noreturn)
|
|
32
|
+
#else
|
|
33
|
+
#define NAPI_NO_RETURN
|
|
34
|
+
#endif
|
|
35
|
+
|
|
36
|
+
// Used by deprecated registration method napi_module_register.
|
|
37
|
+
typedef struct napi_module {
|
|
38
|
+
int nm_version;
|
|
39
|
+
unsigned int nm_flags;
|
|
40
|
+
const char* nm_filename;
|
|
41
|
+
napi_addon_register_func nm_register_func;
|
|
42
|
+
const char* nm_modname;
|
|
43
|
+
void* nm_priv;
|
|
44
|
+
void* reserved[4];
|
|
45
|
+
} napi_module;
|
|
46
|
+
|
|
47
|
+
#define NAPI_MODULE_VERSION 1
|
|
48
|
+
|
|
49
|
+
#define NAPI_MODULE_INITIALIZER_X(base, version) \
|
|
50
|
+
NAPI_MODULE_INITIALIZER_X_HELPER(base, version)
|
|
51
|
+
#define NAPI_MODULE_INITIALIZER_X_HELPER(base, version) base##version
|
|
52
|
+
|
|
53
|
+
#ifdef __wasm__
|
|
54
|
+
#define NAPI_MODULE_INITIALIZER_BASE napi_register_wasm_v
|
|
55
|
+
#else
|
|
56
|
+
#define NAPI_MODULE_INITIALIZER_BASE napi_register_module_v
|
|
57
|
+
#endif
|
|
58
|
+
|
|
59
|
+
#define NODE_API_MODULE_GET_API_VERSION_BASE node_api_module_get_api_version_v
|
|
60
|
+
|
|
61
|
+
#define NAPI_MODULE_INITIALIZER \
|
|
62
|
+
NAPI_MODULE_INITIALIZER_X(NAPI_MODULE_INITIALIZER_BASE, NAPI_MODULE_VERSION)
|
|
63
|
+
|
|
64
|
+
#define NODE_API_MODULE_GET_API_VERSION \
|
|
65
|
+
NAPI_MODULE_INITIALIZER_X(NODE_API_MODULE_GET_API_VERSION_BASE, \
|
|
66
|
+
NAPI_MODULE_VERSION)
|
|
67
|
+
|
|
68
|
+
#define NAPI_MODULE_INIT() \
|
|
69
|
+
EXTERN_C_START \
|
|
70
|
+
NAPI_MODULE_EXPORT int32_t NODE_API_MODULE_GET_API_VERSION(void) { \
|
|
71
|
+
return NAPI_VERSION; \
|
|
72
|
+
} \
|
|
73
|
+
NAPI_MODULE_EXPORT napi_value NAPI_MODULE_INITIALIZER(napi_env env, \
|
|
74
|
+
napi_value exports); \
|
|
75
|
+
EXTERN_C_END \
|
|
76
|
+
napi_value NAPI_MODULE_INITIALIZER(napi_env env, napi_value exports)
|
|
77
|
+
|
|
78
|
+
#define NAPI_MODULE(modname, regfunc) \
|
|
79
|
+
NAPI_MODULE_INIT() { return regfunc(env, exports); }
|
|
80
|
+
|
|
81
|
+
// Deprecated. Use NAPI_MODULE.
|
|
82
|
+
#define NAPI_MODULE_X(modname, regfunc, priv, flags) \
|
|
83
|
+
NAPI_MODULE(modname, regfunc)
|
|
84
|
+
|
|
85
|
+
EXTERN_C_START
|
|
86
|
+
|
|
87
|
+
// Deprecated. Replaced by symbol-based registration defined by NAPI_MODULE
|
|
88
|
+
// and NAPI_MODULE_INIT macros.
|
|
89
|
+
NAPI_EXTERN void NAPI_CDECL
|
|
90
|
+
napi_module_register(napi_module* mod);
|
|
91
|
+
|
|
92
|
+
NAPI_EXTERN NAPI_NO_RETURN void NAPI_CDECL
|
|
93
|
+
napi_fatal_error(const char* location,
|
|
94
|
+
size_t location_len,
|
|
95
|
+
const char* message,
|
|
96
|
+
size_t message_len);
|
|
97
|
+
|
|
98
|
+
// Methods for custom handling of async operations
|
|
99
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
100
|
+
napi_async_init(napi_env env,
|
|
101
|
+
napi_value async_resource,
|
|
102
|
+
napi_value async_resource_name,
|
|
103
|
+
napi_async_context* result);
|
|
104
|
+
|
|
105
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
106
|
+
napi_async_destroy(napi_env env, napi_async_context async_context);
|
|
107
|
+
|
|
108
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
109
|
+
napi_make_callback(napi_env env,
|
|
110
|
+
napi_async_context async_context,
|
|
111
|
+
napi_value recv,
|
|
112
|
+
napi_value func,
|
|
113
|
+
size_t argc,
|
|
114
|
+
const napi_value* argv,
|
|
115
|
+
napi_value* result);
|
|
116
|
+
|
|
117
|
+
// Methods to provide node::Buffer functionality with napi types
|
|
118
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_create_buffer(napi_env env,
|
|
119
|
+
size_t length,
|
|
120
|
+
void** data,
|
|
121
|
+
napi_value* result);
|
|
122
|
+
#ifndef NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
|
|
123
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
124
|
+
napi_create_external_buffer(napi_env env,
|
|
125
|
+
size_t length,
|
|
126
|
+
void* data,
|
|
127
|
+
node_api_basic_finalize finalize_cb,
|
|
128
|
+
void* finalize_hint,
|
|
129
|
+
napi_value* result);
|
|
130
|
+
#endif // NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
|
|
131
|
+
|
|
132
|
+
#if NAPI_VERSION >= 10
|
|
133
|
+
|
|
134
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
135
|
+
node_api_create_buffer_from_arraybuffer(napi_env env,
|
|
136
|
+
napi_value arraybuffer,
|
|
137
|
+
size_t byte_offset,
|
|
138
|
+
size_t byte_length,
|
|
139
|
+
napi_value* result);
|
|
140
|
+
#endif // NAPI_VERSION >= 10
|
|
141
|
+
|
|
142
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_create_buffer_copy(napi_env env,
|
|
143
|
+
size_t length,
|
|
144
|
+
const void* data,
|
|
145
|
+
void** result_data,
|
|
146
|
+
napi_value* result);
|
|
147
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_is_buffer(napi_env env,
|
|
148
|
+
napi_value value,
|
|
149
|
+
bool* result);
|
|
150
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_get_buffer_info(napi_env env,
|
|
151
|
+
napi_value value,
|
|
152
|
+
void** data,
|
|
153
|
+
size_t* length);
|
|
154
|
+
|
|
155
|
+
// Methods to manage simple async operations
|
|
156
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
157
|
+
napi_create_async_work(napi_env env,
|
|
158
|
+
napi_value async_resource,
|
|
159
|
+
napi_value async_resource_name,
|
|
160
|
+
napi_async_execute_callback execute,
|
|
161
|
+
napi_async_complete_callback complete,
|
|
162
|
+
void* data,
|
|
163
|
+
napi_async_work* result);
|
|
164
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_delete_async_work(napi_env env,
|
|
165
|
+
napi_async_work work);
|
|
166
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_queue_async_work(node_api_basic_env env,
|
|
167
|
+
napi_async_work work);
|
|
168
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
169
|
+
napi_cancel_async_work(node_api_basic_env env, napi_async_work work);
|
|
170
|
+
|
|
171
|
+
// version management
|
|
172
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_get_node_version(
|
|
173
|
+
node_api_basic_env env, const napi_node_version** version);
|
|
174
|
+
|
|
175
|
+
#if NAPI_VERSION >= 2
|
|
176
|
+
|
|
177
|
+
// Return the current libuv event loop for a given environment
|
|
178
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
179
|
+
napi_get_uv_event_loop(node_api_basic_env env, struct uv_loop_s** loop);
|
|
180
|
+
|
|
181
|
+
#endif // NAPI_VERSION >= 2
|
|
182
|
+
|
|
183
|
+
#if NAPI_VERSION >= 3
|
|
184
|
+
|
|
185
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_fatal_exception(napi_env env,
|
|
186
|
+
napi_value err);
|
|
187
|
+
|
|
188
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_add_env_cleanup_hook(
|
|
189
|
+
node_api_basic_env env, napi_cleanup_hook fun, void* arg);
|
|
190
|
+
|
|
191
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_remove_env_cleanup_hook(
|
|
192
|
+
node_api_basic_env env, napi_cleanup_hook fun, void* arg);
|
|
193
|
+
|
|
194
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
195
|
+
napi_open_callback_scope(napi_env env,
|
|
196
|
+
napi_value resource_object,
|
|
197
|
+
napi_async_context context,
|
|
198
|
+
napi_callback_scope* result);
|
|
199
|
+
|
|
200
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
201
|
+
napi_close_callback_scope(napi_env env, napi_callback_scope scope);
|
|
202
|
+
|
|
203
|
+
#endif // NAPI_VERSION >= 3
|
|
204
|
+
|
|
205
|
+
#if NAPI_VERSION >= 4
|
|
206
|
+
|
|
207
|
+
// Calling into JS from other threads
|
|
208
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
209
|
+
napi_create_threadsafe_function(napi_env env,
|
|
210
|
+
napi_value func,
|
|
211
|
+
napi_value async_resource,
|
|
212
|
+
napi_value async_resource_name,
|
|
213
|
+
size_t max_queue_size,
|
|
214
|
+
size_t initial_thread_count,
|
|
215
|
+
void* thread_finalize_data,
|
|
216
|
+
napi_finalize thread_finalize_cb,
|
|
217
|
+
void* context,
|
|
218
|
+
napi_threadsafe_function_call_js call_js_cb,
|
|
219
|
+
napi_threadsafe_function* result);
|
|
220
|
+
|
|
221
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_get_threadsafe_function_context(
|
|
222
|
+
napi_threadsafe_function func, void** result);
|
|
223
|
+
|
|
224
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
225
|
+
napi_call_threadsafe_function(napi_threadsafe_function func,
|
|
226
|
+
void* data,
|
|
227
|
+
napi_threadsafe_function_call_mode is_blocking);
|
|
228
|
+
|
|
229
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
230
|
+
napi_acquire_threadsafe_function(napi_threadsafe_function func);
|
|
231
|
+
|
|
232
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_release_threadsafe_function(
|
|
233
|
+
napi_threadsafe_function func, napi_threadsafe_function_release_mode mode);
|
|
234
|
+
|
|
235
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_unref_threadsafe_function(
|
|
236
|
+
node_api_basic_env env, napi_threadsafe_function func);
|
|
237
|
+
|
|
238
|
+
NAPI_EXTERN napi_status NAPI_CDECL napi_ref_threadsafe_function(
|
|
239
|
+
node_api_basic_env env, napi_threadsafe_function func);
|
|
240
|
+
|
|
241
|
+
#endif // NAPI_VERSION >= 4
|
|
242
|
+
|
|
243
|
+
#if NAPI_VERSION >= 8
|
|
244
|
+
|
|
245
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
246
|
+
napi_add_async_cleanup_hook(node_api_basic_env env,
|
|
247
|
+
napi_async_cleanup_hook hook,
|
|
248
|
+
void* arg,
|
|
249
|
+
napi_async_cleanup_hook_handle* remove_handle);
|
|
250
|
+
|
|
251
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
252
|
+
napi_remove_async_cleanup_hook(napi_async_cleanup_hook_handle remove_handle);
|
|
253
|
+
|
|
254
|
+
#endif // NAPI_VERSION >= 8
|
|
255
|
+
|
|
256
|
+
#if NAPI_VERSION >= 9
|
|
257
|
+
|
|
258
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
259
|
+
node_api_get_module_file_name(node_api_basic_env env, const char** result);
|
|
260
|
+
|
|
261
|
+
#endif // NAPI_VERSION >= 9
|
|
262
|
+
|
|
263
|
+
EXTERN_C_END
|
|
264
|
+
|
|
265
|
+
#endif // SRC_NODE_API_H_
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#ifndef SRC_NODE_API_INTERNALS_H_
|
|
2
|
+
#define SRC_NODE_API_INTERNALS_H_
|
|
3
|
+
|
|
4
|
+
#include "v8.h"
|
|
5
|
+
#ifndef NAPI_EXPERIMENTAL
|
|
6
|
+
#define NAPI_EXPERIMENTAL
|
|
7
|
+
#endif
|
|
8
|
+
#include "env-inl.h"
|
|
9
|
+
#include "js_native_api_v8.h"
|
|
10
|
+
#include "node_api.h"
|
|
11
|
+
#include "util-inl.h"
|
|
12
|
+
|
|
13
|
+
struct node_napi_env__ : public napi_env__ {
|
|
14
|
+
static napi_env New(v8::Local<v8::Context> context,
|
|
15
|
+
const std::string& module_filename,
|
|
16
|
+
int32_t module_api_version);
|
|
17
|
+
|
|
18
|
+
node_napi_env__(v8::Local<v8::Context> context,
|
|
19
|
+
const std::string& module_filename,
|
|
20
|
+
int32_t module_api_version);
|
|
21
|
+
|
|
22
|
+
bool can_call_into_js() const override;
|
|
23
|
+
void CallFinalizer(napi_finalize cb, void* data, void* hint) override;
|
|
24
|
+
template <bool enforceUncaughtExceptionPolicy>
|
|
25
|
+
void CallFinalizer(napi_finalize cb, void* data, void* hint);
|
|
26
|
+
|
|
27
|
+
void EnqueueFinalizer(v8impl::RefTracker* finalizer) override;
|
|
28
|
+
void DrainFinalizerQueue();
|
|
29
|
+
|
|
30
|
+
void trigger_fatal_exception(v8::Local<v8::Value> local_err);
|
|
31
|
+
template <bool enforceUncaughtExceptionPolicy, typename T>
|
|
32
|
+
void CallbackIntoModule(T&& call);
|
|
33
|
+
|
|
34
|
+
void DeleteMe() override;
|
|
35
|
+
|
|
36
|
+
inline node::Environment* node_env() const {
|
|
37
|
+
return node::Environment::GetCurrent(context());
|
|
38
|
+
}
|
|
39
|
+
inline const char* GetFilename() const { return filename.c_str(); }
|
|
40
|
+
|
|
41
|
+
std::string filename;
|
|
42
|
+
bool destructing = false;
|
|
43
|
+
bool finalization_scheduled = false;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
using node_napi_env = node_napi_env__*;
|
|
47
|
+
|
|
48
|
+
#endif // SRC_NODE_API_INTERNALS_H_
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
#ifndef SRC_NODE_API_TYPES_H_
|
|
2
|
+
#define SRC_NODE_API_TYPES_H_
|
|
3
|
+
|
|
4
|
+
#include "js_native_api_types.h"
|
|
5
|
+
|
|
6
|
+
typedef napi_value(NAPI_CDECL* napi_addon_register_func)(napi_env env,
|
|
7
|
+
napi_value exports);
|
|
8
|
+
typedef int32_t(NAPI_CDECL* node_api_addon_get_api_version_func)(void);
|
|
9
|
+
|
|
10
|
+
typedef struct napi_callback_scope__* napi_callback_scope;
|
|
11
|
+
typedef struct napi_async_context__* napi_async_context;
|
|
12
|
+
typedef struct napi_async_work__* napi_async_work;
|
|
13
|
+
|
|
14
|
+
#if NAPI_VERSION >= 3
|
|
15
|
+
typedef void(NAPI_CDECL* napi_cleanup_hook)(void* arg);
|
|
16
|
+
#endif // NAPI_VERSION >= 3
|
|
17
|
+
|
|
18
|
+
#if NAPI_VERSION >= 4
|
|
19
|
+
typedef struct napi_threadsafe_function__* napi_threadsafe_function;
|
|
20
|
+
#endif // NAPI_VERSION >= 4
|
|
21
|
+
|
|
22
|
+
#if NAPI_VERSION >= 4
|
|
23
|
+
typedef enum {
|
|
24
|
+
napi_tsfn_release,
|
|
25
|
+
napi_tsfn_abort
|
|
26
|
+
} napi_threadsafe_function_release_mode;
|
|
27
|
+
|
|
28
|
+
typedef enum {
|
|
29
|
+
napi_tsfn_nonblocking,
|
|
30
|
+
napi_tsfn_blocking
|
|
31
|
+
} napi_threadsafe_function_call_mode;
|
|
32
|
+
#endif // NAPI_VERSION >= 4
|
|
33
|
+
|
|
34
|
+
typedef void(NAPI_CDECL* napi_async_execute_callback)(napi_env env, void* data);
|
|
35
|
+
typedef void(NAPI_CDECL* napi_async_complete_callback)(napi_env env,
|
|
36
|
+
napi_status status,
|
|
37
|
+
void* data);
|
|
38
|
+
#if NAPI_VERSION >= 4
|
|
39
|
+
typedef void(NAPI_CDECL* napi_threadsafe_function_call_js)(
|
|
40
|
+
napi_env env, napi_value js_callback, void* context, void* data);
|
|
41
|
+
#endif // NAPI_VERSION >= 4
|
|
42
|
+
|
|
43
|
+
typedef struct {
|
|
44
|
+
uint32_t major;
|
|
45
|
+
uint32_t minor;
|
|
46
|
+
uint32_t patch;
|
|
47
|
+
const char* release;
|
|
48
|
+
} napi_node_version;
|
|
49
|
+
|
|
50
|
+
#if NAPI_VERSION >= 8
|
|
51
|
+
typedef struct napi_async_cleanup_hook_handle__* napi_async_cleanup_hook_handle;
|
|
52
|
+
typedef void(NAPI_CDECL* napi_async_cleanup_hook)(
|
|
53
|
+
napi_async_cleanup_hook_handle handle, void* data);
|
|
54
|
+
#endif // NAPI_VERSION >= 8
|
|
55
|
+
|
|
56
|
+
#endif // SRC_NODE_API_TYPES_H_
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
#ifndef SRC_NODE_BINDING_H_
|
|
2
|
+
#define SRC_NODE_BINDING_H_
|
|
3
|
+
|
|
4
|
+
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
5
|
+
|
|
6
|
+
#if defined(__POSIX__)
|
|
7
|
+
#include <dlfcn.h>
|
|
8
|
+
#endif
|
|
9
|
+
|
|
10
|
+
#include "node.h"
|
|
11
|
+
#include "node_api.h"
|
|
12
|
+
#include "uv.h"
|
|
13
|
+
|
|
14
|
+
enum {
|
|
15
|
+
NM_F_BUILTIN = 1 << 0, // Unused.
|
|
16
|
+
NM_F_LINKED = 1 << 1,
|
|
17
|
+
NM_F_INTERNAL = 1 << 2,
|
|
18
|
+
NM_F_DELETEME = 1 << 3,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// Make sure our internal values match the public API's values.
|
|
22
|
+
static_assert(static_cast<int>(NM_F_LINKED) ==
|
|
23
|
+
static_cast<int>(node::ModuleFlags::kLinked),
|
|
24
|
+
"NM_F_LINKED != node::ModuleFlags::kLinked");
|
|
25
|
+
|
|
26
|
+
#if NODE_HAVE_I18N_SUPPORT
|
|
27
|
+
#define NODE_BUILTIN_ICU_BINDINGS(V) V(icu)
|
|
28
|
+
#else
|
|
29
|
+
#define NODE_BUILTIN_ICU_BINDINGS(V)
|
|
30
|
+
#endif
|
|
31
|
+
|
|
32
|
+
#if HAVE_OPENSSL && NODE_OPENSSL_HAS_QUIC
|
|
33
|
+
#define NODE_BUILTIN_QUIC_BINDINGS(V) V(quic)
|
|
34
|
+
#else
|
|
35
|
+
#define NODE_BUILTIN_QUIC_BINDINGS(V)
|
|
36
|
+
#endif
|
|
37
|
+
|
|
38
|
+
#if HAVE_SQLITE
|
|
39
|
+
#define NODE_BUILTIN_SQLITE_BINDINGS(V) \
|
|
40
|
+
V(sqlite) \
|
|
41
|
+
V(webstorage)
|
|
42
|
+
#else
|
|
43
|
+
#define NODE_BUILTIN_SQLITE_BINDINGS(V)
|
|
44
|
+
#endif
|
|
45
|
+
|
|
46
|
+
#define NODE_BINDINGS_WITH_PER_ISOLATE_INIT(V) \
|
|
47
|
+
V(async_wrap) \
|
|
48
|
+
V(blob) \
|
|
49
|
+
V(builtins) \
|
|
50
|
+
V(contextify) \
|
|
51
|
+
V(encoding_binding) \
|
|
52
|
+
V(fs) \
|
|
53
|
+
V(fs_dir) \
|
|
54
|
+
V(http_parser) \
|
|
55
|
+
V(messaging) \
|
|
56
|
+
V(mksnapshot) \
|
|
57
|
+
V(modules) \
|
|
58
|
+
V(module_wrap) \
|
|
59
|
+
V(performance) \
|
|
60
|
+
V(process_methods) \
|
|
61
|
+
V(timers) \
|
|
62
|
+
V(url) \
|
|
63
|
+
V(worker) \
|
|
64
|
+
NODE_BUILTIN_ICU_BINDINGS(V) \
|
|
65
|
+
NODE_BUILTIN_QUIC_BINDINGS(V)
|
|
66
|
+
|
|
67
|
+
#define NODE_BINDING_CONTEXT_AWARE_CPP(modname, regfunc, priv, flags) \
|
|
68
|
+
static node::node_module _module = { \
|
|
69
|
+
NODE_MODULE_VERSION, \
|
|
70
|
+
flags, \
|
|
71
|
+
nullptr, \
|
|
72
|
+
__FILE__, \
|
|
73
|
+
nullptr, \
|
|
74
|
+
(node::addon_context_register_func)(regfunc), \
|
|
75
|
+
NODE_STRINGIFY(modname), \
|
|
76
|
+
priv, \
|
|
77
|
+
nullptr}; \
|
|
78
|
+
void _register_##modname() { node_module_register(&_module); }
|
|
79
|
+
|
|
80
|
+
void napi_module_register_by_symbol(
|
|
81
|
+
v8::Local<v8::Object> exports,
|
|
82
|
+
v8::Local<v8::Value> module,
|
|
83
|
+
v8::Local<v8::Context> context,
|
|
84
|
+
napi_addon_register_func init,
|
|
85
|
+
int32_t module_api_version = NODE_API_DEFAULT_MODULE_API_VERSION);
|
|
86
|
+
|
|
87
|
+
node::addon_context_register_func get_node_api_context_register_func(
|
|
88
|
+
node::Environment* node_env,
|
|
89
|
+
const char* module_name,
|
|
90
|
+
int32_t module_api_version);
|
|
91
|
+
|
|
92
|
+
namespace node {
|
|
93
|
+
|
|
94
|
+
// Define a node internal binding that may be loaded in a context of
|
|
95
|
+
// a node::Environment.
|
|
96
|
+
// If an internal binding needs initializing per-isolate templates, define
|
|
97
|
+
// with NODE_BINDING_PER_ISOLATE_INIT too.
|
|
98
|
+
#define NODE_BINDING_CONTEXT_AWARE_INTERNAL(modname, regfunc) \
|
|
99
|
+
NODE_BINDING_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_INTERNAL)
|
|
100
|
+
|
|
101
|
+
// Define a per-isolate initialization function for a node internal binding.
|
|
102
|
+
// The modname should be registered in the NODE_BINDINGS_WITH_PER_ISOLATE_INIT
|
|
103
|
+
// list.
|
|
104
|
+
#define NODE_BINDING_PER_ISOLATE_INIT(modname, per_isolate_func) \
|
|
105
|
+
void _register_isolate_##modname(node::IsolateData* isolate_data, \
|
|
106
|
+
v8::Local<v8::ObjectTemplate> target) { \
|
|
107
|
+
per_isolate_func(isolate_data, target); \
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// Globals per process
|
|
111
|
+
// This is set by node::Init() which is used by embedders
|
|
112
|
+
extern bool node_is_initialized;
|
|
113
|
+
|
|
114
|
+
namespace binding {
|
|
115
|
+
|
|
116
|
+
class DLib {
|
|
117
|
+
public:
|
|
118
|
+
#ifdef __POSIX__
|
|
119
|
+
static const int kDefaultFlags = RTLD_LAZY;
|
|
120
|
+
#else
|
|
121
|
+
static const int kDefaultFlags = 0;
|
|
122
|
+
#endif
|
|
123
|
+
|
|
124
|
+
DLib(const char* filename, int flags);
|
|
125
|
+
|
|
126
|
+
bool Open();
|
|
127
|
+
void Close();
|
|
128
|
+
void* GetSymbolAddress(const char* name);
|
|
129
|
+
void SaveInGlobalHandleMap(node_module* mp);
|
|
130
|
+
node_module* GetSavedModuleFromGlobalHandleMap();
|
|
131
|
+
|
|
132
|
+
const std::string filename_;
|
|
133
|
+
const int flags_;
|
|
134
|
+
std::string errmsg_;
|
|
135
|
+
void* handle_;
|
|
136
|
+
#ifndef __POSIX__
|
|
137
|
+
uv_lib_t lib_;
|
|
138
|
+
#endif
|
|
139
|
+
bool has_entry_in_global_handle_map_ = false;
|
|
140
|
+
|
|
141
|
+
DLib(const DLib&) = delete;
|
|
142
|
+
DLib& operator=(const DLib&) = delete;
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
// Call _register<module_name> functions for all of
|
|
146
|
+
// the built-in bindings. Because built-in bindings don't
|
|
147
|
+
// use the __attribute__((constructor)). Need to
|
|
148
|
+
// explicitly call the _register* functions.
|
|
149
|
+
void RegisterBuiltinBindings();
|
|
150
|
+
// Create per-isolate templates for the internal bindings.
|
|
151
|
+
void CreateInternalBindingTemplates(IsolateData* isolate_data);
|
|
152
|
+
void GetInternalBinding(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
153
|
+
void GetLinkedBinding(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
154
|
+
void DLOpen(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
155
|
+
|
|
156
|
+
} // namespace binding
|
|
157
|
+
|
|
158
|
+
} // namespace node
|
|
159
|
+
|
|
160
|
+
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
161
|
+
#endif // SRC_NODE_BINDING_H_
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
#ifndef SRC_NODE_BLOB_H_
|
|
2
|
+
#define SRC_NODE_BLOB_H_
|
|
3
|
+
|
|
4
|
+
#include "v8-function-callback.h"
|
|
5
|
+
#include "v8-template.h"
|
|
6
|
+
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
7
|
+
|
|
8
|
+
#include "async_wrap.h"
|
|
9
|
+
#include "base_object.h"
|
|
10
|
+
#include "dataqueue/queue.h"
|
|
11
|
+
#include "env.h"
|
|
12
|
+
#include "memory_tracker.h"
|
|
13
|
+
#include "node_internals.h"
|
|
14
|
+
#include "node_snapshotable.h"
|
|
15
|
+
#include "node_worker.h"
|
|
16
|
+
#include "v8.h"
|
|
17
|
+
|
|
18
|
+
#include <string>
|
|
19
|
+
#include <unordered_map>
|
|
20
|
+
#include <vector>
|
|
21
|
+
|
|
22
|
+
namespace node {
|
|
23
|
+
|
|
24
|
+
class Blob : public BaseObject {
|
|
25
|
+
public:
|
|
26
|
+
static void RegisterExternalReferences(
|
|
27
|
+
ExternalReferenceRegistry* registry);
|
|
28
|
+
|
|
29
|
+
static void CreatePerIsolateProperties(IsolateData* isolate_data,
|
|
30
|
+
v8::Local<v8::ObjectTemplate> target);
|
|
31
|
+
static void CreatePerContextProperties(v8::Local<v8::Object> target,
|
|
32
|
+
v8::Local<v8::Value> unused,
|
|
33
|
+
v8::Local<v8::Context> context,
|
|
34
|
+
void* priv);
|
|
35
|
+
|
|
36
|
+
static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
37
|
+
static void GetReader(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
38
|
+
static void ToSlice(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
39
|
+
static void StoreDataObject(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
40
|
+
static void GetDataObject(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
41
|
+
static void RevokeObjectURL(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
42
|
+
|
|
43
|
+
static v8::Local<v8::FunctionTemplate> GetConstructorTemplate(
|
|
44
|
+
Environment* env);
|
|
45
|
+
|
|
46
|
+
static BaseObjectPtr<Blob> Create(Environment* env,
|
|
47
|
+
std::shared_ptr<DataQueue> data_queue);
|
|
48
|
+
|
|
49
|
+
static bool HasInstance(Environment* env, v8::Local<v8::Value> object);
|
|
50
|
+
|
|
51
|
+
void MemoryInfo(MemoryTracker* tracker) const override;
|
|
52
|
+
SET_MEMORY_INFO_NAME(Blob)
|
|
53
|
+
SET_SELF_SIZE(Blob)
|
|
54
|
+
|
|
55
|
+
BaseObjectPtr<Blob> Slice(Environment* env, size_t start, size_t end);
|
|
56
|
+
|
|
57
|
+
inline size_t length() const { return this->data_queue_->size().value(); }
|
|
58
|
+
|
|
59
|
+
class BlobTransferData : public worker::TransferData {
|
|
60
|
+
public:
|
|
61
|
+
explicit BlobTransferData(std::shared_ptr<DataQueue> data_queue)
|
|
62
|
+
: data_queue(data_queue) {}
|
|
63
|
+
|
|
64
|
+
BaseObjectPtr<BaseObject> Deserialize(
|
|
65
|
+
Environment* env,
|
|
66
|
+
v8::Local<v8::Context> context,
|
|
67
|
+
std::unique_ptr<worker::TransferData> self) override;
|
|
68
|
+
|
|
69
|
+
SET_MEMORY_INFO_NAME(BlobTransferData)
|
|
70
|
+
SET_SELF_SIZE(BlobTransferData)
|
|
71
|
+
SET_NO_MEMORY_INFO()
|
|
72
|
+
|
|
73
|
+
private:
|
|
74
|
+
std::shared_ptr<DataQueue> data_queue;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
class Reader final : public AsyncWrap {
|
|
78
|
+
public:
|
|
79
|
+
static bool HasInstance(Environment* env, v8::Local<v8::Value> value);
|
|
80
|
+
static v8::Local<v8::FunctionTemplate> GetConstructorTemplate(
|
|
81
|
+
Environment* env);
|
|
82
|
+
static BaseObjectPtr<Reader> Create(Environment* env,
|
|
83
|
+
BaseObjectPtr<Blob> blob);
|
|
84
|
+
static void Pull(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
85
|
+
|
|
86
|
+
explicit Reader(Environment* env,
|
|
87
|
+
v8::Local<v8::Object> obj,
|
|
88
|
+
BaseObjectPtr<Blob> strong_ptr);
|
|
89
|
+
|
|
90
|
+
SET_NO_MEMORY_INFO()
|
|
91
|
+
SET_MEMORY_INFO_NAME(Blob::Reader)
|
|
92
|
+
SET_SELF_SIZE(Reader)
|
|
93
|
+
|
|
94
|
+
private:
|
|
95
|
+
std::shared_ptr<DataQueue::Reader> inner_;
|
|
96
|
+
BaseObjectPtr<Blob> strong_ptr_;
|
|
97
|
+
bool eos_ = false;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
BaseObject::TransferMode GetTransferMode() const override;
|
|
101
|
+
std::unique_ptr<worker::TransferData> CloneForMessaging() const override;
|
|
102
|
+
|
|
103
|
+
Blob(Environment* env,
|
|
104
|
+
v8::Local<v8::Object> obj,
|
|
105
|
+
std::shared_ptr<DataQueue> data_queue);
|
|
106
|
+
|
|
107
|
+
DataQueue& getDataQueue() const { return *data_queue_; }
|
|
108
|
+
|
|
109
|
+
private:
|
|
110
|
+
std::shared_ptr<DataQueue> data_queue_;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
class BlobBindingData : public SnapshotableObject {
|
|
114
|
+
public:
|
|
115
|
+
explicit BlobBindingData(Realm* realm, v8::Local<v8::Object> wrap);
|
|
116
|
+
|
|
117
|
+
using InternalFieldInfo = InternalFieldInfoBase;
|
|
118
|
+
|
|
119
|
+
SERIALIZABLE_OBJECT_METHODS()
|
|
120
|
+
|
|
121
|
+
SET_BINDING_ID(blob_binding_data)
|
|
122
|
+
|
|
123
|
+
void MemoryInfo(MemoryTracker* tracker) const override;
|
|
124
|
+
SET_SELF_SIZE(BlobBindingData)
|
|
125
|
+
SET_MEMORY_INFO_NAME(BlobBindingData)
|
|
126
|
+
|
|
127
|
+
struct StoredDataObject : public MemoryRetainer {
|
|
128
|
+
BaseObjectPtr<Blob> blob;
|
|
129
|
+
size_t length;
|
|
130
|
+
std::string type;
|
|
131
|
+
|
|
132
|
+
StoredDataObject() = default;
|
|
133
|
+
|
|
134
|
+
StoredDataObject(
|
|
135
|
+
const BaseObjectPtr<Blob>& blob_,
|
|
136
|
+
size_t length_,
|
|
137
|
+
const std::string& type_);
|
|
138
|
+
|
|
139
|
+
void MemoryInfo(MemoryTracker* tracker) const override;
|
|
140
|
+
SET_SELF_SIZE(StoredDataObject)
|
|
141
|
+
SET_MEMORY_INFO_NAME(StoredDataObject)
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
void store_data_object(
|
|
145
|
+
const std::string& uuid,
|
|
146
|
+
const StoredDataObject& object);
|
|
147
|
+
|
|
148
|
+
void revoke_data_object(const std::string& uuid);
|
|
149
|
+
|
|
150
|
+
StoredDataObject get_data_object(const std::string& uuid);
|
|
151
|
+
|
|
152
|
+
private:
|
|
153
|
+
std::unordered_map<std::string, StoredDataObject> data_objects_;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
} // namespace node
|
|
157
|
+
|
|
158
|
+
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
159
|
+
#endif // SRC_NODE_BLOB_H_
|