forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
node-api: enable uncaught exceptions policy by default
This enables the option `--force-node-api-uncaught-exceptions-policy` for a specific Node-API addon when it is compiled with `NAPI_EXPERIMENTAL` (and this would be the default behavior when `NAPI_VERSION` 10 releases). This would not break existing Node-API addons. PR-URL: nodejs#49313 Refs: nodejs#36510 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com>
- Loading branch information
1 parent
fc4abd3
commit 3f39d8c
Showing
16 changed files
with
307 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,12 @@ | |
"sources": [ | ||
"test_reference.c" | ||
] | ||
}, | ||
{ | ||
"target_name": "test_finalizer", | ||
"sources": [ | ||
"test_finalizer.c" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#include <assert.h> | ||
#include <js_native_api.h> | ||
#include <stdlib.h> | ||
#include "../common.h" | ||
#include "../entry_point.h" | ||
|
||
static int test_value = 1; | ||
static int finalize_count = 0; | ||
|
||
static void FinalizeExternalCallJs(napi_env env, void* data, void* hint) { | ||
int* actual_value = data; | ||
NODE_API_ASSERT_RETURN_VOID( | ||
env, | ||
actual_value == &test_value, | ||
"The correct pointer was passed to the finalizer"); | ||
|
||
napi_ref finalizer_ref = (napi_ref)hint; | ||
napi_value js_finalizer; | ||
napi_value recv; | ||
NODE_API_CALL_RETURN_VOID( | ||
env, napi_get_reference_value(env, finalizer_ref, &js_finalizer)); | ||
NODE_API_CALL_RETURN_VOID(env, napi_get_global(env, &recv)); | ||
NODE_API_CALL_RETURN_VOID( | ||
env, napi_call_function(env, recv, js_finalizer, 0, NULL, NULL)); | ||
NODE_API_CALL_RETURN_VOID(env, napi_delete_reference(env, finalizer_ref)); | ||
} | ||
|
||
static napi_value CreateExternalWithJsFinalize(napi_env env, | ||
napi_callback_info info) { | ||
size_t argc = 1; | ||
napi_value args[1]; | ||
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
NODE_API_ASSERT(env, argc == 1, "Wrong number of arguments"); | ||
napi_value finalizer = args[0]; | ||
napi_valuetype finalizer_valuetype; | ||
NODE_API_CALL(env, napi_typeof(env, finalizer, &finalizer_valuetype)); | ||
NODE_API_ASSERT(env, | ||
finalizer_valuetype == napi_function, | ||
"Wrong type of first argument"); | ||
napi_ref finalizer_ref; | ||
NODE_API_CALL(env, napi_create_reference(env, finalizer, 1, &finalizer_ref)); | ||
|
||
napi_value result; | ||
NODE_API_CALL(env, | ||
napi_create_external(env, | ||
&test_value, | ||
FinalizeExternalCallJs, | ||
finalizer_ref, /* finalize_hint */ | ||
&result)); | ||
|
||
finalize_count = 0; | ||
return result; | ||
} | ||
|
||
EXTERN_C_START | ||
napi_value Init(napi_env env, napi_value exports) { | ||
napi_property_descriptor descriptors[] = { | ||
DECLARE_NODE_API_PROPERTY("createExternalWithJsFinalize", | ||
CreateExternalWithJsFinalize), | ||
}; | ||
|
||
NODE_API_CALL( | ||
env, | ||
napi_define_properties(env, | ||
exports, | ||
sizeof(descriptors) / sizeof(*descriptors), | ||
descriptors)); | ||
|
||
return exports; | ||
} | ||
EXTERN_C_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.