-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
node-api: stop ref gc during environment teardown
A gc may happen during environment teardown. Thus, during finalization initiated by environment teardown we must remove the V8 finalizer before calling the Node-API finalizer. Fixes: #37236 PR-URL: #37616 Backport-PR-URL: #37802 Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
- Loading branch information
1 parent
b5b1ad3
commit 6e01855
Showing
4 changed files
with
86 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#include <stdlib.h> | ||
#include <node_api.h> | ||
#include "../../js-native-api/common.h" | ||
|
||
static void MyObject_fini(napi_env env, void* data, void* hint) { | ||
napi_ref* ref = data; | ||
napi_value global; | ||
napi_value cleanup; | ||
NAPI_CALL_RETURN_VOID(env, napi_get_global(env, &global)); | ||
NAPI_CALL_RETURN_VOID( | ||
env, napi_get_named_property(env, global, "cleanup", &cleanup)); | ||
napi_status status = napi_call_function(env, global, cleanup, 0, NULL, NULL); | ||
// We may not be allowed to call into JS, in which case a pending exception | ||
// will be returned. | ||
NAPI_ASSERT_RETURN_VOID(env, | ||
status == napi_ok || status == napi_pending_exception, | ||
"Unexpected status for napi_call_function"); | ||
NAPI_CALL_RETURN_VOID(env, napi_delete_reference(env, *ref)); | ||
free(ref); | ||
} | ||
|
||
static napi_value MyObject(napi_env env, napi_callback_info info) { | ||
napi_value js_this; | ||
napi_ref* ref = malloc(sizeof(*ref)); | ||
NAPI_CALL(env, napi_get_cb_info(env, info, NULL, NULL, &js_this, NULL)); | ||
NAPI_CALL(env, napi_wrap(env, js_this, ref, MyObject_fini, NULL, ref)); | ||
return NULL; | ||
} | ||
|
||
NAPI_MODULE_INIT() { | ||
napi_value ctor; | ||
NAPI_CALL( | ||
env, napi_define_class( | ||
env, "MyObject", NAPI_AUTO_LENGTH, MyObject, NULL, 0, NULL, &ctor)); | ||
NAPI_CALL(env, napi_set_named_property(env, exports, "MyObject", ctor)); | ||
return exports; | ||
} |
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,8 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'binding', | ||
'sources': [ 'binding.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,14 @@ | ||
'use strict'; | ||
// Flags: --expose-gc | ||
|
||
process.env.NODE_TEST_KNOWN_GLOBALS = 0; | ||
|
||
const common = require('../../common'); | ||
const binding = require(`./build/${common.buildType}/binding`); | ||
|
||
global.it = new binding.MyObject(); | ||
|
||
global.cleanup = () => { | ||
delete global.it; | ||
global.gc(); | ||
}; |