@contrast/agent 4.5.1 → 4.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (209) hide show
  1. package/bin/VERSION +1 -1
  2. package/bin/linux/contrast-service +0 -0
  3. package/bin/mac/contrast-service +0 -0
  4. package/bin/windows/contrast-service.exe +0 -0
  5. package/lib/assess/membrane/deserialization-membrane.js +4 -5
  6. package/lib/assess/membrane/source-membrane.js +16 -33
  7. package/lib/assess/models/call-context.js +1 -1
  8. package/lib/assess/policy/propagators.json +19 -21
  9. package/lib/assess/policy/rules.json +7 -2
  10. package/lib/assess/policy/signatures.json +42 -0
  11. package/lib/assess/policy/util.js +2 -1
  12. package/lib/assess/propagators/JSON/parse.js +1 -1
  13. package/lib/assess/propagators/JSON/stringify.js +3 -3
  14. package/lib/assess/propagators/array-prototype-join.js +7 -8
  15. package/lib/assess/propagators/common.js +7 -5
  16. package/lib/assess/propagators/dustjs/escape-html.js +22 -0
  17. package/lib/assess/propagators/dustjs/escape-js.js +22 -0
  18. package/lib/assess/propagators/encode-uri/encode-uri-component.js +22 -0
  19. package/lib/assess/propagators/encode-uri/encode-uri.js +22 -0
  20. package/lib/assess/propagators/handlebars-escape-expresssion.js +1 -1
  21. package/lib/assess/propagators/index.js +0 -2
  22. package/lib/assess/propagators/joi/boolean.js +1 -1
  23. package/lib/assess/propagators/joi/expression.js +1 -1
  24. package/lib/assess/propagators/joi/number.js +1 -1
  25. package/lib/assess/propagators/joi/string-base.js +1 -1
  26. package/lib/assess/propagators/joi/string-schema.js +12 -13
  27. package/lib/assess/propagators/joi/values.js +37 -22
  28. package/lib/assess/propagators/manager.js +12 -10
  29. package/lib/assess/propagators/mongoose/helpers.js +20 -0
  30. package/lib/assess/propagators/mongoose/index.js +18 -0
  31. package/lib/assess/propagators/mongoose/map.js +74 -0
  32. package/lib/assess/propagators/mongoose/string.js +104 -0
  33. package/lib/assess/propagators/mustache/escape.js +22 -0
  34. package/lib/assess/propagators/number.js +54 -0
  35. package/lib/assess/propagators/object.js +6 -7
  36. package/lib/assess/propagators/path/basename.js +14 -13
  37. package/lib/assess/propagators/path/common.js +156 -47
  38. package/lib/assess/propagators/path/dirname.js +14 -13
  39. package/lib/assess/propagators/path/extname.js +14 -13
  40. package/lib/assess/propagators/path/join.js +5 -1
  41. package/lib/assess/propagators/path/normalize.js +1 -2
  42. package/lib/assess/propagators/path/parse.js +1 -1
  43. package/lib/assess/propagators/path/relative.js +7 -5
  44. package/lib/assess/propagators/path/resolve.js +11 -2
  45. package/lib/assess/propagators/querystring/escape.js +20 -18
  46. package/lib/assess/propagators/querystring/parse.js +7 -5
  47. package/lib/assess/propagators/querystring/stringify.js +25 -24
  48. package/lib/assess/propagators/querystring/unescape.js +20 -18
  49. package/lib/assess/propagators/sequelize/sql-string-escape.js +1 -1
  50. package/lib/assess/propagators/sequelize/sql-string-format-named-parameters.js +1 -1
  51. package/lib/assess/propagators/sequelize/sql-string-format.js +3 -3
  52. package/lib/assess/propagators/sequelize/utils.js +2 -2
  53. package/lib/assess/propagators/string-prototype-replace.js +30 -28
  54. package/lib/assess/propagators/string-prototype-split.js +36 -36
  55. package/lib/assess/propagators/string-prototype-trim.js +15 -17
  56. package/lib/assess/propagators/string.js +12 -16
  57. package/lib/assess/propagators/template-escape.js +87 -0
  58. package/lib/assess/propagators/templates.js +10 -11
  59. package/lib/assess/propagators/url/url-prototype-parse.js +5 -6
  60. package/lib/assess/propagators/url/url-url.js +51 -43
  61. package/lib/assess/propagators/util/format.js +1 -1
  62. package/lib/assess/propagators/v8/init-hooks.js +3 -3
  63. package/lib/assess/propagators/validator/init-hooks.js +22 -22
  64. package/lib/assess/sinks/common.js +10 -5
  65. package/lib/assess/sinks/dustjs-linkedin-xss.js +131 -0
  66. package/lib/assess/sinks/libxmljs-xxe.js +1 -1
  67. package/lib/assess/sinks/mongodb.js +2 -1
  68. package/lib/assess/sinks/ssrf-url.js +1 -1
  69. package/lib/constants.js +4 -1
  70. package/lib/core/arch-components/dynamodb.js +1 -2
  71. package/lib/core/arch-components/dynamodbv3.js +44 -0
  72. package/lib/core/arch-components/index.js +1 -0
  73. package/lib/core/arch-components/rethinkdb.js +53 -0
  74. package/lib/core/config/options.js +3 -2
  75. package/lib/core/rewrite/injections.js +8 -0
  76. package/lib/core/stacktrace.js +2 -1
  77. package/lib/feature-set.js +1 -1
  78. package/lib/hooks/frameworks/base.js +8 -2
  79. package/lib/hooks/frameworks/http.js +23 -16
  80. package/lib/hooks/frameworks/http2.js +73 -0
  81. package/lib/hooks/frameworks/index.js +8 -3
  82. package/lib/hooks/http.js +112 -128
  83. package/lib/hooks/object-to-primitive.js +6 -7
  84. package/lib/hooks/patcher.js +75 -44
  85. package/lib/hooks/require.js +16 -22
  86. package/lib/instrumentation.js +0 -3
  87. package/lib/protect/rules/nosqli/nosql-injection-rule.js +228 -0
  88. package/lib/protect/rules/rule-factory.js +2 -2
  89. package/lib/protect/service.js +23 -11
  90. package/lib/protect/sinks/mongodb.js +56 -55
  91. package/lib/reporter/translations/to-protobuf/dtm/index.js +1 -1
  92. package/lib/reporter/translations/to-protobuf/dtm/ip-denylist-details.js +1 -1
  93. package/lib/reporter/translations/to-protobuf/dtm/rasp-rule-sample.js +1 -1
  94. package/lib/reporter/translations/to-protobuf/settings/defend-features.js +8 -6
  95. package/lib/reporter/translations/to-protobuf/settings/exclusions.js +5 -4
  96. package/lib/tracker.js +13 -65
  97. package/lib/util/some.js +27 -0
  98. package/lib/util/source-map.js +1 -1
  99. package/package.json +15 -16
  100. package/lib/hooks/frameworks/https.js +0 -42
  101. package/lib/protect/rules/nosqli/no-sql-injection-rule.js +0 -109
  102. package/node_modules/bindings/LICENSE.md +0 -22
  103. package/node_modules/bindings/README.md +0 -98
  104. package/node_modules/bindings/bindings.js +0 -221
  105. package/node_modules/bindings/package.json +0 -32
  106. package/node_modules/file-uri-to-path/.npmignore +0 -1
  107. package/node_modules/file-uri-to-path/.travis.yml +0 -30
  108. package/node_modules/file-uri-to-path/History.md +0 -21
  109. package/node_modules/file-uri-to-path/LICENSE +0 -20
  110. package/node_modules/file-uri-to-path/README.md +0 -74
  111. package/node_modules/file-uri-to-path/index.d.ts +0 -2
  112. package/node_modules/file-uri-to-path/index.js +0 -66
  113. package/node_modules/file-uri-to-path/package.json +0 -36
  114. package/node_modules/file-uri-to-path/test/test.js +0 -24
  115. package/node_modules/file-uri-to-path/test/tests.json +0 -13
  116. package/node_modules/glossy/LICENSE +0 -19
  117. package/node_modules/glossy/README.md +0 -129
  118. package/node_modules/glossy/index.js +0 -12
  119. package/node_modules/glossy/lib/glossy/parse.js +0 -520
  120. package/node_modules/glossy/lib/glossy/produce.js +0 -459
  121. package/node_modules/glossy/package.json +0 -47
  122. package/node_modules/glossy/test/decide.js +0 -7
  123. package/node_modules/glossy/test/decode_pri.js +0 -24
  124. package/node_modules/glossy/test/parse_3164.js +0 -104
  125. package/node_modules/glossy/test/parse_5424.js +0 -106
  126. package/node_modules/glossy/test/parse_5848.js +0 -40
  127. package/node_modules/glossy/test/parse_8601.js +0 -14
  128. package/node_modules/glossy/test/parse_rfc3339.js +0 -9
  129. package/node_modules/glossy/test/produce.js +0 -162
  130. package/node_modules/glossy/test/runner.js +0 -40
  131. package/node_modules/glossy/test/structure_data.js +0 -24
  132. package/node_modules/nan/CHANGELOG.md +0 -537
  133. package/node_modules/nan/LICENSE.md +0 -13
  134. package/node_modules/nan/README.md +0 -455
  135. package/node_modules/nan/doc/asyncworker.md +0 -146
  136. package/node_modules/nan/doc/buffers.md +0 -54
  137. package/node_modules/nan/doc/callback.md +0 -76
  138. package/node_modules/nan/doc/converters.md +0 -41
  139. package/node_modules/nan/doc/errors.md +0 -226
  140. package/node_modules/nan/doc/json.md +0 -62
  141. package/node_modules/nan/doc/maybe_types.md +0 -583
  142. package/node_modules/nan/doc/methods.md +0 -664
  143. package/node_modules/nan/doc/new.md +0 -147
  144. package/node_modules/nan/doc/node_misc.md +0 -123
  145. package/node_modules/nan/doc/object_wrappers.md +0 -263
  146. package/node_modules/nan/doc/persistent.md +0 -296
  147. package/node_modules/nan/doc/scopes.md +0 -73
  148. package/node_modules/nan/doc/script.md +0 -38
  149. package/node_modules/nan/doc/string_bytes.md +0 -62
  150. package/node_modules/nan/doc/v8_internals.md +0 -199
  151. package/node_modules/nan/doc/v8_misc.md +0 -85
  152. package/node_modules/nan/include_dirs.js +0 -1
  153. package/node_modules/nan/nan.h +0 -2898
  154. package/node_modules/nan/nan_callbacks.h +0 -88
  155. package/node_modules/nan/nan_callbacks_12_inl.h +0 -514
  156. package/node_modules/nan/nan_callbacks_pre_12_inl.h +0 -520
  157. package/node_modules/nan/nan_converters.h +0 -72
  158. package/node_modules/nan/nan_converters_43_inl.h +0 -68
  159. package/node_modules/nan/nan_converters_pre_43_inl.h +0 -42
  160. package/node_modules/nan/nan_define_own_property_helper.h +0 -29
  161. package/node_modules/nan/nan_implementation_12_inl.h +0 -430
  162. package/node_modules/nan/nan_implementation_pre_12_inl.h +0 -263
  163. package/node_modules/nan/nan_json.h +0 -166
  164. package/node_modules/nan/nan_maybe_43_inl.h +0 -356
  165. package/node_modules/nan/nan_maybe_pre_43_inl.h +0 -268
  166. package/node_modules/nan/nan_new.h +0 -340
  167. package/node_modules/nan/nan_object_wrap.h +0 -156
  168. package/node_modules/nan/nan_persistent_12_inl.h +0 -132
  169. package/node_modules/nan/nan_persistent_pre_12_inl.h +0 -242
  170. package/node_modules/nan/nan_private.h +0 -73
  171. package/node_modules/nan/nan_string_bytes.h +0 -305
  172. package/node_modules/nan/nan_typedarray_contents.h +0 -96
  173. package/node_modules/nan/nan_weak.h +0 -437
  174. package/node_modules/nan/package.json +0 -41
  175. package/node_modules/nan/tools/1to2.js +0 -412
  176. package/node_modules/nan/tools/README.md +0 -14
  177. package/node_modules/nan/tools/package.json +0 -19
  178. package/node_modules/unix-dgram/LICENSE +0 -13
  179. package/node_modules/unix-dgram/README.md +0 -107
  180. package/node_modules/unix-dgram/binding.gyp +0 -20
  181. package/node_modules/unix-dgram/build/Makefile +0 -324
  182. package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram/src/unix_dgram.o.d +0 -58
  183. package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram.node.d +0 -1
  184. package/node_modules/unix-dgram/build/Release/.deps/Release/unix_dgram.node.d +0 -1
  185. package/node_modules/unix-dgram/build/Release/obj.target/unix_dgram/src/unix_dgram.o +0 -0
  186. package/node_modules/unix-dgram/build/Release/obj.target/unix_dgram.node +0 -0
  187. package/node_modules/unix-dgram/build/Release/unix_dgram.node +0 -0
  188. package/node_modules/unix-dgram/build/binding.Makefile +0 -6
  189. package/node_modules/unix-dgram/build/config.gypi +0 -213
  190. package/node_modules/unix-dgram/build/unix_dgram.target.mk +0 -159
  191. package/node_modules/unix-dgram/lib/unix_dgram.js +0 -168
  192. package/node_modules/unix-dgram/package.json +0 -36
  193. package/node_modules/unix-dgram/src/unix_dgram.cc +0 -404
  194. package/node_modules/unix-dgram/src/win_dummy.cc +0 -7
  195. package/node_modules/unix-dgram/test/test-connect-callback.js +0 -68
  196. package/node_modules/unix-dgram/test/test-connect.js +0 -53
  197. package/node_modules/unix-dgram/test/test-dgram-unix.js +0 -58
  198. package/node_modules/unix-dgram/test/test-send-error.js +0 -26
  199. package/node_modules/winston-syslog/.eslintrc +0 -7
  200. package/node_modules/winston-syslog/.travis.yml +0 -14
  201. package/node_modules/winston-syslog/CHANGELOG.md +0 -9
  202. package/node_modules/winston-syslog/LICENSE +0 -20
  203. package/node_modules/winston-syslog/README.md +0 -135
  204. package/node_modules/winston-syslog/lib/utils.js +0 -26
  205. package/node_modules/winston-syslog/lib/winston-syslog.js +0 -385
  206. package/node_modules/winston-syslog/package.json +0 -56
  207. package/node_modules/winston-syslog/test/format-test.js +0 -122
  208. package/node_modules/winston-syslog/test/syslog-test.js +0 -95
  209. package/node_modules/winston-syslog/test/unix-connect-test.js +0 -133
@@ -1,520 +0,0 @@
1
- /*********************************************************************
2
- * NAN - Native Abstractions for Node.js
3
- *
4
- * Copyright (c) 2018 NAN contributors
5
- *
6
- * MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
7
- ********************************************************************/
8
-
9
- #ifndef NAN_CALLBACKS_PRE_12_INL_H_
10
- #define NAN_CALLBACKS_PRE_12_INL_H_
11
-
12
- namespace imp {
13
- template<typename T> class ReturnValueImp;
14
- } // end of namespace imp
15
-
16
- template<typename T>
17
- class ReturnValue {
18
- v8::Isolate *isolate_;
19
- v8::Persistent<T> *value_;
20
- friend class imp::ReturnValueImp<T>;
21
-
22
- public:
23
- template <class S>
24
- explicit inline ReturnValue(v8::Isolate *isolate, v8::Persistent<S> *p) :
25
- isolate_(isolate), value_(p) {}
26
- template <class S>
27
- explicit inline ReturnValue(const ReturnValue<S>& that)
28
- : isolate_(that.isolate_), value_(that.value_) {
29
- TYPE_CHECK(T, S);
30
- }
31
-
32
- // Handle setters
33
- template <typename S> inline void Set(const v8::Local<S> &handle) {
34
- TYPE_CHECK(T, S);
35
- value_->Dispose();
36
- *value_ = v8::Persistent<T>::New(handle);
37
- }
38
-
39
- template <typename S> inline void Set(const Global<S> &handle) {
40
- TYPE_CHECK(T, S);
41
- value_->Dispose();
42
- *value_ = v8::Persistent<T>::New(handle.persistent);
43
- const_cast<Global<S> &>(handle).Reset();
44
- }
45
-
46
- // Fast primitive setters
47
- inline void Set(bool value) {
48
- v8::HandleScope scope;
49
-
50
- TYPE_CHECK(T, v8::Boolean);
51
- value_->Dispose();
52
- *value_ = v8::Persistent<T>::New(v8::Boolean::New(value));
53
- }
54
-
55
- inline void Set(double i) {
56
- v8::HandleScope scope;
57
-
58
- TYPE_CHECK(T, v8::Number);
59
- value_->Dispose();
60
- *value_ = v8::Persistent<T>::New(v8::Number::New(i));
61
- }
62
-
63
- inline void Set(int32_t i) {
64
- v8::HandleScope scope;
65
-
66
- TYPE_CHECK(T, v8::Integer);
67
- value_->Dispose();
68
- *value_ = v8::Persistent<T>::New(v8::Int32::New(i));
69
- }
70
-
71
- inline void Set(uint32_t i) {
72
- v8::HandleScope scope;
73
-
74
- TYPE_CHECK(T, v8::Integer);
75
- value_->Dispose();
76
- *value_ = v8::Persistent<T>::New(v8::Uint32::NewFromUnsigned(i));
77
- }
78
-
79
- // Fast JS primitive setters
80
- inline void SetNull() {
81
- v8::HandleScope scope;
82
-
83
- TYPE_CHECK(T, v8::Primitive);
84
- value_->Dispose();
85
- *value_ = v8::Persistent<T>::New(v8::Null());
86
- }
87
-
88
- inline void SetUndefined() {
89
- v8::HandleScope scope;
90
-
91
- TYPE_CHECK(T, v8::Primitive);
92
- value_->Dispose();
93
- *value_ = v8::Persistent<T>::New(v8::Undefined());
94
- }
95
-
96
- inline void SetEmptyString() {
97
- v8::HandleScope scope;
98
-
99
- TYPE_CHECK(T, v8::String);
100
- value_->Dispose();
101
- *value_ = v8::Persistent<T>::New(v8::String::Empty());
102
- }
103
-
104
- // Convenience getter for isolate
105
- inline v8::Isolate *GetIsolate() const {
106
- return isolate_;
107
- }
108
-
109
- // Pointer setter: Uncompilable to prevent inadvertent misuse.
110
- template<typename S>
111
- inline void Set(S *whatever) { TYPE_CHECK(S*, v8::Primitive); }
112
- };
113
-
114
- template<typename T>
115
- class FunctionCallbackInfo {
116
- const v8::Arguments &args_;
117
- v8::Local<v8::Value> data_;
118
- ReturnValue<T> return_value_;
119
- v8::Persistent<T> retval_;
120
-
121
- public:
122
- explicit inline FunctionCallbackInfo(
123
- const v8::Arguments &args
124
- , v8::Local<v8::Value> data) :
125
- args_(args)
126
- , data_(data)
127
- , return_value_(args.GetIsolate(), &retval_)
128
- , retval_(v8::Persistent<T>::New(v8::Undefined())) {}
129
-
130
- inline ~FunctionCallbackInfo() {
131
- retval_.Dispose();
132
- retval_.Clear();
133
- }
134
-
135
- inline ReturnValue<T> GetReturnValue() const {
136
- return ReturnValue<T>(return_value_);
137
- }
138
-
139
- inline v8::Local<v8::Function> Callee() const { return args_.Callee(); }
140
- inline v8::Local<v8::Value> Data() const { return data_; }
141
- inline v8::Local<v8::Object> Holder() const { return args_.Holder(); }
142
- inline bool IsConstructCall() const { return args_.IsConstructCall(); }
143
- inline int Length() const { return args_.Length(); }
144
- inline v8::Local<v8::Value> operator[](int i) const { return args_[i]; }
145
- inline v8::Local<v8::Object> This() const { return args_.This(); }
146
- inline v8::Isolate *GetIsolate() const { return args_.GetIsolate(); }
147
-
148
-
149
- protected:
150
- static const int kHolderIndex = 0;
151
- static const int kIsolateIndex = 1;
152
- static const int kReturnValueDefaultValueIndex = 2;
153
- static const int kReturnValueIndex = 3;
154
- static const int kDataIndex = 4;
155
- static const int kCalleeIndex = 5;
156
- static const int kContextSaveIndex = 6;
157
- static const int kArgsLength = 7;
158
-
159
- private:
160
- NAN_DISALLOW_ASSIGN_COPY_MOVE(FunctionCallbackInfo)
161
- };
162
-
163
- template<typename T>
164
- class PropertyCallbackInfoBase {
165
- const v8::AccessorInfo &info_;
166
- const v8::Local<v8::Value> data_;
167
-
168
- public:
169
- explicit inline PropertyCallbackInfoBase(
170
- const v8::AccessorInfo &info
171
- , const v8::Local<v8::Value> data) :
172
- info_(info)
173
- , data_(data) {}
174
-
175
- inline v8::Isolate* GetIsolate() const { return info_.GetIsolate(); }
176
- inline v8::Local<v8::Value> Data() const { return data_; }
177
- inline v8::Local<v8::Object> This() const { return info_.This(); }
178
- inline v8::Local<v8::Object> Holder() const { return info_.Holder(); }
179
-
180
- protected:
181
- static const int kHolderIndex = 0;
182
- static const int kIsolateIndex = 1;
183
- static const int kReturnValueDefaultValueIndex = 2;
184
- static const int kReturnValueIndex = 3;
185
- static const int kDataIndex = 4;
186
- static const int kThisIndex = 5;
187
- static const int kArgsLength = 6;
188
-
189
- private:
190
- NAN_DISALLOW_ASSIGN_COPY_MOVE(PropertyCallbackInfoBase)
191
- };
192
-
193
- template<typename T>
194
- class PropertyCallbackInfo : public PropertyCallbackInfoBase<T> {
195
- ReturnValue<T> return_value_;
196
- v8::Persistent<T> retval_;
197
-
198
- public:
199
- explicit inline PropertyCallbackInfo(
200
- const v8::AccessorInfo &info
201
- , const v8::Local<v8::Value> data) :
202
- PropertyCallbackInfoBase<T>(info, data)
203
- , return_value_(info.GetIsolate(), &retval_)
204
- , retval_(v8::Persistent<T>::New(v8::Undefined())) {}
205
-
206
- inline ~PropertyCallbackInfo() {
207
- retval_.Dispose();
208
- retval_.Clear();
209
- }
210
-
211
- inline ReturnValue<T> GetReturnValue() const { return return_value_; }
212
- };
213
-
214
- template<>
215
- class PropertyCallbackInfo<v8::Array> :
216
- public PropertyCallbackInfoBase<v8::Array> {
217
- ReturnValue<v8::Array> return_value_;
218
- v8::Persistent<v8::Array> retval_;
219
-
220
- public:
221
- explicit inline PropertyCallbackInfo(
222
- const v8::AccessorInfo &info
223
- , const v8::Local<v8::Value> data) :
224
- PropertyCallbackInfoBase<v8::Array>(info, data)
225
- , return_value_(info.GetIsolate(), &retval_)
226
- , retval_(v8::Persistent<v8::Array>::New(v8::Local<v8::Array>())) {}
227
-
228
- inline ~PropertyCallbackInfo() {
229
- retval_.Dispose();
230
- retval_.Clear();
231
- }
232
-
233
- inline ReturnValue<v8::Array> GetReturnValue() const {
234
- return return_value_;
235
- }
236
- };
237
-
238
- template<>
239
- class PropertyCallbackInfo<v8::Boolean> :
240
- public PropertyCallbackInfoBase<v8::Boolean> {
241
- ReturnValue<v8::Boolean> return_value_;
242
- v8::Persistent<v8::Boolean> retval_;
243
-
244
- public:
245
- explicit inline PropertyCallbackInfo(
246
- const v8::AccessorInfo &info
247
- , const v8::Local<v8::Value> data) :
248
- PropertyCallbackInfoBase<v8::Boolean>(info, data)
249
- , return_value_(info.GetIsolate(), &retval_)
250
- , retval_(v8::Persistent<v8::Boolean>::New(v8::Local<v8::Boolean>())) {}
251
-
252
- inline ~PropertyCallbackInfo() {
253
- retval_.Dispose();
254
- retval_.Clear();
255
- }
256
-
257
- inline ReturnValue<v8::Boolean> GetReturnValue() const {
258
- return return_value_;
259
- }
260
- };
261
-
262
- template<>
263
- class PropertyCallbackInfo<v8::Integer> :
264
- public PropertyCallbackInfoBase<v8::Integer> {
265
- ReturnValue<v8::Integer> return_value_;
266
- v8::Persistent<v8::Integer> retval_;
267
-
268
- public:
269
- explicit inline PropertyCallbackInfo(
270
- const v8::AccessorInfo &info
271
- , const v8::Local<v8::Value> data) :
272
- PropertyCallbackInfoBase<v8::Integer>(info, data)
273
- , return_value_(info.GetIsolate(), &retval_)
274
- , retval_(v8::Persistent<v8::Integer>::New(v8::Local<v8::Integer>())) {}
275
-
276
- inline ~PropertyCallbackInfo() {
277
- retval_.Dispose();
278
- retval_.Clear();
279
- }
280
-
281
- inline ReturnValue<v8::Integer> GetReturnValue() const {
282
- return return_value_;
283
- }
284
- };
285
-
286
- namespace imp {
287
- template<typename T>
288
- class ReturnValueImp : public ReturnValue<T> {
289
- public:
290
- explicit ReturnValueImp(ReturnValue<T> that) :
291
- ReturnValue<T>(that) {}
292
- inline v8::Handle<T> Value() {
293
- return *ReturnValue<T>::value_;
294
- }
295
- };
296
-
297
- static
298
- v8::Handle<v8::Value> FunctionCallbackWrapper(const v8::Arguments &args) {
299
- v8::Local<v8::Object> obj = args.Data().As<v8::Object>();
300
- FunctionCallback callback = reinterpret_cast<FunctionCallback>(
301
- reinterpret_cast<intptr_t>(
302
- obj->GetInternalField(kFunctionIndex).As<v8::External>()->Value()));
303
- FunctionCallbackInfo<v8::Value>
304
- cbinfo(args, obj->GetInternalField(kDataIndex));
305
- callback(cbinfo);
306
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
307
- }
308
-
309
- typedef v8::Handle<v8::Value> (*NativeFunction)(const v8::Arguments &);
310
-
311
- static
312
- v8::Handle<v8::Value> GetterCallbackWrapper(
313
- v8::Local<v8::String> property, const v8::AccessorInfo &info) {
314
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
315
- PropertyCallbackInfo<v8::Value>
316
- cbinfo(info, obj->GetInternalField(kDataIndex));
317
- GetterCallback callback = reinterpret_cast<GetterCallback>(
318
- reinterpret_cast<intptr_t>(
319
- obj->GetInternalField(kGetterIndex).As<v8::External>()->Value()));
320
- callback(property, cbinfo);
321
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
322
- }
323
-
324
- typedef v8::Handle<v8::Value> (*NativeGetter)
325
- (v8::Local<v8::String>, const v8::AccessorInfo &);
326
-
327
- static
328
- void SetterCallbackWrapper(
329
- v8::Local<v8::String> property
330
- , v8::Local<v8::Value> value
331
- , const v8::AccessorInfo &info) {
332
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
333
- PropertyCallbackInfo<void>
334
- cbinfo(info, obj->GetInternalField(kDataIndex));
335
- SetterCallback callback = reinterpret_cast<SetterCallback>(
336
- reinterpret_cast<intptr_t>(
337
- obj->GetInternalField(kSetterIndex).As<v8::External>()->Value()));
338
- callback(property, value, cbinfo);
339
- }
340
-
341
- typedef void (*NativeSetter)
342
- (v8::Local<v8::String>, v8::Local<v8::Value>, const v8::AccessorInfo &);
343
-
344
- static
345
- v8::Handle<v8::Value> PropertyGetterCallbackWrapper(
346
- v8::Local<v8::String> property, const v8::AccessorInfo &info) {
347
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
348
- PropertyCallbackInfo<v8::Value>
349
- cbinfo(info, obj->GetInternalField(kDataIndex));
350
- PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
351
- reinterpret_cast<intptr_t>(
352
- obj->GetInternalField(kPropertyGetterIndex)
353
- .As<v8::External>()->Value()));
354
- callback(property, cbinfo);
355
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
356
- }
357
-
358
- typedef v8::Handle<v8::Value> (*NativePropertyGetter)
359
- (v8::Local<v8::String>, const v8::AccessorInfo &);
360
-
361
- static
362
- v8::Handle<v8::Value> PropertySetterCallbackWrapper(
363
- v8::Local<v8::String> property
364
- , v8::Local<v8::Value> value
365
- , const v8::AccessorInfo &info) {
366
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
367
- PropertyCallbackInfo<v8::Value>
368
- cbinfo(info, obj->GetInternalField(kDataIndex));
369
- PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
370
- reinterpret_cast<intptr_t>(
371
- obj->GetInternalField(kPropertySetterIndex)
372
- .As<v8::External>()->Value()));
373
- callback(property, value, cbinfo);
374
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
375
- }
376
-
377
- typedef v8::Handle<v8::Value> (*NativePropertySetter)
378
- (v8::Local<v8::String>, v8::Local<v8::Value>, const v8::AccessorInfo &);
379
-
380
- static
381
- v8::Handle<v8::Array> PropertyEnumeratorCallbackWrapper(
382
- const v8::AccessorInfo &info) {
383
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
384
- PropertyCallbackInfo<v8::Array>
385
- cbinfo(info, obj->GetInternalField(kDataIndex));
386
- PropertyEnumeratorCallback callback =
387
- reinterpret_cast<PropertyEnumeratorCallback>(reinterpret_cast<intptr_t>(
388
- obj->GetInternalField(kPropertyEnumeratorIndex)
389
- .As<v8::External>()->Value()));
390
- callback(cbinfo);
391
- return ReturnValueImp<v8::Array>(cbinfo.GetReturnValue()).Value();
392
- }
393
-
394
- typedef v8::Handle<v8::Array> (*NativePropertyEnumerator)
395
- (const v8::AccessorInfo &);
396
-
397
- static
398
- v8::Handle<v8::Boolean> PropertyDeleterCallbackWrapper(
399
- v8::Local<v8::String> property
400
- , const v8::AccessorInfo &info) {
401
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
402
- PropertyCallbackInfo<v8::Boolean>
403
- cbinfo(info, obj->GetInternalField(kDataIndex));
404
- PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
405
- reinterpret_cast<intptr_t>(
406
- obj->GetInternalField(kPropertyDeleterIndex)
407
- .As<v8::External>()->Value()));
408
- callback(property, cbinfo);
409
- return ReturnValueImp<v8::Boolean>(cbinfo.GetReturnValue()).Value();
410
- }
411
-
412
- typedef v8::Handle<v8::Boolean> (NativePropertyDeleter)
413
- (v8::Local<v8::String>, const v8::AccessorInfo &);
414
-
415
- static
416
- v8::Handle<v8::Integer> PropertyQueryCallbackWrapper(
417
- v8::Local<v8::String> property, const v8::AccessorInfo &info) {
418
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
419
- PropertyCallbackInfo<v8::Integer>
420
- cbinfo(info, obj->GetInternalField(kDataIndex));
421
- PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
422
- reinterpret_cast<intptr_t>(
423
- obj->GetInternalField(kPropertyQueryIndex)
424
- .As<v8::External>()->Value()));
425
- callback(property, cbinfo);
426
- return ReturnValueImp<v8::Integer>(cbinfo.GetReturnValue()).Value();
427
- }
428
-
429
- typedef v8::Handle<v8::Integer> (*NativePropertyQuery)
430
- (v8::Local<v8::String>, const v8::AccessorInfo &);
431
-
432
- static
433
- v8::Handle<v8::Value> IndexGetterCallbackWrapper(
434
- uint32_t index, const v8::AccessorInfo &info) {
435
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
436
- PropertyCallbackInfo<v8::Value>
437
- cbinfo(info, obj->GetInternalField(kDataIndex));
438
- IndexGetterCallback callback = reinterpret_cast<IndexGetterCallback>(
439
- reinterpret_cast<intptr_t>(
440
- obj->GetInternalField(kIndexPropertyGetterIndex)
441
- .As<v8::External>()->Value()));
442
- callback(index, cbinfo);
443
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
444
- }
445
-
446
- typedef v8::Handle<v8::Value> (*NativeIndexGetter)
447
- (uint32_t, const v8::AccessorInfo &);
448
-
449
- static
450
- v8::Handle<v8::Value> IndexSetterCallbackWrapper(
451
- uint32_t index
452
- , v8::Local<v8::Value> value
453
- , const v8::AccessorInfo &info) {
454
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
455
- PropertyCallbackInfo<v8::Value>
456
- cbinfo(info, obj->GetInternalField(kDataIndex));
457
- IndexSetterCallback callback = reinterpret_cast<IndexSetterCallback>(
458
- reinterpret_cast<intptr_t>(
459
- obj->GetInternalField(kIndexPropertySetterIndex)
460
- .As<v8::External>()->Value()));
461
- callback(index, value, cbinfo);
462
- return ReturnValueImp<v8::Value>(cbinfo.GetReturnValue()).Value();
463
- }
464
-
465
- typedef v8::Handle<v8::Value> (*NativeIndexSetter)
466
- (uint32_t, v8::Local<v8::Value>, const v8::AccessorInfo &);
467
-
468
- static
469
- v8::Handle<v8::Array> IndexEnumeratorCallbackWrapper(
470
- const v8::AccessorInfo &info) {
471
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
472
- PropertyCallbackInfo<v8::Array>
473
- cbinfo(info, obj->GetInternalField(kDataIndex));
474
- IndexEnumeratorCallback callback = reinterpret_cast<IndexEnumeratorCallback>(
475
- reinterpret_cast<intptr_t>(
476
- obj->GetInternalField(kIndexPropertyEnumeratorIndex)
477
- .As<v8::External>()->Value()));
478
- callback(cbinfo);
479
- return ReturnValueImp<v8::Array>(cbinfo.GetReturnValue()).Value();
480
- }
481
-
482
- typedef v8::Handle<v8::Array> (*NativeIndexEnumerator)
483
- (const v8::AccessorInfo &);
484
-
485
- static
486
- v8::Handle<v8::Boolean> IndexDeleterCallbackWrapper(
487
- uint32_t index, const v8::AccessorInfo &info) {
488
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
489
- PropertyCallbackInfo<v8::Boolean>
490
- cbinfo(info, obj->GetInternalField(kDataIndex));
491
- IndexDeleterCallback callback = reinterpret_cast<IndexDeleterCallback>(
492
- reinterpret_cast<intptr_t>(
493
- obj->GetInternalField(kIndexPropertyDeleterIndex)
494
- .As<v8::External>()->Value()));
495
- callback(index, cbinfo);
496
- return ReturnValueImp<v8::Boolean>(cbinfo.GetReturnValue()).Value();
497
- }
498
-
499
- typedef v8::Handle<v8::Boolean> (*NativeIndexDeleter)
500
- (uint32_t, const v8::AccessorInfo &);
501
-
502
- static
503
- v8::Handle<v8::Integer> IndexQueryCallbackWrapper(
504
- uint32_t index, const v8::AccessorInfo &info) {
505
- v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
506
- PropertyCallbackInfo<v8::Integer>
507
- cbinfo(info, obj->GetInternalField(kDataIndex));
508
- IndexQueryCallback callback = reinterpret_cast<IndexQueryCallback>(
509
- reinterpret_cast<intptr_t>(
510
- obj->GetInternalField(kIndexPropertyQueryIndex)
511
- .As<v8::External>()->Value()));
512
- callback(index, cbinfo);
513
- return ReturnValueImp<v8::Integer>(cbinfo.GetReturnValue()).Value();
514
- }
515
-
516
- typedef v8::Handle<v8::Integer> (*NativeIndexQuery)
517
- (uint32_t, const v8::AccessorInfo &);
518
- } // end of namespace imp
519
-
520
- #endif // NAN_CALLBACKS_PRE_12_INL_H_
@@ -1,72 +0,0 @@
1
- /*********************************************************************
2
- * NAN - Native Abstractions for Node.js
3
- *
4
- * Copyright (c) 2018 NAN contributors
5
- *
6
- * MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
7
- ********************************************************************/
8
-
9
- #ifndef NAN_CONVERTERS_H_
10
- #define NAN_CONVERTERS_H_
11
-
12
- namespace imp {
13
- template<typename T> struct ToFactoryBase {
14
- typedef MaybeLocal<T> return_t;
15
- };
16
- template<typename T> struct ValueFactoryBase { typedef Maybe<T> return_t; };
17
-
18
- template<typename T> struct ToFactory;
19
-
20
- template<>
21
- struct ToFactory<v8::Function> : ToFactoryBase<v8::Function> {
22
- static inline return_t convert(v8::Local<v8::Value> val) {
23
- if (val.IsEmpty() || !val->IsFunction()) return MaybeLocal<v8::Function>();
24
- return MaybeLocal<v8::Function>(val.As<v8::Function>());
25
- }
26
- };
27
-
28
- #define X(TYPE) \
29
- template<> \
30
- struct ToFactory<v8::TYPE> : ToFactoryBase<v8::TYPE> { \
31
- static inline return_t convert(v8::Local<v8::Value> val); \
32
- };
33
-
34
- X(Boolean)
35
- X(Number)
36
- X(String)
37
- X(Object)
38
- X(Integer)
39
- X(Uint32)
40
- X(Int32)
41
-
42
- #undef X
43
-
44
- #define X(TYPE) \
45
- template<> \
46
- struct ToFactory<TYPE> : ValueFactoryBase<TYPE> { \
47
- static inline return_t convert(v8::Local<v8::Value> val); \
48
- };
49
-
50
- X(bool)
51
- X(double)
52
- X(int64_t)
53
- X(uint32_t)
54
- X(int32_t)
55
-
56
- #undef X
57
- } // end of namespace imp
58
-
59
- template<typename T>
60
- inline
61
- typename imp::ToFactory<T>::return_t To(v8::Local<v8::Value> val) {
62
- return imp::ToFactory<T>::convert(val);
63
- }
64
-
65
- #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
66
- (V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3))
67
- # include "nan_converters_43_inl.h"
68
- #else
69
- # include "nan_converters_pre_43_inl.h"
70
- #endif
71
-
72
- #endif // NAN_CONVERTERS_H_
@@ -1,68 +0,0 @@
1
- /*********************************************************************
2
- * NAN - Native Abstractions for Node.js
3
- *
4
- * Copyright (c) 2018 NAN contributors
5
- *
6
- * MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
7
- ********************************************************************/
8
-
9
- #ifndef NAN_CONVERTERS_43_INL_H_
10
- #define NAN_CONVERTERS_43_INL_H_
11
-
12
- #define X(TYPE) \
13
- imp::ToFactory<v8::TYPE>::return_t \
14
- imp::ToFactory<v8::TYPE>::convert(v8::Local<v8::Value> val) { \
15
- v8::Isolate *isolate = v8::Isolate::GetCurrent(); \
16
- v8::EscapableHandleScope scope(isolate); \
17
- return scope.Escape( \
18
- val->To ## TYPE(isolate->GetCurrentContext()) \
19
- .FromMaybe(v8::Local<v8::TYPE>())); \
20
- }
21
-
22
- X(Number)
23
- X(String)
24
- X(Object)
25
- X(Integer)
26
- X(Uint32)
27
- X(Int32)
28
- // V8 <= 7.0
29
- #if V8_MAJOR_VERSION < 7 || (V8_MAJOR_VERSION == 7 && V8_MINOR_VERSION == 0)
30
- X(Boolean)
31
- #else
32
- imp::ToFactory<v8::Boolean>::return_t \
33
- imp::ToFactory<v8::Boolean>::convert(v8::Local<v8::Value> val) { \
34
- v8::Isolate *isolate = v8::Isolate::GetCurrent(); \
35
- v8::EscapableHandleScope scope(isolate); \
36
- return scope.Escape(val->ToBoolean(isolate)); \
37
- }
38
- #endif
39
-
40
- #undef X
41
-
42
- #define X(TYPE, NAME) \
43
- imp::ToFactory<TYPE>::return_t \
44
- imp::ToFactory<TYPE>::convert(v8::Local<v8::Value> val) { \
45
- v8::Isolate *isolate = v8::Isolate::GetCurrent(); \
46
- v8::HandleScope scope(isolate); \
47
- return val->NAME ## Value(isolate->GetCurrentContext()); \
48
- }
49
-
50
- X(double, Number)
51
- X(int64_t, Integer)
52
- X(uint32_t, Uint32)
53
- X(int32_t, Int32)
54
- // V8 <= 7.0
55
- #if V8_MAJOR_VERSION < 7 || (V8_MAJOR_VERSION == 7 && V8_MINOR_VERSION == 0)
56
- X(bool, Boolean)
57
- #else
58
- imp::ToFactory<bool>::return_t \
59
- imp::ToFactory<bool>::convert(v8::Local<v8::Value> val) { \
60
- v8::Isolate *isolate = v8::Isolate::GetCurrent(); \
61
- v8::HandleScope scope(isolate); \
62
- return Just<bool>(val->BooleanValue(isolate)); \
63
- }
64
- #endif
65
-
66
- #undef X
67
-
68
- #endif // NAN_CONVERTERS_43_INL_H_
@@ -1,42 +0,0 @@
1
- /*********************************************************************
2
- * NAN - Native Abstractions for Node.js
3
- *
4
- * Copyright (c) 2018 NAN contributors
5
- *
6
- * MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
7
- ********************************************************************/
8
-
9
- #ifndef NAN_CONVERTERS_PRE_43_INL_H_
10
- #define NAN_CONVERTERS_PRE_43_INL_H_
11
-
12
- #define X(TYPE) \
13
- imp::ToFactory<v8::TYPE>::return_t \
14
- imp::ToFactory<v8::TYPE>::convert(v8::Local<v8::Value> val) { \
15
- return val->To ## TYPE(); \
16
- }
17
-
18
- X(Boolean)
19
- X(Number)
20
- X(String)
21
- X(Object)
22
- X(Integer)
23
- X(Uint32)
24
- X(Int32)
25
-
26
- #undef X
27
-
28
- #define X(TYPE, NAME) \
29
- imp::ToFactory<TYPE>::return_t \
30
- imp::ToFactory<TYPE>::convert(v8::Local<v8::Value> val) { \
31
- return Just(val->NAME ## Value()); \
32
- }
33
-
34
- X(bool, Boolean)
35
- X(double, Number)
36
- X(int64_t, Integer)
37
- X(uint32_t, Uint32)
38
- X(int32_t, Int32)
39
-
40
- #undef X
41
-
42
- #endif // NAN_CONVERTERS_PRE_43_INL_H_