@encharm/cws 4.4.1 → 4.5.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.
Files changed (485) hide show
  1. package/dist/bindings/cws_darwin_arm64_node115.node +0 -0
  2. package/dist/bindings/cws_darwin_arm64_node127.node +0 -0
  3. package/dist/bindings/cws_linux_arm64_node115.node +0 -0
  4. package/dist/bindings/cws_linux_arm64_node127.node +0 -0
  5. package/dist/bindings/cws_linux_x64_node115.node +0 -0
  6. package/dist/bindings/cws_linux_x64_node127.node +0 -0
  7. package/dist/bindings/cws_win32_x64_node108.node +0 -0
  8. package/dist/bindings/cws_win32_x64_node115.node +0 -0
  9. package/dist/bindings/cws_win32_x64_node127.node +0 -0
  10. package/dist/bindings/cws_win32_x64_node83.node +0 -0
  11. package/dist/bindings/cws_win32_x64_node93.node +0 -0
  12. package/package.json +1 -1
  13. package/src/Addon.h +8 -23
  14. package/src/Socket.h +0 -1
  15. package/src/headers/22/acorn_version.h +6 -0
  16. package/src/headers/22/aliased_buffer-inl.h +243 -0
  17. package/src/headers/22/aliased_buffer.h +206 -0
  18. package/src/headers/{18 → 22}/async_wrap-inl.h +8 -6
  19. package/src/headers/{18 → 22}/async_wrap.h +65 -59
  20. package/src/headers/{16 → 22}/base_object-inl.h +57 -117
  21. package/src/headers/{18 → 22}/base_object.h +58 -30
  22. package/src/headers/22/base_object_types.h +74 -0
  23. package/src/headers/22/blob_serializer_deserializer-inl.h +385 -0
  24. package/src/headers/22/blob_serializer_deserializer.h +132 -0
  25. package/src/headers/{16 → 22}/callback_queue.h +1 -0
  26. package/src/headers/{16 → 22}/cares_wrap.h +27 -20
  27. package/src/headers/22/cjs_module_lexer_version.h +6 -0
  28. package/src/headers/22/cleanup_queue-inl.h +62 -0
  29. package/src/headers/22/cleanup_queue.h +85 -0
  30. package/src/headers/22/compile_cache.h +104 -0
  31. package/src/headers/{18 → 22}/crypto/crypto_clienthello.h +1 -1
  32. package/src/headers/{18 → 22}/crypto/crypto_context.h +31 -7
  33. package/src/headers/{18 → 22}/crypto/crypto_keys.h +118 -148
  34. package/src/headers/{18 → 22}/crypto/crypto_tls.h +20 -5
  35. package/src/headers/{18 → 22}/crypto/crypto_util.h +219 -263
  36. package/src/headers/22/crypto/ncrypto.h +752 -0
  37. package/src/headers/{16 → 22}/debug_utils-inl.h +15 -7
  38. package/src/headers/{18 → 22}/debug_utils.h +25 -19
  39. package/src/headers/22/encoding_binding.h +59 -0
  40. package/src/headers/{14 → 22}/env-inl.h +276 -409
  41. package/src/headers/22/env.h +1266 -0
  42. package/src/headers/22/env_properties.h +497 -0
  43. package/src/headers/{18 → 22}/handle_wrap.h +2 -0
  44. package/src/headers/{18 → 22}/histogram.h +88 -48
  45. package/src/headers/{16 → 22}/inspector_agent.h +17 -1
  46. package/src/headers/{16 → 22}/inspector_profiler.h +15 -13
  47. package/src/headers/{18 → 22}/js_native_api.h +78 -30
  48. package/src/headers/{18 → 22}/js_native_api_types.h +46 -1
  49. package/src/headers/{18 → 22}/js_native_api_v8.h +206 -161
  50. package/src/headers/{18 → 22}/js_native_api_v8_internals.h +6 -0
  51. package/src/headers/22/json_parser.h +40 -0
  52. package/src/headers/{16 → 22}/json_utils.h +19 -8
  53. package/src/headers/{18 → 22}/memory_tracker-inl.h +16 -13
  54. package/src/headers/{14 → 22}/memory_tracker.h +13 -8
  55. package/src/headers/{16 → 22}/module_wrap.h +49 -19
  56. package/src/headers/22/ncrypto/ncrypto.h +752 -0
  57. package/src/headers/{18 → 22}/node.h +465 -68
  58. package/src/headers/{18 → 22}/node_api.h +66 -81
  59. package/src/headers/{18 → 22}/node_api_internals.h +8 -4
  60. package/src/headers/{18 → 22}/node_api_types.h +5 -0
  61. package/src/headers/22/node_binding.h +154 -0
  62. package/src/headers/{18 → 22}/node_blob.h +46 -78
  63. package/src/headers/{18 → 22}/node_bob-inl.h +1 -2
  64. package/src/headers/{18 → 22}/node_bob.h +2 -6
  65. package/src/headers/{18 → 22}/node_buffer.h +1 -1
  66. package/src/headers/22/node_builtins.h +220 -0
  67. package/src/headers/{18 → 22}/node_constants.h +3 -5
  68. package/src/headers/22/node_context_data.h +168 -0
  69. package/src/headers/22/node_contextify.h +199 -0
  70. package/src/headers/{16 → 22}/node_crypto.h +1 -2
  71. package/src/headers/22/node_dotenv.h +45 -0
  72. package/src/headers/{18 → 22}/node_errors.h +86 -27
  73. package/src/headers/22/node_exit_code.h +54 -0
  74. package/src/headers/22/node_external_reference.h +249 -0
  75. package/src/headers/{18 → 22}/node_file-inl.h +127 -30
  76. package/src/headers/{16 → 22}/node_file.h +122 -11
  77. package/src/headers/{18 → 22}/node_http2.h +28 -11
  78. package/src/headers/{16 → 22}/node_http2_state.h +34 -25
  79. package/src/headers/{18 → 22}/node_http_common-inl.h +2 -1
  80. package/src/headers/{18 → 22}/node_http_common.h +56 -55
  81. package/src/headers/{16 → 22}/node_i18n.h +5 -18
  82. package/src/headers/{18 → 22}/node_internals.h +121 -59
  83. package/src/headers/{18 → 22}/node_main_instance.h +4 -31
  84. package/src/headers/{18 → 22}/node_messaging.h +27 -10
  85. package/src/headers/{18 → 22}/node_metadata.h +23 -1
  86. package/src/headers/{18 → 22}/node_options-inl.h +24 -11
  87. package/src/headers/{18 → 22}/node_options.h +124 -39
  88. package/src/headers/{18 → 22}/node_perf.h +0 -2
  89. package/src/headers/{18 → 22}/node_perf_common.h +20 -9
  90. package/src/headers/{18 → 22}/node_platform.h +11 -5
  91. package/src/headers/{18 → 22}/node_process.h +26 -14
  92. package/src/headers/22/node_realm-inl.h +145 -0
  93. package/src/headers/22/node_realm.h +184 -0
  94. package/src/headers/{16 → 22}/node_report.h +13 -17
  95. package/src/headers/{16 → 22}/node_revert.h +3 -3
  96. package/src/headers/{16 → 22}/node_root_certs.h +902 -461
  97. package/src/headers/22/node_sea.h +64 -0
  98. package/src/headers/22/node_shadow_realm.h +46 -0
  99. package/src/headers/22/node_snapshot_builder.h +57 -0
  100. package/src/headers/22/node_snapshotable.h +174 -0
  101. package/src/headers/{18 → 22}/node_sockaddr.h +2 -2
  102. package/src/headers/{16 → 22}/node_stat_watcher.h +2 -1
  103. package/src/headers/22/node_threadsafe_cow-inl.h +54 -0
  104. package/src/headers/22/node_threadsafe_cow.h +105 -0
  105. package/src/headers/22/node_union_bytes.h +81 -0
  106. package/src/headers/22/node_url.h +96 -0
  107. package/src/headers/22/node_v8.h +77 -0
  108. package/src/headers/{14 → 22}/node_v8_platform-inl.h +17 -6
  109. package/src/headers/{18 → 22}/node_version.h +20 -8
  110. package/src/headers/22/node_wasi.h +185 -0
  111. package/src/headers/{14 → 22}/node_watchdog.h +2 -0
  112. package/src/headers/{18 → 22}/node_worker.h +7 -2
  113. package/src/headers/22/permission/child_process_permission.h +31 -0
  114. package/src/headers/22/permission/fs_permission.h +167 -0
  115. package/src/headers/22/permission/inspector_permission.h +31 -0
  116. package/src/headers/22/permission/permission.h +99 -0
  117. package/src/headers/22/permission/permission_base.h +60 -0
  118. package/src/headers/22/permission/wasi_permission.h +31 -0
  119. package/src/headers/22/permission/worker_permission.h +31 -0
  120. package/src/headers/{16 → 22}/req_wrap-inl.h +7 -6
  121. package/src/headers/{14 → 22}/spawn_sync.h +3 -3
  122. package/src/headers/{18 → 22}/stream_base-inl.h +0 -135
  123. package/src/headers/{18 → 22}/stream_base.h +35 -16
  124. package/src/headers/{18 → 22}/stream_pipe.h +3 -4
  125. package/src/headers/{16 → 22}/stream_wrap.h +2 -1
  126. package/src/headers/{18 → 22}/string_bytes.h +5 -14
  127. package/src/headers/{14 → 22}/string_decoder-inl.h +0 -6
  128. package/src/headers/{16 → 22}/string_decoder.h +0 -1
  129. package/src/headers/{18 → 22}/tcp_wrap.h +1 -1
  130. package/src/headers/{18 → 22}/threadpoolwork-inl.h +14 -1
  131. package/src/headers/22/timers.h +76 -0
  132. package/src/headers/{18 → 22}/tracing/trace_event.h +7 -5
  133. package/src/headers/{16 → 22}/udp_wrap.h +8 -5
  134. package/src/headers/22/undici_version.h +6 -0
  135. package/src/headers/{18 → 22}/util-inl.h +97 -127
  136. package/src/headers/{18 → 22}/util.h +293 -106
  137. package/src/headers/{18 → 22}/v8-fast-api-calls.h +103 -58
  138. package/dist/bindings/cws_darwin_arm64_node83.node +0 -0
  139. package/dist/bindings/cws_darwin_arm64_node93.node +0 -0
  140. package/dist/bindings/cws_darwin_x64_node83.node +0 -0
  141. package/dist/bindings/cws_darwin_x64_node93.node +0 -0
  142. package/dist/bindings/cws_linux_arm64_node83.node +0 -0
  143. package/dist/bindings/cws_linux_arm64_node93.node +0 -0
  144. package/dist/bindings/cws_linux_x64_node83.node +0 -0
  145. package/dist/bindings/cws_linux_x64_node93.node +0 -0
  146. package/src/headers/14/aliased_buffer.h +0 -263
  147. package/src/headers/14/allocated_buffer-inl.h +0 -110
  148. package/src/headers/14/allocated_buffer.h +0 -73
  149. package/src/headers/14/async_wrap-inl.h +0 -94
  150. package/src/headers/14/async_wrap.h +0 -230
  151. package/src/headers/14/base64.h +0 -183
  152. package/src/headers/14/base_object-inl.h +0 -371
  153. package/src/headers/14/base_object.h +0 -281
  154. package/src/headers/14/callback_queue-inl.h +0 -97
  155. package/src/headers/14/callback_queue.h +0 -78
  156. package/src/headers/14/debug_utils-inl.h +0 -223
  157. package/src/headers/14/debug_utils.h +0 -181
  158. package/src/headers/14/env.h +0 -1388
  159. package/src/headers/14/handle_wrap.h +0 -117
  160. package/src/headers/14/histogram-inl.h +0 -83
  161. package/src/headers/14/histogram.h +0 -98
  162. package/src/headers/14/inspector_agent.h +0 -149
  163. package/src/headers/14/inspector_profiler.h +0 -137
  164. package/src/headers/14/js_native_api.h +0 -544
  165. package/src/headers/14/js_native_api_types.h +0 -143
  166. package/src/headers/14/js_native_api_v8.h +0 -301
  167. package/src/headers/14/js_native_api_v8_internals.h +0 -38
  168. package/src/headers/14/json_utils.h +0 -161
  169. package/src/headers/14/memory_tracker-inl.h +0 -355
  170. package/src/headers/14/module_wrap.h +0 -99
  171. package/src/headers/14/node.h +0 -1032
  172. package/src/headers/14/node_api.h +0 -255
  173. package/src/headers/14/node_api_types.h +0 -44
  174. package/src/headers/14/node_binding.h +0 -99
  175. package/src/headers/14/node_buffer.h +0 -92
  176. package/src/headers/14/node_constants.h +0 -84
  177. package/src/headers/14/node_context_data.h +0 -44
  178. package/src/headers/14/node_contextify.h +0 -161
  179. package/src/headers/14/node_crypto.h +0 -865
  180. package/src/headers/14/node_crypto_bio.h +0 -195
  181. package/src/headers/14/node_crypto_clienthello-inl.h +0 -91
  182. package/src/headers/14/node_crypto_clienthello.h +0 -132
  183. package/src/headers/14/node_crypto_common.h +0 -138
  184. package/src/headers/14/node_crypto_groups.h +0 -415
  185. package/src/headers/14/node_dtrace.h +0 -86
  186. package/src/headers/14/node_errors.h +0 -214
  187. package/src/headers/14/node_file-inl.h +0 -306
  188. package/src/headers/14/node_file.h +0 -417
  189. package/src/headers/14/node_http2.h +0 -1191
  190. package/src/headers/14/node_http2_state.h +0 -149
  191. package/src/headers/14/node_http_common-inl.h +0 -194
  192. package/src/headers/14/node_http_common.h +0 -529
  193. package/src/headers/14/node_i18n.h +0 -144
  194. package/src/headers/14/node_internals.h +0 -405
  195. package/src/headers/14/node_main_instance.h +0 -96
  196. package/src/headers/14/node_mem.h +0 -45
  197. package/src/headers/14/node_messaging.h +0 -303
  198. package/src/headers/14/node_metadata.h +0 -109
  199. package/src/headers/14/node_mutex.h +0 -247
  200. package/src/headers/14/node_native_module.h +0 -101
  201. package/src/headers/14/node_native_module_env.h +0 -66
  202. package/src/headers/14/node_options-inl.h +0 -451
  203. package/src/headers/14/node_options.h +0 -481
  204. package/src/headers/14/node_perf.h +0 -181
  205. package/src/headers/14/node_perf_common.h +0 -97
  206. package/src/headers/14/node_platform.h +0 -189
  207. package/src/headers/14/node_process.h +0 -40
  208. package/src/headers/14/node_report.h +0 -47
  209. package/src/headers/14/node_revert.h +0 -72
  210. package/src/headers/14/node_root_certs.h +0 -3458
  211. package/src/headers/14/node_sockaddr-inl.h +0 -170
  212. package/src/headers/14/node_sockaddr.h +0 -123
  213. package/src/headers/14/node_stat_watcher.h +0 -70
  214. package/src/headers/14/node_union_bytes.h +0 -103
  215. package/src/headers/14/node_url.h +0 -188
  216. package/src/headers/14/node_version.h +0 -98
  217. package/src/headers/14/node_wasi.h +0 -108
  218. package/src/headers/14/node_win32_etw_provider-inl.h +0 -287
  219. package/src/headers/14/node_win32_etw_provider.h +0 -99
  220. package/src/headers/14/node_worker.h +0 -141
  221. package/src/headers/14/pipe_wrap.h +0 -78
  222. package/src/headers/14/req_wrap-inl.h +0 -170
  223. package/src/headers/14/req_wrap.h +0 -77
  224. package/src/headers/14/stream_base-inl.h +0 -275
  225. package/src/headers/14/stream_base.h +0 -434
  226. package/src/headers/14/stream_pipe.h +0 -73
  227. package/src/headers/14/stream_wrap.h +0 -130
  228. package/src/headers/14/string_bytes.h +0 -129
  229. package/src/headers/14/string_decoder.h +0 -50
  230. package/src/headers/14/string_search.h +0 -638
  231. package/src/headers/14/tcp_wrap.h +0 -101
  232. package/src/headers/14/threadpoolwork-inl.h +0 -57
  233. package/src/headers/14/tls_wrap.h +0 -222
  234. package/src/headers/14/tracing/agent.h +0 -195
  235. package/src/headers/14/tracing/node_trace_buffer.h +0 -83
  236. package/src/headers/14/tracing/node_trace_writer.h +0 -75
  237. package/src/headers/14/tracing/trace_event.h +0 -720
  238. package/src/headers/14/tracing/traced_value.h +0 -70
  239. package/src/headers/14/tty_wrap.h +0 -64
  240. package/src/headers/14/udp_wrap.h +0 -227
  241. package/src/headers/14/util-inl.h +0 -566
  242. package/src/headers/14/util.h +0 -804
  243. package/src/headers/14/v8abbr.h +0 -124
  244. package/src/headers/16/aliased_buffer.h +0 -315
  245. package/src/headers/16/aliased_struct-inl.h +0 -54
  246. package/src/headers/16/aliased_struct.h +0 -63
  247. package/src/headers/16/allocated_buffer-inl.h +0 -110
  248. package/src/headers/16/allocated_buffer.h +0 -73
  249. package/src/headers/16/async_wrap-inl.h +0 -94
  250. package/src/headers/16/async_wrap.h +0 -246
  251. package/src/headers/16/base64-inl.h +0 -189
  252. package/src/headers/16/base64.h +0 -69
  253. package/src/headers/16/base_object.h +0 -294
  254. package/src/headers/16/connect_wrap.h +0 -26
  255. package/src/headers/16/connection_wrap.h +0 -30
  256. package/src/headers/16/crypto/crypto_aes.h +0 -89
  257. package/src/headers/16/crypto/crypto_bio.h +0 -194
  258. package/src/headers/16/crypto/crypto_cipher.h +0 -286
  259. package/src/headers/16/crypto/crypto_clienthello-inl.h +0 -90
  260. package/src/headers/16/crypto/crypto_clienthello.h +0 -131
  261. package/src/headers/16/crypto/crypto_common.h +0 -187
  262. package/src/headers/16/crypto/crypto_context.h +0 -147
  263. package/src/headers/16/crypto/crypto_dh.h +0 -157
  264. package/src/headers/16/crypto/crypto_dsa.h +0 -76
  265. package/src/headers/16/crypto/crypto_ec.h +0 -169
  266. package/src/headers/16/crypto/crypto_groups.h +0 -415
  267. package/src/headers/16/crypto/crypto_hash.h +0 -89
  268. package/src/headers/16/crypto/crypto_hkdf.h +0 -66
  269. package/src/headers/16/crypto/crypto_hmac.h +0 -94
  270. package/src/headers/16/crypto/crypto_keygen.h +0 -301
  271. package/src/headers/16/crypto/crypto_keys.h +0 -412
  272. package/src/headers/16/crypto/crypto_pbkdf2.h +0 -76
  273. package/src/headers/16/crypto/crypto_random.h +0 -130
  274. package/src/headers/16/crypto/crypto_rsa.h +0 -141
  275. package/src/headers/16/crypto/crypto_scrypt.h +0 -87
  276. package/src/headers/16/crypto/crypto_sig.h +0 -167
  277. package/src/headers/16/crypto/crypto_spkac.h +0 -20
  278. package/src/headers/16/crypto/crypto_timing.h +0 -20
  279. package/src/headers/16/crypto/crypto_tls.h +0 -292
  280. package/src/headers/16/crypto/crypto_util.h +0 -736
  281. package/src/headers/16/crypto/crypto_x509.h +0 -141
  282. package/src/headers/16/debug_utils.h +0 -184
  283. package/src/headers/16/diagnosticfilename-inl.h +0 -33
  284. package/src/headers/16/env-inl.h +0 -1277
  285. package/src/headers/16/env.h +0 -1629
  286. package/src/headers/16/handle_wrap.h +0 -121
  287. package/src/headers/16/histogram-inl.h +0 -88
  288. package/src/headers/16/histogram.h +0 -216
  289. package/src/headers/16/inspector_io.h +0 -78
  290. package/src/headers/16/inspector_socket.h +0 -60
  291. package/src/headers/16/inspector_socket_server.h +0 -110
  292. package/src/headers/16/js_native_api.h +0 -561
  293. package/src/headers/16/js_native_api_types.h +0 -160
  294. package/src/headers/16/js_native_api_v8.h +0 -451
  295. package/src/headers/16/js_native_api_v8_internals.h +0 -39
  296. package/src/headers/16/js_stream.h +0 -52
  297. package/src/headers/16/memory_tracker-inl.h +0 -356
  298. package/src/headers/16/memory_tracker.h +0 -284
  299. package/src/headers/16/node.d +0 -315
  300. package/src/headers/16/node.h +0 -1132
  301. package/src/headers/16/node.stp +0 -146
  302. package/src/headers/16/node_api.h +0 -275
  303. package/src/headers/16/node_api_internals.h +0 -30
  304. package/src/headers/16/node_api_types.h +0 -50
  305. package/src/headers/16/node_binding.h +0 -99
  306. package/src/headers/16/node_blob.h +0 -191
  307. package/src/headers/16/node_bob-inl.h +0 -37
  308. package/src/headers/16/node_bob.h +0 -111
  309. package/src/headers/16/node_buffer.h +0 -92
  310. package/src/headers/16/node_constants.h +0 -84
  311. package/src/headers/16/node_context_data.h +0 -44
  312. package/src/headers/16/node_contextify.h +0 -196
  313. package/src/headers/16/node_dir.h +0 -52
  314. package/src/headers/16/node_dtrace.h +0 -86
  315. package/src/headers/16/node_errors.h +0 -277
  316. package/src/headers/16/node_external_reference.h +0 -129
  317. package/src/headers/16/node_file-inl.h +0 -306
  318. package/src/headers/16/node_http2.h +0 -1140
  319. package/src/headers/16/node_http_common-inl.h +0 -200
  320. package/src/headers/16/node_http_common.h +0 -531
  321. package/src/headers/16/node_internals.h +0 -421
  322. package/src/headers/16/node_main_instance.h +0 -103
  323. package/src/headers/16/node_mem-inl.h +0 -112
  324. package/src/headers/16/node_messaging.h +0 -373
  325. package/src/headers/16/node_metadata.h +0 -122
  326. package/src/headers/16/node_native_module.h +0 -101
  327. package/src/headers/16/node_native_module_env.h +0 -68
  328. package/src/headers/16/node_object_wrap.h +0 -132
  329. package/src/headers/16/node_options-inl.h +0 -477
  330. package/src/headers/16/node_options.h +0 -494
  331. package/src/headers/16/node_perf.h +0 -185
  332. package/src/headers/16/node_perf_common.h +0 -89
  333. package/src/headers/16/node_platform.h +0 -192
  334. package/src/headers/16/node_process.h +0 -43
  335. package/src/headers/16/node_provider.d +0 -80
  336. package/src/headers/16/node_snapshotable.h +0 -137
  337. package/src/headers/16/node_sockaddr-inl.h +0 -266
  338. package/src/headers/16/node_sockaddr.h +0 -405
  339. package/src/headers/16/node_union_bytes.h +0 -103
  340. package/src/headers/16/node_url.h +0 -205
  341. package/src/headers/16/node_v8.h +0 -41
  342. package/src/headers/16/node_v8_platform-inl.h +0 -194
  343. package/src/headers/16/node_version.h +0 -98
  344. package/src/headers/16/node_wasi.h +0 -108
  345. package/src/headers/16/node_watchdog.h +0 -152
  346. package/src/headers/16/node_win32_etw_provider-inl.h +0 -288
  347. package/src/headers/16/node_win32_etw_provider.h +0 -99
  348. package/src/headers/16/node_worker.h +0 -145
  349. package/src/headers/16/req_wrap.h +0 -77
  350. package/src/headers/16/spawn_sync.h +0 -242
  351. package/src/headers/16/stream_base-inl.h +0 -303
  352. package/src/headers/16/stream_base.h +0 -454
  353. package/src/headers/16/stream_pipe.h +0 -73
  354. package/src/headers/16/string_bytes.h +0 -122
  355. package/src/headers/16/string_decoder-inl.h +0 -37
  356. package/src/headers/16/string_search.h +0 -638
  357. package/src/headers/16/tcp_wrap.h +0 -103
  358. package/src/headers/16/threadpoolwork-inl.h +0 -57
  359. package/src/headers/16/timer_wrap.h +0 -84
  360. package/src/headers/16/tracing/agent.h +0 -195
  361. package/src/headers/16/tracing/node_trace_buffer.h +0 -83
  362. package/src/headers/16/tracing/node_trace_writer.h +0 -75
  363. package/src/headers/16/tracing/trace_event.h +0 -720
  364. package/src/headers/16/tracing/trace_event_common.h +0 -1109
  365. package/src/headers/16/tracing/traced_value.h +0 -70
  366. package/src/headers/16/tty_wrap.h +0 -66
  367. package/src/headers/16/util-inl.h +0 -575
  368. package/src/headers/16/util.h +0 -824
  369. package/src/headers/16/v8abbr.h +0 -123
  370. package/src/headers/16/v8ustack.d +0 -695
  371. package/src/headers/18/aliased_buffer.h +0 -315
  372. package/src/headers/18/aliased_struct-inl.h +0 -54
  373. package/src/headers/18/aliased_struct.h +0 -63
  374. package/src/headers/18/base64-inl.h +0 -189
  375. package/src/headers/18/base64.h +0 -69
  376. package/src/headers/18/base_object-inl.h +0 -374
  377. package/src/headers/18/callback_queue-inl.h +0 -97
  378. package/src/headers/18/callback_queue.h +0 -78
  379. package/src/headers/18/cares_wrap.h +0 -523
  380. package/src/headers/18/connect_wrap.h +0 -26
  381. package/src/headers/18/connection_wrap.h +0 -30
  382. package/src/headers/18/crypto/crypto_aes.h +0 -89
  383. package/src/headers/18/crypto/crypto_bio.h +0 -194
  384. package/src/headers/18/crypto/crypto_cipher.h +0 -291
  385. package/src/headers/18/crypto/crypto_clienthello-inl.h +0 -90
  386. package/src/headers/18/crypto/crypto_common.h +0 -151
  387. package/src/headers/18/crypto/crypto_dh.h +0 -156
  388. package/src/headers/18/crypto/crypto_dsa.h +0 -77
  389. package/src/headers/18/crypto/crypto_ec.h +0 -170
  390. package/src/headers/18/crypto/crypto_groups.h +0 -415
  391. package/src/headers/18/crypto/crypto_hash.h +0 -89
  392. package/src/headers/18/crypto/crypto_hkdf.h +0 -65
  393. package/src/headers/18/crypto/crypto_hmac.h +0 -94
  394. package/src/headers/18/crypto/crypto_keygen.h +0 -305
  395. package/src/headers/18/crypto/crypto_pbkdf2.h +0 -76
  396. package/src/headers/18/crypto/crypto_random.h +0 -130
  397. package/src/headers/18/crypto/crypto_rsa.h +0 -141
  398. package/src/headers/18/crypto/crypto_scrypt.h +0 -87
  399. package/src/headers/18/crypto/crypto_sig.h +0 -168
  400. package/src/headers/18/crypto/crypto_spkac.h +0 -21
  401. package/src/headers/18/crypto/crypto_timing.h +0 -20
  402. package/src/headers/18/crypto/crypto_x509.h +0 -143
  403. package/src/headers/18/debug_utils-inl.h +0 -223
  404. package/src/headers/18/diagnosticfilename-inl.h +0 -33
  405. package/src/headers/18/env-inl.h +0 -1308
  406. package/src/headers/18/env.h +0 -1667
  407. package/src/headers/18/inspector_agent.h +0 -144
  408. package/src/headers/18/inspector_io.h +0 -78
  409. package/src/headers/18/inspector_profiler.h +0 -149
  410. package/src/headers/18/inspector_socket.h +0 -60
  411. package/src/headers/18/inspector_socket_server.h +0 -110
  412. package/src/headers/18/js_stream.h +0 -52
  413. package/src/headers/18/json_utils.h +0 -161
  414. package/src/headers/18/memory_tracker.h +0 -284
  415. package/src/headers/18/module_wrap.h +0 -116
  416. package/src/headers/18/node_binding.h +0 -99
  417. package/src/headers/18/node_context_data.h +0 -44
  418. package/src/headers/18/node_contextify.h +0 -196
  419. package/src/headers/18/node_crypto.h +0 -57
  420. package/src/headers/18/node_dir.h +0 -52
  421. package/src/headers/18/node_dtrace.h +0 -86
  422. package/src/headers/18/node_external_reference.h +0 -145
  423. package/src/headers/18/node_file.h +0 -426
  424. package/src/headers/18/node_http2_state.h +0 -149
  425. package/src/headers/18/node_i18n.h +0 -145
  426. package/src/headers/18/node_mem-inl.h +0 -112
  427. package/src/headers/18/node_mem.h +0 -45
  428. package/src/headers/18/node_mutex.h +0 -323
  429. package/src/headers/18/node_native_module.h +0 -109
  430. package/src/headers/18/node_native_module_env.h +0 -71
  431. package/src/headers/18/node_object_wrap.h +0 -132
  432. package/src/headers/18/node_process-inl.h +0 -26
  433. package/src/headers/18/node_report.h +0 -47
  434. package/src/headers/18/node_revert.h +0 -82
  435. package/src/headers/18/node_root_certs.h +0 -3246
  436. package/src/headers/18/node_snapshot_builder.h +0 -43
  437. package/src/headers/18/node_snapshotable.h +0 -130
  438. package/src/headers/18/node_stat_watcher.h +0 -72
  439. package/src/headers/18/node_union_bytes.h +0 -103
  440. package/src/headers/18/node_url.h +0 -205
  441. package/src/headers/18/node_v8.h +0 -41
  442. package/src/headers/18/node_v8_platform-inl.h +0 -194
  443. package/src/headers/18/node_wasi.h +0 -108
  444. package/src/headers/18/node_watchdog.h +0 -152
  445. package/src/headers/18/node_win32_etw_provider-inl.h +0 -288
  446. package/src/headers/18/node_win32_etw_provider.h +0 -99
  447. package/src/headers/18/pipe_wrap.h +0 -80
  448. package/src/headers/18/req_wrap-inl.h +0 -170
  449. package/src/headers/18/spawn_sync.h +0 -242
  450. package/src/headers/18/stream_wrap.h +0 -133
  451. package/src/headers/18/string_decoder-inl.h +0 -37
  452. package/src/headers/18/string_decoder.h +0 -50
  453. package/src/headers/18/string_search.h +0 -638
  454. package/src/headers/18/tracing/node_trace_buffer.h +0 -83
  455. package/src/headers/18/tracing/node_trace_writer.h +0 -75
  456. package/src/headers/18/tracing/trace_event_common.h +0 -1109
  457. package/src/headers/18/tracing/traced_value.h +0 -70
  458. package/src/headers/18/udp_wrap.h +0 -227
  459. package/src/headers/18/v8abbr.h +0 -123
  460. /package/src/headers/{14 → 22}/aliased_struct-inl.h +0 -0
  461. /package/src/headers/{14 → 22}/aliased_struct.h +0 -0
  462. /package/src/headers/{16 → 22}/callback_queue-inl.h +0 -0
  463. /package/src/headers/{14 → 22}/connect_wrap.h +0 -0
  464. /package/src/headers/{14 → 22}/connection_wrap.h +0 -0
  465. /package/src/headers/{14 → 22}/diagnosticfilename-inl.h +0 -0
  466. /package/src/headers/{18 → 22}/histogram-inl.h +0 -0
  467. /package/src/headers/{14 → 22}/inspector_io.h +0 -0
  468. /package/src/headers/{14 → 22}/inspector_socket.h +0 -0
  469. /package/src/headers/{14 → 22}/inspector_socket_server.h +0 -0
  470. /package/src/headers/{14 → 22}/js_stream.h +0 -0
  471. /package/src/headers/{14 → 22}/node_dir.h +0 -0
  472. /package/src/headers/{14 → 22}/node_mem-inl.h +0 -0
  473. /package/src/headers/{16 → 22}/node_mem.h +0 -0
  474. /package/src/headers/{16 → 22}/node_mutex.h +0 -0
  475. /package/src/headers/{14 → 22}/node_object_wrap.h +0 -0
  476. /package/src/headers/{16 → 22}/node_process-inl.h +0 -0
  477. /package/src/headers/{18 → 22}/node_sockaddr-inl.h +0 -0
  478. /package/src/headers/{18 → 22}/node_wasm_web_api.h +0 -0
  479. /package/src/headers/{16 → 22}/pipe_wrap.h +0 -0
  480. /package/src/headers/{18 → 22}/req_wrap.h +0 -0
  481. /package/src/headers/{18 → 22}/timer_wrap-inl.h +0 -0
  482. /package/src/headers/{18 → 22}/timer_wrap.h +0 -0
  483. /package/src/headers/{18 → 22}/tracing/agent.h +0 -0
  484. /package/src/headers/{14 → 22}/tracing/trace_event_common.h +0 -0
  485. /package/src/headers/{18 → 22}/tty_wrap.h +0 -0
@@ -1,1308 +0,0 @@
1
- // Copyright Joyent, Inc. and other Node contributors.
2
- //
3
- // Permission is hereby granted, free of charge, to any person obtaining a
4
- // copy of this software and associated documentation files (the
5
- // "Software"), to deal in the Software without restriction, including
6
- // without limitation the rights to use, copy, modify, merge, publish,
7
- // distribute, sublicense, and/or sell copies of the Software, and to permit
8
- // persons to whom the Software is furnished to do so, subject to the
9
- // following conditions:
10
- //
11
- // The above copyright notice and this permission notice shall be included
12
- // in all copies or substantial portions of the Software.
13
- //
14
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- #ifndef SRC_ENV_INL_H_
23
- #define SRC_ENV_INL_H_
24
-
25
- #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
26
-
27
- #include "aliased_buffer.h"
28
- #include "callback_queue-inl.h"
29
- #include "env.h"
30
- #include "node.h"
31
- #include "node_context_data.h"
32
- #include "node_internals.h"
33
- #include "node_perf_common.h"
34
- #include "util-inl.h"
35
- #include "uv.h"
36
- #include "v8-fast-api-calls.h"
37
- #include "v8.h"
38
-
39
- #include <cstddef>
40
- #include <cstdint>
41
-
42
- #include <utility>
43
-
44
- namespace node {
45
-
46
- NoArrayBufferZeroFillScope::NoArrayBufferZeroFillScope(
47
- IsolateData* isolate_data)
48
- : node_allocator_(isolate_data->node_allocator()) {
49
- if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 0;
50
- }
51
-
52
- NoArrayBufferZeroFillScope::~NoArrayBufferZeroFillScope() {
53
- if (node_allocator_ != nullptr) node_allocator_->zero_fill_field()[0] = 1;
54
- }
55
-
56
- inline v8::Isolate* IsolateData::isolate() const {
57
- return isolate_;
58
- }
59
-
60
- inline uv_loop_t* IsolateData::event_loop() const {
61
- return event_loop_;
62
- }
63
-
64
- inline NodeArrayBufferAllocator* IsolateData::node_allocator() const {
65
- return node_allocator_;
66
- }
67
-
68
- inline MultiIsolatePlatform* IsolateData::platform() const {
69
- return platform_;
70
- }
71
-
72
- inline void IsolateData::set_worker_context(worker::Worker* context) {
73
- CHECK_NULL(worker_context_); // Should be set only once.
74
- worker_context_ = context;
75
- }
76
-
77
- inline worker::Worker* IsolateData::worker_context() const {
78
- return worker_context_;
79
- }
80
-
81
- inline v8::Local<v8::String> IsolateData::async_wrap_provider(int index) const {
82
- return async_wrap_providers_[index].Get(isolate_);
83
- }
84
-
85
- inline AliasedUint32Array& AsyncHooks::fields() {
86
- return fields_;
87
- }
88
-
89
- inline AliasedFloat64Array& AsyncHooks::async_id_fields() {
90
- return async_id_fields_;
91
- }
92
-
93
- inline AliasedFloat64Array& AsyncHooks::async_ids_stack() {
94
- return async_ids_stack_;
95
- }
96
-
97
- v8::Local<v8::Array> AsyncHooks::js_execution_async_resources() {
98
- if (UNLIKELY(js_execution_async_resources_.IsEmpty())) {
99
- js_execution_async_resources_.Reset(
100
- env()->isolate(), v8::Array::New(env()->isolate()));
101
- }
102
- return PersistentToLocal::Strong(js_execution_async_resources_);
103
- }
104
-
105
- v8::Local<v8::Object> AsyncHooks::native_execution_async_resource(size_t i) {
106
- if (i >= native_execution_async_resources_.size()) return {};
107
- return native_execution_async_resources_[i];
108
- }
109
-
110
- inline void AsyncHooks::SetJSPromiseHooks(v8::Local<v8::Function> init,
111
- v8::Local<v8::Function> before,
112
- v8::Local<v8::Function> after,
113
- v8::Local<v8::Function> resolve) {
114
- js_promise_hooks_[0].Reset(env()->isolate(), init);
115
- js_promise_hooks_[1].Reset(env()->isolate(), before);
116
- js_promise_hooks_[2].Reset(env()->isolate(), after);
117
- js_promise_hooks_[3].Reset(env()->isolate(), resolve);
118
- for (auto it = contexts_.begin(); it != contexts_.end(); it++) {
119
- if (it->IsEmpty()) {
120
- contexts_.erase(it--);
121
- continue;
122
- }
123
- PersistentToLocal::Weak(env()->isolate(), *it)
124
- ->SetPromiseHooks(init, before, after, resolve);
125
- }
126
- }
127
-
128
- inline v8::Local<v8::String> AsyncHooks::provider_string(int idx) {
129
- return env()->isolate_data()->async_wrap_provider(idx);
130
- }
131
-
132
- inline void AsyncHooks::no_force_checks() {
133
- fields_[kCheck] -= 1;
134
- }
135
-
136
- inline Environment* AsyncHooks::env() {
137
- return Environment::ForAsyncHooks(this);
138
- }
139
-
140
- // Remember to keep this code aligned with pushAsyncContext() in JS.
141
- inline void AsyncHooks::push_async_context(double async_id,
142
- double trigger_async_id,
143
- v8::Local<v8::Object> resource) {
144
- // Since async_hooks is experimental, do only perform the check
145
- // when async_hooks is enabled.
146
- if (fields_[kCheck] > 0) {
147
- CHECK_GE(async_id, -1);
148
- CHECK_GE(trigger_async_id, -1);
149
- }
150
-
151
- uint32_t offset = fields_[kStackLength];
152
- if (offset * 2 >= async_ids_stack_.Length())
153
- grow_async_ids_stack();
154
- async_ids_stack_[2 * offset] = async_id_fields_[kExecutionAsyncId];
155
- async_ids_stack_[2 * offset + 1] = async_id_fields_[kTriggerAsyncId];
156
- fields_[kStackLength] += 1;
157
- async_id_fields_[kExecutionAsyncId] = async_id;
158
- async_id_fields_[kTriggerAsyncId] = trigger_async_id;
159
-
160
- #ifdef DEBUG
161
- for (uint32_t i = offset; i < native_execution_async_resources_.size(); i++)
162
- CHECK(native_execution_async_resources_[i].IsEmpty());
163
- #endif
164
-
165
- // When this call comes from JS (as a way of increasing the stack size),
166
- // `resource` will be empty, because JS caches these values anyway.
167
- if (!resource.IsEmpty()) {
168
- native_execution_async_resources_.resize(offset + 1);
169
- // Caveat: This is a v8::Local<> assignment, we do not keep a v8::Global<>!
170
- native_execution_async_resources_[offset] = resource;
171
- }
172
- }
173
-
174
- // Remember to keep this code aligned with popAsyncContext() in JS.
175
- inline bool AsyncHooks::pop_async_context(double async_id) {
176
- // In case of an exception then this may have already been reset, if the
177
- // stack was multiple MakeCallback()'s deep.
178
- if (UNLIKELY(fields_[kStackLength] == 0)) return false;
179
-
180
- // Ask for the async_id to be restored as a check that the stack
181
- // hasn't been corrupted.
182
- // Since async_hooks is experimental, do only perform the check
183
- // when async_hooks is enabled.
184
- if (UNLIKELY(fields_[kCheck] > 0 &&
185
- async_id_fields_[kExecutionAsyncId] != async_id)) {
186
- FailWithCorruptedAsyncStack(async_id);
187
- }
188
-
189
- uint32_t offset = fields_[kStackLength] - 1;
190
- async_id_fields_[kExecutionAsyncId] = async_ids_stack_[2 * offset];
191
- async_id_fields_[kTriggerAsyncId] = async_ids_stack_[2 * offset + 1];
192
- fields_[kStackLength] = offset;
193
-
194
- if (LIKELY(offset < native_execution_async_resources_.size() &&
195
- !native_execution_async_resources_[offset].IsEmpty())) {
196
- #ifdef DEBUG
197
- for (uint32_t i = offset + 1;
198
- i < native_execution_async_resources_.size();
199
- i++) {
200
- CHECK(native_execution_async_resources_[i].IsEmpty());
201
- }
202
- #endif
203
- native_execution_async_resources_.resize(offset);
204
- if (native_execution_async_resources_.size() <
205
- native_execution_async_resources_.capacity() / 2 &&
206
- native_execution_async_resources_.size() > 16) {
207
- native_execution_async_resources_.shrink_to_fit();
208
- }
209
- }
210
-
211
- if (UNLIKELY(js_execution_async_resources()->Length() > offset)) {
212
- v8::HandleScope handle_scope(env()->isolate());
213
- USE(js_execution_async_resources()->Set(
214
- env()->context(),
215
- env()->length_string(),
216
- v8::Integer::NewFromUnsigned(env()->isolate(), offset)));
217
- }
218
-
219
- return fields_[kStackLength] > 0;
220
- }
221
-
222
- void AsyncHooks::clear_async_id_stack() {
223
- v8::Isolate* isolate = env()->isolate();
224
- v8::HandleScope handle_scope(isolate);
225
- if (!js_execution_async_resources_.IsEmpty()) {
226
- USE(PersistentToLocal::Strong(js_execution_async_resources_)->Set(
227
- env()->context(),
228
- env()->length_string(),
229
- v8::Integer::NewFromUnsigned(isolate, 0)));
230
- }
231
- native_execution_async_resources_.clear();
232
- native_execution_async_resources_.shrink_to_fit();
233
-
234
- async_id_fields_[kExecutionAsyncId] = 0;
235
- async_id_fields_[kTriggerAsyncId] = 0;
236
- fields_[kStackLength] = 0;
237
- }
238
-
239
- inline void AsyncHooks::AddContext(v8::Local<v8::Context> ctx) {
240
- ctx->SetPromiseHooks(
241
- js_promise_hooks_[0].IsEmpty() ?
242
- v8::Local<v8::Function>() :
243
- PersistentToLocal::Strong(js_promise_hooks_[0]),
244
- js_promise_hooks_[1].IsEmpty() ?
245
- v8::Local<v8::Function>() :
246
- PersistentToLocal::Strong(js_promise_hooks_[1]),
247
- js_promise_hooks_[2].IsEmpty() ?
248
- v8::Local<v8::Function>() :
249
- PersistentToLocal::Strong(js_promise_hooks_[2]),
250
- js_promise_hooks_[3].IsEmpty() ?
251
- v8::Local<v8::Function>() :
252
- PersistentToLocal::Strong(js_promise_hooks_[3]));
253
-
254
- size_t id = contexts_.size();
255
- contexts_.resize(id + 1);
256
- contexts_[id].Reset(env()->isolate(), ctx);
257
- contexts_[id].SetWeak();
258
- }
259
-
260
- inline void AsyncHooks::RemoveContext(v8::Local<v8::Context> ctx) {
261
- v8::Isolate* isolate = env()->isolate();
262
- v8::HandleScope handle_scope(isolate);
263
- contexts_.erase(std::remove_if(contexts_.begin(),
264
- contexts_.end(),
265
- [&](auto&& el) { return el.IsEmpty(); }),
266
- contexts_.end());
267
- for (auto it = contexts_.begin(); it != contexts_.end(); it++) {
268
- v8::Local<v8::Context> saved_context =
269
- PersistentToLocal::Weak(isolate, *it);
270
- if (saved_context == ctx) {
271
- it->Reset();
272
- contexts_.erase(it);
273
- break;
274
- }
275
- }
276
- }
277
-
278
- // The DefaultTriggerAsyncIdScope(AsyncWrap*) constructor is defined in
279
- // async_wrap-inl.h to avoid a circular dependency.
280
-
281
- inline AsyncHooks::DefaultTriggerAsyncIdScope ::DefaultTriggerAsyncIdScope(
282
- Environment* env, double default_trigger_async_id)
283
- : async_hooks_(env->async_hooks()) {
284
- if (env->async_hooks()->fields()[AsyncHooks::kCheck] > 0) {
285
- CHECK_GE(default_trigger_async_id, 0);
286
- }
287
-
288
- old_default_trigger_async_id_ =
289
- async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
290
- async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
291
- default_trigger_async_id;
292
- }
293
-
294
- inline AsyncHooks::DefaultTriggerAsyncIdScope ::~DefaultTriggerAsyncIdScope() {
295
- async_hooks_->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId] =
296
- old_default_trigger_async_id_;
297
- }
298
-
299
- Environment* Environment::ForAsyncHooks(AsyncHooks* hooks) {
300
- return ContainerOf(&Environment::async_hooks_, hooks);
301
- }
302
-
303
- inline size_t Environment::async_callback_scope_depth() const {
304
- return async_callback_scope_depth_;
305
- }
306
-
307
- inline void Environment::PushAsyncCallbackScope() {
308
- async_callback_scope_depth_++;
309
- }
310
-
311
- inline void Environment::PopAsyncCallbackScope() {
312
- async_callback_scope_depth_--;
313
- }
314
-
315
- inline AliasedUint32Array& ImmediateInfo::fields() {
316
- return fields_;
317
- }
318
-
319
- inline uint32_t ImmediateInfo::count() const {
320
- return fields_[kCount];
321
- }
322
-
323
- inline uint32_t ImmediateInfo::ref_count() const {
324
- return fields_[kRefCount];
325
- }
326
-
327
- inline bool ImmediateInfo::has_outstanding() const {
328
- return fields_[kHasOutstanding] == 1;
329
- }
330
-
331
- inline void ImmediateInfo::ref_count_inc(uint32_t increment) {
332
- fields_[kRefCount] += increment;
333
- }
334
-
335
- inline void ImmediateInfo::ref_count_dec(uint32_t decrement) {
336
- fields_[kRefCount] -= decrement;
337
- }
338
-
339
- inline AliasedUint8Array& TickInfo::fields() {
340
- return fields_;
341
- }
342
-
343
- inline bool TickInfo::has_tick_scheduled() const {
344
- return fields_[kHasTickScheduled] == 1;
345
- }
346
-
347
- inline bool TickInfo::has_rejection_to_warn() const {
348
- return fields_[kHasRejectionToWarn] == 1;
349
- }
350
-
351
- inline void Environment::AssignToContext(v8::Local<v8::Context> context,
352
- const ContextInfo& info) {
353
- context->SetAlignedPointerInEmbedderData(
354
- ContextEmbedderIndex::kEnvironment, this);
355
- // Used by Environment::GetCurrent to know that we are on a node context.
356
- context->SetAlignedPointerInEmbedderData(
357
- ContextEmbedderIndex::kContextTag, Environment::kNodeContextTagPtr);
358
- // Used to retrieve bindings
359
- context->SetAlignedPointerInEmbedderData(
360
- ContextEmbedderIndex::kBindingListIndex, &(this->bindings_));
361
-
362
- #if HAVE_INSPECTOR
363
- inspector_agent()->ContextCreated(context, info);
364
- #endif // HAVE_INSPECTOR
365
-
366
- this->async_hooks()->AddContext(context);
367
- }
368
-
369
- inline Environment* Environment::GetCurrent(v8::Isolate* isolate) {
370
- if (UNLIKELY(!isolate->InContext())) return nullptr;
371
- v8::HandleScope handle_scope(isolate);
372
- return GetCurrent(isolate->GetCurrentContext());
373
- }
374
-
375
- inline Environment* Environment::GetCurrent(v8::Local<v8::Context> context) {
376
- if (UNLIKELY(context.IsEmpty())) {
377
- return nullptr;
378
- }
379
- if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <=
380
- ContextEmbedderIndex::kContextTag)) {
381
- return nullptr;
382
- }
383
- if (UNLIKELY(context->GetAlignedPointerFromEmbedderData(
384
- ContextEmbedderIndex::kContextTag) !=
385
- Environment::kNodeContextTagPtr)) {
386
- return nullptr;
387
- }
388
- return static_cast<Environment*>(
389
- context->GetAlignedPointerFromEmbedderData(
390
- ContextEmbedderIndex::kEnvironment));
391
- }
392
-
393
- inline Environment* Environment::GetCurrent(
394
- const v8::FunctionCallbackInfo<v8::Value>& info) {
395
- return GetCurrent(info.GetIsolate()->GetCurrentContext());
396
- }
397
-
398
- template <typename T>
399
- inline Environment* Environment::GetCurrent(
400
- const v8::PropertyCallbackInfo<T>& info) {
401
- return GetCurrent(info.GetIsolate()->GetCurrentContext());
402
- }
403
-
404
- template <typename T, typename U>
405
- inline T* Environment::GetBindingData(const v8::PropertyCallbackInfo<U>& info) {
406
- return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
407
- }
408
-
409
- template <typename T>
410
- inline T* Environment::GetBindingData(
411
- const v8::FunctionCallbackInfo<v8::Value>& info) {
412
- return GetBindingData<T>(info.GetIsolate()->GetCurrentContext());
413
- }
414
-
415
- template <typename T>
416
- inline T* Environment::GetBindingData(v8::Local<v8::Context> context) {
417
- BindingDataStore* map = static_cast<BindingDataStore*>(
418
- context->GetAlignedPointerFromEmbedderData(
419
- ContextEmbedderIndex::kBindingListIndex));
420
- DCHECK_NOT_NULL(map);
421
- auto it = map->find(T::type_name);
422
- if (UNLIKELY(it == map->end())) return nullptr;
423
- T* result = static_cast<T*>(it->second.get());
424
- DCHECK_NOT_NULL(result);
425
- DCHECK_EQ(result->env(), GetCurrent(context));
426
- return result;
427
- }
428
-
429
- template <typename T>
430
- inline T* Environment::AddBindingData(
431
- v8::Local<v8::Context> context,
432
- v8::Local<v8::Object> target) {
433
- DCHECK_EQ(GetCurrent(context), this);
434
- // This won't compile if T is not a BaseObject subclass.
435
- BaseObjectPtr<T> item = MakeDetachedBaseObject<T>(this, target);
436
- BindingDataStore* map = static_cast<BindingDataStore*>(
437
- context->GetAlignedPointerFromEmbedderData(
438
- ContextEmbedderIndex::kBindingListIndex));
439
- DCHECK_NOT_NULL(map);
440
- auto result = map->emplace(T::type_name, item);
441
- CHECK(result.second);
442
- DCHECK_EQ(GetBindingData<T>(context), item.get());
443
- return item.get();
444
- }
445
-
446
- inline v8::Isolate* Environment::isolate() const {
447
- return isolate_;
448
- }
449
-
450
- inline Environment* Environment::from_timer_handle(uv_timer_t* handle) {
451
- return ContainerOf(&Environment::timer_handle_, handle);
452
- }
453
-
454
- inline uv_timer_t* Environment::timer_handle() {
455
- return &timer_handle_;
456
- }
457
-
458
- inline Environment* Environment::from_immediate_check_handle(
459
- uv_check_t* handle) {
460
- return ContainerOf(&Environment::immediate_check_handle_, handle);
461
- }
462
-
463
- inline uv_check_t* Environment::immediate_check_handle() {
464
- return &immediate_check_handle_;
465
- }
466
-
467
- inline uv_idle_t* Environment::immediate_idle_handle() {
468
- return &immediate_idle_handle_;
469
- }
470
-
471
- inline void Environment::RegisterHandleCleanup(uv_handle_t* handle,
472
- HandleCleanupCb cb,
473
- void* arg) {
474
- handle_cleanup_queue_.push_back(HandleCleanup{handle, cb, arg});
475
- }
476
-
477
- template <typename T, typename OnCloseCallback>
478
- inline void Environment::CloseHandle(T* handle, OnCloseCallback callback) {
479
- handle_cleanup_waiting_++;
480
- static_assert(sizeof(T) >= sizeof(uv_handle_t), "T is a libuv handle");
481
- static_assert(offsetof(T, data) == offsetof(uv_handle_t, data),
482
- "T is a libuv handle");
483
- static_assert(offsetof(T, close_cb) == offsetof(uv_handle_t, close_cb),
484
- "T is a libuv handle");
485
- struct CloseData {
486
- Environment* env;
487
- OnCloseCallback callback;
488
- void* original_data;
489
- };
490
- handle->data = new CloseData { this, callback, handle->data };
491
- uv_close(reinterpret_cast<uv_handle_t*>(handle), [](uv_handle_t* handle) {
492
- std::unique_ptr<CloseData> data { static_cast<CloseData*>(handle->data) };
493
- data->env->handle_cleanup_waiting_--;
494
- handle->data = data->original_data;
495
- data->callback(reinterpret_cast<T*>(handle));
496
- });
497
- }
498
-
499
- void Environment::IncreaseWaitingRequestCounter() {
500
- request_waiting_++;
501
- }
502
-
503
- void Environment::DecreaseWaitingRequestCounter() {
504
- request_waiting_--;
505
- CHECK_GE(request_waiting_, 0);
506
- }
507
-
508
- inline uv_loop_t* Environment::event_loop() const {
509
- return isolate_data()->event_loop();
510
- }
511
-
512
- inline void Environment::TryLoadAddon(
513
- const char* filename,
514
- int flags,
515
- const std::function<bool(binding::DLib*)>& was_loaded) {
516
- loaded_addons_.emplace_back(filename, flags);
517
- if (!was_loaded(&loaded_addons_.back())) {
518
- loaded_addons_.pop_back();
519
- }
520
- }
521
-
522
- #if HAVE_INSPECTOR
523
- inline bool Environment::is_in_inspector_console_call() const {
524
- return is_in_inspector_console_call_;
525
- }
526
-
527
- inline void Environment::set_is_in_inspector_console_call(bool value) {
528
- is_in_inspector_console_call_ = value;
529
- }
530
- #endif
531
-
532
- inline AsyncHooks* Environment::async_hooks() {
533
- return &async_hooks_;
534
- }
535
-
536
- inline ImmediateInfo* Environment::immediate_info() {
537
- return &immediate_info_;
538
- }
539
-
540
- inline TickInfo* Environment::tick_info() {
541
- return &tick_info_;
542
- }
543
-
544
- inline uint64_t Environment::timer_base() const {
545
- return timer_base_;
546
- }
547
-
548
- inline std::shared_ptr<KVStore> Environment::env_vars() {
549
- return env_vars_;
550
- }
551
-
552
- inline void Environment::set_env_vars(std::shared_ptr<KVStore> env_vars) {
553
- env_vars_ = env_vars;
554
- }
555
-
556
- inline bool Environment::printed_error() const {
557
- return printed_error_;
558
- }
559
-
560
- inline void Environment::set_printed_error(bool value) {
561
- printed_error_ = value;
562
- }
563
-
564
- inline void Environment::set_trace_sync_io(bool value) {
565
- trace_sync_io_ = value;
566
- }
567
-
568
- inline bool Environment::abort_on_uncaught_exception() const {
569
- return options_->abort_on_uncaught_exception;
570
- }
571
-
572
- inline void Environment::set_force_context_aware(bool value) {
573
- options_->force_context_aware = value;
574
- }
575
-
576
- inline bool Environment::force_context_aware() const {
577
- return options_->force_context_aware;
578
- }
579
-
580
- inline void Environment::set_abort_on_uncaught_exception(bool value) {
581
- options_->abort_on_uncaught_exception = value;
582
- }
583
-
584
- inline AliasedUint32Array& Environment::should_abort_on_uncaught_toggle() {
585
- return should_abort_on_uncaught_toggle_;
586
- }
587
-
588
- inline AliasedInt32Array& Environment::stream_base_state() {
589
- return stream_base_state_;
590
- }
591
-
592
- inline uint32_t Environment::get_next_module_id() {
593
- return module_id_counter_++;
594
- }
595
- inline uint32_t Environment::get_next_script_id() {
596
- return script_id_counter_++;
597
- }
598
- inline uint32_t Environment::get_next_function_id() {
599
- return function_id_counter_++;
600
- }
601
-
602
- ShouldNotAbortOnUncaughtScope::ShouldNotAbortOnUncaughtScope(
603
- Environment* env)
604
- : env_(env) {
605
- env_->PushShouldNotAbortOnUncaughtScope();
606
- }
607
-
608
- ShouldNotAbortOnUncaughtScope::~ShouldNotAbortOnUncaughtScope() {
609
- Close();
610
- }
611
-
612
- void ShouldNotAbortOnUncaughtScope::Close() {
613
- if (env_ != nullptr) {
614
- env_->PopShouldNotAbortOnUncaughtScope();
615
- env_ = nullptr;
616
- }
617
- }
618
-
619
- inline void Environment::PushShouldNotAbortOnUncaughtScope() {
620
- should_not_abort_scope_counter_++;
621
- }
622
-
623
- inline void Environment::PopShouldNotAbortOnUncaughtScope() {
624
- should_not_abort_scope_counter_--;
625
- }
626
-
627
- inline bool Environment::inside_should_not_abort_on_uncaught_scope() const {
628
- return should_not_abort_scope_counter_ > 0;
629
- }
630
-
631
- inline std::vector<double>* Environment::destroy_async_id_list() {
632
- return &destroy_async_id_list_;
633
- }
634
-
635
- inline double Environment::new_async_id() {
636
- async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter] += 1;
637
- return async_hooks()->async_id_fields()[AsyncHooks::kAsyncIdCounter];
638
- }
639
-
640
- inline double Environment::execution_async_id() {
641
- return async_hooks()->async_id_fields()[AsyncHooks::kExecutionAsyncId];
642
- }
643
-
644
- inline double Environment::trigger_async_id() {
645
- return async_hooks()->async_id_fields()[AsyncHooks::kTriggerAsyncId];
646
- }
647
-
648
- inline double Environment::get_default_trigger_async_id() {
649
- double default_trigger_async_id =
650
- async_hooks()->async_id_fields()[AsyncHooks::kDefaultTriggerAsyncId];
651
- // If defaultTriggerAsyncId isn't set, use the executionAsyncId
652
- if (default_trigger_async_id < 0)
653
- default_trigger_async_id = execution_async_id();
654
- return default_trigger_async_id;
655
- }
656
-
657
- inline std::shared_ptr<EnvironmentOptions> Environment::options() {
658
- return options_;
659
- }
660
-
661
- inline const std::vector<std::string>& Environment::argv() {
662
- return argv_;
663
- }
664
-
665
- inline const std::vector<std::string>& Environment::exec_argv() {
666
- return exec_argv_;
667
- }
668
-
669
- inline const std::string& Environment::exec_path() const {
670
- return exec_path_;
671
- }
672
-
673
- inline std::string Environment::GetCwd() {
674
- char cwd[PATH_MAX_BYTES];
675
- size_t size = PATH_MAX_BYTES;
676
- const int err = uv_cwd(cwd, &size);
677
-
678
- if (err == 0) {
679
- CHECK_GT(size, 0);
680
- return cwd;
681
- }
682
-
683
- // This can fail if the cwd is deleted. In that case, fall back to
684
- // exec_path.
685
- const std::string& exec_path = exec_path_;
686
- return exec_path.substr(0, exec_path.find_last_of(kPathSeparator));
687
- }
688
-
689
- #if HAVE_INSPECTOR
690
- inline void Environment::set_coverage_directory(const char* dir) {
691
- coverage_directory_ = std::string(dir);
692
- }
693
-
694
- inline void Environment::set_coverage_connection(
695
- std::unique_ptr<profiler::V8CoverageConnection> connection) {
696
- CHECK_NULL(coverage_connection_);
697
- std::swap(coverage_connection_, connection);
698
- }
699
-
700
- inline profiler::V8CoverageConnection* Environment::coverage_connection() {
701
- return coverage_connection_.get();
702
- }
703
-
704
- inline const std::string& Environment::coverage_directory() const {
705
- return coverage_directory_;
706
- }
707
-
708
- inline void Environment::set_cpu_profiler_connection(
709
- std::unique_ptr<profiler::V8CpuProfilerConnection> connection) {
710
- CHECK_NULL(cpu_profiler_connection_);
711
- std::swap(cpu_profiler_connection_, connection);
712
- }
713
-
714
- inline profiler::V8CpuProfilerConnection*
715
- Environment::cpu_profiler_connection() {
716
- return cpu_profiler_connection_.get();
717
- }
718
-
719
- inline void Environment::set_cpu_prof_interval(uint64_t interval) {
720
- cpu_prof_interval_ = interval;
721
- }
722
-
723
- inline uint64_t Environment::cpu_prof_interval() const {
724
- return cpu_prof_interval_;
725
- }
726
-
727
- inline void Environment::set_cpu_prof_name(const std::string& name) {
728
- cpu_prof_name_ = name;
729
- }
730
-
731
- inline const std::string& Environment::cpu_prof_name() const {
732
- return cpu_prof_name_;
733
- }
734
-
735
- inline void Environment::set_cpu_prof_dir(const std::string& dir) {
736
- cpu_prof_dir_ = dir;
737
- }
738
-
739
- inline const std::string& Environment::cpu_prof_dir() const {
740
- return cpu_prof_dir_;
741
- }
742
-
743
- inline void Environment::set_heap_profiler_connection(
744
- std::unique_ptr<profiler::V8HeapProfilerConnection> connection) {
745
- CHECK_NULL(heap_profiler_connection_);
746
- std::swap(heap_profiler_connection_, connection);
747
- }
748
-
749
- inline profiler::V8HeapProfilerConnection*
750
- Environment::heap_profiler_connection() {
751
- return heap_profiler_connection_.get();
752
- }
753
-
754
- inline void Environment::set_heap_prof_name(const std::string& name) {
755
- heap_prof_name_ = name;
756
- }
757
-
758
- inline const std::string& Environment::heap_prof_name() const {
759
- return heap_prof_name_;
760
- }
761
-
762
- inline void Environment::set_heap_prof_dir(const std::string& dir) {
763
- heap_prof_dir_ = dir;
764
- }
765
-
766
- inline const std::string& Environment::heap_prof_dir() const {
767
- return heap_prof_dir_;
768
- }
769
-
770
- inline void Environment::set_heap_prof_interval(uint64_t interval) {
771
- heap_prof_interval_ = interval;
772
- }
773
-
774
- inline uint64_t Environment::heap_prof_interval() const {
775
- return heap_prof_interval_;
776
- }
777
-
778
- #endif // HAVE_INSPECTOR
779
-
780
- inline
781
- std::shared_ptr<ExclusiveAccess<HostPort>> Environment::inspector_host_port() {
782
- return inspector_host_port_;
783
- }
784
-
785
- inline std::shared_ptr<PerIsolateOptions> IsolateData::options() {
786
- return options_;
787
- }
788
-
789
- inline void IsolateData::set_options(
790
- std::shared_ptr<PerIsolateOptions> options) {
791
- options_ = std::move(options);
792
- }
793
-
794
- template <typename Fn>
795
- void Environment::SetImmediate(Fn&& cb, CallbackFlags::Flags flags) {
796
- auto callback = native_immediates_.CreateCallback(std::move(cb), flags);
797
- native_immediates_.Push(std::move(callback));
798
-
799
- if (flags & CallbackFlags::kRefed) {
800
- if (immediate_info()->ref_count() == 0)
801
- ToggleImmediateRef(true);
802
- immediate_info()->ref_count_inc(1);
803
- }
804
- }
805
-
806
- template <typename Fn>
807
- void Environment::SetImmediateThreadsafe(Fn&& cb, CallbackFlags::Flags flags) {
808
- auto callback = native_immediates_threadsafe_.CreateCallback(
809
- std::move(cb), flags);
810
- {
811
- Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
812
- native_immediates_threadsafe_.Push(std::move(callback));
813
- if (task_queues_async_initialized_)
814
- uv_async_send(&task_queues_async_);
815
- }
816
- }
817
-
818
- template <typename Fn>
819
- void Environment::RequestInterrupt(Fn&& cb) {
820
- auto callback = native_immediates_interrupts_.CreateCallback(
821
- std::move(cb), CallbackFlags::kRefed);
822
- {
823
- Mutex::ScopedLock lock(native_immediates_threadsafe_mutex_);
824
- native_immediates_interrupts_.Push(std::move(callback));
825
- if (task_queues_async_initialized_)
826
- uv_async_send(&task_queues_async_);
827
- }
828
- RequestInterruptFromV8();
829
- }
830
-
831
- inline bool Environment::can_call_into_js() const {
832
- return can_call_into_js_ && !is_stopping();
833
- }
834
-
835
- inline void Environment::set_can_call_into_js(bool can_call_into_js) {
836
- can_call_into_js_ = can_call_into_js;
837
- }
838
-
839
- inline bool Environment::has_run_bootstrapping_code() const {
840
- return has_run_bootstrapping_code_;
841
- }
842
-
843
- inline void Environment::DoneBootstrapping() {
844
- has_run_bootstrapping_code_ = true;
845
- // This adjusts the return value of base_object_created_after_bootstrap() so
846
- // that tests that check the count do not have to account for internally
847
- // created BaseObjects.
848
- base_object_created_by_bootstrap_ = base_object_count_;
849
- }
850
-
851
- inline bool Environment::has_serialized_options() const {
852
- return has_serialized_options_;
853
- }
854
-
855
- inline void Environment::set_has_serialized_options(bool value) {
856
- has_serialized_options_ = value;
857
- }
858
-
859
- inline bool Environment::is_main_thread() const {
860
- return worker_context() == nullptr;
861
- }
862
-
863
- inline bool Environment::no_native_addons() const {
864
- return (flags_ & EnvironmentFlags::kNoNativeAddons) ||
865
- !options_->allow_native_addons;
866
- }
867
-
868
- inline bool Environment::should_not_register_esm_loader() const {
869
- return flags_ & EnvironmentFlags::kNoRegisterESMLoader;
870
- }
871
-
872
- inline bool Environment::owns_process_state() const {
873
- return flags_ & EnvironmentFlags::kOwnsProcessState;
874
- }
875
-
876
- inline bool Environment::owns_inspector() const {
877
- return flags_ & EnvironmentFlags::kOwnsInspector;
878
- }
879
-
880
- inline bool Environment::should_create_inspector() const {
881
- return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0;
882
- }
883
-
884
- inline bool Environment::tracks_unmanaged_fds() const {
885
- return flags_ & EnvironmentFlags::kTrackUnmanagedFds;
886
- }
887
-
888
- inline bool Environment::hide_console_windows() const {
889
- return flags_ & EnvironmentFlags::kHideConsoleWindows;
890
- }
891
-
892
- inline bool Environment::no_global_search_paths() const {
893
- return (flags_ & EnvironmentFlags::kNoGlobalSearchPaths) ||
894
- !options_->global_search_paths;
895
- }
896
-
897
- inline bool Environment::no_browser_globals() const {
898
- // configure --no-browser-globals
899
- #ifdef NODE_NO_BROWSER_GLOBALS
900
- return true;
901
- #else
902
- return flags_ & EnvironmentFlags::kNoBrowserGlobals;
903
- #endif
904
- }
905
-
906
- bool Environment::filehandle_close_warning() const {
907
- return emit_filehandle_warning_;
908
- }
909
-
910
- void Environment::set_filehandle_close_warning(bool on) {
911
- emit_filehandle_warning_ = on;
912
- }
913
-
914
- void Environment::set_source_maps_enabled(bool on) {
915
- source_maps_enabled_ = on;
916
- }
917
-
918
- bool Environment::source_maps_enabled() const {
919
- return source_maps_enabled_;
920
- }
921
-
922
- inline uint64_t Environment::thread_id() const {
923
- return thread_id_;
924
- }
925
-
926
- inline worker::Worker* Environment::worker_context() const {
927
- return isolate_data()->worker_context();
928
- }
929
-
930
- inline void Environment::add_sub_worker_context(worker::Worker* context) {
931
- sub_worker_contexts_.insert(context);
932
- }
933
-
934
- inline void Environment::remove_sub_worker_context(worker::Worker* context) {
935
- sub_worker_contexts_.erase(context);
936
- }
937
-
938
- template <typename Fn>
939
- inline void Environment::ForEachWorker(Fn&& iterator) {
940
- for (worker::Worker* w : sub_worker_contexts_) iterator(w);
941
- }
942
-
943
- inline void Environment::add_refs(int64_t diff) {
944
- task_queues_async_refs_ += diff;
945
- CHECK_GE(task_queues_async_refs_, 0);
946
- if (task_queues_async_refs_ == 0)
947
- uv_unref(reinterpret_cast<uv_handle_t*>(&task_queues_async_));
948
- else
949
- uv_ref(reinterpret_cast<uv_handle_t*>(&task_queues_async_));
950
- }
951
-
952
- inline bool Environment::is_stopping() const {
953
- return is_stopping_.load();
954
- }
955
-
956
- inline void Environment::set_stopping(bool value) {
957
- is_stopping_.store(value);
958
- }
959
-
960
- inline std::list<node_module>* Environment::extra_linked_bindings() {
961
- return &extra_linked_bindings_;
962
- }
963
-
964
- inline node_module* Environment::extra_linked_bindings_head() {
965
- return extra_linked_bindings_.size() > 0 ?
966
- &extra_linked_bindings_.front() : nullptr;
967
- }
968
-
969
- inline node_module* Environment::extra_linked_bindings_tail() {
970
- return extra_linked_bindings_.size() > 0 ?
971
- &extra_linked_bindings_.back() : nullptr;
972
- }
973
-
974
- inline const Mutex& Environment::extra_linked_bindings_mutex() const {
975
- return extra_linked_bindings_mutex_;
976
- }
977
-
978
- inline performance::PerformanceState* Environment::performance_state() {
979
- return performance_state_.get();
980
- }
981
-
982
- inline IsolateData* Environment::isolate_data() const {
983
- return isolate_data_;
984
- }
985
-
986
- inline uv_buf_t Environment::allocate_managed_buffer(
987
- const size_t suggested_size) {
988
- NoArrayBufferZeroFillScope no_zero_fill_scope(isolate_data());
989
- std::unique_ptr<v8::BackingStore> bs =
990
- v8::ArrayBuffer::NewBackingStore(isolate(), suggested_size);
991
- uv_buf_t buf = uv_buf_init(static_cast<char*>(bs->Data()), bs->ByteLength());
992
- released_allocated_buffers_.emplace(buf.base, std::move(bs));
993
- return buf;
994
- }
995
-
996
- inline std::unique_ptr<v8::BackingStore> Environment::release_managed_buffer(
997
- const uv_buf_t& buf) {
998
- std::unique_ptr<v8::BackingStore> bs;
999
- if (buf.base != nullptr) {
1000
- auto it = released_allocated_buffers_.find(buf.base);
1001
- CHECK_NE(it, released_allocated_buffers_.end());
1002
- bs = std::move(it->second);
1003
- released_allocated_buffers_.erase(it);
1004
- }
1005
- return bs;
1006
- }
1007
-
1008
- inline void Environment::ThrowError(const char* errmsg) {
1009
- ThrowError(v8::Exception::Error, errmsg);
1010
- }
1011
-
1012
- inline void Environment::ThrowTypeError(const char* errmsg) {
1013
- ThrowError(v8::Exception::TypeError, errmsg);
1014
- }
1015
-
1016
- inline void Environment::ThrowRangeError(const char* errmsg) {
1017
- ThrowError(v8::Exception::RangeError, errmsg);
1018
- }
1019
-
1020
- inline void Environment::ThrowError(
1021
- v8::Local<v8::Value> (*fun)(v8::Local<v8::String>),
1022
- const char* errmsg) {
1023
- v8::HandleScope handle_scope(isolate());
1024
- isolate()->ThrowException(fun(OneByteString(isolate(), errmsg)));
1025
- }
1026
-
1027
- inline void Environment::ThrowErrnoException(int errorno,
1028
- const char* syscall,
1029
- const char* message,
1030
- const char* path) {
1031
- isolate()->ThrowException(
1032
- ErrnoException(isolate(), errorno, syscall, message, path));
1033
- }
1034
-
1035
- inline void Environment::ThrowUVException(int errorno,
1036
- const char* syscall,
1037
- const char* message,
1038
- const char* path,
1039
- const char* dest) {
1040
- isolate()->ThrowException(
1041
- UVException(isolate(), errorno, syscall, message, path, dest));
1042
- }
1043
-
1044
- inline v8::Local<v8::FunctionTemplate> Environment::NewFunctionTemplate(
1045
- v8::FunctionCallback callback,
1046
- v8::Local<v8::Signature> signature,
1047
- v8::ConstructorBehavior behavior,
1048
- v8::SideEffectType side_effect_type,
1049
- const v8::CFunction* c_function) {
1050
- return v8::FunctionTemplate::New(isolate(),
1051
- callback,
1052
- v8::Local<v8::Value>(),
1053
- signature,
1054
- 0,
1055
- behavior,
1056
- side_effect_type,
1057
- c_function);
1058
- }
1059
-
1060
- inline void Environment::SetMethod(v8::Local<v8::Object> that,
1061
- const char* name,
1062
- v8::FunctionCallback callback) {
1063
- v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1064
- v8::Local<v8::Function> function =
1065
- NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1066
- v8::ConstructorBehavior::kThrow,
1067
- v8::SideEffectType::kHasSideEffect)
1068
- ->GetFunction(context)
1069
- .ToLocalChecked();
1070
- // kInternalized strings are created in the old space.
1071
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1072
- v8::Local<v8::String> name_string =
1073
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1074
- that->Set(context, name_string, function).Check();
1075
- function->SetName(name_string); // NODE_SET_METHOD() compatibility.
1076
- }
1077
-
1078
- inline void Environment::SetFastMethod(v8::Local<v8::Object> that,
1079
- const char* name,
1080
- v8::FunctionCallback slow_callback,
1081
- const v8::CFunction* c_function) {
1082
- v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1083
- v8::Local<v8::Function> function =
1084
- NewFunctionTemplate(slow_callback,
1085
- v8::Local<v8::Signature>(),
1086
- v8::ConstructorBehavior::kThrow,
1087
- v8::SideEffectType::kHasNoSideEffect,
1088
- c_function)
1089
- ->GetFunction(context)
1090
- .ToLocalChecked();
1091
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1092
- v8::Local<v8::String> name_string =
1093
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1094
- that->Set(context, name_string, function).Check();
1095
- }
1096
-
1097
- inline void Environment::SetMethodNoSideEffect(v8::Local<v8::Object> that,
1098
- const char* name,
1099
- v8::FunctionCallback callback) {
1100
- v8::Local<v8::Context> context = isolate()->GetCurrentContext();
1101
- v8::Local<v8::Function> function =
1102
- NewFunctionTemplate(callback, v8::Local<v8::Signature>(),
1103
- v8::ConstructorBehavior::kThrow,
1104
- v8::SideEffectType::kHasNoSideEffect)
1105
- ->GetFunction(context)
1106
- .ToLocalChecked();
1107
- // kInternalized strings are created in the old space.
1108
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1109
- v8::Local<v8::String> name_string =
1110
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1111
- that->Set(context, name_string, function).Check();
1112
- function->SetName(name_string); // NODE_SET_METHOD() compatibility.
1113
- }
1114
-
1115
- inline void Environment::SetProtoMethod(v8::Local<v8::FunctionTemplate> that,
1116
- const char* name,
1117
- v8::FunctionCallback callback) {
1118
- v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1119
- v8::Local<v8::FunctionTemplate> t =
1120
- NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1121
- v8::SideEffectType::kHasSideEffect);
1122
- // kInternalized strings are created in the old space.
1123
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1124
- v8::Local<v8::String> name_string =
1125
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1126
- that->PrototypeTemplate()->Set(name_string, t);
1127
- t->SetClassName(name_string); // NODE_SET_PROTOTYPE_METHOD() compatibility.
1128
- }
1129
-
1130
- inline void Environment::SetProtoMethodNoSideEffect(
1131
- v8::Local<v8::FunctionTemplate> that,
1132
- const char* name,
1133
- v8::FunctionCallback callback) {
1134
- v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1135
- v8::Local<v8::FunctionTemplate> t =
1136
- NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1137
- v8::SideEffectType::kHasNoSideEffect);
1138
- // kInternalized strings are created in the old space.
1139
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1140
- v8::Local<v8::String> name_string =
1141
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1142
- that->PrototypeTemplate()->Set(name_string, t);
1143
- t->SetClassName(name_string); // NODE_SET_PROTOTYPE_METHOD() compatibility.
1144
- }
1145
-
1146
- inline void Environment::SetInstanceMethod(v8::Local<v8::FunctionTemplate> that,
1147
- const char* name,
1148
- v8::FunctionCallback callback) {
1149
- v8::Local<v8::Signature> signature = v8::Signature::New(isolate(), that);
1150
- v8::Local<v8::FunctionTemplate> t =
1151
- NewFunctionTemplate(callback, signature, v8::ConstructorBehavior::kThrow,
1152
- v8::SideEffectType::kHasSideEffect);
1153
- // kInternalized strings are created in the old space.
1154
- const v8::NewStringType type = v8::NewStringType::kInternalized;
1155
- v8::Local<v8::String> name_string =
1156
- v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();
1157
- that->InstanceTemplate()->Set(name_string, t);
1158
- t->SetClassName(name_string);
1159
- }
1160
-
1161
- inline void Environment::SetConstructorFunction(
1162
- v8::Local<v8::Object> that,
1163
- const char* name,
1164
- v8::Local<v8::FunctionTemplate> tmpl,
1165
- SetConstructorFunctionFlag flag) {
1166
- SetConstructorFunction(that, OneByteString(isolate(), name), tmpl, flag);
1167
- }
1168
-
1169
- inline void Environment::SetConstructorFunction(
1170
- v8::Local<v8::Object> that,
1171
- v8::Local<v8::String> name,
1172
- v8::Local<v8::FunctionTemplate> tmpl,
1173
- SetConstructorFunctionFlag flag) {
1174
- if (LIKELY(flag == SetConstructorFunctionFlag::SET_CLASS_NAME))
1175
- tmpl->SetClassName(name);
1176
- that->Set(
1177
- context(),
1178
- name,
1179
- tmpl->GetFunction(context()).ToLocalChecked()).Check();
1180
- }
1181
-
1182
- void Environment::AddCleanupHook(CleanupCallback fn, void* arg) {
1183
- auto insertion_info = cleanup_hooks_.emplace(CleanupHookCallback {
1184
- fn, arg, cleanup_hook_counter_++
1185
- });
1186
- // Make sure there was no existing element with these values.
1187
- CHECK_EQ(insertion_info.second, true);
1188
- }
1189
-
1190
- void Environment::RemoveCleanupHook(CleanupCallback fn, void* arg) {
1191
- CleanupHookCallback search { fn, arg, 0 };
1192
- cleanup_hooks_.erase(search);
1193
- }
1194
-
1195
- size_t CleanupHookCallback::Hash::operator()(
1196
- const CleanupHookCallback& cb) const {
1197
- return std::hash<void*>()(cb.arg_);
1198
- }
1199
-
1200
- bool CleanupHookCallback::Equal::operator()(
1201
- const CleanupHookCallback& a, const CleanupHookCallback& b) const {
1202
- return a.fn_ == b.fn_ && a.arg_ == b.arg_;
1203
- }
1204
-
1205
- BaseObject* CleanupHookCallback::GetBaseObject() const {
1206
- if (fn_ == BaseObject::DeleteMe)
1207
- return static_cast<BaseObject*>(arg_);
1208
- else
1209
- return nullptr;
1210
- }
1211
-
1212
- template <typename T>
1213
- void Environment::ForEachBaseObject(T&& iterator) {
1214
- for (const auto& hook : cleanup_hooks_) {
1215
- BaseObject* obj = hook.GetBaseObject();
1216
- if (obj != nullptr)
1217
- iterator(obj);
1218
- }
1219
- }
1220
-
1221
- template <typename T>
1222
- void Environment::ForEachBindingData(T&& iterator) {
1223
- BindingDataStore* map = static_cast<BindingDataStore*>(
1224
- context()->GetAlignedPointerFromEmbedderData(
1225
- ContextEmbedderIndex::kBindingListIndex));
1226
- DCHECK_NOT_NULL(map);
1227
- for (auto& it : *map) {
1228
- iterator(it.first, it.second);
1229
- }
1230
- }
1231
-
1232
- void Environment::modify_base_object_count(int64_t delta) {
1233
- base_object_count_ += delta;
1234
- }
1235
-
1236
- int64_t Environment::base_object_created_after_bootstrap() const {
1237
- return base_object_count_ - base_object_created_by_bootstrap_;
1238
- }
1239
-
1240
- int64_t Environment::base_object_count() const {
1241
- return base_object_count_;
1242
- }
1243
-
1244
- void Environment::set_main_utf16(std::unique_ptr<v8::String::Value> str) {
1245
- CHECK(!main_utf16_);
1246
- main_utf16_ = std::move(str);
1247
- }
1248
-
1249
- void Environment::set_process_exit_handler(
1250
- std::function<void(Environment*, int)>&& handler) {
1251
- process_exit_handler_ = std::move(handler);
1252
- }
1253
-
1254
- #define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
1255
- #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
1256
- #define VS(PropertyName, StringValue) V(v8::String, PropertyName)
1257
- #define V(TypeName, PropertyName) \
1258
- inline \
1259
- v8::Local<TypeName> IsolateData::PropertyName() const { \
1260
- return PropertyName ## _ .Get(isolate_); \
1261
- }
1262
- PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1263
- PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1264
- PER_ISOLATE_STRING_PROPERTIES(VS)
1265
- #undef V
1266
- #undef VS
1267
- #undef VY
1268
- #undef VP
1269
-
1270
- #define VP(PropertyName, StringValue) V(v8::Private, PropertyName)
1271
- #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName)
1272
- #define VS(PropertyName, StringValue) V(v8::String, PropertyName)
1273
- #define V(TypeName, PropertyName) \
1274
- inline v8::Local<TypeName> Environment::PropertyName() const { \
1275
- return isolate_data()->PropertyName(); \
1276
- }
1277
- PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(VP)
1278
- PER_ISOLATE_SYMBOL_PROPERTIES(VY)
1279
- PER_ISOLATE_STRING_PROPERTIES(VS)
1280
- #undef V
1281
- #undef VS
1282
- #undef VY
1283
- #undef VP
1284
-
1285
- #define V(PropertyName, TypeName) \
1286
- inline v8::Local<TypeName> Environment::PropertyName() const { \
1287
- return PersistentToLocal::Strong(PropertyName ## _); \
1288
- } \
1289
- inline void Environment::set_ ## PropertyName(v8::Local<TypeName> value) { \
1290
- PropertyName ## _.Reset(isolate(), value); \
1291
- }
1292
- ENVIRONMENT_STRONG_PERSISTENT_TEMPLATES(V)
1293
- ENVIRONMENT_STRONG_PERSISTENT_VALUES(V)
1294
- #undef V
1295
-
1296
- v8::Local<v8::Context> Environment::context() const {
1297
- return PersistentToLocal::Strong(context_);
1298
- }
1299
-
1300
- } // namespace node
1301
-
1302
- // These two files depend on each other. Including base_object-inl.h after this
1303
- // file is the easiest way to avoid issues with that circular dependency.
1304
- #include "base_object-inl.h"
1305
-
1306
- #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
1307
-
1308
- #endif // SRC_ENV_INL_H_