-
Notifications
You must be signed in to change notification settings - Fork 513
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
N-API support? #836
Comments
Yes, it would surely be possible to support the napi subset of features. See #831 (comment). Unfortunately, I do not have time to do it myself, but overall it should be a fairly simple, if laborious task. |
FWIW I've started working on an approach where I write a V8 shim which uses the node-addon-api wrapper and inline functions to transform code that would normally link to V8 into code that makes N-API calls. I'm working my way through the node-addon-examples to complete the shim. https://github.com/gabrielschulhof/node-addon-api/tree/napi-nan/shim |
Well, I'm running into a serious snag with my shim. In order to keep from having to heap-allocate my definition of class
|
The other way of looking at it is that |
Can you not solve it by first declaring the offending classes and then then defining their methods? |
class FunctionTemplate {
public:
FunctionTemplate(Isolate* isolate,
FunctionCallback v8_method,
Local<Value> data,
Local<Signature> signature);
inline void SetClassName(Local<String> class_name_) {
class_name = class_name_;
}
inline MaybeLocal<Function> GetFunction(Local<Context> context) {
napi_status status;
napi_value result;
V8FunctionCallbackData* callbackData =
new V8FunctionCallbackData(v8_method);
Isolate* isolate = context->GetIsolate();
napi_env local_env = (isolate ? isolate->Env() : env);
status = napi_define_class(local_env,
nullptr,
0,
NapiFunctionCallback,
callbackData,
0,
nullptr,
&result);
NAPI_THROW_IF_FAILED(local_env, status, Local<Function>(Napi::Function()));
status = Napi::details::AttachData(env, result, callbackData);
NAPI_THROW_IF_FAILED(local_env, status, Local<Function>(Napi::Function()));
return MaybeLocal<Function>(Local<Function>(Napi::Function(local_env, result)));
}
inline Local<ObjectTemplate> InstanceTemplate() {
return Local<ObjectTemplate>(this);
}
inline Local<Function> GetFunction() {
return GetFunction(Local<Context>(nullptr)).ToLocalChecked();
}
static Local<FunctionTemplate> New(Isolate* isolate,
FunctionCallback v8_method,
Local<Value> data,
Local<Signature> signature);
private:
napi_env env;
FunctionCallback v8_method;
Local<String> class_name;
Local<Value> data;
Local<Signature> signature;
};
class Signature {
public:
Signature() {}
static Local<Signature> New(Isolate* isolate,
Local<FunctionTemplate> receiver);
};
inline FunctionTemplate::FunctionTemplate(Isolate* isolate,
FunctionCallback v8_method,
Local<Value> data,
Local<Signature> signature) :
env(isolate->Env()),
v8_method(v8_method),
data(data),
signature(signature) { }
inline Local<FunctionTemplate> FunctionTemplate::New(Isolate* isolate,
FunctionCallback v8_method,
Local<Value> data = Local<Value>(),
Local<Signature> signature = Local<Signature>()) {
return Local<FunctionTemplate>(isolate, v8_method, data, signature);
}
inline Local<Signature> Signature::New(Isolate* isolate,
Local<FunctionTemplate> receiver) {
return Local<Signature>();
} |
@kkoopa yes, thank you! |
Another potentially fundamental problem: Since the whole This means that in Debug mode the addon tends to crash horribly even though it works in Release mode. The only solution I've found is to enclose the |
A potential solution on gcc is |
Some questions comes in my mind in this: V8 API changes frequently so which version of V8 API have you planned to shim here? |
@Flarna NAN only targets the parts of V8 that break. You can still use a plain |
Also, Nan can call the V8 shim. |
Would it be feasible to target N-API for it's subset of features on node versions 8+?
I've been using NAN for years but with node 6 hitting it's EOL next year it's becoming more interesting to explore N-Api. It covers most of the use cases that I have and would help keep my projects working with out having to upgrade for new node versions.
However if NAN supported it I wouldn't have to do a major rewrite.
Are there thoughts around this?
The text was updated successfully, but these errors were encountered: