javascriptcode.swg 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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. %{
  11. static JSObjectRef $jswrapper(JSContextRef context, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  12. {
  13. $jslocals
  14. if(argc != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  15. $jscode
  16. return SWIG_JSC_NewPointerObj(context, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
  17. goto fail;
  18. fail:
  19. return NULL;
  20. }
  21. %}
  22. /* -----------------------------------------------------------------------------
  23. * js_veto_ctor: a vetoing ctor for abstract classes
  24. * - $jswrapper: name of wrapper
  25. * - $jsname: class name
  26. * ----------------------------------------------------------------------------- */
  27. %fragment ("js_veto_ctor", "templates")
  28. %{
  29. static JSObjectRef $jswrapper(JSContextRef context, JSObjectRef ctorObject,
  30. size_t argc, const JSValueRef argv[], JSValueRef* exception)
  31. {
  32. SWIG_exception(SWIG_ERROR, "Class $jsname can not be instantiated");
  33. return 0;
  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 JSObjectRef $jswrapper(JSContextRef context, JSObjectRef ctorObject,
  45. size_t argc, const JSValueRef argv[], JSValueRef* exception)
  46. {
  47. JSObjectRef thisObject = NULL;
  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 $jsname");
  52. fail:
  53. return thisObject;
  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. %{
  66. static JSObjectRef $jswrapper(JSContextRef context, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  67. {
  68. $jslocals
  69. $jscode
  70. return SWIG_JSC_NewPointerObj(context, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
  71. goto fail;
  72. fail:
  73. return NULL;
  74. }
  75. %}
  76. /* -----------------------------------------------------------------------------
  77. * js_ctor_dispatch_case: template for a dispatch case for calling an overloaded ctor.
  78. * - $jsargcount: number of arguments of called ctor
  79. * - $jswrapper: wrapper of called ctor
  80. *
  81. * Note: a try-catch-like mechanism is used to switch cases
  82. * ----------------------------------------------------------------------------- */
  83. %fragment ("js_ctor_dispatch_case", "templates")
  84. %{
  85. if(argc == $jsargcount) {
  86. thisObject = $jswrapper(context, NULL, argc, argv, exception);
  87. if(thisObject != NULL) { *exception=0; return thisObject; } /* reset exception and return */
  88. }
  89. %}
  90. /* -----------------------------------------------------------------------------
  91. * js_dtor: template for a destructor wrapper
  92. * - $jsmangledname: mangled class name
  93. * - $jstype: class type
  94. * ----------------------------------------------------------------------------- */
  95. %fragment ("js_dtor", "templates")
  96. %{
  97. static void $jswrapper(JSObjectRef thisObject)
  98. {
  99. SwigPrivData* t = (SwigPrivData*) JSObjectGetPrivate(thisObject);
  100. if(t) {
  101. if (t->swigCMemOwn) {
  102. free (($jstype)t->swigCObject);
  103. }
  104. JSObjectSetPrivate(thisObject, NULL);
  105. free(t);
  106. }
  107. }
  108. %}
  109. /* -----------------------------------------------------------------------------
  110. * js_dtor: template for a destructor wrapper
  111. * - $jsmangledname: mangled class name
  112. * - $jstype: class type
  113. * - ${destructor_action}: The custom destructor action to invoke.
  114. * ----------------------------------------------------------------------------- */
  115. %fragment ("js_dtoroverride", "templates")
  116. %{
  117. static void $jswrapper(JSObjectRef thisObject)
  118. {
  119. SwigPrivData* t = (SwigPrivData*) JSObjectGetPrivate(thisObject);
  120. if(t) {
  121. if (t->swigCMemOwn) {
  122. $jstype arg1 = ($jstype)t->swigCObject;
  123. ${destructor_action}
  124. }
  125. /* remove the private data to make sure that it isn't accessed elsewhere */
  126. JSObjectSetPrivate(thisObject, NULL);
  127. free(t);
  128. }
  129. }
  130. %}
  131. /* -----------------------------------------------------------------------------
  132. * js_getter: template for getter function wrappers
  133. * - $jswrapper: wrapper function name
  134. * - $jslocals: locals part of wrapper
  135. * - $jscode: code part of wrapper
  136. * ----------------------------------------------------------------------------- */
  137. %fragment ("js_getter", "templates")
  138. %{
  139. static JSValueRef $jswrapper(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
  140. {
  141. $jslocals
  142. JSValueRef jsresult;
  143. $jscode
  144. return jsresult;
  145. goto fail;
  146. fail:
  147. return JSValueMakeUndefined(context);
  148. }
  149. %}
  150. /* -----------------------------------------------------------------------------
  151. * js_setter: template for setter function wrappers
  152. * - $jswrapper: wrapper function name
  153. * - $jslocals: locals part of wrapper
  154. * - $jscode: code part of wrapper
  155. * ----------------------------------------------------------------------------- */
  156. %fragment ("js_setter", "templates")
  157. %{
  158. static bool $jswrapper(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
  159. {
  160. $jslocals
  161. $jscode
  162. return true;
  163. goto fail;
  164. fail:
  165. return false;
  166. }
  167. %}
  168. /* -----------------------------------------------------------------------------
  169. * js_function: template for function wrappers
  170. * - $jswrapper: wrapper function name
  171. * - $jslocals: locals part of wrapper
  172. * - $jscode: code part of wrapper
  173. * ----------------------------------------------------------------------------- */
  174. %fragment ("js_function", "templates")
  175. %{
  176. static JSValueRef $jswrapper(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  177. {
  178. $jslocals
  179. JSValueRef jsresult;
  180. if(argc != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  181. $jscode
  182. return jsresult;
  183. goto fail;
  184. fail:
  185. return JSValueMakeUndefined(context);
  186. }
  187. %}
  188. /* -----------------------------------------------------------------------------
  189. * js_function_dispatcher: template for a function dispatcher for overloaded functions
  190. * - $jswrapper: wrapper function name
  191. * - $jsname: name of the wrapped function
  192. * - $jslocals: locals part of wrapper
  193. * - $jscode: code part of wrapper
  194. * ----------------------------------------------------------------------------- */
  195. %fragment ("js_function_dispatcher", "templates")
  196. %{
  197. static JSValueRef $jswrapper(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  198. {
  199. $jslocals
  200. JSValueRef jsresult;
  201. int res;
  202. $jscode
  203. SWIG_exception_fail(SWIG_ERROR, "Illegal arguments for function $jsname.");
  204. return jsresult;
  205. goto fail;
  206. fail:
  207. return JSValueMakeUndefined(context);
  208. }
  209. %}
  210. /* -----------------------------------------------------------------------------
  211. * js_overloaded_function: template for a overloaded function
  212. * - $jswrapper: wrapper function name
  213. * - $jslocals: locals part of wrapper
  214. * - $jscode: code part of wrapper
  215. * ----------------------------------------------------------------------------- */
  216. %fragment ("js_overloaded_function", "templates")
  217. %{
  218. static int $jswrapper(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception, JSValueRef* p_result)
  219. {
  220. $jslocals
  221. JSValueRef jsresult;
  222. if(argc != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
  223. $jscode
  224. *p_result = jsresult;
  225. return SWIG_OK;
  226. goto fail;
  227. fail:
  228. return SWIG_TypeError;
  229. }
  230. %}
  231. /* -----------------------------------------------------------------------------
  232. * js_function_dispatch_case: template for a case used in the function dispatcher
  233. * - $jswrapper: wrapper function name
  234. * - $jsargcount: number of arguments of overloaded function
  235. * - $jscode: code part of wrapper
  236. * ----------------------------------------------------------------------------- */
  237. %fragment ("js_function_dispatch_case", "templates")
  238. %{
  239. if(argc == $jsargcount) {
  240. res = $jswrapper(context, function, thisObject, argc, argv, exception, &jsresult);
  241. if(res == SWIG_OK) { *exception = 0; return jsresult; }
  242. }
  243. %}
  244. /* -----------------------------------------------------------------------------
  245. * jsc_variable_declaration: template for a variable table entry
  246. * - $jsname: name of the variable
  247. * - $jsgetter: wrapper of getter function
  248. * - $jssetter: wrapper of setter function
  249. * ----------------------------------------------------------------------------- */
  250. %fragment ("jsc_variable_declaration", "templates")
  251. %{
  252. {"$jsname", $jsgetter, $jssetter, kJSPropertyAttributeNone},
  253. %}
  254. /* -----------------------------------------------------------------------------
  255. * jsc_function_declaration: template for a function table entry
  256. * - $jsname: name of the variable
  257. * - $jswrapper: wrapper function
  258. * ----------------------------------------------------------------------------- */
  259. %fragment ("jsc_function_declaration", "templates")
  260. %{
  261. {"$jsname", $jswrapper, kJSPropertyAttributeNone},
  262. %}
  263. /* -----------------------------------------------------------------------------
  264. * jsc_classtemplate_declaration: template for a namespace declaration
  265. * - $jsmangledname: mangled class name
  266. * ----------------------------------------------------------------------------- */
  267. %fragment ("jsc_class_declaration", "templates")
  268. %{
  269. static JSClassDefinition $jsmangledname_classDefinition;
  270. static JSClassDefinition $jsmangledname_objectDefinition;
  271. static JSClassRef $jsmangledname_classRef;
  272. %}
  273. /* -----------------------------------------------------------------------------
  274. * jsc_class_tables: template for a namespace declaration
  275. * - $jsmangledname: mangled class name
  276. * - $jsstaticclassvariables: list of static variable entries
  277. * - $jsstaticclassfunctions: list of static function entries
  278. * - $jsclassvariables: list of member variable entries
  279. * - $jsclassfunctions: list of member function entries
  280. * ----------------------------------------------------------------------------- */
  281. %fragment ("jsc_class_tables", "templates")
  282. %{
  283. static JSStaticValue $jsmangledname_staticValues[] = {
  284. $jsstaticclassvariables
  285. { 0, 0, 0, 0 }
  286. };
  287. static JSStaticFunction $jsmangledname_staticFunctions[] = {
  288. $jsstaticclassfunctions
  289. { 0, 0, 0 }
  290. };
  291. static JSStaticValue $jsmangledname_values[] = {
  292. $jsclassvariables
  293. { 0, 0, 0, 0 }
  294. };
  295. static JSStaticFunction $jsmangledname_functions[] = {
  296. $jsclassfunctions
  297. { 0, 0, 0 }
  298. };
  299. %}
  300. /* -----------------------------------------------------------------------------
  301. * jsc_define_class_template: template for defining a class template
  302. * - $jsmangledname: mangled class name
  303. * - $jsmangledtype: mangled class type
  304. * - $jsctor: wrapper of ctor
  305. * - $jsbaseclass: mangled name of base class
  306. * ----------------------------------------------------------------------------- */
  307. %fragment ("jsc_class_definition", "templates")
  308. %{
  309. $jsmangledname_classDefinition.staticFunctions = $jsmangledname_staticFunctions;
  310. $jsmangledname_classDefinition.staticValues = $jsmangledname_staticValues;
  311. $jsmangledname_classDefinition.callAsConstructor = $jsctor;
  312. $jsmangledname_objectDefinition.finalize = $jsdtor;
  313. $jsmangledname_objectDefinition.staticValues = $jsmangledname_values;
  314. $jsmangledname_objectDefinition.staticFunctions = $jsmangledname_functions;
  315. $jsclass_inheritance
  316. $jsmangledname_classRef = JSClassCreate(&$jsmangledname_objectDefinition);
  317. SWIGTYPE_$jsmangledtype->clientdata = $jsmangledname_classRef;
  318. %}
  319. %fragment ("jsc_class_inherit", templates)
  320. %{
  321. if (SWIGTYPE_p$jsbaseclassmangled != NULL) {
  322. $jsmangledname_objectDefinition.parentClass = (JSClassRef) SWIGTYPE_p$jsbaseclassmangled->clientdata;
  323. }
  324. %}
  325. %fragment ("jsc_class_noinherit", templates)
  326. %{
  327. $jsmangledname_objectDefinition.parentClass = _SwigObject_classRef;
  328. %}
  329. /* -----------------------------------------------------------------------------
  330. * jsc_register_class: template for registration of a class
  331. * - $jsname: class name
  332. * - $jsmangledname: mangled class name
  333. * - $jsnspace: mangled name of namespace
  334. * ----------------------------------------------------------------------------- */
  335. %fragment ("jsc_class_registration", "templates")
  336. %{
  337. JS_registerClass(context, $jsnspace_object, "$jsname", &$jsmangledname_classDefinition);
  338. %}
  339. /* -----------------------------------------------------------------------------
  340. * jsc_nspace_declaration: template for a namespace declaration
  341. * - $jsnspace: mangled name of the namespace
  342. * - $jsglobalvariables: list of variable entries
  343. * - $jsglobalfunctions: list if fuction entries
  344. * ----------------------------------------------------------------------------- */
  345. %fragment ("jsc_nspace_declaration", "templates")
  346. %{
  347. static JSStaticValue $jsnspace_values[] = {
  348. $jsglobalvariables
  349. { 0, 0, 0, 0 }
  350. };
  351. static JSStaticFunction $jsnspace_functions[] = {
  352. $jsglobalfunctions
  353. { 0, 0, 0 }
  354. };
  355. static JSClassDefinition $jsnspace_classDefinition;
  356. static JSObjectRef $jsmangledname_object;
  357. %}
  358. /* -----------------------------------------------------------------------------
  359. * jsc_nspace_definition: template for definition of a namespace object
  360. * - $jsmangledname: mangled name of namespace
  361. * ----------------------------------------------------------------------------- */
  362. %fragment ("jsc_nspace_definition", "templates")
  363. %{
  364. $jsmangledname_classDefinition.staticFunctions = $jsmangledname_functions;
  365. $jsmangledname_classDefinition.staticValues = $jsmangledname_values;
  366. $jsmangledname_object = JSObjectMake(context, JSClassCreate(&$jsmangledname_classDefinition), NULL);
  367. %}
  368. /* -----------------------------------------------------------------------------
  369. * jsc_nspace_registration: template for registration of a namespace object
  370. * - $jsname: name of namespace
  371. * - $jsmangledname: mangled name of namespace
  372. * - $jsparent: mangled name of parent namespace
  373. * ----------------------------------------------------------------------------- */
  374. %fragment ("jsc_nspace_registration", "templates")
  375. %{
  376. JS_registerNamespace(context, $jsmangledname_object, $jsparent_object, "$jsname");
  377. %}