nan_callbacks.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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_H_
  9. #define NAN_CALLBACKS_H_
  10. template<typename T> class FunctionCallbackInfo;
  11. template<typename T> class PropertyCallbackInfo;
  12. template<typename T> class Global;
  13. typedef void(*FunctionCallback)(const FunctionCallbackInfo<v8::Value>&);
  14. typedef void(*GetterCallback)
  15. (v8::Local<v8::String>, const PropertyCallbackInfo<v8::Value>&);
  16. typedef void(*SetterCallback)(
  17. v8::Local<v8::String>,
  18. v8::Local<v8::Value>,
  19. const PropertyCallbackInfo<void>&);
  20. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  21. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  22. typedef v8::Intercepted(*PropertyGetterCallback)(
  23. v8::Local<v8::String>,
  24. const PropertyCallbackInfo<v8::Value>&);
  25. typedef v8::Intercepted(*PropertySetterCallback)(
  26. v8::Local<v8::String>,
  27. v8::Local<v8::Value>,
  28. const PropertyCallbackInfo<void>&);
  29. #else
  30. typedef void(*PropertyGetterCallback)(
  31. v8::Local<v8::String>,
  32. const PropertyCallbackInfo<v8::Value>&);
  33. typedef void(*PropertySetterCallback)(
  34. v8::Local<v8::String>,
  35. v8::Local<v8::Value>,
  36. const PropertyCallbackInfo<v8::Value>&);
  37. #endif
  38. typedef void(*PropertyEnumeratorCallback)
  39. (const PropertyCallbackInfo<v8::Array>&);
  40. #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
  41. (V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
  42. typedef v8::Intercepted(*PropertyDeleterCallback)(
  43. v8::Local<v8::String>,
  44. const PropertyCallbackInfo<v8::Boolean>&);
  45. typedef v8::Intercepted(*PropertyQueryCallback)(
  46. v8::Local<v8::String>,
  47. const PropertyCallbackInfo<v8::Integer>&);
  48. typedef v8::Intercepted(*IndexGetterCallback)(
  49. uint32_t,
  50. const PropertyCallbackInfo<v8::Value>&);
  51. typedef v8::Intercepted(*IndexSetterCallback)(
  52. uint32_t,
  53. v8::Local<v8::Value>,
  54. const PropertyCallbackInfo<void>&);
  55. typedef v8::Intercepted(*IndexEnumeratorCallback)
  56. (const PropertyCallbackInfo<v8::Array>&);
  57. typedef v8::Intercepted(*IndexDeleterCallback)(
  58. uint32_t,
  59. const PropertyCallbackInfo<v8::Boolean>&);
  60. typedef v8::Intercepted(*IndexQueryCallback)(
  61. uint32_t,
  62. const PropertyCallbackInfo<v8::Integer>&);
  63. #else
  64. typedef void(*PropertyDeleterCallback)(
  65. v8::Local<v8::String>,
  66. const PropertyCallbackInfo<v8::Boolean>&);
  67. typedef void(*PropertyQueryCallback)(
  68. v8::Local<v8::String>,
  69. const PropertyCallbackInfo<v8::Integer>&);
  70. typedef void(*IndexGetterCallback)(
  71. uint32_t,
  72. const PropertyCallbackInfo<v8::Value>&);
  73. typedef void(*IndexSetterCallback)(
  74. uint32_t,
  75. v8::Local<v8::Value>,
  76. const PropertyCallbackInfo<v8::Value>&);
  77. typedef void(*IndexEnumeratorCallback)
  78. (const PropertyCallbackInfo<v8::Array>&);
  79. typedef void(*IndexDeleterCallback)(
  80. uint32_t,
  81. const PropertyCallbackInfo<v8::Boolean>&);
  82. typedef void(*IndexQueryCallback)(
  83. uint32_t,
  84. const PropertyCallbackInfo<v8::Integer>&);
  85. #endif
  86. namespace imp {
  87. #if (NODE_MODULE_VERSION < NODE_16_0_MODULE_VERSION)
  88. typedef v8::Local<v8::AccessorSignature> Sig;
  89. #else
  90. typedef v8::Local<v8::Data> Sig;
  91. #endif
  92. static const int kDataIndex = 0;
  93. static const int kFunctionIndex = 1;
  94. static const int kFunctionFieldCount = 2;
  95. static const int kGetterIndex = 1;
  96. static const int kSetterIndex = 2;
  97. static const int kAccessorFieldCount = 3;
  98. static const int kPropertyGetterIndex = 1;
  99. static const int kPropertySetterIndex = 2;
  100. static const int kPropertyEnumeratorIndex = 3;
  101. static const int kPropertyDeleterIndex = 4;
  102. static const int kPropertyQueryIndex = 5;
  103. static const int kPropertyFieldCount = 6;
  104. static const int kIndexPropertyGetterIndex = 1;
  105. static const int kIndexPropertySetterIndex = 2;
  106. static const int kIndexPropertyEnumeratorIndex = 3;
  107. static const int kIndexPropertyDeleterIndex = 4;
  108. static const int kIndexPropertyQueryIndex = 5;
  109. static const int kIndexPropertyFieldCount = 6;
  110. } // end of namespace imp
  111. #if NODE_MODULE_VERSION > NODE_0_10_MODULE_VERSION
  112. # include "nan_callbacks_12_inl.h" // NOLINT(build/include)
  113. #else
  114. # include "nan_callbacks_pre_12_inl.h" // NOLINT(build/include)
  115. #endif
  116. #endif // NAN_CALLBACKS_H_