-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a wrapper class to support the following N-APIs. - napi_open_callback_scope() - napi_close_callback_scope() Refs: https://nodejs.org/api/n-api.html#n_api_napi_open_callback_scope
- Loading branch information
Showing
8 changed files
with
118 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#include "napi.h" | ||
|
||
using namespace Napi; | ||
|
||
namespace { | ||
|
||
static void RunInCallbackScope(const CallbackInfo& info) { | ||
Function callback = info[0].As<Function>(); | ||
AsyncContext context(info.Env(), "callback_scope_test"); | ||
CallbackScope scope(info.Env(), context); | ||
callback.Call({}); | ||
} | ||
|
||
} // end anonymous namespace | ||
|
||
Object InitCallbackScope(Env env) { | ||
Object exports = Object::New(env); | ||
exports["runInCallbackScope"] = Function::New(env, RunInCallbackScope); | ||
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,48 @@ | ||
'use strict'; | ||
const buildType = process.config.target_defaults.default_configuration; | ||
const assert = require('assert'); | ||
const common = require('./common'); | ||
|
||
// we only check async hooks on 8.x an higher were | ||
// they are closer to working properly | ||
const nodeVersion = process.versions.node.split('.')[0] | ||
let async_hooks = undefined; | ||
function checkAsyncHooks() { | ||
if (nodeVersion >= 8) { | ||
if (async_hooks == undefined) { | ||
async_hooks = require('async_hooks'); | ||
} | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
test(require(`./build/${buildType}/binding.node`)); | ||
test(require(`./build/${buildType}/binding_noexcept.node`)); | ||
|
||
function test(binding) { | ||
if (!checkAsyncHooks()) | ||
return; | ||
|
||
let id; | ||
let insideHook = false; | ||
async_hooks.createHook({ | ||
init(asyncId, type, triggerAsyncId, resource) { | ||
if (id === undefined && type === 'callback_scope_test') { | ||
id = asyncId; | ||
} | ||
}, | ||
before(asyncId) { | ||
if (asyncId === id) | ||
insideHook = true; | ||
}, | ||
after(asyncId) { | ||
if (asyncId === id) | ||
insideHook = false; | ||
} | ||
}).enable(); | ||
|
||
binding.callbackscope.runInCallbackScope(function() { | ||
assert(insideHook); | ||
}); | ||
} |
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