phprun.swg 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /* -----------------------------------------------------------------------------
  2. * phprun.swg
  3. *
  4. * PHP runtime library
  5. * ----------------------------------------------------------------------------- */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include "zend.h"
  10. #include "zend_API.h"
  11. #include "zend_exceptions.h"
  12. #include "php.h"
  13. #include "ext/standard/php_string.h"
  14. #include <stdlib.h> /* for abort(), used in generated code. */
  15. #ifdef ZEND_RAW_FENTRY
  16. /* ZEND_RAW_FENTRY was added somewhere between 5.2.0 and 5.2.3 */
  17. # define SWIG_ZEND_NAMED_FE(ZN, N, A) ZEND_RAW_FENTRY((char*)#ZN, N, A, 0)
  18. #else
  19. /* This causes warnings from GCC >= 4.2 (assigning a string literal to char*).
  20. * But this seems to be unavoidable without directly assuming knowledge of
  21. * the structure, which changed between PHP4 and PHP5. */
  22. # define SWIG_ZEND_NAMED_FE(ZN, N, A) ZEND_NAMED_FE(ZN, N, A)
  23. #endif
  24. #ifndef ZEND_FE_END
  25. # define ZEND_FE_END { NULL, NULL, NULL }
  26. #endif
  27. #ifndef Z_SET_ISREF_P
  28. /* For PHP < 5.3 */
  29. # define Z_SET_ISREF_P(z) (z)->is_ref = 1
  30. #endif
  31. #ifndef Z_SET_REFCOUNT_P
  32. /* For PHP < 5.3 */
  33. # define Z_SET_REFCOUNT_P(z, rc) (z)->refcount = (rc)
  34. #endif
  35. #define SWIG_LONG_CONSTANT(N, V) zend_register_long_constant((char*)#N, sizeof(#N), V, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC)
  36. #define SWIG_DOUBLE_CONSTANT(N, V) zend_register_double_constant((char*)#N, sizeof(#N), V, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC)
  37. #define SWIG_STRING_CONSTANT(N, V) zend_register_stringl_constant((char*)#N, sizeof(#N), (char*)(V), strlen(V), CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC)
  38. #define SWIG_CHAR_CONSTANT(N, V) do {\
  39. static char swig_char = (V);\
  40. zend_register_stringl_constant((char*)#N, sizeof(#N), &swig_char, 1, CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC);\
  41. } while (0)
  42. /* These TSRMLS_ stuff should already be defined now, but with older php under
  43. redhat are not... */
  44. #ifndef TSRMLS_D
  45. #define TSRMLS_D
  46. #endif
  47. #ifndef TSRMLS_DC
  48. #define TSRMLS_DC
  49. #endif
  50. #ifndef TSRMLS_C
  51. #define TSRMLS_C
  52. #endif
  53. #ifndef TSRMLS_CC
  54. #define TSRMLS_CC
  55. #endif
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. /* But in fact SWIG_ConvertPtr is the native interface for getting typed
  60. pointer values out of zvals. We need the TSRMLS_ macros for when we
  61. make PHP type calls later as we handle php resources */
  62. #define SWIG_ConvertPtr(obj,pp,type,flags) SWIG_ZTS_ConvertPtr(obj,pp,type,flags TSRMLS_CC)
  63. #define SWIG_fail goto fail
  64. static const char *default_error_msg = "Unknown error occurred";
  65. static int default_error_code = E_ERROR;
  66. #define SWIG_PHP_Arg_Error_Msg(argnum,extramsg) "Error in argument " #argnum " "#extramsg
  67. #define SWIG_PHP_Error(code,msg) do { SWIG_ErrorCode() = code; SWIG_ErrorMsg() = msg; SWIG_fail; } while (0)
  68. #define SWIG_contract_assert(expr,msg) \
  69. if (!(expr) ) { zend_printf("Contract Assert Failed %s\n",msg ); } else
  70. /* Standard SWIG API */
  71. #define SWIG_GetModule(clientdata) SWIG_Php_GetModule()
  72. #define SWIG_SetModule(clientdata, pointer) SWIG_Php_SetModule(pointer)
  73. /* used to wrap returned objects in so we know whether they are newobject
  74. and need freeing, or not */
  75. typedef struct {
  76. void * ptr;
  77. int newobject;
  78. } swig_object_wrapper;
  79. /* empty zend destructor for types without one */
  80. static ZEND_RSRC_DTOR_FUNC(SWIG_landfill) { (void)rsrc; }
  81. #define SWIG_SetPointerZval(a,b,c,d) SWIG_ZTS_SetPointerZval(a,b,c,d TSRMLS_CC)
  82. #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
  83. static void
  84. SWIG_ZTS_SetPointerZval(zval *z, void *ptr, swig_type_info *type, int newobject TSRMLS_DC) {
  85. /*
  86. * First test for Null pointers. Return those as PHP native NULL
  87. */
  88. if (!ptr ) {
  89. ZVAL_NULL(z);
  90. return;
  91. }
  92. if (type->clientdata) {
  93. swig_object_wrapper *value;
  94. if (! (*(int *)(type->clientdata)))
  95. zend_error(E_ERROR, "Type: %s failed to register with zend",type->name);
  96. value=(swig_object_wrapper *)emalloc(sizeof(swig_object_wrapper));
  97. value->ptr=ptr;
  98. value->newobject=(newobject & 1);
  99. if ((newobject & 2) == 0) {
  100. /* Just register the pointer as a resource. */
  101. ZEND_REGISTER_RESOURCE(z, value, *(int *)(type->clientdata));
  102. } else {
  103. /*
  104. * Wrap the resource in an object, the resource will be accessible
  105. * via the "_cPtr" member. This is currently only used by
  106. * directorin typemaps.
  107. */
  108. zval *resource;
  109. zend_class_entry **ce = NULL;
  110. const char *type_name = type->name+3; /* +3 so: _p_Foo -> Foo */
  111. size_t type_name_len;
  112. int result;
  113. const char * p;
  114. /* Namespace__Foo -> Foo */
  115. /* FIXME: ugly and goes wrong for classes with __ in their names. */
  116. while ((p = strstr(type_name, "__")) != NULL) {
  117. type_name = p + 2;
  118. }
  119. type_name_len = strlen(type_name);
  120. MAKE_STD_ZVAL(resource);
  121. ZEND_REGISTER_RESOURCE(resource, value, *(int *)(type->clientdata));
  122. if (SWIG_PREFIX_LEN > 0) {
  123. char * classname = (char*)emalloc(SWIG_PREFIX_LEN + type_name_len + 1);
  124. strcpy(classname, SWIG_PREFIX);
  125. strcpy(classname + SWIG_PREFIX_LEN, type_name);
  126. result = zend_lookup_class(classname, SWIG_PREFIX_LEN + type_name_len, &ce TSRMLS_CC);
  127. efree(classname);
  128. } else {
  129. result = zend_lookup_class((char *)type_name, type_name_len, &ce TSRMLS_CC);
  130. }
  131. if (result != SUCCESS) {
  132. /* class does not exist */
  133. object_init(z);
  134. } else {
  135. object_init_ex(z, *ce);
  136. }
  137. Z_SET_REFCOUNT_P(z, 1);
  138. Z_SET_ISREF_P(z);
  139. zend_hash_update(HASH_OF(z), (char*)"_cPtr", sizeof("_cPtr"), (void*)&resource, sizeof(zval*), NULL);
  140. }
  141. return;
  142. }
  143. zend_error(E_ERROR, "Type: %s not registered with zend",type->name);
  144. }
  145. /* This pointer conversion routine takes the native pointer p (along with
  146. its type name) and converts it by calling appropriate casting functions
  147. according to ty. The resultant pointer is returned, or NULL is returned
  148. if the pointer can't be cast.
  149. Sadly PHP has no API to find a type name from a type id, only from an
  150. instance of a resource of the type id, so we have to pass type_name as well.
  151. The two functions which might call this are:
  152. SWIG_ZTS_ConvertResourcePtr which gets the type name from the resource
  153. and the registered zend destructors for which we have one per type each
  154. with the type name hard wired in. */
  155. static void *
  156. SWIG_ZTS_ConvertResourceData(void * p, const char *type_name, swig_type_info *ty TSRMLS_DC) {
  157. swig_cast_info *tc;
  158. void *result = 0;
  159. if (!ty) {
  160. /* They don't care about the target type, so just pass on the pointer! */
  161. return p;
  162. }
  163. if (! type_name) {
  164. /* can't convert p to ptr type ty if we don't know what type p is */
  165. return NULL;
  166. }
  167. /* convert and cast p from type_name to ptr as ty. */
  168. tc = SWIG_TypeCheck(type_name, ty);
  169. if (tc) {
  170. int newmemory = 0;
  171. result = SWIG_TypeCast(tc, p, &newmemory);
  172. assert(!newmemory); /* newmemory handling not yet implemented */
  173. }
  174. return result;
  175. }
  176. /* This function returns a pointer of type ty by extracting the pointer
  177. and type info from the resource in z. z must be a resource.
  178. If it fails, NULL is returned.
  179. It uses SWIG_ZTS_ConvertResourceData to do the real work. */
  180. static void *
  181. SWIG_ZTS_ConvertResourcePtr(zval *z, swig_type_info *ty, int flags TSRMLS_DC) {
  182. swig_object_wrapper *value;
  183. void *p;
  184. int type;
  185. const char *type_name;
  186. value = (swig_object_wrapper *) zend_list_find(z->value.lval, &type);
  187. if (type==-1) return NULL;
  188. if (flags & SWIG_POINTER_DISOWN) {
  189. value->newobject = 0;
  190. }
  191. p = value->ptr;
  192. type_name=zend_rsrc_list_get_rsrc_type(z->value.lval TSRMLS_CC);
  193. return SWIG_ZTS_ConvertResourceData(p, type_name, ty TSRMLS_CC);
  194. }
  195. /* We allow passing of a RESOURCE pointing to the object or an OBJECT whose
  196. _cPtr is a resource pointing to the object */
  197. static int
  198. SWIG_ZTS_ConvertPtr(zval *z, void **ptr, swig_type_info *ty, int flags TSRMLS_DC) {
  199. if (z == NULL) {
  200. *ptr = 0;
  201. return 0;
  202. }
  203. switch (z->type) {
  204. case IS_OBJECT: {
  205. zval ** _cPtr;
  206. if (zend_hash_find(HASH_OF(z),(char*)"_cPtr",sizeof("_cPtr"),(void**)&_cPtr)==SUCCESS) {
  207. if ((*_cPtr)->type==IS_RESOURCE) {
  208. *ptr = SWIG_ZTS_ConvertResourcePtr(*_cPtr, ty, flags TSRMLS_CC);
  209. return (*ptr == NULL ? -1 : 0);
  210. }
  211. }
  212. break;
  213. }
  214. case IS_RESOURCE:
  215. *ptr = SWIG_ZTS_ConvertResourcePtr(z, ty, flags TSRMLS_CC);
  216. return (*ptr == NULL ? -1 : 0);
  217. case IS_NULL:
  218. *ptr = 0;
  219. return 0;
  220. }
  221. return -1;
  222. }
  223. static char const_name[] = "swig_runtime_data_type_pointer";
  224. static swig_module_info *SWIG_Php_GetModule() {
  225. zval *pointer;
  226. swig_module_info *ret = 0;
  227. TSRMLS_FETCH();
  228. MAKE_STD_ZVAL(pointer);
  229. if (zend_get_constant(const_name, sizeof(const_name) - 1, pointer TSRMLS_CC)) {
  230. if (pointer->type == IS_LONG) {
  231. ret = (swig_module_info *) pointer->value.lval;
  232. }
  233. }
  234. FREE_ZVAL(pointer);
  235. return ret;
  236. }
  237. static void SWIG_Php_SetModule(swig_module_info *pointer) {
  238. TSRMLS_FETCH();
  239. REGISTER_MAIN_LONG_CONSTANT(const_name, (long) pointer, 0);
  240. }