src: reduce code duplication
Adds `AsyncWrap::AddWrapMethods()` to add common methods to a `Local<FunctionTemplate>`. Follows same pattern as stream base. PR-URL: https://github.com/nodejs/node/pull/14937 Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
parent
771a03dfe3
commit
5e7c69716e
@ -468,6 +468,13 @@ void AsyncWrap::QueueDestroyId(const FunctionCallbackInfo<Value>& args) {
|
|||||||
PushBackDestroyId(Environment::GetCurrent(args), args[0]->NumberValue());
|
PushBackDestroyId(Environment::GetCurrent(args), args[0]->NumberValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AsyncWrap::AddWrapMethods(Environment* env,
|
||||||
|
Local<FunctionTemplate> constructor,
|
||||||
|
int flag) {
|
||||||
|
env->SetProtoMethod(constructor, "getAsyncId", AsyncWrap::GetAsyncId);
|
||||||
|
if (flag & kFlagHasReset)
|
||||||
|
env->SetProtoMethod(constructor, "asyncReset", AsyncWrap::AsyncReset);
|
||||||
|
}
|
||||||
|
|
||||||
void AsyncWrap::Initialize(Local<Object> target,
|
void AsyncWrap::Initialize(Local<Object> target,
|
||||||
Local<Value> unused,
|
Local<Value> unused,
|
||||||
|
@ -87,6 +87,11 @@ class AsyncWrap : public BaseObject {
|
|||||||
PROVIDERS_LENGTH,
|
PROVIDERS_LENGTH,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum Flags {
|
||||||
|
kFlagNone = 0x0,
|
||||||
|
kFlagHasReset = 0x1
|
||||||
|
};
|
||||||
|
|
||||||
AsyncWrap(Environment* env,
|
AsyncWrap(Environment* env,
|
||||||
v8::Local<v8::Object> object,
|
v8::Local<v8::Object> object,
|
||||||
ProviderType provider,
|
ProviderType provider,
|
||||||
@ -94,6 +99,10 @@ class AsyncWrap : public BaseObject {
|
|||||||
|
|
||||||
virtual ~AsyncWrap();
|
virtual ~AsyncWrap();
|
||||||
|
|
||||||
|
static void AddWrapMethods(Environment* env,
|
||||||
|
v8::Local<v8::FunctionTemplate> constructor,
|
||||||
|
int flags = kFlagNone);
|
||||||
|
|
||||||
static void Initialize(v8::Local<v8::Object> target,
|
static void Initialize(v8::Local<v8::Object> target,
|
||||||
v8::Local<v8::Value> unused,
|
v8::Local<v8::Value> unused,
|
||||||
v8::Local<v8::Context> context);
|
v8::Local<v8::Context> context);
|
||||||
|
@ -2189,7 +2189,7 @@ void Initialize(Local<Object> target,
|
|||||||
Local<FunctionTemplate> aiw =
|
Local<FunctionTemplate> aiw =
|
||||||
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
||||||
aiw->InstanceTemplate()->SetInternalFieldCount(1);
|
aiw->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(aiw, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, aiw);
|
||||||
Local<String> addrInfoWrapString =
|
Local<String> addrInfoWrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "GetAddrInfoReqWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "GetAddrInfoReqWrap");
|
||||||
aiw->SetClassName(addrInfoWrapString);
|
aiw->SetClassName(addrInfoWrapString);
|
||||||
@ -2198,7 +2198,7 @@ void Initialize(Local<Object> target,
|
|||||||
Local<FunctionTemplate> niw =
|
Local<FunctionTemplate> niw =
|
||||||
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
||||||
niw->InstanceTemplate()->SetInternalFieldCount(1);
|
niw->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(niw, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, niw);
|
||||||
Local<String> nameInfoWrapString =
|
Local<String> nameInfoWrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "GetNameInfoReqWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "GetNameInfoReqWrap");
|
||||||
niw->SetClassName(nameInfoWrapString);
|
niw->SetClassName(nameInfoWrapString);
|
||||||
@ -2207,7 +2207,7 @@ void Initialize(Local<Object> target,
|
|||||||
Local<FunctionTemplate> qrw =
|
Local<FunctionTemplate> qrw =
|
||||||
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
FunctionTemplate::New(env->isolate(), is_construct_call_callback);
|
||||||
qrw->InstanceTemplate()->SetInternalFieldCount(1);
|
qrw->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(qrw, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, qrw);
|
||||||
Local<String> queryWrapString =
|
Local<String> queryWrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "QueryReqWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "QueryReqWrap");
|
||||||
qrw->SetClassName(queryWrapString);
|
qrw->SetClassName(queryWrapString);
|
||||||
@ -2216,7 +2216,7 @@ void Initialize(Local<Object> target,
|
|||||||
Local<FunctionTemplate> channel_wrap =
|
Local<FunctionTemplate> channel_wrap =
|
||||||
env->NewFunctionTemplate(ChannelWrap::New);
|
env->NewFunctionTemplate(ChannelWrap::New);
|
||||||
channel_wrap->InstanceTemplate()->SetInternalFieldCount(1);
|
channel_wrap->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(channel_wrap, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, channel_wrap);
|
||||||
|
|
||||||
env->SetProtoMethod(channel_wrap, "queryAny", Query<QueryAnyWrap>);
|
env->SetProtoMethod(channel_wrap, "queryAny", Query<QueryAnyWrap>);
|
||||||
env->SetProtoMethod(channel_wrap, "queryA", Query<QueryAWrap>);
|
env->SetProtoMethod(channel_wrap, "queryA", Query<QueryAWrap>);
|
||||||
|
@ -94,7 +94,7 @@ void FSEventWrap::Initialize(Local<Object> target,
|
|||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
t->SetClassName(fsevent_string);
|
t->SetClassName(fsevent_string);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
env->SetProtoMethod(t, "start", Start);
|
env->SetProtoMethod(t, "start", Start);
|
||||||
env->SetProtoMethod(t, "close", Close);
|
env->SetProtoMethod(t, "close", Close);
|
||||||
|
|
||||||
|
@ -218,7 +218,7 @@ void JSStream::Initialize(Local<Object> target,
|
|||||||
t->SetClassName(jsStreamString);
|
t->SetClassName(jsStreamString);
|
||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "doAlloc", DoAlloc);
|
env->SetProtoMethod(t, "doAlloc", DoAlloc);
|
||||||
env->SetProtoMethod(t, "doRead", DoRead);
|
env->SetProtoMethod(t, "doRead", DoRead);
|
||||||
|
@ -2729,7 +2729,7 @@ void Connection::Initialize(Environment* env, Local<Object> target) {
|
|||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
t->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "Connection"));
|
t->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "Connection"));
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
env->SetProtoMethod(t, "encIn", Connection::EncIn);
|
env->SetProtoMethod(t, "encIn", Connection::EncIn);
|
||||||
env->SetProtoMethod(t, "clearOut", Connection::ClearOut);
|
env->SetProtoMethod(t, "clearOut", Connection::ClearOut);
|
||||||
env->SetProtoMethod(t, "clearIn", Connection::ClearIn);
|
env->SetProtoMethod(t, "clearIn", Connection::ClearIn);
|
||||||
@ -6137,14 +6137,14 @@ void InitCrypto(Local<Object> target,
|
|||||||
|
|
||||||
Local<FunctionTemplate> pb = FunctionTemplate::New(env->isolate());
|
Local<FunctionTemplate> pb = FunctionTemplate::New(env->isolate());
|
||||||
pb->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "PBKDF2"));
|
pb->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "PBKDF2"));
|
||||||
env->SetProtoMethod(pb, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, pb);
|
||||||
Local<ObjectTemplate> pbt = pb->InstanceTemplate();
|
Local<ObjectTemplate> pbt = pb->InstanceTemplate();
|
||||||
pbt->SetInternalFieldCount(1);
|
pbt->SetInternalFieldCount(1);
|
||||||
env->set_pbkdf2_constructor_template(pbt);
|
env->set_pbkdf2_constructor_template(pbt);
|
||||||
|
|
||||||
Local<FunctionTemplate> rb = FunctionTemplate::New(env->isolate());
|
Local<FunctionTemplate> rb = FunctionTemplate::New(env->isolate());
|
||||||
rb->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "RandomBytes"));
|
rb->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "RandomBytes"));
|
||||||
env->SetProtoMethod(rb, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, rb);
|
||||||
Local<ObjectTemplate> rbt = rb->InstanceTemplate();
|
Local<ObjectTemplate> rbt = rb->InstanceTemplate();
|
||||||
rbt->SetInternalFieldCount(1);
|
rbt->SetInternalFieldCount(1);
|
||||||
env->set_randombytes_constructor_template(rbt);
|
env->set_randombytes_constructor_template(rbt);
|
||||||
|
@ -1483,7 +1483,7 @@ void InitFs(Local<Object> target,
|
|||||||
Local<FunctionTemplate> fst =
|
Local<FunctionTemplate> fst =
|
||||||
FunctionTemplate::New(env->isolate(), NewFSReqWrap);
|
FunctionTemplate::New(env->isolate(), NewFSReqWrap);
|
||||||
fst->InstanceTemplate()->SetInternalFieldCount(1);
|
fst->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(fst, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, fst);
|
||||||
Local<String> wrapString =
|
Local<String> wrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "FSReqWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "FSReqWrap");
|
||||||
fst->SetClassName(wrapString);
|
fst->SetClassName(wrapString);
|
||||||
|
@ -1212,7 +1212,7 @@ void Initialize(Local<Object> target,
|
|||||||
env->NewFunctionTemplate(Http2Session::New);
|
env->NewFunctionTemplate(Http2Session::New);
|
||||||
session->SetClassName(http2SessionClassName);
|
session->SetClassName(http2SessionClassName);
|
||||||
session->InstanceTemplate()->SetInternalFieldCount(1);
|
session->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(session, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, session);
|
||||||
env->SetProtoMethod(session, "consume",
|
env->SetProtoMethod(session, "consume",
|
||||||
Http2Session::Consume);
|
Http2Session::Consume);
|
||||||
env->SetProtoMethod(session, "destroy",
|
env->SetProtoMethod(session, "destroy",
|
||||||
|
@ -794,7 +794,7 @@ void InitHttpParser(Local<Object> target,
|
|||||||
#undef V
|
#undef V
|
||||||
target->Set(FIXED_ONE_BYTE_STRING(env->isolate(), "methods"), methods);
|
target->Set(FIXED_ONE_BYTE_STRING(env->isolate(), "methods"), methods);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
env->SetProtoMethod(t, "close", Parser::Close);
|
env->SetProtoMethod(t, "close", Parser::Close);
|
||||||
env->SetProtoMethod(t, "execute", Parser::Execute);
|
env->SetProtoMethod(t, "execute", Parser::Execute);
|
||||||
env->SetProtoMethod(t, "finish", Parser::Finish);
|
env->SetProtoMethod(t, "finish", Parser::Finish);
|
||||||
|
@ -52,7 +52,7 @@ void StatWatcher::Initialize(Environment* env, Local<Object> target) {
|
|||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "StatWatcher");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "StatWatcher");
|
||||||
t->SetClassName(statWatcherString);
|
t->SetClassName(statWatcherString);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
env->SetProtoMethod(t, "start", StatWatcher::Start);
|
env->SetProtoMethod(t, "start", StatWatcher::Start);
|
||||||
env->SetProtoMethod(t, "stop", StatWatcher::Stop);
|
env->SetProtoMethod(t, "stop", StatWatcher::Stop);
|
||||||
|
|
||||||
|
@ -686,7 +686,7 @@ void InitZlib(Local<Object> target,
|
|||||||
|
|
||||||
z->InstanceTemplate()->SetInternalFieldCount(1);
|
z->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
|
|
||||||
env->SetProtoMethod(z, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, z);
|
||||||
env->SetProtoMethod(z, "write", ZCtx::Write<true>);
|
env->SetProtoMethod(z, "write", ZCtx::Write<true>);
|
||||||
env->SetProtoMethod(z, "writeSync", ZCtx::Write<false>);
|
env->SetProtoMethod(z, "writeSync", ZCtx::Write<false>);
|
||||||
env->SetProtoMethod(z, "init", ZCtx::Init);
|
env->SetProtoMethod(z, "init", ZCtx::Init);
|
||||||
|
@ -72,7 +72,7 @@ void PipeWrap::Initialize(Local<Object> target,
|
|||||||
t->SetClassName(pipeString);
|
t->SetClassName(pipeString);
|
||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
||||||
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
||||||
@ -104,7 +104,7 @@ void PipeWrap::Initialize(Local<Object> target,
|
|||||||
};
|
};
|
||||||
auto cwt = FunctionTemplate::New(env->isolate(), constructor);
|
auto cwt = FunctionTemplate::New(env->isolate(), constructor);
|
||||||
cwt->InstanceTemplate()->SetInternalFieldCount(1);
|
cwt->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(cwt, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, cwt);
|
||||||
Local<String> wrapString =
|
Local<String> wrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "PipeConnectWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "PipeConnectWrap");
|
||||||
cwt->SetClassName(wrapString);
|
cwt->SetClassName(wrapString);
|
||||||
|
@ -57,7 +57,7 @@ class ProcessWrap : public HandleWrap {
|
|||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "Process");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "Process");
|
||||||
constructor->SetClassName(processString);
|
constructor->SetClassName(processString);
|
||||||
|
|
||||||
env->SetProtoMethod(constructor, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, constructor);
|
||||||
|
|
||||||
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ class SignalWrap : public HandleWrap {
|
|||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "Signal");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "Signal");
|
||||||
constructor->SetClassName(signalString);
|
constructor->SetClassName(signalString);
|
||||||
|
|
||||||
env->SetProtoMethod(constructor, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, constructor);
|
||||||
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
||||||
env->SetProtoMethod(constructor, "ref", HandleWrap::Ref);
|
env->SetProtoMethod(constructor, "ref", HandleWrap::Ref);
|
||||||
env->SetProtoMethod(constructor, "unref", HandleWrap::Unref);
|
env->SetProtoMethod(constructor, "unref", HandleWrap::Unref);
|
||||||
|
@ -70,7 +70,7 @@ void StreamWrap::Initialize(Local<Object> target,
|
|||||||
Local<String> wrapString =
|
Local<String> wrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "ShutdownWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "ShutdownWrap");
|
||||||
sw->SetClassName(wrapString);
|
sw->SetClassName(wrapString);
|
||||||
env->SetProtoMethod(sw, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, sw);
|
||||||
target->Set(wrapString, sw->GetFunction());
|
target->Set(wrapString, sw->GetFunction());
|
||||||
|
|
||||||
Local<FunctionTemplate> ww =
|
Local<FunctionTemplate> ww =
|
||||||
@ -79,7 +79,7 @@ void StreamWrap::Initialize(Local<Object> target,
|
|||||||
Local<String> writeWrapString =
|
Local<String> writeWrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "WriteWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "WriteWrap");
|
||||||
ww->SetClassName(writeWrapString);
|
ww->SetClassName(writeWrapString);
|
||||||
env->SetProtoMethod(ww, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, ww);
|
||||||
target->Set(writeWrapString, ww->GetFunction());
|
target->Set(writeWrapString, ww->GetFunction());
|
||||||
env->set_write_wrap_constructor_function(ww->GetFunction());
|
env->set_write_wrap_constructor_function(ww->GetFunction());
|
||||||
}
|
}
|
||||||
|
@ -82,8 +82,7 @@ void TCPWrap::Initialize(Local<Object> target,
|
|||||||
t->InstanceTemplate()->Set(env->onread_string(), Null(env->isolate()));
|
t->InstanceTemplate()->Set(env->onread_string(), Null(env->isolate()));
|
||||||
t->InstanceTemplate()->Set(env->onconnection_string(), Null(env->isolate()));
|
t->InstanceTemplate()->Set(env->onconnection_string(), Null(env->isolate()));
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t, AsyncWrap::kFlagHasReset);
|
||||||
env->SetProtoMethod(t, "asyncReset", AsyncWrap::AsyncReset);
|
|
||||||
|
|
||||||
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
||||||
|
|
||||||
@ -120,7 +119,7 @@ void TCPWrap::Initialize(Local<Object> target,
|
|||||||
};
|
};
|
||||||
auto cwt = FunctionTemplate::New(env->isolate(), constructor);
|
auto cwt = FunctionTemplate::New(env->isolate(), constructor);
|
||||||
cwt->InstanceTemplate()->SetInternalFieldCount(1);
|
cwt->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(cwt, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, cwt);
|
||||||
Local<String> wrapString =
|
Local<String> wrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "TCPConnectWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "TCPConnectWrap");
|
||||||
cwt->SetClassName(wrapString);
|
cwt->SetClassName(wrapString);
|
||||||
|
@ -59,7 +59,7 @@ class TimerWrap : public HandleWrap {
|
|||||||
|
|
||||||
env->SetTemplateMethod(constructor, "now", Now);
|
env->SetTemplateMethod(constructor, "now", Now);
|
||||||
|
|
||||||
env->SetProtoMethod(constructor, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, constructor);
|
||||||
|
|
||||||
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
env->SetProtoMethod(constructor, "close", HandleWrap::Close);
|
||||||
env->SetProtoMethod(constructor, "ref", HandleWrap::Ref);
|
env->SetProtoMethod(constructor, "ref", HandleWrap::Ref);
|
||||||
|
@ -946,8 +946,7 @@ void TLSWrap::Initialize(Local<Object> target,
|
|||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
t->SetClassName(tlsWrapString);
|
t->SetClassName(tlsWrapString);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t, AsyncWrap::kFlagHasReset);
|
||||||
env->SetProtoMethod(t, "asyncReset", AsyncWrap::AsyncReset);
|
|
||||||
env->SetProtoMethod(t, "receive", Receive);
|
env->SetProtoMethod(t, "receive", Receive);
|
||||||
env->SetProtoMethod(t, "start", Start);
|
env->SetProtoMethod(t, "start", Start);
|
||||||
env->SetProtoMethod(t, "setVerifyMode", SetVerifyMode);
|
env->SetProtoMethod(t, "setVerifyMode", SetVerifyMode);
|
||||||
|
@ -56,7 +56,7 @@ void TTYWrap::Initialize(Local<Object> target,
|
|||||||
t->SetClassName(ttyString);
|
t->SetClassName(ttyString);
|
||||||
t->InstanceTemplate()->SetInternalFieldCount(1);
|
t->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
env->SetProtoMethod(t, "close", HandleWrap::Close);
|
||||||
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
||||||
|
@ -139,7 +139,7 @@ void UDPWrap::Initialize(Local<Object> target,
|
|||||||
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
env->SetProtoMethod(t, "unref", HandleWrap::Unref);
|
||||||
env->SetProtoMethod(t, "hasRef", HandleWrap::HasRef);
|
env->SetProtoMethod(t, "hasRef", HandleWrap::HasRef);
|
||||||
|
|
||||||
env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, t);
|
||||||
|
|
||||||
target->Set(udpString, t->GetFunction());
|
target->Set(udpString, t->GetFunction());
|
||||||
env->set_udp_constructor_function(t->GetFunction());
|
env->set_udp_constructor_function(t->GetFunction());
|
||||||
@ -148,7 +148,7 @@ void UDPWrap::Initialize(Local<Object> target,
|
|||||||
Local<FunctionTemplate> swt =
|
Local<FunctionTemplate> swt =
|
||||||
FunctionTemplate::New(env->isolate(), NewSendWrap);
|
FunctionTemplate::New(env->isolate(), NewSendWrap);
|
||||||
swt->InstanceTemplate()->SetInternalFieldCount(1);
|
swt->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
env->SetProtoMethod(swt, "getAsyncId", AsyncWrap::GetAsyncId);
|
AsyncWrap::AddWrapMethods(env, swt);
|
||||||
Local<String> sendWrapString =
|
Local<String> sendWrapString =
|
||||||
FIXED_ONE_BYTE_STRING(env->isolate(), "SendWrap");
|
FIXED_ONE_BYTE_STRING(env->isolate(), "SendWrap");
|
||||||
swt->SetClassName(sendWrapString);
|
swt->SetClassName(sendWrapString);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user