-
Notifications
You must be signed in to change notification settings - Fork 461
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 PR-URL: #362 Refs: https://nodejs.org/api/n-api.html#n_api_napi_open_callback_scope Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Nicola Del Gobbo <[email protected]>
- Loading branch information
Showing
9 changed files
with
172 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# CallbackScope | ||
|
||
There are cases (for example, resolving promises) where it is necessary to have | ||
the equivalent of the scope associated with a callback in place when making | ||
certain N-API calls. | ||
|
||
## Methods | ||
|
||
### Constructor | ||
|
||
Creates a new callback scope on the stack. | ||
|
||
```cpp | ||
Napi::CallbackScope::CallbackScope(napi_env env, napi_callback_scope scope); | ||
``` | ||
- `[in] env`: The environment in which to create the `Napi::CallbackScope`. | ||
- `[in] scope`: The pre-existing `napi_callback_scope` or `Napi::CallbackScope`. | ||
### Constructor | ||
Creates a new callback scope on the stack. | ||
```cpp | ||
Napi::CallbackScope::CallbackScope(napi_env env, napi_async_context context); | ||
``` | ||
|
||
- `[in] env`: The environment in which to create the `Napi::CallbackScope`. | ||
- `[in] async_context`: The pre-existing `napi_async_context` or `Napi::AsyncContext`. | ||
|
||
### Destructor | ||
|
||
Deletes the instance of `Napi::CallbackScope` object. | ||
|
||
```cpp | ||
virtual Napi::CallbackScope::~CallbackScope(); | ||
``` | ||
|
||
### Env | ||
|
||
```cpp | ||
Napi::Env Napi::CallbackScope::Env() const; | ||
``` | ||
|
||
Returns the `Napi::Env` associated with the `Napi::CallbackScope`. | ||
|
||
## Operator | ||
|
||
```cpp | ||
Napi::CallbackScope::operator napi_callback_scope() const; | ||
``` | ||
|
||
Returns the N-API `napi_callback_scope` wrapped by the `Napi::CallbackScope` | ||
object. This can be used to mix usage of the C N-API and node-addon-api. |
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