nan_callbacks_12_inl.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  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. #ifndef NAN_CALLBACKS_12_INL_H_
  9. #define NAN_CALLBACKS_12_INL_H_
  10. template<typename T>
  11. class ReturnValue {
  12. v8::ReturnValue<T> value_;
  13. public:
  14. template <class S>
  15. explicit inline ReturnValue(const v8::ReturnValue<S> &value) :
  16. value_(value) {}
  17. template <class S>
  18. explicit inline ReturnValue(const ReturnValue<S>& that)
  19. : value_(that.value_) {
  20. TYPE_CHECK(T, S);
  21. }
  22. // Handle setters
  23. template <typename S> inline void Set(const v8::Local<S> &handle) {
  24. TYPE_CHECK(T, S);
  25. value_.Set(handle);
  26. }
  27. template <typename S> inline void Set(const Global<S> &handle) {
  28. TYPE_CHECK(T, S);
  29. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
  30. (V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && \
  31. (V8_MINOR_VERSION > 5 || (V8_MINOR_VERSION == 5 && \
  32. defined(V8_BUILD_NUMBER) && V8_BUILD_NUMBER >= 8))))
  33. value_.Set(handle);
  34. #else
  35. value_.Set(*reinterpret_cast<const v8::Persistent<S>*>(&handle));
  36. const_cast<Global<S> &>(handle).Reset();
  37. #endif
  38. }
  39. // Fast primitive setters
  40. inline void Set(bool value) {
  41. TYPE_CHECK(T, v8::Boolean);
  42. value_.Set(value);
  43. }
  44. inline void Set(double i) {
  45. TYPE_CHECK(T, v8::Number);
  46. value_.Set(i);
  47. }
  48. inline void Set(int32_t i) {
  49. TYPE_CHECK(T, v8::Integer);
  50. value_.Set(i);
  51. }
  52. inline void Set(uint32_t i) {
  53. TYPE_CHECK(T, v8::Integer);
  54. value_.Set(i);
  55. }
  56. // Fast JS primitive setters
  57. inline void SetNull() {
  58. TYPE_CHECK(T, v8::Primitive);
  59. value_.SetNull();
  60. }
  61. inline void SetUndefined() {
  62. TYPE_CHECK(T, v8::Primitive);
  63. value_.SetUndefined();
  64. }
  65. inline void SetEmptyString() {
  66. TYPE_CHECK(T, v8::String);
  67. value_.SetEmptyString();
  68. }
  69. // Convenience getter for isolate
  70. inline v8::Isolate *GetIsolate() const {
  71. return value_.GetIsolate();
  72. }
  73. // Pointer setter: Uncompilable to prevent inadvertent misuse.
  74. template<typename S>
  75. inline void Set(S *whatever) { TYPE_CHECK(S*, v8::Primitive); }
  76. };
  77. template<typename T>
  78. class FunctionCallbackInfo {
  79. const v8::FunctionCallbackInfo<T> &info_;
  80. const v8::Local<v8::Value> data_;
  81. public:
  82. explicit inline FunctionCallbackInfo(
  83. const v8::FunctionCallbackInfo<T> &info
  84. , v8::Local<v8::Value> data) :
  85. info_(info)
  86. , data_(data) {}
  87. inline ReturnValue<T> GetReturnValue() const {
  88. return ReturnValue<T>(info_.GetReturnValue());
  89. }
  90. #if NODE_MAJOR_VERSION < 10
  91. inline v8::Local<v8::Function> Callee() const { return info_.Callee(); }
  92. #endif
  93. inline v8::Local<v8::Value> Data() const { return data_; }
  94. inline v8::Local<v8::Object> Holder() const { return info_.Holder(); }
  95. inline bool IsConstructCall() const { return info_.IsConstructCall(); }
  96. inline int Length() const { return info_.Length(); }
  97. inline v8::Local<v8::Value> operator[](int i) const { return info_[i]; }
  98. inline v8::Local<v8::Object> This() const { return info_.This(); }
  99. inline v8::Isolate *GetIsolate() const { return info_.GetIsolate(); }
  100. protected:
  101. static const int kHolderIndex = 0;
  102. static const int kIsolateIndex = 1;
  103. static const int kReturnValueDefaultValueIndex = 2;
  104. static const int kReturnValueIndex = 3;
  105. static const int kDataIndex = 4;
  106. static const int kCalleeIndex = 5;
  107. static const int kContextSaveIndex = 6;
  108. static const int kArgsLength = 7;
  109. private:
  110. NAN_DISALLOW_ASSIGN_COPY_MOVE(FunctionCallbackInfo)
  111. };
  112. template<typename T>
  113. class PropertyCallbackInfo {
  114. const v8::PropertyCallbackInfo<T> &info_;
  115. const v8::Local<v8::Value> data_;
  116. public:
  117. explicit inline PropertyCallbackInfo(
  118. const v8::PropertyCallbackInfo<T> &info
  119. , const v8::Local<v8::Value> data) :
  120. info_(info)
  121. , data_(data) {}
  122. inline v8::Isolate* GetIsolate() const { return info_.GetIsolate(); }
  123. inline v8::Local<v8::Value> Data() const { return data_; }
  124. inline v8::Local<v8::Object> This() const { return info_.This(); }
  125. inline v8::Local<v8::Object> Holder() const { return info_.Holder(); }
  126. inline ReturnValue<T> GetReturnValue() const {
  127. return ReturnValue<T>(info_.GetReturnValue());
  128. }
  129. protected:
  130. static const int kHolderIndex = 0;
  131. static const int kIsolateIndex = 1;
  132. static const int kReturnValueDefaultValueIndex = 2;
  133. static const int kReturnValueIndex = 3;
  134. static const int kDataIndex = 4;
  135. static const int kThisIndex = 5;
  136. static const int kArgsLength = 6;
  137. private:
  138. NAN_DISALLOW_ASSIGN_COPY_MOVE(PropertyCallbackInfo)
  139. };
  140. namespace imp {
  141. static
  142. void FunctionCallbackWrapper(const v8::FunctionCallbackInfo<v8::Value> &info) {
  143. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  144. FunctionCallback callback = reinterpret_cast<FunctionCallback>(
  145. reinterpret_cast<intptr_t>(
  146. obj->GetInternalField(kFunctionIndex)
  147. .As<v8::Value>().As<v8::External>()->Value()));
  148. FunctionCallbackInfo<v8::Value>
  149. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  150. callback(cbinfo);
  151. }
  152. typedef void (*NativeFunction)(const v8::FunctionCallbackInfo<v8::Value> &);
  153. #if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
  154. static
  155. void GetterCallbackWrapper(
  156. v8::Local<v8::Name> property
  157. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  158. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  159. PropertyCallbackInfo<v8::Value>
  160. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  161. GetterCallback callback = reinterpret_cast<GetterCallback>(
  162. reinterpret_cast<intptr_t>(
  163. obj->GetInternalField(kGetterIndex)
  164. .As<v8::Value>().As<v8::External>()->Value()));
  165. callback(property.As<v8::String>(), cbinfo);
  166. }
  167. typedef void (*NativeGetter)
  168. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
  169. static
  170. void SetterCallbackWrapper(
  171. v8::Local<v8::Name> property
  172. , v8::Local<v8::Value> value
  173. , const v8::PropertyCallbackInfo<void> &info) {
  174. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  175. PropertyCallbackInfo<void>
  176. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  177. SetterCallback callback = reinterpret_cast<SetterCallback>(
  178. reinterpret_cast<intptr_t>(
  179. obj->GetInternalField(kSetterIndex)
  180. .As<v8::Value>().As<v8::External>()->Value()));
  181. callback(property.As<v8::String>(), value, cbinfo);
  182. }
  183. typedef void (*NativeSetter)(
  184. v8::Local<v8::Name>
  185. , v8::Local<v8::Value>
  186. , const v8::PropertyCallbackInfo<void> &);
  187. #else
  188. static
  189. void GetterCallbackWrapper(
  190. v8::Local<v8::String> property
  191. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  192. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  193. PropertyCallbackInfo<v8::Value>
  194. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  195. GetterCallback callback = reinterpret_cast<GetterCallback>(
  196. reinterpret_cast<intptr_t>(
  197. obj->GetInternalField(kGetterIndex)
  198. .As<v8::Value>().As<v8::External>()->Value()));
  199. callback(property, cbinfo);
  200. }
  201. typedef void (*NativeGetter)
  202. (v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value> &);
  203. static
  204. void SetterCallbackWrapper(
  205. v8::Local<v8::String> property
  206. , v8::Local<v8::Value> value
  207. , const v8::PropertyCallbackInfo<void> &info) {
  208. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  209. PropertyCallbackInfo<void>
  210. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  211. SetterCallback callback = reinterpret_cast<SetterCallback>(
  212. reinterpret_cast<intptr_t>(
  213. obj->GetInternalField(kSetterIndex)
  214. .As<v8::Value>().As<v8::External>()->Value()));
  215. callback(property, value, cbinfo);
  216. }
  217. typedef void (*NativeSetter)(
  218. v8::Local<v8::String>
  219. , v8::Local<v8::Value>
  220. , const v8::PropertyCallbackInfo<void> &);
  221. #endif
  222. #if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
  223. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  224. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  225. static
  226. v8::Intercepted PropertyGetterCallbackWrapper(
  227. v8::Local<v8::Name> property
  228. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  229. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  230. PropertyCallbackInfo<v8::Value>
  231. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  232. PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
  233. reinterpret_cast<intptr_t>(
  234. obj->GetInternalField(kPropertyGetterIndex)
  235. .As<v8::Value>().As<v8::External>()->Value()));
  236. return callback(property.As<v8::String>(), cbinfo);
  237. }
  238. typedef v8::Intercepted (*NativePropertyGetter)
  239. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
  240. static
  241. v8::Intercepted PropertySetterCallbackWrapper(
  242. v8::Local<v8::Name> property
  243. , v8::Local<v8::Value> value
  244. , const v8::PropertyCallbackInfo<void> &info) {
  245. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  246. PropertyCallbackInfo<void>
  247. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  248. PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
  249. reinterpret_cast<intptr_t>(
  250. obj->GetInternalField(kPropertySetterIndex)
  251. .As<v8::Value>().As<v8::External>()->Value()));
  252. return callback(property.As<v8::String>(), value, cbinfo);
  253. }
  254. typedef v8::Intercepted (*NativePropertySetter)(
  255. v8::Local<v8::Name>
  256. , v8::Local<v8::Value>
  257. , const v8::PropertyCallbackInfo<void> &);
  258. #else
  259. static
  260. void PropertyGetterCallbackWrapper(
  261. v8::Local<v8::Name> property
  262. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  263. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  264. PropertyCallbackInfo<v8::Value>
  265. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  266. PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
  267. reinterpret_cast<intptr_t>(
  268. obj->GetInternalField(kPropertyGetterIndex)
  269. .As<v8::Value>().As<v8::External>()->Value()));
  270. callback(property.As<v8::String>(), cbinfo);
  271. }
  272. typedef void (*NativePropertyGetter)
  273. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
  274. static
  275. void PropertySetterCallbackWrapper(
  276. v8::Local<v8::Name> property
  277. , v8::Local<v8::Value> value
  278. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  279. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  280. PropertyCallbackInfo<v8::Value>
  281. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  282. PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
  283. reinterpret_cast<intptr_t>(
  284. obj->GetInternalField(kPropertySetterIndex)
  285. .As<v8::Value>().As<v8::External>()->Value()));
  286. callback(property.As<v8::String>(), value, cbinfo);
  287. }
  288. typedef void (*NativePropertySetter)(
  289. v8::Local<v8::Name>
  290. , v8::Local<v8::Value>
  291. , const v8::PropertyCallbackInfo<v8::Value> &);
  292. #endif
  293. static
  294. void PropertyEnumeratorCallbackWrapper(
  295. const v8::PropertyCallbackInfo<v8::Array> &info) {
  296. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  297. PropertyCallbackInfo<v8::Array>
  298. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  299. PropertyEnumeratorCallback callback =
  300. reinterpret_cast<PropertyEnumeratorCallback>(reinterpret_cast<intptr_t>(
  301. obj->GetInternalField(kPropertyEnumeratorIndex)
  302. .As<v8::Value>().As<v8::External>()->Value()));
  303. callback(cbinfo);
  304. }
  305. typedef void (*NativePropertyEnumerator)
  306. (const v8::PropertyCallbackInfo<v8::Array> &);
  307. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  308. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  309. static
  310. v8::Intercepted PropertyDeleterCallbackWrapper(
  311. v8::Local<v8::Name> property
  312. , const v8::PropertyCallbackInfo<v8::Boolean> &info) {
  313. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  314. PropertyCallbackInfo<v8::Boolean>
  315. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  316. PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
  317. reinterpret_cast<intptr_t>(
  318. obj->GetInternalField(kPropertyDeleterIndex)
  319. .As<v8::Value>().As<v8::External>()->Value()));
  320. return callback(property.As<v8::String>(), cbinfo);
  321. }
  322. typedef v8::Intercepted (NativePropertyDeleter)
  323. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Boolean> &);
  324. static
  325. v8::Intercepted PropertyQueryCallbackWrapper(
  326. v8::Local<v8::Name> property
  327. , const v8::PropertyCallbackInfo<v8::Integer> &info) {
  328. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  329. PropertyCallbackInfo<v8::Integer>
  330. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  331. PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
  332. reinterpret_cast<intptr_t>(
  333. obj->GetInternalField(kPropertyQueryIndex)
  334. .As<v8::Value>().As<v8::External>()->Value()));
  335. return callback(property.As<v8::String>(), cbinfo);
  336. }
  337. typedef v8::Intercepted (*NativePropertyQuery)
  338. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Integer> &);
  339. #else
  340. static
  341. void PropertyDeleterCallbackWrapper(
  342. v8::Local<v8::Name> property
  343. , const v8::PropertyCallbackInfo<v8::Boolean> &info) {
  344. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  345. PropertyCallbackInfo<v8::Boolean>
  346. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  347. PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
  348. reinterpret_cast<intptr_t>(
  349. obj->GetInternalField(kPropertyDeleterIndex)
  350. .As<v8::Value>().As<v8::External>()->Value()));
  351. callback(property.As<v8::String>(), cbinfo);
  352. }
  353. typedef void (NativePropertyDeleter)
  354. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Boolean> &);
  355. static
  356. void PropertyQueryCallbackWrapper(
  357. v8::Local<v8::Name> property
  358. , const v8::PropertyCallbackInfo<v8::Integer> &info) {
  359. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  360. PropertyCallbackInfo<v8::Integer>
  361. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  362. PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
  363. reinterpret_cast<intptr_t>(
  364. obj->GetInternalField(kPropertyQueryIndex)
  365. .As<v8::Value>().As<v8::External>()->Value()));
  366. callback(property.As<v8::String>(), cbinfo);
  367. }
  368. typedef void (*NativePropertyQuery)
  369. (v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Integer> &);
  370. #endif
  371. #else
  372. static
  373. void PropertyGetterCallbackWrapper(
  374. v8::Local<v8::String> property
  375. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  376. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  377. PropertyCallbackInfo<v8::Value>
  378. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  379. PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
  380. reinterpret_cast<intptr_t>(
  381. obj->GetInternalField(kPropertyGetterIndex)
  382. .As<v8::Value>().As<v8::External>()->Value()));
  383. callback(property, cbinfo);
  384. }
  385. typedef void (*NativePropertyGetter)
  386. (v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value> &);
  387. static
  388. void PropertySetterCallbackWrapper(
  389. v8::Local<v8::String> property
  390. , v8::Local<v8::Value> value
  391. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  392. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  393. PropertyCallbackInfo<v8::Value>
  394. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  395. PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
  396. reinterpret_cast<intptr_t>(
  397. obj->GetInternalField(kPropertySetterIndex)
  398. .As<v8::Value>().As<v8::External>()->Value()));
  399. callback(property, value, cbinfo);
  400. }
  401. typedef void (*NativePropertySetter)(
  402. v8::Local<v8::String>
  403. , v8::Local<v8::Value>
  404. , const v8::PropertyCallbackInfo<v8::Value> &);
  405. static
  406. void PropertyEnumeratorCallbackWrapper(
  407. const v8::PropertyCallbackInfo<v8::Array> &info) {
  408. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  409. PropertyCallbackInfo<v8::Array>
  410. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  411. PropertyEnumeratorCallback callback =
  412. reinterpret_cast<PropertyEnumeratorCallback>(reinterpret_cast<intptr_t>(
  413. obj->GetInternalField(kPropertyEnumeratorIndex)
  414. .As<v8::Value>().As<v8::External>()->Value()));
  415. callback(cbinfo);
  416. }
  417. typedef void (*NativePropertyEnumerator)
  418. (const v8::PropertyCallbackInfo<v8::Array> &);
  419. static
  420. void PropertyDeleterCallbackWrapper(
  421. v8::Local<v8::String> property
  422. , const v8::PropertyCallbackInfo<v8::Boolean> &info) {
  423. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  424. PropertyCallbackInfo<v8::Boolean>
  425. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  426. PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
  427. reinterpret_cast<intptr_t>(
  428. obj->GetInternalField(kPropertyDeleterIndex)
  429. .As<v8::Value>().As<v8::External>()->Value()));
  430. callback(property, cbinfo);
  431. }
  432. typedef void (NativePropertyDeleter)
  433. (v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Boolean> &);
  434. static
  435. void PropertyQueryCallbackWrapper(
  436. v8::Local<v8::String> property
  437. , const v8::PropertyCallbackInfo<v8::Integer> &info) {
  438. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  439. PropertyCallbackInfo<v8::Integer>
  440. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  441. PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
  442. reinterpret_cast<intptr_t>(
  443. obj->GetInternalField(kPropertyQueryIndex)
  444. .As<v8::Value>().As<v8::External>()->Value()));
  445. callback(property, cbinfo);
  446. }
  447. typedef void (*NativePropertyQuery)
  448. (v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Integer> &);
  449. #endif
  450. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  451. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  452. static
  453. v8::Intercepted IndexGetterCallbackWrapper(
  454. uint32_t index, const v8::PropertyCallbackInfo<v8::Value> &info) {
  455. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  456. PropertyCallbackInfo<v8::Value>
  457. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  458. IndexGetterCallback callback = reinterpret_cast<IndexGetterCallback>(
  459. reinterpret_cast<intptr_t>(
  460. obj->GetInternalField(kIndexPropertyGetterIndex)
  461. .As<v8::Value>().As<v8::External>()->Value()));
  462. return callback(index, cbinfo);
  463. }
  464. typedef v8::Intercepted (*NativeIndexGetter)
  465. (uint32_t, const v8::PropertyCallbackInfo<v8::Value> &);
  466. static
  467. v8::Intercepted IndexSetterCallbackWrapper(
  468. uint32_t index
  469. , v8::Local<v8::Value> value
  470. , const v8::PropertyCallbackInfo<void> &info) {
  471. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  472. PropertyCallbackInfo<void>
  473. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  474. IndexSetterCallback callback = reinterpret_cast<IndexSetterCallback>(
  475. reinterpret_cast<intptr_t>(
  476. obj->GetInternalField(kIndexPropertySetterIndex)
  477. .As<v8::Value>().As<v8::External>()->Value()));
  478. return callback(index, value, cbinfo);
  479. }
  480. typedef v8::Intercepted (*NativeIndexSetter)(
  481. uint32_t
  482. , v8::Local<v8::Value>
  483. , const v8::PropertyCallbackInfo<void> &);
  484. #else
  485. static
  486. void IndexGetterCallbackWrapper(
  487. uint32_t index, const v8::PropertyCallbackInfo<v8::Value> &info) {
  488. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  489. PropertyCallbackInfo<v8::Value>
  490. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  491. IndexGetterCallback callback = reinterpret_cast<IndexGetterCallback>(
  492. reinterpret_cast<intptr_t>(
  493. obj->GetInternalField(kIndexPropertyGetterIndex)
  494. .As<v8::Value>().As<v8::External>()->Value()));
  495. callback(index, cbinfo);
  496. }
  497. typedef void (*NativeIndexGetter)
  498. (uint32_t, const v8::PropertyCallbackInfo<v8::Value> &);
  499. static
  500. void IndexSetterCallbackWrapper(
  501. uint32_t index
  502. , v8::Local<v8::Value> value
  503. , const v8::PropertyCallbackInfo<v8::Value> &info) {
  504. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  505. PropertyCallbackInfo<v8::Value>
  506. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  507. IndexSetterCallback callback = reinterpret_cast<IndexSetterCallback>(
  508. reinterpret_cast<intptr_t>(
  509. obj->GetInternalField(kIndexPropertySetterIndex)
  510. .As<v8::Value>().As<v8::External>()->Value()));
  511. callback(index, value, cbinfo);
  512. }
  513. typedef void (*NativeIndexSetter)(
  514. uint32_t
  515. , v8::Local<v8::Value>
  516. , const v8::PropertyCallbackInfo<v8::Value> &);
  517. #endif
  518. static
  519. void IndexEnumeratorCallbackWrapper(
  520. const v8::PropertyCallbackInfo<v8::Array> &info) {
  521. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  522. PropertyCallbackInfo<v8::Array>
  523. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  524. IndexEnumeratorCallback callback = reinterpret_cast<IndexEnumeratorCallback>(
  525. reinterpret_cast<intptr_t>(
  526. obj->GetInternalField(
  527. kIndexPropertyEnumeratorIndex)
  528. .As<v8::Value>().As<v8::External>()->Value()));
  529. callback(cbinfo);
  530. }
  531. typedef void (*NativeIndexEnumerator)
  532. (const v8::PropertyCallbackInfo<v8::Array> &);
  533. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  534. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  535. static
  536. v8::Intercepted IndexDeleterCallbackWrapper(
  537. uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
  538. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  539. PropertyCallbackInfo<v8::Boolean>
  540. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  541. IndexDeleterCallback callback = reinterpret_cast<IndexDeleterCallback>(
  542. reinterpret_cast<intptr_t>(
  543. obj->GetInternalField(kIndexPropertyDeleterIndex)
  544. .As<v8::Value>().As<v8::External>()->Value()));
  545. return callback(index, cbinfo);
  546. }
  547. typedef v8::Intercepted (*NativeIndexDeleter)
  548. (uint32_t, const v8::PropertyCallbackInfo<v8::Boolean> &);
  549. static
  550. v8::Intercepted IndexQueryCallbackWrapper(
  551. uint32_t index, const v8::PropertyCallbackInfo<v8::Integer> &info) {
  552. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  553. PropertyCallbackInfo<v8::Integer>
  554. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  555. IndexQueryCallback callback = reinterpret_cast<IndexQueryCallback>(
  556. reinterpret_cast<intptr_t>(
  557. obj->GetInternalField(kIndexPropertyQueryIndex)
  558. .As<v8::Value>().As<v8::External>()->Value()));
  559. return callback(index, cbinfo);
  560. }
  561. typedef v8::Intercepted (*NativeIndexQuery)
  562. (uint32_t, const v8::PropertyCallbackInfo<v8::Integer> &);
  563. #else
  564. static
  565. void IndexDeleterCallbackWrapper(
  566. uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
  567. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  568. PropertyCallbackInfo<v8::Boolean>
  569. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  570. IndexDeleterCallback callback = reinterpret_cast<IndexDeleterCallback>(
  571. reinterpret_cast<intptr_t>(
  572. obj->GetInternalField(kIndexPropertyDeleterIndex)
  573. .As<v8::Value>().As<v8::External>()->Value()));
  574. callback(index, cbinfo);
  575. }
  576. typedef void (*NativeIndexDeleter)
  577. (uint32_t, const v8::PropertyCallbackInfo<v8::Boolean> &);
  578. static
  579. void IndexQueryCallbackWrapper(
  580. uint32_t index, const v8::PropertyCallbackInfo<v8::Integer> &info) {
  581. v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
  582. PropertyCallbackInfo<v8::Integer>
  583. cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
  584. IndexQueryCallback callback = reinterpret_cast<IndexQueryCallback>(
  585. reinterpret_cast<intptr_t>(
  586. obj->GetInternalField(kIndexPropertyQueryIndex)
  587. .As<v8::Value>().As<v8::External>()->Value()));
  588. callback(index, cbinfo);
  589. }
  590. typedef void (*NativeIndexQuery)
  591. (uint32_t, const v8::PropertyCallbackInfo<v8::Integer> &);
  592. #endif
  593. } // end of namespace imp
  594. #endif // NAN_CALLBACKS_12_INL_H_