/tags/v-1-3-a6-dev-post-xml-patch/SWIG/Lib/python/typemaps.i

# · Swig · 561 lines · 471 code · 90 blank · 0 comment · 0 complexity · d89202509d82da81062a345ed1ad7e3c MD5 · raw file

  1. //
  2. // SWIG Typemap library
  3. // Dave Beazley
  4. // May 5, 1997
  5. //
  6. // Python implementation
  7. //
  8. // This library provides standard typemaps for modifying SWIG's behavior.
  9. // With enough entries in this file, I hope that very few people actually
  10. // ever need to write a typemap.
  11. //
  12. // Disclaimer : Unless you really understand how typemaps work, this file
  13. // probably isn't going to make much sense.
  14. //
  15. #ifdef AUTODOC
  16. %section "Typemap Library (Python)",info,after,pre,nosort,skip=1,chop_left=3,chop_right=0,chop_top=0,chop_bottom=0
  17. %text %{
  18. %include typemaps.i
  19. The SWIG typemap library provides a language independent mechanism for
  20. supporting output arguments, input values, and other C function
  21. calling mechanisms. The primary use of the library is to provide a
  22. better interface to certain C function--especially those involving
  23. pointers.
  24. %}
  25. #endif
  26. // ------------------------------------------------------------------------
  27. // Pointer handling
  28. //
  29. // These mappings provide support for input/output arguments and common
  30. // uses for C/C++ pointers.
  31. // ------------------------------------------------------------------------
  32. // INPUT typemaps.
  33. // These remap a C pointer to be an "INPUT" value which is passed by value
  34. // instead of reference.
  35. #ifdef AUTODOC
  36. %subsection "Input Methods"
  37. %text %{
  38. The following methods can be applied to turn a pointer into a simple
  39. "input" value. That is, instead of passing a pointer to an object,
  40. you would use a real value instead.
  41. int *INPUT
  42. short *INPUT
  43. long *INPUT
  44. unsigned int *INPUT
  45. unsigned short *INPUT
  46. unsigned long *INPUT
  47. unsigned char *INPUT
  48. float *INPUT
  49. double *INPUT
  50. To use these, suppose you had a C function like this :
  51. double fadd(double *a, double *b) {
  52. return *a+*b;
  53. }
  54. You could wrap it with SWIG as follows :
  55. %include typemaps.i
  56. double fadd(double *INPUT, double *INPUT);
  57. or you can use the %apply directive :
  58. %include typemaps.i
  59. %apply double *INPUT { double *a, double *b };
  60. double fadd(double *a, double *b);
  61. %}
  62. #endif
  63. %typemap(python,in) double *INPUT(double temp)
  64. {
  65. temp = PyFloat_AsDouble($source);
  66. $target = &temp;
  67. }
  68. %typemap(python,in) float *INPUT(float temp)
  69. {
  70. temp = (float) PyFloat_AsDouble($source);
  71. $target = &temp;
  72. }
  73. %typemap(python,in) int *INPUT(int temp)
  74. {
  75. temp = (int) PyInt_AsLong($source);
  76. $target = &temp;
  77. }
  78. %typemap(python,in) short *INPUT(short temp)
  79. {
  80. temp = (short) PyInt_AsLong($source);
  81. $target = &temp;
  82. }
  83. %typemap(python,in) long *INPUT(long temp)
  84. {
  85. temp = (long) PyInt_AsLong($source);
  86. $target = &temp;
  87. }
  88. %typemap(python,in) unsigned int *INPUT(unsigned int temp)
  89. {
  90. temp = (unsigned int) PyInt_AsLong($source);
  91. $target = &temp;
  92. }
  93. %typemap(python,in) unsigned short *INPUT(unsigned short temp)
  94. {
  95. temp = (unsigned short) PyInt_AsLong($source);
  96. $target = &temp;
  97. }
  98. %typemap(python,in) unsigned long *INPUT(unsigned long temp)
  99. {
  100. temp = (unsigned long) PyInt_AsLong($source);
  101. $target = &temp;
  102. }
  103. %typemap(python,in) unsigned char *INPUT(unsigned char temp)
  104. {
  105. temp = (unsigned char) PyInt_AsLong($source);
  106. $target = &temp;
  107. }
  108. %typemap(python,in) signed char *INPUT(signed char temp)
  109. {
  110. temp = (unsigned char) PyInt_AsLong($source);
  111. $target = &temp;
  112. }
  113. // OUTPUT typemaps. These typemaps are used for parameters that
  114. // are output only. The output value is appended to the result as
  115. // a list element.
  116. #ifdef AUTODOC
  117. %subsection "Output Methods"
  118. %text %{
  119. The following methods can be applied to turn a pointer into an "output"
  120. value. When calling a function, no input value would be given for
  121. a parameter, but an output value would be returned. In the case of
  122. multiple output values, they are returned in the form of a Python tuple.
  123. int *OUTPUT
  124. short *OUTPUT
  125. long *OUTPUT
  126. unsigned int *OUTPUT
  127. unsigned short *OUTPUT
  128. unsigned long *OUTPUT
  129. unsigned char *OUTPUT
  130. float *OUTPUT
  131. double *OUTPUT
  132. A Python List can also be returned by using L_OUTPUT instead of OUTPUT.
  133. For example, suppose you were trying to wrap the modf() function in the
  134. C math library which splits x into integral and fractional parts (and
  135. returns the integer part in one of its parameters).K:
  136. double modf(double x, double *ip);
  137. You could wrap it with SWIG as follows :
  138. %include typemaps.i
  139. double modf(double x, double *OUTPUT);
  140. or you can use the %apply directive :
  141. %include typemaps.i
  142. %apply double *OUTPUT { double *ip };
  143. double modf(double x, double *ip);
  144. The Python output of the function would be a tuple containing both
  145. output values.
  146. %}
  147. #endif
  148. // Helper function for List output
  149. %{
  150. static PyObject* l_output_helper(PyObject* target, PyObject* o) {
  151. PyObject* o2;
  152. if (!target) {
  153. target = o;
  154. } else if (target == Py_None) {
  155. Py_DECREF(Py_None);
  156. target = o;
  157. } else {
  158. if (!PyList_Check(target)) {
  159. o2 = target;
  160. target = PyList_New(0);
  161. PyList_Append(target, o2);
  162. Py_XDECREF(o2);
  163. }
  164. PyList_Append(target,o);
  165. Py_XDECREF(o);
  166. }
  167. return target;
  168. }
  169. %}
  170. // Force the argument to be ignored.
  171. %typemap(python,ignore) int *L_OUTPUT(int temp),
  172. short *L_OUTPUT(short temp),
  173. long *L_OUTPUT(long temp),
  174. unsigned int *L_OUTPUT(unsigned int temp),
  175. unsigned short *L_OUTPUT(unsigned short temp),
  176. unsigned long *L_OUTPUT(unsigned long temp),
  177. unsigned char *L_OUTPUT(unsigned char temp),
  178. signed char *L_OUTPUT(signed char temp),
  179. float *L_OUTPUT(float temp),
  180. double *L_OUTPUT(double temp)
  181. {
  182. $target = &temp;
  183. }
  184. %typemap(python,argout) int *L_OUTPUT,
  185. short *L_OUTPUT,
  186. long *L_OUTPUT,
  187. unsigned int *L_OUTPUT,
  188. unsigned short *L_OUTPUT,
  189. unsigned long *L_OUTPUT,
  190. unsigned char *L_OUTPUT,
  191. signed char *L_OUTPUT
  192. {
  193. PyObject *o;
  194. o = PyInt_FromLong((long) (*$source));
  195. l_output_helper($target,o);
  196. }
  197. %typemap(python,argout) float *L_OUTPUT,
  198. double *L_OUTPUT
  199. {
  200. PyObject *o;
  201. o = PyFloat_FromDouble((double) (*$source));
  202. $target = l_output_helper($target,o);
  203. }
  204. // These typemaps contributed by Robin Dunn
  205. //----------------------------------------------------------------------
  206. //
  207. // T_OUTPUT typemap (and helper function) to return multiple argouts as
  208. // a tuple instead of a list.
  209. //
  210. // Author: Robin Dunn
  211. //----------------------------------------------------------------------
  212. %{
  213. static PyObject* t_output_helper(PyObject* target, PyObject* o) {
  214. PyObject* o2;
  215. PyObject* o3;
  216. if (!target) {
  217. target = o;
  218. } else if (target == Py_None) {
  219. Py_DECREF(Py_None);
  220. target = o;
  221. } else {
  222. if (!PyTuple_Check(target)) {
  223. o2 = target;
  224. target = PyTuple_New(1);
  225. PyTuple_SetItem(target, 0, o2);
  226. }
  227. o3 = PyTuple_New(1);
  228. PyTuple_SetItem(o3, 0, o);
  229. o2 = target;
  230. target = PySequence_Concat(o2, o3);
  231. Py_DECREF(o2);
  232. Py_DECREF(o3);
  233. }
  234. return target;
  235. }
  236. %}
  237. // Force the argument to be ignored.
  238. %typemap(python,ignore) int *T_OUTPUT(int temp),
  239. short *T_OUTPUT(short temp),
  240. long *T_OUTPUT(long temp),
  241. unsigned int *T_OUTPUT(unsigned int temp),
  242. unsigned short *T_OUTPUT(unsigned short temp),
  243. unsigned long *T_OUTPUT(unsigned long temp),
  244. unsigned char *T_OUTPUT(unsigned char temp),
  245. float *T_OUTPUT(float temp),
  246. double *T_OUTPUT(double temp)
  247. {
  248. $target = &temp;
  249. }
  250. %typemap(python,argout) int *T_OUTPUT,
  251. short *T_OUTPUT,
  252. long *T_OUTPUT,
  253. unsigned int *T_OUTPUT,
  254. unsigned short *T_OUTPUT,
  255. unsigned long *T_OUTPUT,
  256. unsigned char *T_OUTPUT
  257. {
  258. PyObject *o;
  259. o = PyInt_FromLong((long) (*$source));
  260. $target = t_output_helper($target, o);
  261. }
  262. %typemap(python,argout) float *T_OUTPUT,
  263. double *T_OUTPUT
  264. {
  265. PyObject *o;
  266. o = PyFloat_FromDouble((double) (*$source));
  267. $target = t_output_helper($target, o);
  268. }
  269. // Set the default output typemap
  270. #ifdef OUTPUT_LIST
  271. %typemap(python,ignore) int *OUTPUT = int *L_OUTPUT;
  272. %typemap(python,ignore) short *OUTPUT = short *L_OUTPUT;
  273. %typemap(python,ignore) long *OUTPUT = long *L_OUTPUT;
  274. %typemap(python,ignore) unsigned *OUTPUT = unsigned *L_OUTPUT;
  275. %typemap(python,ignore) unsigned short *OUTPUT = unsigned short *L_OUTPUT;
  276. %typemap(python,ignore) unsigned long *OUTPUT = unsigned long *L_OUTPUT;
  277. %typemap(python,ignore) unsigned char *OUTPUT = unsigned char *L_OUTPUT;
  278. %typemap(python,ignore) signed char *OUTPUT = signed char *L_OUTPUT;
  279. %typemap(python,ignore) double *OUTPUT = double *L_OUTPUT;
  280. %typemap(python,ignore) float *OUTPUT = float *L_OUTPUT;
  281. %typemap(python,argout) int *OUTPUT = int *L_OUTPUT;
  282. %typemap(python,argout) short *OUTPUT = short *L_OUTPUT;
  283. %typemap(python,argout) long *OUTPUT = long *L_OUTPUT;
  284. %typemap(python,argout) unsigned *OUTPUT = unsigned *L_OUTPUT;
  285. %typemap(python,argout) unsigned short *OUTPUT = unsigned short *L_OUTPUT;
  286. %typemap(python,argout) unsigned long *OUTPUT = unsigned long *L_OUTPUT;
  287. %typemap(python,argout) unsigned char *OUTPUT = unsigned char *L_OUTPUT;
  288. %typemap(python,argout) signed char *OUTPUT = signed char *L_OUTPUT;
  289. %typemap(python,argout) double *OUTPUT = double *L_OUTPUT;
  290. %typemap(python,argout) float *OUTPUT = float *L_OUTPUT;
  291. #else
  292. %typemap(python,ignore) int *OUTPUT = int *T_OUTPUT;
  293. %typemap(python,ignore) short *OUTPUT = short *T_OUTPUT;
  294. %typemap(python,ignore) long *OUTPUT = long *T_OUTPUT;
  295. %typemap(python,ignore) unsigned *OUTPUT = unsigned *T_OUTPUT;
  296. %typemap(python,ignore) unsigned short *OUTPUT = unsigned short *T_OUTPUT;
  297. %typemap(python,ignore) unsigned long *OUTPUT = unsigned long *T_OUTPUT;
  298. %typemap(python,ignore) unsigned char *OUTPUT = unsigned char *T_OUTPUT;
  299. %typemap(python,ignore) signed char *OUTPUT = signed char *T_OUTPUT;
  300. %typemap(python,ignore) double *OUTPUT = double *T_OUTPUT;
  301. %typemap(python,ignore) float *OUTPUT = float *T_OUTPUT;
  302. %typemap(python,argout) int *OUTPUT = int *T_OUTPUT;
  303. %typemap(python,argout) short *OUTPUT = short *T_OUTPUT;
  304. %typemap(python,argout) long *OUTPUT = long *T_OUTPUT;
  305. %typemap(python,argout) unsigned *OUTPUT = unsigned *T_OUTPUT;
  306. %typemap(python,argout) unsigned short *OUTPUT = unsigned short *T_OUTPUT;
  307. %typemap(python,argout) unsigned long *OUTPUT = unsigned long *T_OUTPUT;
  308. %typemap(python,argout) unsigned char *OUTPUT = unsigned char *T_OUTPUT;
  309. %typemap(python,argout) signed char *OUTPUT = signed char *T_OUTPUT;
  310. %typemap(python,argout) double *OUTPUT = double *T_OUTPUT;
  311. %typemap(python,argout) float *OUTPUT = float *T_OUTPUT;
  312. #endif
  313. // INOUT
  314. // Mappings for an argument that is both an input and output
  315. // parameter
  316. #ifdef AUTODOC
  317. %subsection "Input/Output Methods"
  318. %text %{
  319. The following methods can be applied to make a function parameter both
  320. an input and output value. This combines the behavior of both the
  321. "INPUT" and "OUTPUT" methods described earlier. Output values are
  322. returned in the form of a Python tuple. To return a Python list,
  323. using L_INOUT instead.
  324. int *INOUT
  325. short *INOUT
  326. long *INOUT
  327. unsigned int *INOUT
  328. unsigned short *INOUT
  329. unsigned long *INOUT
  330. unsigned char *INOUT
  331. float *INOUT
  332. double *INOUT
  333. For example, suppose you were trying to wrap the following function :
  334. void neg(double *x) {
  335. *x = -(*x);
  336. }
  337. You could wrap it with SWIG as follows :
  338. %include typemaps.i
  339. void neg(double *INOUT);
  340. or you can use the %apply directive :
  341. %include typemaps.i
  342. %apply double *INOUT { double *x };
  343. void neg(double *x);
  344. Unlike C, this mapping does not directly modify the input value (since
  345. this makes no sense in Python). Rather, the modified input value shows
  346. up as the return value of the function. Thus, to apply this function
  347. to a Python variable you might do this :
  348. x = neg(x)
  349. Note : previous versions of SWIG used the symbol 'BOTH' to mark
  350. input/output arguments. This is still supported, but will be slowly
  351. phased out in future releases.
  352. %}
  353. #endif
  354. %typemap(python,in) int *INOUT = int *INPUT;
  355. %typemap(python,in) short *INOUT = short *INPUT;
  356. %typemap(python,in) long *INOUT = long *INPUT;
  357. %typemap(python,in) unsigned *INOUT = unsigned *INPUT;
  358. %typemap(python,in) unsigned short *INOUT = unsigned short *INPUT;
  359. %typemap(python,in) unsigned long *INOUT = unsigned long *INPUT;
  360. %typemap(python,in) unsigned char *INOUT = unsigned char *INPUT;
  361. %typemap(python,in) float *INOUT = float *INPUT;
  362. %typemap(python,in) double *INOUT = double *INPUT;
  363. %typemap(python,argout) int *INOUT = int *OUTPUT;
  364. %typemap(python,argout) short *INOUT = short *OUTPUT;
  365. %typemap(python,argout) long *INOUT = long *OUTPUT;
  366. %typemap(python,argout) unsigned *INOUT = unsigned *OUTPUT;
  367. %typemap(python,argout) unsigned short *INOUT = unsigned short *OUTPUT;
  368. %typemap(python,argout) unsigned long *INOUT = unsigned long *OUTPUT;
  369. %typemap(python,argout) unsigned char *INOUT = unsigned char *OUTPUT;
  370. %typemap(python,argout) float *INOUT = float *OUTPUT;
  371. %typemap(python,argout) double *INOUT = double *OUTPUT;
  372. %typemap(python,in) int *T_INOUT = int *INPUT;
  373. %typemap(python,in) short *T_INOUT = short *INPUT;
  374. %typemap(python,in) long *T_INOUT = long *INPUT;
  375. %typemap(python,in) unsigned *T_INOUT = unsigned *INPUT;
  376. %typemap(python,in) unsigned short *T_INOUT = unsigned short *INPUT;
  377. %typemap(python,in) unsigned long *T_INOUT = unsigned long *INPUT;
  378. %typemap(python,in) unsigned char *T_INOUT = unsigned char *INPUT;
  379. %typemap(python,in) float *T_INOUT = float *INPUT;
  380. %typemap(python,in) double *T_INOUT = double *INPUT;
  381. %typemap(python,argout) int *T_INOUT = int *T_OUTPUT;
  382. %typemap(python,argout) short *T_INOUT = short *T_OUTPUT;
  383. %typemap(python,argout) long *T_INOUT = long *T_OUTPUT;
  384. %typemap(python,argout) unsigned *T_INOUT = unsigned *T_OUTPUT;
  385. %typemap(python,argout) unsigned short *T_INOUT = unsigned short *T_OUTPUT;
  386. %typemap(python,argout) unsigned long *T_INOUT = unsigned long *T_OUTPUT;
  387. %typemap(python,argout) unsigned char *T_INOUT = unsigned char *T_OUTPUT;
  388. %typemap(python,argout) float *T_INOUT = float *T_OUTPUT;
  389. %typemap(python,argout) double *T_INOUT = double *T_OUTPUT;
  390. %typemap(python,in) int *L_INOUT = int *INPUT;
  391. %typemap(python,in) short *L_INOUT = short *INPUT;
  392. %typemap(python,in) long *L_INOUT = long *INPUT;
  393. %typemap(python,in) unsigned *L_INOUT = unsigned *INPUT;
  394. %typemap(python,in) unsigned short *L_INOUT = unsigned short *INPUT;
  395. %typemap(python,in) unsigned long *L_INOUT = unsigned long *INPUT;
  396. %typemap(python,in) unsigned char *L_INOUT = unsigned char *INPUT;
  397. %typemap(python,in) float *L_INOUT = float *INPUT;
  398. %typemap(python,in) double *L_INOUT = double *INPUT;
  399. %typemap(python,argout) int *L_INOUT = int *L_OUTPUT;
  400. %typemap(python,argout) short *L_INOUT = short *L_OUTPUT;
  401. %typemap(python,argout) long *L_INOUT = long *L_OUTPUT;
  402. %typemap(python,argout) unsigned *L_INOUT = unsigned *L_OUTPUT;
  403. %typemap(python,argout) unsigned short *L_INOUT = unsigned short *L_OUTPUT;
  404. %typemap(python,argout) unsigned long *L_INOUT = unsigned long *L_OUTPUT;
  405. %typemap(python,argout) unsigned char *L_INOUT = unsigned char *L_OUTPUT;
  406. %typemap(python,argout) float *L_INOUT = float *L_OUTPUT;
  407. %typemap(python,argout) double *L_INOUT = double *L_OUTPUT;
  408. // Backwards compatibility
  409. %typemap(python,in) int *BOTH = int *INOUT;
  410. %typemap(python,in) short *BOTH = short *INOUT;
  411. %typemap(python,in) long *BOTH = long *INOUT;
  412. %typemap(python,in) unsigned *BOTH = unsigned *INOUT;
  413. %typemap(python,in) unsigned short *BOTH = unsigned short *INOUT;
  414. %typemap(python,in) unsigned long *BOTH = unsigned long *INOUT;
  415. %typemap(python,in) unsigned char *BOTH = unsigned char *INOUT;
  416. %typemap(python,in) float *BOTH = float *INOUT;
  417. %typemap(python,in) double *BOTH = double *INOUT;
  418. %typemap(python,argout) int *BOTH = int *INOUT;
  419. %typemap(python,argout) short *BOTH = short *INOUT;
  420. %typemap(python,argout) long *BOTH = long *INOUT;
  421. %typemap(python,argout) unsigned *BOTH = unsigned *INOUT;
  422. %typemap(python,argout) unsigned short *BOTH = unsigned short *INOUT;
  423. %typemap(python,argout) unsigned long *BOTH = unsigned long *INOUT;
  424. %typemap(python,argout) unsigned char *BOTH = unsigned char *INOUT;
  425. %typemap(python,argout) float *BOTH = float *INOUT;
  426. %typemap(python,argout) double *BOTH = double *INOUT;
  427. %typemap(python,in) int *T_BOTH = int *T_INOUT;
  428. %typemap(python,in) short *T_BOTH = short *T_INOUT;
  429. %typemap(python,in) long *T_BOTH = long *T_INOUT;
  430. %typemap(python,in) unsigned *T_BOTH = unsigned *T_INOUT;
  431. %typemap(python,in) unsigned short *T_BOTH = unsigned short *T_INOUT;
  432. %typemap(python,in) unsigned long *T_BOTH = unsigned long *T_INOUT;
  433. %typemap(python,in) unsigned char *T_BOTH = unsigned char *T_INOUT;
  434. %typemap(python,in) float *T_BOTH = float *T_INOUT;
  435. %typemap(python,in) double *T_BOTH = double *T_INOUT;
  436. %typemap(python,argout) int *T_BOTH = int *T_INOUT;
  437. %typemap(python,argout) short *T_BOTH = short *T_INOUT;
  438. %typemap(python,argout) long *T_BOTH = long *T_INOUT;
  439. %typemap(python,argout) unsigned *T_BOTH = unsigned *T_INOUT;
  440. %typemap(python,argout) unsigned short *T_BOTH = unsigned short *T_INOUT;
  441. %typemap(python,argout) unsigned long *T_BOTH = unsigned long *T_INOUT;
  442. %typemap(python,argout) unsigned char *T_BOTH = unsigned char *T_INOUT;
  443. %typemap(python,argout) float *T_BOTH = float *T_INOUT;
  444. %typemap(python,argout) double *T_BOTH = double *T_INOUT;
  445. // --------------------------------------------------------------------
  446. // Special types
  447. //
  448. // --------------------------------------------------------------------
  449. #ifdef AUTODOC
  450. %subsection "Special Methods"
  451. %text %{
  452. The typemaps.i library also provides the following mappings :
  453. PyObject *
  454. When a PyObject * appears as either an input value or return
  455. value of a function, SWIG passes it through unmodified. Thus,
  456. if you want to write a C function that operates on PyObjects,
  457. it is easy to write. For example :
  458. %include typemaps.i
  459. PyObject *spam(PyObject *obj1, int n);
  460. Unlike normal Python wrapper functions, These functions can
  461. use any combination of parameters that you wish.
  462. %}
  463. #endif
  464. // If a PyObject * appears as either an argument or a function return
  465. // value, simply pass it straight through.
  466. %typemap(python,in) PyObject * {
  467. $target = $source;
  468. }
  469. %typemap(python,out) PyObject * {
  470. $target = $source;
  471. }