Skip to content

Commit 3c84db6

Browse files
Gabriel SchulhofMylesBorins
Gabriel Schulhof
authored andcommittedApr 16, 2018
n-api: unexpose symbols and remove EXTERNAL_NAPI
* namespaced functions such as v8impl::JsHandleScopeFromV8HandleScope become part of Node's public symbols unless they are declared static. * the class uvimpl::Work needs to be enclosed in an anonymous namespace else it, too becomes part of Node's public symbols. * remove references to EXTERNAL_NAPI. Backport-PR-URL: #19447 PR-URL: #16234 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent 55aab6b commit 3c84db6

File tree

1 file changed

+37
-24
lines changed

1 file changed

+37
-24
lines changed
 

‎src/node_api.cc

+37-24
Original file line numberDiff line numberDiff line change
@@ -208,19 +208,23 @@ class EscapableHandleScopeWrapper {
208208
bool escape_called_;
209209
};
210210

211+
static
211212
napi_handle_scope JsHandleScopeFromV8HandleScope(HandleScopeWrapper* s) {
212213
return reinterpret_cast<napi_handle_scope>(s);
213214
}
214215

216+
static
215217
HandleScopeWrapper* V8HandleScopeFromJsHandleScope(napi_handle_scope s) {
216218
return reinterpret_cast<HandleScopeWrapper*>(s);
217219
}
218220

221+
static
219222
napi_escapable_handle_scope JsEscapableHandleScopeFromV8EscapableHandleScope(
220223
EscapableHandleScopeWrapper* s) {
221224
return reinterpret_cast<napi_escapable_handle_scope>(s);
222225
}
223226

227+
static
224228
EscapableHandleScopeWrapper*
225229
V8EscapableHandleScopeFromJsEscapableHandleScope(
226230
napi_escapable_handle_scope s) {
@@ -234,18 +238,22 @@ V8EscapableHandleScopeFromJsEscapableHandleScope(
234238
static_assert(sizeof(v8::Local<v8::Value>) == sizeof(napi_value),
235239
"Cannot convert between v8::Local<v8::Value> and napi_value");
236240

241+
static
237242
napi_deferred JsDeferredFromV8Persistent(v8::Persistent<v8::Value>* local) {
238243
return reinterpret_cast<napi_deferred>(local);
239244
}
240245

246+
static
241247
v8::Persistent<v8::Value>* V8PersistentFromJsDeferred(napi_deferred local) {
242248
return reinterpret_cast<v8::Persistent<v8::Value>*>(local);
243249
}
244250

251+
static
245252
napi_value JsValueFromV8LocalValue(v8::Local<v8::Value> local) {
246253
return reinterpret_cast<napi_value>(*local);
247254
}
248255

256+
static
249257
v8::Local<v8::Value> V8LocalValueFromJsValue(napi_value v) {
250258
v8::Local<v8::Value> local;
251259
memcpy(&local, &v, sizeof(v));
@@ -648,6 +656,7 @@ class SetterCallbackWrapper
648656

649657
// Creates an object to be made available to the static function callback
650658
// wrapper, used to retrieve the native callback function and data pointer.
659+
static
651660
v8::Local<v8::Object> CreateFunctionCallbackData(napi_env env,
652661
napi_callback cb,
653662
void* data) {
@@ -673,6 +682,7 @@ v8::Local<v8::Object> CreateFunctionCallbackData(napi_env env,
673682
// Creates an object to be made available to the static getter/setter
674683
// callback wrapper, used to retrieve the native getter/setter callback
675684
// function and data pointer.
685+
static
676686
v8::Local<v8::Object> CreateAccessorCallbackData(napi_env env,
677687
napi_callback getter,
678688
napi_callback setter,
@@ -715,6 +725,7 @@ const char napi_wrap_name[] = "N-API Wrapper";
715725
// Search the object's prototype chain for the wrapper object. Usually the
716726
// wrapper would be the first in the chain, but it is OK for other objects to
717727
// be inserted in the prototype chain.
728+
static
718729
bool FindWrapper(v8::Local<v8::Object> obj,
719730
v8::Local<v8::Object>* result = nullptr,
720731
v8::Local<v8::Object>* parent = nullptr) {
@@ -748,6 +759,7 @@ static void DeleteEnv(napi_env env, void* data, void* hint) {
748759
delete env;
749760
}
750761

762+
static
751763
napi_env GetEnv(v8::Local<v8::Context> context) {
752764
napi_env result;
753765

@@ -783,6 +795,7 @@ napi_env GetEnv(v8::Local<v8::Context> context) {
783795
return result;
784796
}
785797

798+
static
786799
napi_status Unwrap(napi_env env,
787800
napi_value js_object,
788801
void** result,
@@ -806,6 +819,7 @@ napi_status Unwrap(napi_env env,
806819
return napi_ok;
807820
}
808821

822+
static
809823
napi_status ConcludeDeferred(napi_env env,
810824
napi_deferred deferred,
811825
napi_value result,
@@ -863,12 +877,8 @@ void napi_module_register_cb(v8::Local<v8::Object> exports,
863877

864878
// Registers a NAPI module.
865879
void napi_module_register(napi_module* mod) {
866-
int module_version = -1;
867-
#ifdef EXTERNAL_NAPI
868-
module_version = NODE_MODULE_VERSION;
869-
#endif // EXTERNAL_NAPI
870880
node::node_module* nm = new node::node_module {
871-
module_version,
881+
-1,
872882
mod->nm_flags,
873883
nullptr,
874884
mod->nm_filename,
@@ -882,6 +892,7 @@ void napi_module_register(napi_module* mod) {
882892
}
883893

884894
// Warning: Keep in-sync with napi_status enum
895+
static
885896
const char* error_messages[] = {nullptr,
886897
"Invalid argument",
887898
"An object was expected",
@@ -1218,10 +1229,10 @@ napi_status napi_delete_property(napi_env env,
12181229
return GET_RETURN_STATUS(env);
12191230
}
12201231

1221-
NAPI_EXTERN napi_status napi_has_own_property(napi_env env,
1222-
napi_value object,
1223-
napi_value key,
1224-
bool* result) {
1232+
napi_status napi_has_own_property(napi_env env,
1233+
napi_value object,
1234+
napi_value key,
1235+
bool* result) {
12251236
NAPI_PREAMBLE(env);
12261237
CHECK_ARG(env, key);
12271238

@@ -3332,6 +3343,7 @@ napi_status napi_adjust_external_memory(napi_env env,
33323343
return napi_clear_last_error(env);
33333344
}
33343345

3346+
namespace {
33353347
namespace uvimpl {
33363348

33373349
static napi_status ConvertUVErrorCode(int code) {
@@ -3430,6 +3442,7 @@ class Work : public node::AsyncResource {
34303442
};
34313443

34323444
} // end of namespace uvimpl
3445+
} // end of anonymous namespace
34333446

34343447
#define CALL_UV(env, condition) \
34353448
do { \
@@ -3512,9 +3525,9 @@ napi_status napi_cancel_async_work(napi_env env, napi_async_work work) {
35123525
return napi_clear_last_error(env);
35133526
}
35143527

3515-
NAPI_EXTERN napi_status napi_create_promise(napi_env env,
3516-
napi_deferred* deferred,
3517-
napi_value* promise) {
3528+
napi_status napi_create_promise(napi_env env,
3529+
napi_deferred* deferred,
3530+
napi_value* promise) {
35183531
NAPI_PREAMBLE(env);
35193532
CHECK_ARG(env, deferred);
35203533
CHECK_ARG(env, promise);
@@ -3531,21 +3544,21 @@ NAPI_EXTERN napi_status napi_create_promise(napi_env env,
35313544
return GET_RETURN_STATUS(env);
35323545
}
35333546

3534-
NAPI_EXTERN napi_status napi_resolve_deferred(napi_env env,
3535-
napi_deferred deferred,
3536-
napi_value resolution) {
3547+
napi_status napi_resolve_deferred(napi_env env,
3548+
napi_deferred deferred,
3549+
napi_value resolution) {
35373550
return v8impl::ConcludeDeferred(env, deferred, resolution, true);
35383551
}
35393552

3540-
NAPI_EXTERN napi_status napi_reject_deferred(napi_env env,
3541-
napi_deferred deferred,
3542-
napi_value resolution) {
3553+
napi_status napi_reject_deferred(napi_env env,
3554+
napi_deferred deferred,
3555+
napi_value resolution) {
35433556
return v8impl::ConcludeDeferred(env, deferred, resolution, false);
35443557
}
35453558

3546-
NAPI_EXTERN napi_status napi_is_promise(napi_env env,
3547-
napi_value promise,
3548-
bool* is_promise) {
3559+
napi_status napi_is_promise(napi_env env,
3560+
napi_value promise,
3561+
bool* is_promise) {
35493562
CHECK_ENV(env);
35503563
CHECK_ARG(env, promise);
35513564
CHECK_ARG(env, is_promise);
@@ -3555,9 +3568,9 @@ NAPI_EXTERN napi_status napi_is_promise(napi_env env,
35553568
return napi_clear_last_error(env);
35563569
}
35573570

3558-
NAPI_EXTERN napi_status napi_run_script(napi_env env,
3559-
napi_value script,
3560-
napi_value* result) {
3571+
napi_status napi_run_script(napi_env env,
3572+
napi_value script,
3573+
napi_value* result) {
35613574
NAPI_PREAMBLE(env);
35623575
CHECK_ARG(env, script);
35633576
CHECK_ARG(env, result);

0 commit comments

Comments
 (0)
Please sign in to comment.