-
-
Notifications
You must be signed in to change notification settings - Fork 498
Implement CallbackScope class #362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.