javascriptinit.swg 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. %insert(init) %{
  2. #include <assert.h>
  3. SWIGRUNTIME void
  4. SWIG_V8_SetModule(void *, swig_module_info *swig_module) {
  5. v8::Local<v8::Object> global_obj = SWIGV8_CURRENT_CONTEXT()->Global();
  6. v8::Local<v8::External> mod = SWIGV8_EXTERNAL_NEW(swig_module);
  7. assert(!mod.IsEmpty());
  8. global_obj->SetHiddenValue(SWIGV8_STRING_NEW("swig_module_info_data"), mod);
  9. }
  10. SWIGRUNTIME swig_module_info *
  11. SWIG_V8_GetModule(void *) {
  12. v8::Local<v8::Object> global_obj = SWIGV8_CURRENT_CONTEXT()->Global();
  13. v8::Local<v8::Value> moduleinfo = global_obj->GetHiddenValue(SWIGV8_STRING_NEW("swig_module_info_data"));
  14. if (moduleinfo.IsEmpty())
  15. {
  16. // It's not yet loaded
  17. return 0;
  18. }
  19. v8::Local<v8::External> moduleinfo_extern = v8::Local<v8::External>::Cast(moduleinfo);
  20. if (moduleinfo_extern.IsEmpty())
  21. {
  22. // Something's not right
  23. return 0;
  24. }
  25. void *ptr = moduleinfo_extern->Value();
  26. assert(ptr);
  27. swig_module_info *retptr = static_cast<swig_module_info *>(ptr);
  28. assert(retptr);
  29. return retptr;
  30. }
  31. #define SWIG_GetModule(clientdata) SWIG_V8_GetModule(clientdata)
  32. #define SWIG_SetModule(clientdata, pointer) SWIG_V8_SetModule(clientdata, pointer)
  33. %}
  34. %insert(init) "swiginit.swg"
  35. // Open the initializer function definition here
  36. %fragment ("js_initializer_define", "templates") %{
  37. #define SWIGV8_INIT $jsname_initialize
  38. %}
  39. %insert(init) %{
  40. // Note: 'extern "C"'' disables name mangling which makes it easier to load the symbol manually
  41. // TODO: is it ok to do that?
  42. extern "C"
  43. #if (NODE_MODULE_VERSION < 0x000C)
  44. void SWIGV8_INIT (v8::Handle<v8::Object> exports)
  45. #else
  46. void SWIGV8_INIT (v8::Handle<v8::Object> exports, v8::Handle<v8::Object> /*module*/)
  47. #endif
  48. {
  49. SWIG_InitializeModule(static_cast<void *>(&exports));
  50. SWIGV8_HANDLESCOPE();
  51. v8::Handle<v8::Object> exports_obj = exports;
  52. %}
  53. /* -----------------------------------------------------------------------------
  54. * js_initializer: template for the module initializer function
  55. * - $jsname: module name
  56. * - $jsv8nspaces: part with code creating namespace objects
  57. * - $jsv8classtemplates: part with code creating class templates
  58. * - $jsv8wrappers: part with code that registers wrapper functions
  59. * - $jsv8inheritance: part with inherit statements
  60. * - $jsv8classinstances: part with code creating class objects
  61. * - $jsv8staticwrappers: part with code adding static functions to class objects
  62. * - $jsv8registerclasses: part with code that registers class objects in namespaces
  63. * - $jsv8registernspaces: part with code that registers namespaces in parent namespaces
  64. * ----------------------------------------------------------------------------- */
  65. %fragment("js_initializer", "templates")
  66. %{
  67. // a class template for creating proxies of undefined types
  68. SWIGV8_SET_CLASS_TEMPL(SWIGV8_SWIGTYPE_Proxy_class_templ, SWIGV8_CreateClassTemplate("SwigProxy"));
  69. /* create objects for namespaces */
  70. $jsv8nspaces
  71. /* create class templates */
  72. $jsv8classtemplates
  73. /* register wrapper functions */
  74. $jsv8wrappers
  75. /* setup inheritances */
  76. $jsv8inheritance
  77. /* class instances */
  78. $jsv8classinstances
  79. /* add static class functions and variables */
  80. $jsv8staticwrappers
  81. /* register classes */
  82. $jsv8registerclasses
  83. /* create and register namespace objects */
  84. $jsv8registernspaces
  85. }
  86. #if defined(BUILDING_NODE_EXTENSION)
  87. NODE_MODULE($jsname, $jsname_initialize)
  88. #endif
  89. %}