php.swg 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. /* -----------------------------------------------------------------------------
  2. * php.swg
  3. *
  4. * PHP configuration file
  5. * ----------------------------------------------------------------------------- */
  6. %runtime "swigrun.swg" // Common C API type-checking code
  7. %runtime "phprun.swg" // PHP runtime functions
  8. %include <phpinit.swg> // PHP initialization routine.
  9. %include <globalvar.i> // Global variables.
  10. %include <const.i>
  11. // use %init %{ "/*code goes here*/ " %}
  12. // or %minit %{ "/* code goes here*/ " %} to
  13. // insert code in the PHP_MINIT_FUNCTION
  14. #define %minit %insert("init")
  15. // use %rinit %{ "/* code goes here*/ " %} to
  16. // insert code in the PHP_RINIT_FUNCTION
  17. #define %rinit %insert("rinit")
  18. // use %shutdown %{ " /*code goes here*/ " %} to
  19. // insert code in the PHP_MSHUTDOWN_FUNCTION
  20. #define %shutdown %insert("shutdown")
  21. #define %mshutdown %insert("shutdown")
  22. // use %rshutdown %{ " /*code goes here*/" %} to
  23. // insert code in the PHP_RSHUTDOWN_FUNCTION
  24. #define %rshutdown %insert("rshutdown")
  25. /* Typemaps for input parameters by value */
  26. %include <utils.i>
  27. %pass_by_val(bool,CONVERT_BOOL_IN);
  28. %pass_by_val(size_t, CONVERT_INT_IN);
  29. %pass_by_val(enum SWIGTYPE, CONVERT_INT_IN);
  30. %pass_by_val(signed int, CONVERT_INT_IN);
  31. %pass_by_val(int,CONVERT_INT_IN);
  32. %pass_by_val(unsigned int,CONVERT_INT_IN);
  33. %pass_by_val(signed short, CONVERT_INT_IN);
  34. %pass_by_val(short,CONVERT_INT_IN);
  35. %pass_by_val(unsigned short, CONVERT_INT_IN);
  36. %pass_by_val(signed long, CONVERT_INT_IN);
  37. %pass_by_val(long, CONVERT_INT_IN);
  38. %pass_by_val(unsigned long, CONVERT_INT_IN);
  39. %pass_by_val(signed long long, CONVERT_LONG_LONG_IN);
  40. %pass_by_val(long long, CONVERT_LONG_LONG_IN);
  41. %pass_by_val(unsigned long long, CONVERT_UNSIGNED_LONG_LONG_IN);
  42. %pass_by_val(signed char, CONVERT_INT_IN);
  43. %pass_by_val(char, CONVERT_CHAR_IN);
  44. %pass_by_val(unsigned char, CONVERT_INT_IN);
  45. %pass_by_val(float, CONVERT_FLOAT_IN);
  46. %pass_by_val(double, CONVERT_FLOAT_IN);
  47. %pass_by_val(char *, CONVERT_STRING_IN);
  48. %typemap(in) char *& = const char *&;
  49. %typemap(directorout) char *& = const char *&;
  50. // char array can be in/out, though the passed string may not be big enough...
  51. // so we have to size it
  52. %typemap(in) char[ANY]
  53. {
  54. convert_to_string_ex($input);
  55. $1 = ($1_ltype) Z_STRVAL_PP($input);
  56. }
  57. %typemap(in) (char *STRING, int LENGTH), (char *STRING, size_t LENGTH) {
  58. convert_to_string_ex($input);
  59. $1 = ($1_ltype) Z_STRVAL_PP($input);
  60. $2 = ($2_ltype) Z_STRLEN_PP($input);
  61. }
  62. /* Object passed by value. Convert to a pointer */
  63. %typemap(in) SWIGTYPE ($&1_ltype tmp)
  64. {
  65. if(SWIG_ConvertPtr(*$input, (void **) &tmp, $&1_descriptor, 0) < 0 || tmp == NULL) {
  66. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $&1_descriptor");
  67. }
  68. $1 = *tmp;
  69. }
  70. %typemap(directorout) SWIGTYPE ($&1_ltype tmp)
  71. {
  72. /* If exit was via exception, PHP NULL is returned so skip the conversion. */
  73. if (!EG(exception)) {
  74. if(SWIG_ConvertPtr($input, (void **) &tmp, $&1_descriptor, 0) < 0 || tmp == NULL)
  75. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $&1_descriptor");
  76. $result = *tmp;
  77. }
  78. }
  79. %typemap(in) SWIGTYPE *,
  80. SWIGTYPE []
  81. {
  82. if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, 0) < 0) {
  83. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor");
  84. }
  85. }
  86. %typemap(in) SWIGTYPE &
  87. {
  88. if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, 0) < 0 || $1 == NULL) {
  89. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor");
  90. }
  91. }
  92. %typemap(in) SWIGTYPE &&
  93. {
  94. if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, 0) < 0 || $1 == NULL) {
  95. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor");
  96. }
  97. }
  98. %typemap(in) SWIGTYPE *const& ($*ltype temp)
  99. {
  100. if(SWIG_ConvertPtr(*$input, (void **) &temp, $*1_descriptor, 0) < 0) {
  101. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $*1_descriptor");
  102. }
  103. $1 = ($1_ltype)&temp;
  104. }
  105. %typemap(in) SWIGTYPE *DISOWN
  106. {
  107. if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, SWIG_POINTER_DISOWN ) < 0) {
  108. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $&1_descriptor");
  109. }
  110. }
  111. %typemap(argout) SWIGTYPE *,
  112. SWIGTYPE [],
  113. SWIGTYPE &,
  114. SWIGTYPE &&;
  115. %typemap(in) void *
  116. {
  117. if(SWIG_ConvertPtr(*$input, (void **) &$1, 0, 0) < 0) {
  118. /* Allow NULL from php for void* */
  119. if ((*$input)->type==IS_NULL) $1=0;
  120. else
  121. SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $&1_descriptor");
  122. }
  123. }
  124. /* Special case when void* is passed by reference so it can be made to point
  125. to opaque api structs */
  126. %typemap(in) void ** ($*1_ltype ptr, int force),
  127. void *& ($*1_ltype ptr, int force)
  128. {
  129. /* If they pass NULL by reference, make it into a void*
  130. This bit should go in arginit if arginit support init-ing scripting args */
  131. if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, 0) < 0) {
  132. /* So... we didn't get a ref or ptr, but we'll accept NULL by reference */
  133. if (!((*$input)->type==IS_NULL && PZVAL_IS_REF(*$input))) {
  134. /* wasn't a pre/ref/thing, OR anything like an int thing */
  135. SWIG_PHP_Error(E_ERROR, "Type error in argument $arg of $symname.");
  136. }
  137. }
  138. force=0;
  139. if (arg1==NULL) {
  140. #ifdef __cplusplus
  141. ptr=new $*1_ltype();
  142. #else
  143. ptr=($*1_ltype) calloc(1,sizeof($*1_ltype));
  144. #endif
  145. $1=&ptr;
  146. /* have to passback arg$arg too */
  147. force=1;
  148. }
  149. }
  150. %typemap(argout) void **,
  151. void *&
  152. {
  153. if (force$argnum) {
  154. SWIG_SetPointerZval( *$input, (void*) ptr$argnum, $*1_descriptor, 1);
  155. }
  156. }
  157. /* Typemap for output values */
  158. %typemap(out) int,
  159. unsigned int,
  160. short,
  161. unsigned short,
  162. long,
  163. unsigned long,
  164. signed char,
  165. unsigned char,
  166. bool,
  167. size_t
  168. {
  169. ZVAL_LONG(return_value,$1);
  170. }
  171. %typemap(out) enum SWIGTYPE
  172. {
  173. ZVAL_LONG(return_value, (long)$1);
  174. }
  175. %typemap(out) long long
  176. %{
  177. if ((long long)LONG_MIN <= $1 && $1 <= (long long)LONG_MAX) {
  178. return_value->value.lval = (long)($1);
  179. return_value->type = IS_LONG;
  180. } else {
  181. char temp[256];
  182. sprintf(temp, "%lld", (long long)$1);
  183. ZVAL_STRING(return_value, temp, 1);
  184. }
  185. %}
  186. %typemap(out) unsigned long long
  187. %{
  188. if ($1 <= (unsigned long long)LONG_MAX) {
  189. return_value->value.lval = (long)($1);
  190. return_value->type = IS_LONG;
  191. } else {
  192. char temp[256];
  193. sprintf(temp, "%llu", (unsigned long long)$1);
  194. ZVAL_STRING(return_value, temp, 1);
  195. }
  196. %}
  197. %typemap(out) const int &,
  198. const unsigned int &,
  199. const short &,
  200. const unsigned short &,
  201. const long &,
  202. const unsigned long &,
  203. const signed char &,
  204. const unsigned char &,
  205. const bool &,
  206. const size_t &
  207. {
  208. ZVAL_LONG(return_value,*$1);
  209. }
  210. %typemap(out) const enum SWIGTYPE &
  211. {
  212. ZVAL_LONG(return_value, (long)*$1);
  213. }
  214. %typemap(out) const enum SWIGTYPE &&
  215. {
  216. ZVAL_LONG(return_value, (long)*$1);
  217. }
  218. %typemap(out) const long long &
  219. %{
  220. if ((long long)LONG_MIN <= *$1 && *$1 <= (long long)LONG_MAX) {
  221. return_value->value.lval = (long)(*$1);
  222. return_value->type = IS_LONG;
  223. } else {
  224. char temp[256];
  225. sprintf(temp, "%lld", (long long)(*$1));
  226. ZVAL_STRING(return_value, temp, 1);
  227. }
  228. %}
  229. %typemap(out) const unsigned long long &
  230. %{
  231. if (*$1 <= (unsigned long long)LONG_MAX) {
  232. return_value->value.lval = (long)(*$1);
  233. return_value->type = IS_LONG;
  234. } else {
  235. char temp[256];
  236. sprintf(temp, "%llu", (unsigned long long)(*$1));
  237. ZVAL_STRING(return_value, temp, 1);
  238. }
  239. %}
  240. %typemap(directorin) int,
  241. unsigned int,
  242. short,
  243. unsigned short,
  244. long,
  245. unsigned long,
  246. signed char,
  247. unsigned char,
  248. size_t,
  249. enum SWIGTYPE
  250. {
  251. ZVAL_LONG($input,$1);
  252. }
  253. %typemap(directorin) enum SWIGTYPE
  254. {
  255. ZVAL_LONG($input, (long)$1_name);
  256. }
  257. %typemap(directorin) char *, char []
  258. {
  259. if(!$1) {
  260. ZVAL_NULL($input);
  261. } else {
  262. ZVAL_STRING($input, (char *)$1, 1);
  263. }
  264. }
  265. %typemap(out) bool
  266. {
  267. ZVAL_BOOL(return_value,($1)?1:0);
  268. }
  269. %typemap(out) const bool &
  270. {
  271. ZVAL_BOOL(return_value,(*$1)?1:0);
  272. }
  273. %typemap(directorin) bool
  274. {
  275. ZVAL_BOOL($input,($1)?1:0);
  276. }
  277. %typemap(out) float,
  278. double
  279. {
  280. ZVAL_DOUBLE(return_value,$1);
  281. }
  282. %typemap(out) const float &,
  283. const double &
  284. {
  285. ZVAL_DOUBLE(return_value,*$1);
  286. }
  287. %typemap(directorin) float,
  288. double
  289. {
  290. ZVAL_DOUBLE($input,$1);
  291. }
  292. %typemap(out) char
  293. {
  294. ZVAL_STRINGL(return_value,&$1, 1, 1);
  295. }
  296. %typemap(out) const char &
  297. {
  298. ZVAL_STRINGL(return_value,&*$1, 1, 1);
  299. }
  300. %typemap(out) char *,
  301. char []
  302. {
  303. if(!$1) {
  304. ZVAL_NULL(return_value);
  305. } else {
  306. ZVAL_STRING(return_value, (char *)$1, 1);
  307. }
  308. }
  309. %typemap(out) char *&
  310. {
  311. if(!*$1) {
  312. ZVAL_NULL(return_value);
  313. } else {
  314. ZVAL_STRING(return_value, (char *)*$1, 1);
  315. }
  316. }
  317. %typemap(out) SWIGTYPE *,
  318. SWIGTYPE [],
  319. SWIGTYPE &,
  320. SWIGTYPE &&
  321. %{
  322. SWIG_SetPointerZval(return_value, (void *)$1, $1_descriptor, $owner);
  323. %}
  324. %typemap(out) SWIGTYPE *const&
  325. %{
  326. SWIG_SetPointerZval(return_value, (void *)*$1, $*1_descriptor, $owner);
  327. %}
  328. %typemap(directorin) SWIGTYPE *,
  329. SWIGTYPE [],
  330. SWIGTYPE &,
  331. SWIGTYPE &&
  332. %{
  333. SWIG_SetPointerZval($input, (void *)&$1, $1_descriptor, ($owner)|2);
  334. %}
  335. %typemap(out, fragment="swig_php_init_member_ptr") SWIGTYPE (CLASS::*)
  336. {
  337. void * p = emalloc(sizeof($1));
  338. memcpy(p, &$1, sizeof($1));
  339. zval * resource;
  340. MAKE_STD_ZVAL(resource);
  341. ZEND_REGISTER_RESOURCE(resource, p, swig_member_ptr);
  342. SWIG_SetPointerZval(return_value, (void *)&$1, $1_descriptor, $owner);
  343. }
  344. %typemap(in, fragment="swig_php_init_member_ptr") SWIGTYPE (CLASS::*)
  345. {
  346. void * p = (void*)zend_fetch_resource($input TSRMLS_CC, -1, SWIG_MEMBER_PTR, NULL, 1, swig_member_ptr);
  347. memcpy(&$1, p, sizeof($1));
  348. }
  349. %typemap(out) SWIGTYPE *DYNAMIC,
  350. SWIGTYPE &DYNAMIC
  351. {
  352. swig_type_info *ty = SWIG_TypeDynamicCast($1_descriptor, (void **) &$1);
  353. SWIG_SetPointerZval(return_value, (void *)$1, ty, $owner);
  354. }
  355. %typemap(out) SWIGTYPE
  356. #ifdef __cplusplus
  357. {
  358. $&1_ltype resultobj = new $1_ltype((const $1_ltype &) $1);
  359. SWIG_SetPointerZval(return_value, (void *)resultobj, $&1_descriptor, 1);
  360. }
  361. #else
  362. {
  363. $&1_ltype resultobj = ($&1_ltype) emalloc(sizeof($1_type));
  364. memcpy(resultobj, &$1, sizeof($1_type));
  365. SWIG_SetPointerZval(return_value, (void *)resultobj, $&1_descriptor, 1);
  366. }
  367. #endif
  368. %typemap(directorin) SWIGTYPE
  369. {
  370. SWIG_SetPointerZval($input, SWIG_as_voidptr(&$1), $&1_descriptor, 2);
  371. }
  372. %typemap(out) void "";
  373. %typemap(out) char [ANY]
  374. {
  375. int len = 0;
  376. while (len < $1_dim0 && $1[len]) ++len;
  377. RETVAL_STRINGL($1, len, 1);
  378. }
  379. // This typecheck does hard checking for proper argument type. If you want
  380. // an argument to be converted from a different PHP type, you must convert
  381. // it yourself before passing it (e.g. (string)4.7 or (int)"6").
  382. %define %php_typecheck(_type,_prec,is)
  383. %typemap(typecheck,precedence=_prec) _type, const _type &
  384. " $1 = (Z_TYPE_PP($input) == is); "
  385. %enddef
  386. %php_typecheck(int,SWIG_TYPECHECK_INTEGER,IS_LONG)
  387. %php_typecheck(unsigned int,SWIG_TYPECHECK_UINT32,IS_LONG)
  388. %php_typecheck(short,SWIG_TYPECHECK_INT16,IS_LONG)
  389. %php_typecheck(unsigned short,SWIG_TYPECHECK_UINT16,IS_LONG)
  390. %php_typecheck(long,SWIG_TYPECHECK_INT32,IS_LONG)
  391. %php_typecheck(unsigned long,SWIG_TYPECHECK_UINT32,IS_LONG)
  392. %php_typecheck(long long,SWIG_TYPECHECK_INT64,IS_LONG)
  393. %php_typecheck(unsigned long long,SWIG_TYPECHECK_UINT64,IS_LONG)
  394. %php_typecheck(signed char,SWIG_TYPECHECK_INT8,IS_LONG)
  395. %php_typecheck(unsigned char,SWIG_TYPECHECK_UINT8,IS_LONG)
  396. %php_typecheck(size_t,SWIG_TYPECHECK_SIZE,IS_LONG)
  397. %php_typecheck(enum SWIGTYPE,SWIG_TYPECHECK_INTEGER,IS_LONG)
  398. %php_typecheck(bool,SWIG_TYPECHECK_BOOL,IS_BOOL)
  399. %php_typecheck(float,SWIG_TYPECHECK_FLOAT,IS_DOUBLE)
  400. %php_typecheck(double,SWIG_TYPECHECK_DOUBLE,IS_DOUBLE)
  401. %php_typecheck(char,SWIG_TYPECHECK_CHAR,IS_STRING)
  402. %typemap(typecheck,precedence=SWIG_TYPECHECK_STRING) char *, char *&, char []
  403. " $1 = (Z_TYPE_PP($input) == IS_STRING); "
  404. %typecheck(SWIG_TYPECHECK_POINTER) SWIGTYPE
  405. {
  406. void *tmp;
  407. _v = (SWIG_ConvertPtr(*$input, (void **)&tmp, $&1_descriptor, 0) >= 0);
  408. }
  409. %typecheck(SWIG_TYPECHECK_POINTER)
  410. SWIGTYPE *,
  411. SWIGTYPE [],
  412. SWIGTYPE &,
  413. SWIGTYPE &&,
  414. SWIGTYPE *const&
  415. {
  416. void *tmp;
  417. _v = (SWIG_ConvertPtr(*$input, (void**)&tmp, $1_descriptor, 0) >= 0);
  418. }
  419. %typecheck(SWIG_TYPECHECK_POINTER) SWIGTYPE *const&
  420. {
  421. void *tmp;
  422. _v = (SWIG_ConvertPtr(*$input, (void**)&tmp, $*1_descriptor, 0) >= 0);
  423. }
  424. %typecheck(SWIG_TYPECHECK_VOIDPTR) void *
  425. {
  426. void *tmp;
  427. _v = (SWIG_ConvertPtr(*$input, (void**)&tmp, 0, 0) >= 0);
  428. }
  429. /* Exception handling */
  430. %typemap(throws) int,
  431. long,
  432. short,
  433. unsigned int,
  434. unsigned long,
  435. unsigned short {
  436. zend_throw_exception(NULL, const_cast<char*>("C++ $1_type exception thrown"), $1 TSRMLS_CC);
  437. return;
  438. }
  439. %typemap(throws) SWIGTYPE, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE *, SWIGTYPE [], SWIGTYPE [ANY] %{
  440. (void)$1;
  441. zend_throw_exception(NULL, const_cast<char*>("C++ $1_type exception thrown"), 0 TSRMLS_CC);
  442. return;
  443. %}
  444. %typemap(throws) char * %{
  445. zend_throw_exception(NULL, const_cast<char*>($1), 0 TSRMLS_CC);
  446. return;
  447. %}
  448. /* Array reference typemaps */
  449. %apply SWIGTYPE & { SWIGTYPE ((&)[ANY]) }
  450. %apply SWIGTYPE && { SWIGTYPE ((&&)[ANY]) }
  451. /* const pointers */
  452. %apply SWIGTYPE * { SWIGTYPE *const }
  453. /* php keywords */
  454. %include <phpkw.swg>