javascriptcode.swg 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /* -----------------------------------------------------------------------------
  2. * js_ctor: template for wrapping a ctor.
  3. * - $jswrapper: wrapper of called ctor
  4. * - $jslocals: locals part of wrapper
  5. * - $jscode: code part of wrapper
  6. * - $jsargcount: number of arguments
  7. * - $jsmangledtype: mangled type of class
  8. * ----------------------------------------------------------------------------- */
  9. %fragment("js_ctor", "templates") %{
  10. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
  11. SWIGV8_HANDLESCOPE();
  12. v8::Handle<v8::Object> self = args.Holder();
  13. $jslocals
  14. if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  15. $jscode
  16. SWIGV8_SetPrivateData(self, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
  17. SWIGV8_RETURN(self);
  18. goto fail;
  19. fail:
  20. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  21. }
  22. %}
  23. /* -----------------------------------------------------------------------------
  24. * js_veto_ctor: a vetoing ctor for abstract classes
  25. * - $jswrapper: name of wrapper
  26. * - $jsname: class name
  27. * ----------------------------------------------------------------------------- */
  28. %fragment ("js_veto_ctor", "templates")
  29. %{
  30. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
  31. SWIGV8_HANDLESCOPE();
  32. SWIG_exception(SWIG_ERROR, "Class $jsname can not be instantiated");
  33. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  34. }
  35. %}
  36. /* -----------------------------------------------------------------------------
  37. * js_ctor_dispatcher: dispatcher for overloaded constructors
  38. * - $jswrapper: name of wrapper
  39. * - $jsname: class name
  40. * - $jsdispatchcases: part containing code for dispatching
  41. * ----------------------------------------------------------------------------- */
  42. %fragment ("js_ctor_dispatcher", "templates")
  43. %{
  44. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
  45. SWIGV8_HANDLESCOPE();
  46. OverloadErrorHandler errorHandler;
  47. v8::Handle<v8::Value> self;
  48. // switch all cases by means of series of if-returns.
  49. $jsdispatchcases
  50. // default:
  51. SWIG_exception_fail(SWIG_ERROR, "Illegal arguments for construction of $jsmangledname");
  52. fail:
  53. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  54. }
  55. %}
  56. /* -----------------------------------------------------------------------------
  57. * js_overloaded_ctor: template for wrapping a ctor.
  58. * - $jswrapper: wrapper of called ctor
  59. * - $jslocals: locals part of wrapper
  60. * - $jscode: code part of wrapper
  61. * - $jsargcount: number of arguments
  62. * - $jsmangledtype: mangled type of class
  63. * ----------------------------------------------------------------------------- */
  64. %fragment("js_overloaded_ctor", "templates") %{
  65. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args, V8ErrorHandler &SWIGV8_ErrorHandler) {
  66. SWIGV8_HANDLESCOPE();
  67. v8::Handle<v8::Object> self = args.Holder();
  68. $jslocals
  69. if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  70. $jscode
  71. SWIGV8_SetPrivateData(self, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
  72. SWIGV8_RETURN(self);
  73. goto fail;
  74. fail:
  75. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  76. }
  77. %}
  78. /* -----------------------------------------------------------------------------
  79. * js_ctor_dispatch_case: template for a dispatch case for calling an overloaded ctor.
  80. * - $jsargcount: number of arguments of called ctor
  81. * - $jswrapper: wrapper of called ctor
  82. *
  83. * Note: a try-catch-like mechanism is used to switch cases
  84. * ----------------------------------------------------------------------------- */
  85. %fragment ("js_ctor_dispatch_case", "templates")
  86. %{
  87. if(args.Length() == $jsargcount) {
  88. errorHandler.err.Clear();
  89. #if (SWIG_V8_VERSION < 0x031903)
  90. self = $jswrapper(args, errorHandler);
  91. if(errorHandler.err.IsEmpty()) {
  92. SWIGV8_ESCAPE(self);
  93. }
  94. #else
  95. $jswrapper(args, errorHandler);
  96. if(errorHandler.err.IsEmpty()) {
  97. return;
  98. }
  99. #endif
  100. }
  101. %}
  102. /* -----------------------------------------------------------------------------
  103. * js_dtor: template for a destructor wrapper
  104. * - $jsmangledname: mangled class name
  105. * - $jstype: class type
  106. * ----------------------------------------------------------------------------- */
  107. %fragment ("js_dtor", "templates")
  108. %{
  109. #if (SWIG_V8_VERSION < 0x031710)
  110. static void $jswrapper(v8::Persistent< v8::Value > object, void *parameter) {
  111. SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
  112. #elif (SWIG_V8_VERSION < 0x031900)
  113. static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Value> object, void *parameter) {
  114. SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
  115. #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
  116. static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Object> *object, SWIGV8_Proxy *proxy) {
  117. #else
  118. static void $jswrapper(const v8::WeakCallbackData<v8::Object, SWIGV8_Proxy> &data) {
  119. v8::Local<v8::Object> object = data.GetValue();
  120. SWIGV8_Proxy *proxy = data.GetParameter();
  121. #endif
  122. if(proxy->swigCMemOwn && proxy->swigCObject) {
  123. #ifdef SWIGRUNTIME_DEBUG
  124. printf("Deleting wrapped instance: %s\n", proxy->info->name);
  125. #endif
  126. $jsfree proxy->swigCObject;
  127. }
  128. delete proxy;
  129. object.Clear();
  130. #if (SWIG_V8_VERSION < 0x031710)
  131. object.Dispose();
  132. #elif (SWIG_V8_VERSION < 0x031900)
  133. object.Dispose(isolate);
  134. #elif (SWIG_V8_VERSION < 0x032100)
  135. object->Dispose(isolate);
  136. #else
  137. object->Dispose();
  138. #endif
  139. }
  140. %}
  141. /* -----------------------------------------------------------------------------
  142. * js_dtoroverride: template for a destructor wrapper
  143. * - $jsmangledname: mangled class name
  144. * - $jstype: class type
  145. * - ${destructor_action}: The custom destructor action to invoke.
  146. * ----------------------------------------------------------------------------- */
  147. %fragment ("js_dtoroverride", "templates")
  148. %{
  149. #if (SWIG_V8_VERSION < 0x031710)
  150. static void $jswrapper(v8::Persistent<v8::Value> object, void *parameter) {
  151. SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
  152. #elif (SWIG_V8_VERSION < 0x031900)
  153. static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Value> object, void *parameter) {
  154. SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
  155. #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
  156. static void $jswrapper(v8::Isolate *isolate, v8::Persistent< v8::Object> *object, SWIGV8_Proxy *proxy) {
  157. #else
  158. static void $jswrapper(const v8::WeakCallbackData<v8::Object, SWIGV8_Proxy> &data) {
  159. v8::Local<v8::Object> object = data.GetValue();
  160. SWIGV8_Proxy *proxy = data.GetParameter();
  161. #endif
  162. if(proxy->swigCMemOwn && proxy->swigCObject) {
  163. $jstype arg1 = ($jstype)proxy->swigCObject;
  164. ${destructor_action}
  165. }
  166. delete proxy;
  167. #if (SWIG_V8_VERSION < 0x031710)
  168. object.Dispose();
  169. #elif (SWIG_V8_VERSION < 0x031900)
  170. object.Dispose(isolate);
  171. #elif (SWIG_V8_VERSION < 0x032100)
  172. object->Dispose(isolate);
  173. #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
  174. object->Dispose();
  175. #else
  176. object.Clear();
  177. #endif
  178. }
  179. %}
  180. /* -----------------------------------------------------------------------------
  181. * js_getter: template for getter function wrappers
  182. * - $jswrapper: wrapper function name
  183. * - $jslocals: locals part of wrapper
  184. * - $jscode: code part of wrapper
  185. * ----------------------------------------------------------------------------- */
  186. %fragment("js_getter", "templates")
  187. %{
  188. static SwigV8ReturnValue $jswrapper(v8::Local<v8::String> property, const SwigV8PropertyCallbackInfo &info) {
  189. SWIGV8_HANDLESCOPE();
  190. v8::Handle<v8::Value> jsresult;
  191. $jslocals
  192. $jscode
  193. SWIGV8_RETURN_INFO(jsresult, info);
  194. goto fail;
  195. fail:
  196. SWIGV8_RETURN_INFO(SWIGV8_UNDEFINED(), info);
  197. }
  198. %}
  199. /* -----------------------------------------------------------------------------
  200. * js_setter: template for setter function wrappers
  201. * - $jswrapper: wrapper function name
  202. * - $jslocals: locals part of wrapper
  203. * - $jscode: code part of wrapper
  204. * ----------------------------------------------------------------------------- */
  205. %fragment("js_setter", "templates")
  206. %{
  207. static void $jswrapper(v8::Local<v8::String> property, v8::Local<v8::Value> value,
  208. const SwigV8PropertyCallbackInfoVoid &info) {
  209. SWIGV8_HANDLESCOPE();
  210. $jslocals
  211. $jscode
  212. goto fail;
  213. fail:
  214. return;
  215. }
  216. %}
  217. /* -----------------------------------------------------------------------------
  218. * js_function: template for function wrappers
  219. * - $jswrapper: wrapper function name
  220. * - $jslocals: locals part of wrapper
  221. * - $jscode: code part of wrapper
  222. * ----------------------------------------------------------------------------- */
  223. %fragment("js_function", "templates")
  224. %{
  225. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
  226. SWIGV8_HANDLESCOPE();
  227. v8::Handle<v8::Value> jsresult;
  228. $jslocals
  229. if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  230. $jscode
  231. SWIGV8_RETURN(jsresult);
  232. goto fail;
  233. fail:
  234. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  235. }
  236. %}
  237. /* -----------------------------------------------------------------------------
  238. * js_function_dispatcher: template for a function dispatcher for overloaded functions
  239. * - $jswrapper: wrapper function name
  240. * - $jsname: name of the wrapped function
  241. * - $jslocals: locals part of wrapper
  242. * - $jscode: code part of wrapper
  243. * ----------------------------------------------------------------------------- */
  244. %fragment("js_function_dispatcher", "templates")
  245. %{
  246. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
  247. SWIGV8_HANDLESCOPE();
  248. v8::Handle<v8::Value> jsresult;
  249. OverloadErrorHandler errorHandler;
  250. $jscode
  251. SWIG_exception_fail(SWIG_ERROR, "Illegal arguments for function $jsname.");
  252. goto fail;
  253. fail:
  254. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  255. }
  256. %}
  257. /* -----------------------------------------------------------------------------
  258. * js_overloaded_function: template for a overloaded function
  259. * - $jswrapper: wrapper function name
  260. * - $jslocals: locals part of wrapper
  261. * - $jscode: code part of wrapper
  262. * ----------------------------------------------------------------------------- */
  263. %fragment ("js_overloaded_function", "templates")
  264. %{
  265. static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args, V8ErrorHandler &SWIGV8_ErrorHandler)
  266. {
  267. SWIGV8_HANDLESCOPE();
  268. v8::Handle<v8::Value> jsresult;
  269. $jslocals
  270. $jscode
  271. SWIGV8_RETURN(jsresult);
  272. goto fail;
  273. fail:
  274. SWIGV8_RETURN(SWIGV8_UNDEFINED());
  275. }
  276. %}
  277. /* -----------------------------------------------------------------------------
  278. * js_function_dispatch_case: template for a case used in the function dispatcher
  279. * - $jswrapper: wrapper function name
  280. * - $jsargcount: number of arguments of overloaded function
  281. * - $jscode: code part of wrapper
  282. * ----------------------------------------------------------------------------- */
  283. %fragment ("js_function_dispatch_case", "templates")
  284. %{
  285. if(args.Length() == $jsargcount) {
  286. errorHandler.err.Clear();
  287. #if (SWIG_V8_VERSION < 0x031903)
  288. jsresult = $jswrapper(args, errorHandler);
  289. if(errorHandler.err.IsEmpty()) {
  290. SWIGV8_ESCAPE(jsresult);
  291. }
  292. #else
  293. $jswrapper(args, errorHandler);
  294. if(errorHandler.err.IsEmpty()) {
  295. return;
  296. }
  297. #endif
  298. }
  299. %}
  300. /* -----------------------------------------------------------------------------
  301. * jsv8_declare_class_template: template for a class template declaration.
  302. * - $jsmangledname: mangled class name
  303. * ----------------------------------------------------------------------------- */
  304. %fragment("jsv8_declare_class_template", "templates")
  305. %{
  306. SWIGV8_ClientData $jsmangledname_clientData;
  307. %}
  308. /* -----------------------------------------------------------------------------
  309. * jsv8_define_class_template: template for a class template definition.
  310. * - $jsmangledname: mangled class name
  311. * - $jsmangledtype: mangled class type
  312. * - $jsdtor: the dtor wrapper
  313. * ----------------------------------------------------------------------------- */
  314. %fragment("jsv8_define_class_template", "templates")
  315. %{
  316. /* Name: $jsmangledname, Type: $jsmangledtype, Dtor: $jsdtor */
  317. v8::Handle<v8::FunctionTemplate> $jsmangledname_class = SWIGV8_CreateClassTemplate("$jsmangledname");
  318. SWIGV8_SET_CLASS_TEMPL($jsmangledname_clientData.class_templ, $jsmangledname_class);
  319. $jsmangledname_clientData.dtor = $jsdtor;
  320. if (SWIGTYPE_$jsmangledtype->clientdata == 0) {
  321. SWIGTYPE_$jsmangledtype->clientdata = &$jsmangledname_clientData;
  322. }
  323. %}
  324. /* -----------------------------------------------------------------------------
  325. * jsv8_inherit: template for an class inherit statement.
  326. * - $jsmangledname: mangled class name
  327. * - $jsbaseclass: mangled name of the base class
  328. * ----------------------------------------------------------------------------- */
  329. %fragment("jsv8_inherit", "templates")
  330. %{
  331. if (SWIGTYPE_p$jsbaseclass->clientdata && !(static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ.IsEmpty()))
  332. {
  333. #if (SWIG_V8_VERSION < 0x031903)
  334. $jsmangledname_class->Inherit(static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ);
  335. #else
  336. $jsmangledname_class->Inherit(
  337. v8::Local<v8::FunctionTemplate>::New(
  338. v8::Isolate::GetCurrent(),
  339. static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ)
  340. );
  341. #endif
  342. #ifdef SWIGRUNTIME_DEBUG
  343. printf("Inheritance successful $jsmangledname $jsbaseclass\n");
  344. #endif
  345. } else {
  346. #ifdef SWIGRUNTIME_DEBUG
  347. printf("Unable to inherit baseclass, it didn't exist $jsmangledname $jsbaseclass\n");
  348. #endif
  349. }
  350. %}
  351. /* -----------------------------------------------------------------------------
  352. * jsv8_create_class_instance: template for creating an class object.
  353. * - $jsname: class name
  354. * - $jsmangledname: mangled class name
  355. * ----------------------------------------------------------------------------- */
  356. %fragment("jsv8_create_class_instance", "templates")
  357. %{
  358. /* Class: $jsname ($jsmangledname) */
  359. v8::Handle<v8::FunctionTemplate> $jsmangledname_class_0 = SWIGV8_CreateClassTemplate("$jsname");
  360. $jsmangledname_class_0->SetCallHandler($jsctor);
  361. $jsmangledname_class_0->Inherit($jsmangledname_class);
  362. $jsmangledname_class_0->SetHiddenPrototype(true);
  363. v8::Handle<v8::Object> $jsmangledname_obj = $jsmangledname_class_0->GetFunction();
  364. %}
  365. /* -----------------------------------------------------------------------------
  366. * jsv8_register_class: template for a statement that registers a class in a parent namespace.
  367. * - $jsname: class name
  368. * - $jsmangledname: mangled class name
  369. * - $jsparent: mangled name of parent namespace
  370. * ----------------------------------------------------------------------------- */
  371. %fragment("jsv8_register_class", "templates")
  372. %{
  373. $jsparent_obj->Set(SWIGV8_SYMBOL_NEW("$jsname"), $jsmangledname_obj);
  374. %}
  375. /* -----------------------------------------------------------------------------
  376. * jsv8_create_namespace: template for a statement that creates a namespace object.
  377. * - $jsmangledname: mangled namespace name
  378. * ----------------------------------------------------------------------------- */
  379. %fragment("jsv8_create_namespace", "templates")
  380. %{
  381. v8::Handle<v8::Object> $jsmangledname_obj = SWIGV8_OBJECT_NEW();
  382. %}
  383. /* -----------------------------------------------------------------------------
  384. * jsv8_register_namespace: template for a statement that registers a namespace in a parent namespace.
  385. * - $jsname: name of namespace
  386. * - $jsmangledname: mangled name of namespace
  387. * - $jsparent: mangled name of parent namespace
  388. * ----------------------------------------------------------------------------- */
  389. %fragment("jsv8_register_namespace", "templates")
  390. %{
  391. $jsparent_obj->Set(SWIGV8_SYMBOL_NEW("$jsname"), $jsmangledname_obj);
  392. %}
  393. /* -----------------------------------------------------------------------------
  394. * jsv8_register_member_function: template for a statement that registers a member function.
  395. * - $jsmangledname: mangled class name
  396. * - $jsname: name of the function
  397. * - $jswrapper: wrapper of the member function
  398. * ----------------------------------------------------------------------------- */
  399. %fragment("jsv8_register_member_function", "templates")
  400. %{
  401. SWIGV8_AddMemberFunction($jsmangledname_class, "$jsname", $jswrapper);
  402. %}
  403. /* -----------------------------------------------------------------------------
  404. * jsv8_register_member_variable: template for a statement that registers a member variable.
  405. * - $jsmangledname: mangled class name
  406. * - $jsname: name of the function
  407. * - $jsgetter: wrapper of the getter function
  408. * - $jssetter: wrapper of the setter function
  409. * ----------------------------------------------------------------------------- */
  410. %fragment("jsv8_register_member_variable", "templates")
  411. %{
  412. SWIGV8_AddMemberVariable($jsmangledname_class, "$jsname", $jsgetter, $jssetter);
  413. %}
  414. /* -----------------------------------------------------------------------------
  415. * jsv8_register_static_function: template for a statement that registers a static class function.
  416. * - $jsname: function name
  417. * - $jswrapper: wrapper of the function
  418. * - $jsparent: mangled name of parent namespace
  419. *
  420. * Note: this template is also used for global functions.
  421. * ----------------------------------------------------------------------------- */
  422. %fragment("jsv8_register_static_function", "templates")
  423. %{
  424. SWIGV8_AddStaticFunction($jsparent_obj, "$jsname", $jswrapper);
  425. %}
  426. /* -----------------------------------------------------------------------------
  427. * jsv8_register_static_variable: template for a statement that registers a static variable.
  428. * - $jsname: variable name
  429. * - $jsparent: mangled name of parent namespace
  430. * - $jsgetter: wrapper of the getter function
  431. * - $jssetter: wrapper of the setter function
  432. *
  433. * Note: this template is also used for global variables.
  434. * ----------------------------------------------------------------------------- */
  435. %fragment("jsv8_register_static_variable", "templates")
  436. %{
  437. SWIGV8_AddStaticVariable($jsparent_obj, "$jsname", $jsgetter, $jssetter);
  438. %}