forked from nodejs/node-addon-api
-
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.
src: add support for addon instance data
Support `napi_get_instance_data()` and `napi_set_instance_data()`. Fixes: nodejs#654
- Loading branch information
Gabriel Schulhof
committed
Feb 4, 2020
1 parent
a71082f
commit d0024e2
Showing
7 changed files
with
150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#include <stdio.h> | ||
#define NAPI_EXPERIMENTAL | ||
#include "napi.h" | ||
|
||
// An overly elaborate way of exposing a boolean value to JS: | ||
// 0. The native boolean is stored in an instance of the `Addon` class, which is | ||
// itself stored on the heap on the `napi_env` using the APIs under test. | ||
// 1. A property descriptor is provided on the `exports` object, for which | ||
// * The get accessor returns an instance of the `VerboseIndicator` class. | ||
// * The set accessor accepts a boolean and stores it on the `napi_env`. | ||
// 2. A persistent reference to the `VerboseIndicator` class is stored on the | ||
// `napi_env` along with the boolean. Each instance of the class has a | ||
// property served by two property descriptors: | ||
// * The get accessor returns the boolean stored on the `napi_env`. | ||
// * The set accessor accepts a boolean and stores it on the `napi_env`. | ||
|
||
class Addon { | ||
public: | ||
class VerboseIndicator : public Napi::ObjectWrap<VerboseIndicator> { | ||
public: | ||
VerboseIndicator(const Napi::CallbackInfo& info): | ||
Napi::ObjectWrap<VerboseIndicator>(info) { | ||
info.This().As<Napi::Object>()["verbose"] = | ||
Napi::Boolean::New(info.Env(), | ||
info.Env().GetInstanceData<Addon>()->verbose); | ||
} | ||
|
||
Napi::Value Getter(const Napi::CallbackInfo& info) { | ||
return Napi::Boolean::New(info.Env(), | ||
info.Env().GetInstanceData<Addon>()->verbose); | ||
} | ||
|
||
void Setter(const Napi::CallbackInfo& info, const Napi::Value& val) { | ||
info.Env().GetInstanceData<Addon>()->verbose = val.As<Napi::Boolean>(); | ||
} | ||
|
||
static Napi::FunctionReference Init(Napi::Env env) { | ||
return Napi::Persistent(DefineClass(env, "VerboseIndicator", { | ||
InstanceAccessor< | ||
&VerboseIndicator::Getter, | ||
&VerboseIndicator::Setter>("verbose") | ||
})); | ||
} | ||
}; | ||
|
||
Addon(Napi::Env env): VerboseIndicator(VerboseIndicator::Init(env)) {} | ||
|
||
~Addon() { | ||
if (verbose) { | ||
fprintf(stderr, "addon_data: Addon::~Addon\n"); | ||
} | ||
} | ||
|
||
bool verbose = false; | ||
Napi::FunctionReference VerboseIndicator; | ||
}; | ||
|
||
static Napi::Value Getter(const Napi::CallbackInfo& info) { | ||
return info.Env().GetInstanceData<Addon>()->VerboseIndicator.New({}); | ||
} | ||
|
||
static void Setter(const Napi::CallbackInfo& info) { | ||
info.Env().GetInstanceData<Addon>()->verbose = info[0].As<Napi::Boolean>(); | ||
} | ||
|
||
Napi::Object InitAddonData(Napi::Env env) { | ||
env.SetInstanceData(new Addon(env)); | ||
Napi::Object result = Napi::Object::New(env); | ||
|
||
result.DefineProperties({ | ||
Napi::PropertyDescriptor::Accessor<Getter, Setter>("verbose"), | ||
}); | ||
|
||
return result; | ||
} |
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,35 @@ | ||
'use strict'; | ||
const buildType = process.config.target_defaults.default_configuration; | ||
const assert = require('assert'); | ||
const { spawn } = require('child_process'); | ||
const readline = require('readline'); | ||
const path = require('path'); | ||
|
||
test(path.resolve(__dirname, `./build/${buildType}/binding.node`)); | ||
test(path.resolve(__dirname, `./build/${buildType}/binding_noexcept.node`)); | ||
|
||
function test(bindingName) { | ||
const binding = require(bindingName); | ||
|
||
// Make sure it is possible to get/set instance data. | ||
assert.strictEqual(binding.addon_data.verbose.verbose, false); | ||
binding.addon_data.verbose = true; | ||
assert.strictEqual(binding.addon_data.verbose.verbose, true); | ||
binding.addon_data.verbose = false; | ||
assert.strictEqual(binding.addon_data.verbose.verbose, false); | ||
|
||
// Make sure the instance data finalizer is called at process exit. | ||
const child = spawn(process.execPath, [ | ||
'-e', | ||
`require('${bindingName}').addon_data.verbose = true;` | ||
]); | ||
let foundMessage = false; | ||
readline | ||
.createInterface({ input: child.stderr }) | ||
.on('line', (line) => { | ||
if (line.match('addon_data: Addon::~Addon')) { | ||
foundMessage = true; | ||
} | ||
}) | ||
.on('close', () => assert.strictEqual(foundMessage, true)); | ||
} |
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