Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
137 lines (111 loc) · 4.04 KB

File metadata and controls

137 lines (111 loc) · 4.04 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2018 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
// ref: https://nodejs.org/api/addons.html#addons_factory_of_wrapped_objects
class InnerObject : public ObjectWrap {
public:
static NAN_MODULE_INIT(Init) {
v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New);
tpl->InstanceTemplate()->SetInternalFieldCount(1);
SetPrototypeMethod(tpl, "getValue", GetValue);
constructor().Reset(GetFunction(tpl).ToLocalChecked());
}
static
v8::Local<v8::Object> NewInstance(int argc, v8::Local<v8::Value> argv[]) {
v8::Local<v8::Function> cons = Nan::New(constructor());
return Nan::NewInstance(cons, argc, argv).ToLocalChecked();
}
private:
explicit InnerObject(double value = 0) : value_(value) {}
~InnerObject() {}
static NAN_METHOD(New) {
if (info.IsConstructCall()) {
double value = info[0]->IsNumber() ? To<double>(info[0]).FromJust() : 0;
InnerObject * obj = new InnerObject(value);
obj->Wrap(info.This());
info.GetReturnValue().Set(info.This());
} else {
const int argc = 1;
v8::Local<v8::Value> argv[argc] = {info[0]};
v8::Local<v8::Function> cons = Nan::New(constructor());
info.GetReturnValue().Set(
Nan::NewInstance(cons, argc, argv).ToLocalChecked());
}
}
static NAN_METHOD(GetValue) {
InnerObject* obj = ObjectWrap::Unwrap<InnerObject>(info.Holder());
info.GetReturnValue().Set(obj->value_);
}
static inline Persistent<v8::Function> & constructor() {
static Persistent<v8::Function> my_constructor;
return my_constructor;
}
double value_;
};
class MyObject : public ObjectWrap {
public:
static NAN_MODULE_INIT(Init) {
v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New);
tpl->InstanceTemplate()->SetInternalFieldCount(1);
SetPrototypeMethod(tpl, "getValue", GetValue);
SetPrototypeMethod(tpl, "newInnerObject", NewInnerObject);
constructor().Reset(GetFunction(tpl).ToLocalChecked());
}
static NAN_METHOD(NewInstance) {
v8::Local<v8::Function> cons = Nan::New(constructor());
double value = info[0]->IsNumber() ? To<double>(info[0]).FromJust() : 0;
const int argc = 1;
v8::Local<v8::Value> argv[1] = {Nan::New(value)};
info.GetReturnValue().Set(
Nan::NewInstance(cons, argc, argv).ToLocalChecked());
}
private:
explicit MyObject(double value = 0) : value_(value) {}
~MyObject() {}
static NAN_METHOD(New) {
if (info.IsConstructCall()) {
double value = info[0]->IsNumber() ? To<double>(info[0]).FromJust() : 0;
MyObject * obj = new MyObject(value);
obj->Wrap(info.This());
info.GetReturnValue().Set(info.This());
} else {
const int argc = 1;
v8::Local<v8::Value> argv[argc] = {info[0]};
v8::Local<v8::Function> cons = Nan::New(constructor());
info.GetReturnValue().Set(
Nan::NewInstance(cons, argc, argv).ToLocalChecked());
}
}
static NAN_METHOD(GetValue) {
MyObject* obj = ObjectWrap::Unwrap<MyObject>(info.Holder());
info.GetReturnValue().Set(obj->value_);
}
static NAN_METHOD(NewInnerObject) {
const int argc = 1;
v8::Local<v8::Value> argv[argc] = {info[0]};
info.GetReturnValue().Set(InnerObject::NewInstance(argc, argv));
}
static inline Persistent<v8::Function> & constructor() {
static Persistent<v8::Function> my_constructor;
return my_constructor;
}
double value_;
};
NAN_MODULE_INIT(Init) {
Nan::HandleScope scope;
InnerObject::Init(target);
MyObject::Init(target);
v8::Local<v8::FunctionTemplate> tpl =
New<v8::FunctionTemplate>(MyObject::NewInstance);
Set(target
, New<v8::String>("newFactoryObjectInstance").ToLocalChecked()
, GetFunction(tpl).ToLocalChecked()
);
}
NODE_MODULE(wrappedobjectfactory, Init)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.