Skip to content

Commit 49d74c6

Browse files
jasonginMylesBorins
authored andcommittedApr 16, 2018
n-api: Sync with back-compat changes
Background: To enable N-API support for node versions back to v4, the N-API code can also be built as an external addon. To make maintenance easier, a single codebase needs to support both built-in and external scenarios, along with Node versions >= 4 (and corresponding V8 versions). This change includes several minor fixes to avoid using node internal APIs and support older V8 versions: - Expand node::arraysize - In the CHECK_ENV() macro, return an error code instead of calling node::FatalError(). This is more consistent with how other invalid arguments to N-API functions are handled. - In v8impl::SetterCallbackWrapper::SetReturnValue(), do nothing instead of calling node::FatalError(). This is more consistent with JavaScript setter callbacks, where any returned value is silently ignored. - When queueing async work items, get the uv default loop instead of getting the loop from node::Environment::GetCurrent(). Currently that returns the same loop anyway. If/when node supports multiple environments, it should have a public API for getting the environment & event loop, and we can update this implementation then. - Use v8::Maybe::FromJust() instead of the newer alias ToChecked() Backport-PR-URL: #19447 PR-URL: #12674 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent bc25250 commit 49d74c6

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed
 

‎src/node_api.cc

+16-12
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
#include <node_object_wrap.h>
1313
#include <string.h>
1414
#include <algorithm>
15+
#include <cassert>
1516
#include <cmath>
1617
#include <vector>
18+
#include "uv.h"
1719
#include "node_api.h"
1820
#include "env-inl.h"
1921
#include "node_api_backport.h"
@@ -45,9 +47,9 @@ struct napi_env__ {
4547
} \
4648
} while (0)
4749

48-
#define CHECK_ENV(env) \
49-
if ((env) == nullptr) { \
50-
node::FatalError(__func__, "environment(env) must not be null"); \
50+
#define CHECK_ENV(env) \
51+
if ((env) == nullptr) { \
52+
return napi_invalid_arg; \
5153
}
5254

5355
#define CHECK_ARG(env, arg) \
@@ -581,8 +583,7 @@ class SetterCallbackWrapper
581583

582584
/*virtual*/
583585
void SetReturnValue(napi_value value) override {
584-
node::FatalError("napi_set_return_value",
585-
"Cannot return a value from a setter callback.");
586+
// Ignore any value returned from a setter callback.
586587
}
587588

588589
private:
@@ -745,7 +746,8 @@ napi_status napi_get_last_error_info(napi_env env,
745746
CHECK_ENV(env);
746747
CHECK_ARG(env, result);
747748

748-
static_assert(node::arraysize(error_messages) == napi_status_last,
749+
static_assert(
750+
(sizeof (error_messages) / sizeof (*error_messages)) == napi_status_last,
749751
"Count of error messages must match count of error values");
750752
assert(env->last_error.error_code < napi_status_last);
751753

@@ -1697,7 +1699,7 @@ napi_status napi_get_value_int32(napi_env env,
16971699

16981700
v8::Isolate* isolate = env->isolate;
16991701
v8::Local<v8::Context> context = isolate->GetCurrentContext();
1700-
*result = val->Int32Value(context).ToChecked();
1702+
*result = val->Int32Value(context).FromJust();
17011703

17021704
return napi_clear_last_error(env);
17031705
}
@@ -1716,7 +1718,7 @@ napi_status napi_get_value_uint32(napi_env env,
17161718

17171719
v8::Isolate* isolate = env->isolate;
17181720
v8::Local<v8::Context> context = isolate->GetCurrentContext();
1719-
*result = val->Uint32Value(context).ToChecked();
1721+
*result = val->Uint32Value(context).FromJust();
17201722

17211723
return napi_clear_last_error(env);
17221724
}
@@ -1741,7 +1743,7 @@ napi_status napi_get_value_int64(napi_env env,
17411743
} else {
17421744
v8::Isolate* isolate = env->isolate;
17431745
v8::Local<v8::Context> context = isolate->GetCurrentContext();
1744-
*result = val->IntegerValue(context).ToChecked();
1746+
*result = val->IntegerValue(context).FromJust();
17451747
}
17461748

17471749
return napi_clear_last_error(env);
@@ -2822,9 +2824,11 @@ napi_status napi_queue_async_work(napi_env env, napi_async_work work) {
28222824
CHECK_ENV(env);
28232825
CHECK_ARG(env, work);
28242826

2825-
// Consider: Encapsulate the uv_loop_t into an opaque pointer parameter
2826-
uv_loop_t* event_loop =
2827-
node::Environment::GetCurrent(env->isolate)->event_loop();
2827+
// Consider: Encapsulate the uv_loop_t into an opaque pointer parameter.
2828+
// Currently the environment event loop is the same as the UV default loop.
2829+
// Someday (if node ever supports multiple isolates), it may be better to get
2830+
// the loop from node::Environment::GetCurrent(env->isolate)->event_loop();
2831+
uv_loop_t* event_loop = uv_default_loop();
28282832

28292833
uvimpl::Work* w = reinterpret_cast<uvimpl::Work*>(work);
28302834

0 commit comments

Comments
 (0)
Please sign in to comment.