| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6a88c6a commit 9600928
16 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6245,6 +6245,13 @@ napi_create_threadsafe_function(napi_env env, | |||
| 6245 | 6245 | [`napi_threadsafe_function_call_js`][] provides more details. | |
| 6246 | 6246 | * `[out] result`: The asynchronous thread-safe JavaScript function. | |
| 6247 | 6247 | ||
| 6248 | + **Change History:** | ||
| 6249 | + | ||
| 6250 | + * Experimental (`NAPI_EXPERIMENTAL` is defined): | ||
| 6251 | + | ||
| 6252 | + Uncaught exceptions thrown in `call_js_cb` are handled with the | ||
| 6253 | + [`'uncaughtException'`][] event, instead of being ignored. | ||
| 6254 | + | ||
| 6248 | 6255 | ### `napi_get_threadsafe_function_context` | |
| 6249 | 6256 | ||
| 6250 | 6257 | <!-- YAML | |
@@ -6475,6 +6482,7 @@ the add-on's file name during loading. | |||
| 6475 | 6482 | [Visual Studio]: https://visualstudio.microsoft.com | |
| 6476 | 6483 | [Working with JavaScript properties]: #working-with-javascript-properties | |
| 6477 | 6484 | [Xcode]: https://developer.apple.com/xcode/ | |
| 6485 | + [`'uncaughtException'`]: process.md#event-uncaughtexception | ||
| 6478 | 6486 | [`Number.MAX_SAFE_INTEGER`]: https://tc39.github.io/ecma262/#sec-number.max_safe_integer | |
| 6479 | 6487 | [`Number.MIN_SAFE_INTEGER`]: https://tc39.github.io/ecma262/#sec-number.min_safe_integer | |
| 6480 | 6488 | [`Worker`]: worker_threads.md#class-worker | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -82,9 +82,8 @@ void node_napi_env__::trigger_fatal_exception(v8::Local<v8::Value> local_err) { | |||
| 82 | 82 | node::errors::TriggerUncaughtException(isolate, local_err, local_msg); | |
| 83 | 83 | } | |
| 84 | 84 | ||
| 85 | - // option enforceUncaughtExceptionPolicy is added for not breaking existing | ||
| 86 | - // running n-api add-ons, and should be deprecated in the next major Node.js | ||
| 87 | - // release. | ||
| 85 | + // The option enforceUncaughtExceptionPolicy is added for not breaking existing | ||
| 86 | + // running Node-API add-ons. | ||
| 88 | 87 | template <bool enforceUncaughtExceptionPolicy, typename T> | |
| 89 | 88 | void node_napi_env__::CallbackIntoModule(T&& call) { | |
| 90 | 89 | CallIntoModule(call, [](napi_env env_, v8::Local<v8::Value> local_err) { | |
@@ -93,19 +92,24 @@ void node_napi_env__::CallbackIntoModule(T&& call) { | |||
| 93 | 92 | return; | |
| 94 | 93 | } | |
| 95 | 94 | node::Environment* node_env = env->node_env(); | |
| 96 | - if (!node_env->options()->force_node_api_uncaught_exceptions_policy && | ||
| 95 | + // If the module api version is less than NAPI_VERSION_EXPERIMENTAL, | ||
| 96 | + // and the option --force-node-api-uncaught-exceptions-policy is not | ||
| 97 | + // specified, emit a warning about the uncaught exception instead of | ||
| 98 | + // triggering uncaught exception event. | ||
| 99 | + if (env->module_api_version < NAPI_VERSION_EXPERIMENTAL && | ||
| 100 | + !node_env->options()->force_node_api_uncaught_exceptions_policy && | ||
| 97 | 101 | !enforceUncaughtExceptionPolicy) { | |
| 98 | 102 | ProcessEmitDeprecationWarning( | |
| 99 | 103 | node_env, | |
| 100 | 104 | "Uncaught N-API callback exception detected, please run node " | |
| 101 | - "with option --force-node-api-uncaught-exceptions-policy=true" | ||
| 105 | + "with option --force-node-api-uncaught-exceptions-policy=true " | ||
| 102 | 106 | "to handle those exceptions properly.", | |
| 103 | 107 | "DEP0168"); | |
| 104 | 108 | return; | |
| 105 | 109 | } | |
| 106 | 110 | // If there was an unhandled exception in the complete callback, | |
| 107 | 111 | // report it as a fatal exception. (There is no JavaScript on the | |
| 108 | - // callstack that can possibly handle it.) | ||
| 112 | + // call stack that can possibly handle it.) | ||
| 109 | 113 | env->trigger_fatal_exception(local_err); | |
| 110 | 114 | }); | |
| 111 | 115 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,6 +5,12 @@ | |||
| 5 | 5 | "sources": [ | |
| 6 | 6 | "test_reference.c" | |
| 7 | 7 | ] | |
| 8 | + }, | ||
| 9 | + { | ||
| 10 | + "target_name": "test_finalizer", | ||
| 11 | + "sources": [ | ||
| 12 | + "test_finalizer.c" | ||
| 13 | + ] | ||
| 8 | 14 | } | |
| 9 | 15 | ] | |
| 10 | 16 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,71 @@ | |||
| 1 | + #include <assert.h> | ||
| 2 | + #include <js_native_api.h> | ||
| 3 | + #include <stdlib.h> | ||
| 4 | + #include "../common.h" | ||
| 5 | + #include "../entry_point.h" | ||
| 6 | + | ||
| 7 | + static int test_value = 1; | ||
| 8 | + static int finalize_count = 0; | ||
| 9 | + | ||
| 10 | + static void FinalizeExternalCallJs(napi_env env, void* data, void* hint) { | ||
| 11 | + int* actual_value = data; | ||
| 12 | + NODE_API_ASSERT_RETURN_VOID( | ||
| 13 | + env, | ||
| 14 | + actual_value == &test_value, | ||
| 15 | + "The correct pointer was passed to the finalizer"); | ||
| 16 | + | ||
| 17 | + napi_ref finalizer_ref = (napi_ref)hint; | ||
| 18 | + napi_value js_finalizer; | ||
| 19 | + napi_value recv; | ||
| 20 | + NODE_API_CALL_RETURN_VOID( | ||
| 21 | + env, napi_get_reference_value(env, finalizer_ref, &js_finalizer)); | ||
| 22 | + NODE_API_CALL_RETURN_VOID(env, napi_get_global(env, &recv)); | ||
| 23 | + NODE_API_CALL_RETURN_VOID( | ||
| 24 | + env, napi_call_function(env, recv, js_finalizer, 0, NULL, NULL)); | ||
| 25 | + NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, finalizer_ref)); | ||
| 26 | + } | ||
| 27 | + | ||
| 28 | + static napi_value CreateExternalWithJsFinalize(napi_env env, | ||
| 29 | + napi_callback_info info) { | ||
| 30 | + size_t argc = 1; | ||
| 31 | + napi_value args[1]; | ||
| 32 | + NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
| 33 | + NODE_API_ASSERT(env, argc == 1, "Wrong number of arguments"); | ||
| 34 | + napi_value finalizer = args[0]; | ||
| 35 | + napi_valuetype finalizer_valuetype; | ||
| 36 | + NODE_API_CALL(env, napi_typeof(env, finalizer, &finalizer_valuetype)); | ||
| 37 | + NODE_API_ASSERT(env, | ||
| 38 | + finalizer_valuetype == napi_function, | ||
| 39 | + "Wrong type of first argument"); | ||
| 40 | + napi_ref finalizer_ref; | ||
| 41 | + NODE_API_CALL(env, napi_create_reference(env, finalizer, 1, &finalizer_ref)); | ||
| 42 | + | ||
| 43 | + napi_value result; | ||
| 44 | + NODE_API_CALL(env, | ||
| 45 | + napi_create_external(env, | ||
| 46 | + &test_value, | ||
| 47 | + FinalizeExternalCallJs, | ||
| 48 | + finalizer_ref, /* finalize_hint */ | ||
| 49 | + &result)); | ||
| 50 | + | ||
| 51 | + finalize_count = 0; | ||
| 52 | + return result; | ||
| 53 | + } | ||
| 54 | + | ||
| 55 | + EXTERN_C_START | ||
| 56 | + napi_value Init(napi_env env, napi_value exports) { | ||
| 57 | + napi_property_descriptor descriptors[] = { | ||
| 58 | + DECLARE_NODE_API_PROPERTY("createExternalWithJsFinalize", | ||
| 59 | + CreateExternalWithJsFinalize), | ||
| 60 | + }; | ||
| 61 | + | ||
| 62 | + NODE_API_CALL( | ||
| 63 | + env, | ||
| 64 | + napi_define_properties(env, | ||
| 65 | + exports, | ||
| 66 | + sizeof(descriptors) / sizeof(*descriptors), | ||
| 67 | + descriptors)); | ||
| 68 | + | ||
| 69 | + return exports; | ||
| 70 | + } | ||
| 71 | + EXTERN_C_END | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | // Flags: --expose-gc --force-node-api-uncaught-exceptions-policy | |
| 3 | 3 | ||
| 4 | 4 | const common = require('../../common'); | |
| 5 | - const test_reference = require(`./build/${common.buildType}/test_reference`); | ||
| 5 | + const binding = require(`./build/${common.buildType}/test_finalizer`); | ||
| 6 | 6 | const assert = require('assert'); | |
| 7 | 7 | ||
| 8 | 8 | process.on('uncaughtException', common.mustCall((err) => { | |
@@ -11,7 +11,7 @@ process.on('uncaughtException', common.mustCall((err) => { | |||
| 11 | 11 | ||
| 12 | 12 | (async function() { | |
| 13 | 13 | { | |
| 14 | - test_reference.createExternalWithJsFinalize( | ||
| 14 | + binding.createExternalWithJsFinalize( | ||
| 15 | 15 | common.mustCall(() => { | |
| 16 | 16 | throw new Error('finalizer error'); | |
| 17 | 17 | })); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,20 +22,6 @@ static void FinalizeExternal(napi_env env, void* data, void* hint) { | |||
| 22 | 22 | finalize_count++; | |
| 23 | 23 | } | |
| 24 | 24 | ||
| 25 | - static void FinalizeExternalCallJs(napi_env env, void* data, void* hint) { | ||
| 26 | - int *actual_value = data; | ||
| 27 | - NODE_API_ASSERT_RETURN_VOID(env, actual_value == &test_value, | ||
| 28 | - "The correct pointer was passed to the finalizer"); | ||
| 29 | - | ||
| 30 | - napi_ref finalizer_ref = (napi_ref)hint; | ||
| 31 | - napi_value js_finalizer; | ||
| 32 | - napi_value recv; | ||
| 33 | - NODE_API_CALL_RETURN_VOID(env, napi_get_reference_value(env, finalizer_ref, &js_finalizer)); | ||
| 34 | - NODE_API_CALL_RETURN_VOID(env, napi_get_global(env, &recv)); | ||
| 35 | - NODE_API_CALL_RETURN_VOID(env, napi_call_function(env, recv, js_finalizer, 0, NULL, NULL)); | ||
| 36 | - NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, finalizer_ref)); | ||
| 37 | - } | ||
| 38 | - | ||
| 39 | 25 | static napi_value CreateExternal(napi_env env, napi_callback_info info) { | |
| 40 | 26 | int* data = &test_value; | |
| 41 | 27 | ||
@@ -118,31 +104,6 @@ CreateExternalWithFinalize(napi_env env, napi_callback_info info) { | |||
| 118 | 104 | return result; | |
| 119 | 105 | } | |
| 120 | 106 | ||
| 121 | - static napi_value | ||
| 122 | - CreateExternalWithJsFinalize(napi_env env, napi_callback_info info) { | ||
| 123 | - size_t argc = 1; | ||
| 124 | - napi_value args[1]; | ||
| 125 | - NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
| 126 | - NODE_API_ASSERT(env, argc == 1, "Wrong number of arguments"); | ||
| 127 | - napi_value finalizer = args[0]; | ||
| 128 | - napi_valuetype finalizer_valuetype; | ||
| 129 | - NODE_API_CALL(env, napi_typeof(env, finalizer, &finalizer_valuetype)); | ||
| 130 | - NODE_API_ASSERT(env, finalizer_valuetype == napi_function, "Wrong type of first argument"); | ||
| 131 | - napi_ref finalizer_ref; | ||
| 132 | - NODE_API_CALL(env, napi_create_reference(env, finalizer, 1, &finalizer_ref)); | ||
| 133 | - | ||
| 134 | - napi_value result; | ||
| 135 | - NODE_API_CALL(env, | ||
| 136 | - napi_create_external(env, | ||
| 137 | - &test_value, | ||
| 138 | - FinalizeExternalCallJs, | ||
| 139 | - finalizer_ref, /* finalize_hint */ | ||
| 140 | - &result)); | ||
| 141 | - | ||
| 142 | - finalize_count = 0; | ||
| 143 | - return result; | ||
| 144 | - } | ||
| 145 | - | ||
| 146 | 107 | static napi_value CheckExternal(napi_env env, napi_callback_info info) { | |
| 147 | 108 | size_t argc = 1; | |
| 148 | 109 | napi_value arg; | |
@@ -263,24 +224,24 @@ static napi_value ValidateDeleteBeforeFinalize(napi_env env, napi_callback_info | |||
| 263 | 224 | EXTERN_C_START | |
| 264 | 225 | napi_value Init(napi_env env, napi_value exports) { | |
| 265 | 226 | napi_property_descriptor descriptors[] = { | |
| 266 | - DECLARE_NODE_API_GETTER("finalizeCount", GetFinalizeCount), | ||
| 267 | - DECLARE_NODE_API_PROPERTY("createExternal", CreateExternal), | ||
| 268 | - DECLARE_NODE_API_PROPERTY("createExternalWithFinalize", | ||
| 269 | - CreateExternalWithFinalize), | ||
| 270 | - DECLARE_NODE_API_PROPERTY("createExternalWithJsFinalize", | ||
| 271 | - CreateExternalWithJsFinalize), | ||
| 272 | - DECLARE_NODE_API_PROPERTY("checkExternal", CheckExternal), | ||
| 273 | - DECLARE_NODE_API_PROPERTY("createReference", CreateReference), | ||
| 274 | - DECLARE_NODE_API_PROPERTY("createSymbol", CreateSymbol), | ||
| 275 | - DECLARE_NODE_API_PROPERTY("createSymbolFor", CreateSymbolFor), | ||
| 276 | - DECLARE_NODE_API_PROPERTY("createSymbolForEmptyString", CreateSymbolForEmptyString), | ||
| 277 | - DECLARE_NODE_API_PROPERTY("createSymbolForIncorrectLength", CreateSymbolForIncorrectLength), | ||
| 278 | - DECLARE_NODE_API_PROPERTY("deleteReference", DeleteReference), | ||
| 279 | - DECLARE_NODE_API_PROPERTY("incrementRefcount", IncrementRefcount), | ||
| 280 | - DECLARE_NODE_API_PROPERTY("decrementRefcount", DecrementRefcount), | ||
| 281 | - DECLARE_NODE_API_GETTER("referenceValue", GetReferenceValue), | ||
| 282 | - DECLARE_NODE_API_PROPERTY("validateDeleteBeforeFinalize", | ||
| 283 | - ValidateDeleteBeforeFinalize), | ||
| 227 | + DECLARE_NODE_API_GETTER("finalizeCount", GetFinalizeCount), | ||
| 228 | + DECLARE_NODE_API_PROPERTY("createExternal", CreateExternal), | ||
| 229 | + DECLARE_NODE_API_PROPERTY("createExternalWithFinalize", | ||
| 230 | + CreateExternalWithFinalize), | ||
| 231 | + DECLARE_NODE_API_PROPERTY("checkExternal", CheckExternal), | ||
| 232 | + DECLARE_NODE_API_PROPERTY("createReference", CreateReference), | ||
| 233 | + DECLARE_NODE_API_PROPERTY("createSymbol", CreateSymbol), | ||
| 234 | + DECLARE_NODE_API_PROPERTY("createSymbolFor", CreateSymbolFor), | ||
| 235 | + DECLARE_NODE_API_PROPERTY("createSymbolForEmptyString", | ||
| 236 | + CreateSymbolForEmptyString), | ||
| 237 | + DECLARE_NODE_API_PROPERTY("createSymbolForIncorrectLength", | ||
| 238 | + CreateSymbolForIncorrectLength), | ||
| 239 | + DECLARE_NODE_API_PROPERTY("deleteReference", DeleteReference), | ||
| 240 | + DECLARE_NODE_API_PROPERTY("incrementRefcount", IncrementRefcount), | ||
| 241 | + DECLARE_NODE_API_PROPERTY("decrementRefcount", DecrementRefcount), | ||
| 242 | + DECLARE_NODE_API_GETTER("referenceValue", GetReferenceValue), | ||
| 243 | + DECLARE_NODE_API_PROPERTY("validateDeleteBeforeFinalize", | ||
| 244 | + ValidateDeleteBeforeFinalize), | ||
| 284 | 245 | }; | |
| 285 | 246 | ||
| 286 | 247 | NODE_API_CALL(env, napi_define_properties( | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,10 @@ | |||
| 3 | 3 | { | |
| 4 | 4 | "target_name": "test_buffer", | |
| 5 | 5 | "sources": [ "test_buffer.c" ] | |
| 6 | + }, | ||
| 7 | + { | ||
| 8 | + "target_name": "test_finalizer", | ||
| 9 | + "sources": [ "test_finalizer.c" ] | ||
| 6 | 10 | } | |
| 7 | 11 | ] | |
| 8 | 12 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,17 +22,6 @@ static void noopDeleter(napi_env env, void* data, void* finalize_hint) { | |||
| 22 | 22 | deleterCallCount++; | |
| 23 | 23 | } | |
| 24 | 24 | ||
| 25 | - static void malignDeleter(napi_env env, void* data, void* finalize_hint) { | ||
| 26 | - NODE_API_ASSERT_RETURN_VOID(env, data != NULL && strcmp(data, theText) == 0, "invalid data"); | ||
| 27 | - napi_ref finalizer_ref = (napi_ref)finalize_hint; | ||
| 28 | - napi_value js_finalizer; | ||
| 29 | - napi_value recv; | ||
| 30 | - NODE_API_CALL_RETURN_VOID(env, napi_get_reference_value(env, finalizer_ref, &js_finalizer)); | ||
| 31 | - NODE_API_CALL_RETURN_VOID(env, napi_get_global(env, &recv)); | ||
| 32 | - NODE_API_CALL_RETURN_VOID(env, napi_call_function(env, recv, js_finalizer, 0, NULL, NULL)); | ||
| 33 | - NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, finalizer_ref)); | ||
| 34 | - } | ||
| 35 | - | ||
| 36 | 25 | static napi_value newBuffer(napi_env env, napi_callback_info info) { | |
| 37 | 26 | napi_value theBuffer; | |
| 38 | 27 | char* theCopy; | |
@@ -118,30 +107,6 @@ static napi_value staticBuffer(napi_env env, napi_callback_info info) { | |||
| 118 | 107 | return theBuffer; | |
| 119 | 108 | } | |
| 120 | 109 | ||
| 121 | - static napi_value malignFinalizerBuffer(napi_env env, napi_callback_info info) { | ||
| 122 | - size_t argc = 1; | ||
| 123 | - napi_value args[1]; | ||
| 124 | - NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
| 125 | - NODE_API_ASSERT(env, argc == 1, "Wrong number of arguments"); | ||
| 126 | - napi_value finalizer = args[0]; | ||
| 127 | - napi_valuetype finalizer_valuetype; | ||
| 128 | - NODE_API_CALL(env, napi_typeof(env, finalizer, &finalizer_valuetype)); | ||
| 129 | - NODE_API_ASSERT(env, finalizer_valuetype == napi_function, "Wrong type of first argument"); | ||
| 130 | - napi_ref finalizer_ref; | ||
| 131 | - NODE_API_CALL(env, napi_create_reference(env, finalizer, 1, &finalizer_ref)); | ||
| 132 | - | ||
| 133 | - napi_value theBuffer; | ||
| 134 | - NODE_API_CALL( | ||
| 135 | - env, | ||
| 136 | - napi_create_external_buffer(env, | ||
| 137 | - sizeof(theText), | ||
| 138 | - (void*)theText, | ||
| 139 | - malignDeleter, | ||
| 140 | - finalizer_ref, // finalize_hint | ||
| 141 | - &theBuffer)); | ||
| 142 | - return theBuffer; | ||
| 143 | - } | ||
| 144 | - | ||
| 145 | 110 | static napi_value Init(napi_env env, napi_value exports) { | |
| 146 | 111 | napi_value theValue; | |
| 147 | 112 | ||
@@ -151,14 +116,13 @@ static napi_value Init(napi_env env, napi_value exports) { | |||
| 151 | 116 | napi_set_named_property(env, exports, "theText", theValue)); | |
| 152 | 117 | ||
| 153 | 118 | napi_property_descriptor methods[] = { | |
| 154 | - DECLARE_NODE_API_PROPERTY("newBuffer", newBuffer), | ||
| 155 | - DECLARE_NODE_API_PROPERTY("newExternalBuffer", newExternalBuffer), | ||
| 156 | - DECLARE_NODE_API_PROPERTY("getDeleterCallCount", getDeleterCallCount), | ||
| 157 | - DECLARE_NODE_API_PROPERTY("copyBuffer", copyBuffer), | ||
| 158 | - DECLARE_NODE_API_PROPERTY("bufferHasInstance", bufferHasInstance), | ||
| 159 | - DECLARE_NODE_API_PROPERTY("bufferInfo", bufferInfo), | ||
| 160 | - DECLARE_NODE_API_PROPERTY("staticBuffer", staticBuffer), | ||
| 161 | - DECLARE_NODE_API_PROPERTY("malignFinalizerBuffer", malignFinalizerBuffer), | ||
| 119 | + DECLARE_NODE_API_PROPERTY("newBuffer", newBuffer), | ||
| 120 | + DECLARE_NODE_API_PROPERTY("newExternalBuffer", newExternalBuffer), | ||
| 121 | + DECLARE_NODE_API_PROPERTY("getDeleterCallCount", getDeleterCallCount), | ||
| 122 | + DECLARE_NODE_API_PROPERTY("copyBuffer", copyBuffer), | ||
| 123 | + DECLARE_NODE_API_PROPERTY("bufferHasInstance", bufferHasInstance), | ||
| 124 | + DECLARE_NODE_API_PROPERTY("bufferInfo", bufferInfo), | ||
| 125 | + DECLARE_NODE_API_PROPERTY("staticBuffer", staticBuffer), | ||
| 162 | 126 | }; | |
| 163 | 127 | ||
| 164 | 128 | NODE_API_CALL(env, napi_define_properties( | |
| Back | FazBrowse Home | New Git URL |
0 commit comments