javascriptrun.swg 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /* ----------------------------------------------------------------------------
  2. * Errors and exceptions
  3. *
  4. * ---------------------------------------------------------------------------*/
  5. #define SWIG_Error(code, msg) SWIG_JSC_exception(context, exception, code, msg)
  6. #define SWIG_exception(code, msg) SWIG_JSC_exception(context, exception, code, msg)
  7. #define SWIG_fail goto fail
  8. SWIGRUNTIME void SWIG_Javascript_Raise(JSContextRef context, JSValueRef *exception, const char* type) {
  9. JSStringRef message = JSStringCreateWithUTF8CString(type);
  10. JSValueRef error_arguments[1];
  11. JSObjectRef exception_object;
  12. JSValueRef exception_value;
  13. exception_value = JSValueMakeString(context, message);
  14. /* Converting the result to an object will let JavascriptCore add
  15. "sourceURL" (file) and "line" (number) and "message" to the exception,
  16. instead of just returning a raw string. This is extremely important for debugging your errors.
  17. Using JSObjectMakeError is better than JSValueToObject because the latter only populates
  18. "sourceURL" and "line", but not "message" or any others I don't know about.
  19. */
  20. error_arguments[0] = exception_value;
  21. exception_object = JSObjectMakeError(context, 1, error_arguments, NULL);
  22. /* Return the exception_object */
  23. *exception = exception_object;
  24. JSStringRelease(message);
  25. }
  26. SWIGRUNTIME void SWIG_JSC_exception(JSContextRef context, JSValueRef *exception, int code, const char* msg) {
  27. SWIG_Javascript_Raise(context, exception, msg);
  28. }
  29. /* ----------------------------------------------------------------------------
  30. * The parent class of all Proxies
  31. *
  32. * ---------------------------------------------------------------------------*/
  33. typedef struct {
  34. bool swigCMemOwn;
  35. void *swigCObject;
  36. swig_type_info *info;
  37. } SwigPrivData;
  38. SWIGRUNTIME JSValueRef _wrap_SwigObject_disown(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  39. {
  40. JSValueRef jsresult;
  41. JSObjectRef obj = JSValueToObject(context, thisObject, NULL);
  42. SwigPrivData *cdata = (SwigPrivData *) JSObjectGetPrivate(obj);
  43. cdata->swigCMemOwn = false;
  44. jsresult = JSValueMakeUndefined(context);
  45. return jsresult;
  46. }
  47. SWIGRUNTIME JSValueRef _wrap_SwigObject_getCPtr(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  48. {
  49. JSValueRef jsresult;
  50. long result;
  51. JSObjectRef obj = JSValueToObject(context, thisObject, NULL);
  52. SwigPrivData *cdata = (SwigPrivData*) JSObjectGetPrivate(obj);
  53. result = (long) cdata->swigCObject;
  54. jsresult = JSValueMakeNumber(context, result);
  55. return jsresult;
  56. }
  57. SWIGRUNTIME JSValueRef _wrap_SwigObject_equals(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception)
  58. {
  59. JSValueRef jsresult;
  60. bool result;
  61. JSObjectRef obj = JSValueToObject(context, thisObject, NULL);
  62. SwigPrivData *cdata = (SwigPrivData*) JSObjectGetPrivate(obj);
  63. JSObjectRef obj2 = JSValueToObject(context, argv[0], NULL);
  64. SwigPrivData *cdata2 = (SwigPrivData*) JSObjectGetPrivate(obj2);
  65. result = (cdata->swigCObject == cdata2->swigCObject);
  66. jsresult = JSValueMakeBoolean(context, result);
  67. return jsresult;
  68. }
  69. SWIGRUNTIME JSStaticValue _SwigObject_values[] = {
  70. {
  71. 0, 0, 0, 0
  72. }
  73. };
  74. SWIGRUNTIME JSStaticFunction _SwigObject_functions[] = {
  75. {
  76. "disown",_wrap_SwigObject_disown, kJSPropertyAttributeNone
  77. },
  78. {
  79. "equals",_wrap_SwigObject_equals, kJSPropertyAttributeNone
  80. },
  81. {
  82. "getCPtr",_wrap_SwigObject_getCPtr, kJSPropertyAttributeNone
  83. },
  84. {
  85. 0, 0, 0
  86. }
  87. };
  88. SWIGRUNTIME JSClassDefinition _SwigObject_objectDefinition;
  89. SWIGRUNTIME JSClassRef _SwigObject_classRef;
  90. SWIGRUNTIME int SWIG_JSC_ConvertInstancePtr(JSContextRef context, JSObjectRef objRef, void** ptr, swig_type_info *info, int flags) {
  91. SwigPrivData *cdata;
  92. cdata = (SwigPrivData *) JSObjectGetPrivate(objRef);
  93. if(cdata == NULL) {
  94. return SWIG_ERROR;
  95. }
  96. if(cdata->info != info) {
  97. bool type_valid = false;
  98. swig_cast_info *t = info->cast;
  99. while(t != NULL) {
  100. if(t->type == cdata->info) {
  101. type_valid = true;
  102. break;
  103. }
  104. t = t->next;
  105. }
  106. if(!type_valid) {
  107. return SWIG_TypeError;
  108. }
  109. }
  110. *ptr = cdata->swigCObject;
  111. if(flags & SWIG_POINTER_DISOWN) {
  112. cdata->swigCMemOwn = false;
  113. }
  114. return SWIG_OK;
  115. }
  116. SWIGRUNTIME int SWIG_JSC_ConvertPtr(JSContextRef context, JSValueRef valRef, void** ptr, swig_type_info *info, int flags) {
  117. JSObjectRef objRef;
  118. /* special case: JavaScript null => C NULL pointer */
  119. if(JSValueIsNull(context, valRef)) {
  120. *ptr=0;
  121. return SWIG_OK;
  122. }
  123. if(!JSValueIsObject(context, valRef)) {
  124. return SWIG_TypeError;
  125. }
  126. objRef = JSValueToObject(context, valRef, NULL);
  127. if(objRef == NULL) {
  128. return SWIG_ERROR;
  129. }
  130. return SWIG_JSC_ConvertInstancePtr(context, objRef, ptr, info, flags);
  131. }
  132. SWIGRUNTIME JSObjectRef SWIG_JSC_NewPointerObj(JSContextRef context, void *ptr, swig_type_info *info, int flags) {
  133. JSClassRef classRef;
  134. JSObjectRef result;
  135. SwigPrivData *cdata;
  136. if (ptr == NULL) {
  137. // HACK: it is not possible to use JSValueToObject (causing seg-fault)
  138. // This static cast turned out to be a workaround
  139. // In future, we should change the interface of this method
  140. // to return JSValueRef instead of JSObjectRef.
  141. return (JSObjectRef) JSValueMakeNull(context);
  142. }
  143. if(info->clientdata == NULL) {
  144. classRef = _SwigObject_classRef;
  145. } else {
  146. classRef = (JSClassRef) info->clientdata;
  147. }
  148. result = JSObjectMake(context, classRef, NULL);
  149. cdata = (SwigPrivData*) malloc(sizeof(SwigPrivData));
  150. cdata->swigCObject = ptr;
  151. cdata->swigCMemOwn = (flags & SWIG_POINTER_OWN) ? 1 : 0;
  152. cdata->info = info;
  153. JSObjectSetPrivate(result, cdata);
  154. return result;
  155. }
  156. #define SWIG_ConvertPtr(obj, ptr, info, flags) SWIG_JSC_ConvertPtr(context, obj, ptr, info, flags)
  157. #define SWIG_NewPointerObj(ptr, info, flags) SWIG_JSC_NewPointerObj(context, ptr, info, flags)
  158. #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_JSC_ConvertInstancePtr(context, obj, pptr, type, flags)
  159. #define SWIG_NewInstanceObj(thisvalue, type, flags) SWIG_JSC_NewPointerObj(context, thisvalue, type, flags)
  160. #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_JSC_ConvertPtr(context, obj, pptr, type, 0)
  161. #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_JSC_NewPointerObj(context, ptr, type, 0)
  162. /* ----------------------------------------------------------------------------
  163. * A class for packed data
  164. *
  165. * ---------------------------------------------------------------------------*/
  166. typedef struct {
  167. void *data;
  168. size_t size;
  169. swig_type_info *type;
  170. } SwigPackedData;
  171. SWIGRUNTIME JSStaticValue _SwigPackedData_values[] = {
  172. {
  173. 0, 0, 0, 0
  174. }
  175. };
  176. SWIGRUNTIME JSStaticFunction _SwigPackedData_functions[] = {
  177. {
  178. 0, 0, 0
  179. }
  180. };
  181. SWIGRUNTIME JSClassDefinition _SwigPackedData_objectDefinition;
  182. SWIGRUNTIME JSClassRef _SwigPackedData_classRef;
  183. SWIGRUNTIMEINLINE
  184. int SwigJSCPacked_Check(JSContextRef context, JSValueRef valRef) {
  185. return JSValueIsObjectOfClass(context, valRef, _SwigPackedData_classRef);
  186. }
  187. SWIGRUNTIME
  188. swig_type_info* SwigJSCPacked_UnpackData(JSContextRef context, JSValueRef valRef, void *ptr, size_t size) {
  189. if (SwigJSCPacked_Check(context, valRef)) {
  190. JSObjectRef objRef = JSValueToObject(context, valRef, NULL);
  191. SwigPackedData *sobj = (SwigPackedData *) JSObjectGetPrivate(objRef);
  192. if (sobj->size != size) return 0;
  193. memcpy(ptr, sobj->data, size);
  194. return sobj->type;
  195. } else {
  196. return 0;
  197. }
  198. }
  199. SWIGRUNTIME
  200. int SWIG_JSC_ConvertPacked(JSContextRef context, JSValueRef valRef, void *ptr, size_t sz, swig_type_info *ty) {
  201. swig_type_info *to = SwigJSCPacked_UnpackData(context, valRef, ptr, sz);
  202. if (!to) return SWIG_ERROR;
  203. if (ty) {
  204. if (to != ty) {
  205. /* check type cast? */
  206. swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
  207. if (!tc) return SWIG_ERROR;
  208. }
  209. }
  210. return SWIG_OK;
  211. }
  212. SWIGRUNTIME
  213. JSValueRef SWIG_JSC_NewPackedObj(JSContextRef context, void *data, size_t size, swig_type_info *type) {
  214. JSClassRef classRef = _SwigObject_classRef;
  215. JSObjectRef result = JSObjectMake(context, classRef, NULL);
  216. SwigPackedData* cdata = (SwigPackedData*) malloc(sizeof(SwigPackedData));
  217. cdata->data = data;
  218. cdata->size = size;
  219. cdata->type = type;
  220. JSObjectSetPrivate(result, cdata);
  221. return result;
  222. }
  223. /* SwigPackedData wrappers */
  224. SWIGRUNTIME
  225. void _wrap_SwigPackedData_delete(JSObjectRef obj)
  226. {
  227. SwigPackedData* cdata = (SwigPackedData*) JSObjectGetPrivate(obj);
  228. if (cdata) {
  229. free(cdata->data);
  230. }
  231. }
  232. /* for C++ member pointers, ie, member methods */
  233. #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_JSC_ConvertPacked(context, obj, ptr, sz, ty)
  234. #define SWIG_NewMemberObj(ptr, sz, type) SWIG_JSC_NewPackedObj(context, ptr, sz, type)
  235. /* ---------------------------------------------------------------------------
  236. * Support for IN/OUTPUT typemaps (see Lib/typemaps/inoutlist.swg)
  237. *
  238. * ---------------------------------------------------------------------------*/
  239. SWIGRUNTIME
  240. unsigned int SWIGJSC_ArrayLength(JSContextRef context, JSObjectRef arr) {
  241. static JSStringRef LENGTH = 0;
  242. JSValueRef exception = NULL;
  243. JSValueRef js_length;
  244. double length;
  245. if (LENGTH == 0) {
  246. LENGTH = JSStringCreateWithUTF8CString("length");
  247. }
  248. js_length = JSObjectGetProperty(context, arr, LENGTH, &exception);
  249. if (exception == 0 && JSValueIsNumber(context, js_length)) {
  250. length = JSValueToNumber(context, js_length, 0);
  251. return (unsigned int) length;
  252. } else {
  253. return 0;
  254. }
  255. }
  256. SWIGRUNTIME
  257. JSValueRef SWIGJSC_AppendOutput(JSContextRef context, JSValueRef value, JSValueRef obj) {
  258. JSObjectRef arr;
  259. unsigned int length;
  260. if (JSValueIsUndefined(context, value)) {
  261. arr = JSObjectMakeArray(context, 0, 0, 0);
  262. } else {
  263. arr = JSValueToObject(context, value, 0);
  264. }
  265. length = SWIGJSC_ArrayLength(context, arr);
  266. JSObjectSetPropertyAtIndex(context, arr, length, obj, 0);
  267. return arr;
  268. }