rubyrun.swg 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. /* -----------------------------------------------------------------------------
  2. * rubyrun.swg
  3. *
  4. * This file contains the runtime support for Ruby modules
  5. * and includes code for managing global variables and pointer
  6. * type checking.
  7. * ----------------------------------------------------------------------------- */
  8. /* For backward compatibility only */
  9. #define SWIG_POINTER_EXCEPTION 0
  10. /* for raw pointers */
  11. #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
  12. #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Ruby_ConvertPtrAndOwn(obj, pptr, type, flags, own)
  13. #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Ruby_NewPointerObj(ptr, type, flags)
  14. #define SWIG_AcquirePtr(ptr, own) SWIG_Ruby_AcquirePtr(ptr, own)
  15. #define swig_owntype swig_ruby_owntype
  16. /* for raw packed data */
  17. #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty, flags)
  18. #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
  19. /* for class or struct pointers */
  20. #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
  21. #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
  22. /* for C or C++ function pointers */
  23. #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0)
  24. #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0)
  25. /* for C++ member pointers, ie, member methods */
  26. #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Ruby_ConvertPacked(obj, ptr, sz, ty)
  27. #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Ruby_NewPackedObj(ptr, sz, type)
  28. /* Runtime API */
  29. #define SWIG_GetModule(clientdata) SWIG_Ruby_GetModule(clientdata)
  30. #define SWIG_SetModule(clientdata, pointer) SWIG_Ruby_SetModule(pointer)
  31. /* Error manipulation */
  32. #define SWIG_ErrorType(code) SWIG_Ruby_ErrorType(code)
  33. #define SWIG_Error(code, msg) rb_raise(SWIG_Ruby_ErrorType(code), "%s", msg)
  34. #define SWIG_fail goto fail
  35. /* Ruby-specific SWIG API */
  36. #define SWIG_InitRuntime() SWIG_Ruby_InitRuntime()
  37. #define SWIG_define_class(ty) SWIG_Ruby_define_class(ty)
  38. #define SWIG_NewClassInstance(value, ty) SWIG_Ruby_NewClassInstance(value, ty)
  39. #define SWIG_MangleStr(value) SWIG_Ruby_MangleStr(value)
  40. #define SWIG_CheckConvert(value, ty) SWIG_Ruby_CheckConvert(value, ty)
  41. #include "assert.h"
  42. /* -----------------------------------------------------------------------------
  43. * pointers/data manipulation
  44. * ----------------------------------------------------------------------------- */
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. typedef struct {
  49. VALUE klass;
  50. VALUE mImpl;
  51. void (*mark)(void *);
  52. void (*destroy)(void *);
  53. int trackObjects;
  54. } swig_class;
  55. /* Global pointer used to keep some internal SWIG stuff */
  56. static VALUE _cSWIG_Pointer = Qnil;
  57. static VALUE swig_runtime_data_type_pointer = Qnil;
  58. /* Global IDs used to keep some internal SWIG stuff */
  59. static ID swig_arity_id = 0;
  60. static ID swig_call_id = 0;
  61. /*
  62. If your swig extension is to be run within an embedded ruby and has
  63. director callbacks, you should set -DRUBY_EMBEDDED during compilation.
  64. This will reset ruby's stack frame on each entry point from the main
  65. program the first time a virtual director function is invoked (in a
  66. non-recursive way).
  67. If this is not done, you run the risk of Ruby trashing the stack.
  68. */
  69. #ifdef RUBY_EMBEDDED
  70. # define SWIG_INIT_STACK \
  71. if ( !swig_virtual_calls ) { RUBY_INIT_STACK } \
  72. ++swig_virtual_calls;
  73. # define SWIG_RELEASE_STACK --swig_virtual_calls;
  74. # define Ruby_DirectorTypeMismatchException(x) \
  75. rb_raise( rb_eTypeError, "%s", x ); return c_result;
  76. static unsigned int swig_virtual_calls = 0;
  77. #else /* normal non-embedded extension */
  78. # define SWIG_INIT_STACK
  79. # define SWIG_RELEASE_STACK
  80. # define Ruby_DirectorTypeMismatchException(x) \
  81. throw Swig::DirectorTypeMismatchException( x );
  82. #endif /* RUBY_EMBEDDED */
  83. SWIGRUNTIME VALUE
  84. getExceptionClass(void) {
  85. static int init = 0;
  86. static VALUE rubyExceptionClass ;
  87. if (!init) {
  88. init = 1;
  89. rubyExceptionClass = rb_const_get(_mSWIG, rb_intern("Exception"));
  90. }
  91. return rubyExceptionClass;
  92. }
  93. /* This code checks to see if the Ruby object being raised as part
  94. of an exception inherits from the Ruby class Exception. If so,
  95. the object is simply returned. If not, then a new Ruby exception
  96. object is created and that will be returned to Ruby.*/
  97. SWIGRUNTIME VALUE
  98. SWIG_Ruby_ExceptionType(swig_type_info *desc, VALUE obj) {
  99. VALUE exceptionClass = getExceptionClass();
  100. if (rb_obj_is_kind_of(obj, exceptionClass)) {
  101. return obj;
  102. } else {
  103. return rb_exc_new3(rb_eRuntimeError, rb_obj_as_string(obj));
  104. }
  105. }
  106. /* Initialize Ruby runtime support */
  107. SWIGRUNTIME void
  108. SWIG_Ruby_InitRuntime(void)
  109. {
  110. if (_mSWIG == Qnil) {
  111. _mSWIG = rb_define_module("SWIG");
  112. swig_call_id = rb_intern("call");
  113. swig_arity_id = rb_intern("arity");
  114. }
  115. }
  116. /* Define Ruby class for C type */
  117. SWIGRUNTIME void
  118. SWIG_Ruby_define_class(swig_type_info *type)
  119. {
  120. char *klass_name = (char *) malloc(4 + strlen(type->name) + 1);
  121. sprintf(klass_name, "TYPE%s", type->name);
  122. if (NIL_P(_cSWIG_Pointer)) {
  123. _cSWIG_Pointer = rb_define_class_under(_mSWIG, "Pointer", rb_cObject);
  124. rb_undef_method(CLASS_OF(_cSWIG_Pointer), "new");
  125. }
  126. rb_define_class_under(_mSWIG, klass_name, _cSWIG_Pointer);
  127. free((void *) klass_name);
  128. }
  129. /* Create a new pointer object */
  130. SWIGRUNTIME VALUE
  131. SWIG_Ruby_NewPointerObj(void *ptr, swig_type_info *type, int flags)
  132. {
  133. int own = flags & SWIG_POINTER_OWN;
  134. int track;
  135. char *klass_name;
  136. swig_class *sklass;
  137. VALUE klass;
  138. VALUE obj;
  139. if (!ptr)
  140. return Qnil;
  141. if (type->clientdata) {
  142. sklass = (swig_class *) type->clientdata;
  143. /* Are we tracking this class and have we already returned this Ruby object? */
  144. track = sklass->trackObjects;
  145. if (track) {
  146. obj = SWIG_RubyInstanceFor(ptr);
  147. /* Check the object's type and make sure it has the correct type.
  148. It might not in cases where methods do things like
  149. downcast methods. */
  150. if (obj != Qnil) {
  151. VALUE value = rb_iv_get(obj, "@__swigtype__");
  152. const char* type_name = RSTRING_PTR(value);
  153. if (strcmp(type->name, type_name) == 0) {
  154. return obj;
  155. }
  156. }
  157. }
  158. /* Create a new Ruby object */
  159. obj = Data_Wrap_Struct(sklass->klass, VOIDFUNC(sklass->mark),
  160. ( own ? VOIDFUNC(sklass->destroy) :
  161. (track ? VOIDFUNC(SWIG_RubyRemoveTracking) : 0 )
  162. ), ptr);
  163. /* If tracking is on for this class then track this object. */
  164. if (track) {
  165. SWIG_RubyAddTracking(ptr, obj);
  166. }
  167. } else {
  168. klass_name = (char *) malloc(4 + strlen(type->name) + 1);
  169. sprintf(klass_name, "TYPE%s", type->name);
  170. klass = rb_const_get(_mSWIG, rb_intern(klass_name));
  171. free((void *) klass_name);
  172. obj = Data_Wrap_Struct(klass, 0, 0, ptr);
  173. }
  174. rb_iv_set(obj, "@__swigtype__", rb_str_new2(type->name));
  175. return obj;
  176. }
  177. /* Create a new class instance (always owned) */
  178. SWIGRUNTIME VALUE
  179. SWIG_Ruby_NewClassInstance(VALUE klass, swig_type_info *type)
  180. {
  181. VALUE obj;
  182. swig_class *sklass = (swig_class *) type->clientdata;
  183. obj = Data_Wrap_Struct(klass, VOIDFUNC(sklass->mark), VOIDFUNC(sklass->destroy), 0);
  184. rb_iv_set(obj, "@__swigtype__", rb_str_new2(type->name));
  185. return obj;
  186. }
  187. /* Get type mangle from class name */
  188. SWIGRUNTIMEINLINE char *
  189. SWIG_Ruby_MangleStr(VALUE obj)
  190. {
  191. VALUE stype = rb_iv_get(obj, "@__swigtype__");
  192. return StringValuePtr(stype);
  193. }
  194. /* Acquire a pointer value */
  195. typedef struct {
  196. void (*datafree)(void *);
  197. int own;
  198. } swig_ruby_owntype;
  199. SWIGRUNTIME swig_ruby_owntype
  200. SWIG_Ruby_AcquirePtr(VALUE obj, swig_ruby_owntype own) {
  201. swig_ruby_owntype oldown = {0, 0};
  202. if (obj) {
  203. oldown.datafree = RDATA(obj)->dfree;
  204. RDATA(obj)->dfree = own.datafree;
  205. }
  206. return oldown;
  207. }
  208. /* Convert a pointer value */
  209. SWIGRUNTIME int
  210. SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags, swig_ruby_owntype *own)
  211. {
  212. char *c;
  213. swig_cast_info *tc;
  214. void *vptr = 0;
  215. /* Grab the pointer */
  216. if (NIL_P(obj)) {
  217. if (ptr)
  218. *ptr = 0;
  219. return SWIG_OK;
  220. } else {
  221. if (TYPE(obj) != T_DATA) {
  222. return SWIG_ERROR;
  223. }
  224. Data_Get_Struct(obj, void, vptr);
  225. }
  226. if (own) {
  227. own->datafree = RDATA(obj)->dfree;
  228. own->own = 0;
  229. }
  230. /* Check to see if the input object is giving up ownership
  231. of the underlying C struct or C++ object. If so then we
  232. need to reset the destructor since the Ruby object no
  233. longer owns the underlying C++ object.*/
  234. if (flags & SWIG_POINTER_DISOWN) {
  235. /* Is tracking on for this class? */
  236. int track = 0;
  237. if (ty && ty->clientdata) {
  238. swig_class *sklass = (swig_class *) ty->clientdata;
  239. track = sklass->trackObjects;
  240. }
  241. if (track) {
  242. /* We are tracking objects for this class. Thus we change the destructor
  243. * to SWIG_RubyRemoveTracking. This allows us to
  244. * remove the mapping from the C++ to Ruby object
  245. * when the Ruby object is garbage collected. If we don't
  246. * do this, then it is possible we will return a reference
  247. * to a Ruby object that no longer exists thereby crashing Ruby. */
  248. RDATA(obj)->dfree = SWIG_RubyRemoveTracking;
  249. } else {
  250. RDATA(obj)->dfree = 0;
  251. }
  252. }
  253. /* Do type-checking if type info was provided */
  254. if (ty) {
  255. if ((c = SWIG_MangleStr(obj)) == NULL) {
  256. return SWIG_ERROR;
  257. }
  258. tc = SWIG_TypeCheck(c, ty);
  259. if (!tc) {
  260. return SWIG_ERROR;
  261. } else {
  262. if (vptr == 0) {
  263. /* The object has already been deleted */
  264. return SWIG_ObjectPreviouslyDeletedError;
  265. }
  266. if (ptr) {
  267. if (tc->type == ty) {
  268. *ptr = vptr;
  269. } else {
  270. int newmemory = 0;
  271. *ptr = SWIG_TypeCast(tc, vptr, &newmemory);
  272. if (newmemory == SWIG_CAST_NEW_MEMORY) {
  273. assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */
  274. if (own)
  275. own->own = own->own | SWIG_CAST_NEW_MEMORY;
  276. }
  277. }
  278. }
  279. }
  280. } else {
  281. if (ptr)
  282. *ptr = vptr;
  283. }
  284. return SWIG_OK;
  285. }
  286. /* Check convert */
  287. SWIGRUNTIMEINLINE int
  288. SWIG_Ruby_CheckConvert(VALUE obj, swig_type_info *ty)
  289. {
  290. char *c = SWIG_MangleStr(obj);
  291. if (!c) return 0;
  292. return SWIG_TypeCheck(c,ty) != 0;
  293. }
  294. SWIGRUNTIME VALUE
  295. SWIG_Ruby_NewPackedObj(void *ptr, int sz, swig_type_info *type) {
  296. char result[1024];
  297. char *r = result;
  298. if ((2*sz + 1 + strlen(type->name)) > 1000) return 0;
  299. *(r++) = '_';
  300. r = SWIG_PackData(r, ptr, sz);
  301. strcpy(r, type->name);
  302. return rb_str_new2(result);
  303. }
  304. /* Convert a packed value value */
  305. SWIGRUNTIME int
  306. SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_type_info *ty) {
  307. swig_cast_info *tc;
  308. const char *c;
  309. if (TYPE(obj) != T_STRING) goto type_error;
  310. c = StringValuePtr(obj);
  311. /* Pointer values must start with leading underscore */
  312. if (*c != '_') goto type_error;
  313. c++;
  314. c = SWIG_UnpackData(c, ptr, sz);
  315. if (ty) {
  316. tc = SWIG_TypeCheck(c, ty);
  317. if (!tc) goto type_error;
  318. }
  319. return SWIG_OK;
  320. type_error:
  321. return SWIG_ERROR;
  322. }
  323. SWIGRUNTIME swig_module_info *
  324. SWIG_Ruby_GetModule(void *SWIGUNUSEDPARM(clientdata))
  325. {
  326. VALUE pointer;
  327. swig_module_info *ret = 0;
  328. VALUE verbose = rb_gv_get("VERBOSE");
  329. /* temporarily disable warnings, since the pointer check causes warnings with 'ruby -w' */
  330. rb_gv_set("VERBOSE", Qfalse);
  331. /* first check if pointer already created */
  332. pointer = rb_gv_get("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
  333. if (pointer != Qnil) {
  334. Data_Get_Struct(pointer, swig_module_info, ret);
  335. }
  336. /* reinstate warnings */
  337. rb_gv_set("VERBOSE", verbose);
  338. return ret;
  339. }
  340. SWIGRUNTIME void
  341. SWIG_Ruby_SetModule(swig_module_info *pointer)
  342. {
  343. /* register a new class */
  344. VALUE cl = rb_define_class("swig_runtime_data", rb_cObject);
  345. /* create and store the structure pointer to a global variable */
  346. swig_runtime_data_type_pointer = Data_Wrap_Struct(cl, 0, 0, pointer);
  347. rb_define_readonly_variable("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, &swig_runtime_data_type_pointer);
  348. }
  349. /* This function can be used to check whether a proc or method or similarly
  350. callable function has been passed. Usually used in a %typecheck, like:
  351. %typecheck(c_callback_t, precedence=SWIG_TYPECHECK_POINTER) {
  352. $result = SWIG_Ruby_isCallable( $input );
  353. }
  354. */
  355. SWIGINTERN
  356. int SWIG_Ruby_isCallable( VALUE proc )
  357. {
  358. if ( rb_respond_to( proc, swig_call_id ) )
  359. return 1;
  360. return 0;
  361. }
  362. /* This function can be used to check the arity (number of arguments)
  363. a proc or method can take. Usually used in a %typecheck.
  364. Valid arities will be that equal to minimal or those < 0
  365. which indicate a variable number of parameters at the end.
  366. */
  367. SWIGINTERN
  368. int SWIG_Ruby_arity( VALUE proc, int minimal )
  369. {
  370. if ( rb_respond_to( proc, swig_arity_id ) )
  371. {
  372. VALUE num = rb_funcall( proc, swig_arity_id, 0 );
  373. int arity = NUM2INT(num);
  374. if ( arity < 0 && (arity+1) < -minimal ) return 1;
  375. if ( arity == minimal ) return 1;
  376. return 1;
  377. }
  378. return 0;
  379. }
  380. #ifdef __cplusplus
  381. }
  382. #endif