-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathmakecallback.cpp
More file actions
66 lines (51 loc) · 1.71 KB
/
makecallback.cpp
File metadata and controls
66 lines (51 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2015 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
class MyObject : public node::ObjectWrap {
public:
static void Init(v8::Local<v8::Object> target);
private:
MyObject();
~MyObject();
static NAN_METHOD(New);
static NAN_METHOD(CallEmit);
static Persistent<v8::Function> constructor;
};
Persistent<v8::Function> MyObject::constructor;
MyObject::MyObject() {
}
MyObject::~MyObject() {
}
void MyObject::Init(v8::Local<v8::Object> target) {
// Prepare constructor template
v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New);
tpl->SetClassName(Nan::New<v8::String>("MyObject").ToLocalChecked());
tpl->InstanceTemplate()->SetInternalFieldCount(1);
SetPrototypeMethod(tpl, "call_emit", CallEmit);
constructor.Reset(tpl->GetFunction());
Set(target, Nan::New("MyObject").ToLocalChecked(), tpl->GetFunction());
}
NAN_METHOD(MyObject::New) {
if (info.IsConstructCall()) {
MyObject* obj = new MyObject();
obj->Wrap(info.This());
info.GetReturnValue().Set(info.This());
} else {
v8::Local<v8::Function> cons = Nan::New<v8::Function>(constructor);
info.GetReturnValue().Set(cons->NewInstance());
}
}
NAN_METHOD(MyObject::CallEmit) {
v8::Local<v8::Value> argv[1] = {
Nan::New("event").ToLocalChecked(), // event name
};
MakeCallback(info.This(), "emit", 1, argv);
info.GetReturnValue().SetUndefined();
}
NAN_MODULE(makecallback, MyObject::Init)