lua.swg 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /* -----------------------------------------------------------------------------
  2. * lua.swg
  3. *
  4. * SWIG Configuration File for Lua.
  5. * This file is parsed by SWIG before reading any other interface file.
  6. * ----------------------------------------------------------------------------- */
  7. /* -----------------------------------------------------------------------------
  8. * includes
  9. * ----------------------------------------------------------------------------- */
  10. %include <luatypemaps.swg> /* The typemaps */
  11. %include <luaruntime.swg> /* The runtime stuff */
  12. %include <luakw.swg> /* Warnings for Lua keywords */
  13. //%include <typemaps/swigmacros.swg>
  14. /* -----------------------------------------------------------------------------
  15. * constants typemaps
  16. * ----------------------------------------------------------------------------- */
  17. // this basically adds to a table of constants
  18. %typemap(consttab) int, unsigned int, short, unsigned short, long, unsigned long, unsigned char, signed char, bool, enum SWIGTYPE
  19. {SWIG_LUA_CONSTTAB_INT("$symname", $value)}
  20. %typemap(consttab) float, double
  21. {SWIG_LUA_CONSTTAB_FLOAT("$symname", $value)}
  22. %typemap(consttab) long long, unsigned long long, signed long long
  23. {SWIG_LUA_CONSTTAB_FLOAT("$symname", $value)}
  24. %typemap(consttab) const long long&, const unsigned long long&, const signed long long&
  25. {SWIG_LUA_CONSTTAB_FLOAT("$symname", *$value)}
  26. %typemap(consttab) char *, const char *, char [], const char []
  27. {SWIG_LUA_CONSTTAB_STRING("$symname", $value)}
  28. // note: char is treated as a seperate special type
  29. // signed char & unsigned char are numbers
  30. %typemap(consttab) char
  31. {SWIG_LUA_CONSTTAB_CHAR("$symname", $value)}
  32. %typemap(consttab) long long, unsigned long long
  33. {SWIG_LUA_CONSTTAB_STRING("$symname", "$value")}
  34. %typemap(consttab) SWIGTYPE *, SWIGTYPE *const, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE []
  35. { SWIG_LUA_CONSTTAB_POINTER("$symname",$value, $1_descriptor) }
  36. %typemap(consttab) SWIGTYPE
  37. { SWIG_LUA_CONSTTAB_POINTER("$symname",&$value, $&1_descriptor) }
  38. // member function pointers
  39. %typemap(consttab) SWIGTYPE (CLASS::*)
  40. { SWIG_LUA_CONSTTAB_BINARY("$symname", sizeof($type),&$value, $1_descriptor) }
  41. /* -----------------------------------------------------------------------------
  42. * Overloaded operator support
  43. * ----------------------------------------------------------------------------- */
  44. // lua calls the + operator '__add'
  45. // python likes to call it '__add__'
  46. // Assuming most SWIGers will probably use the __add__ if they extend their classes
  47. // we have two sets of renames
  48. // one to rename the operator+() to __add()
  49. // (this lets SWIG rename the operator overloads)
  50. // another is to rename __add__() to __add()
  51. // (this means that people who wrote SWIG code to do that add will also work)
  52. #ifdef __cplusplus
  53. // this is extra renaming for lua
  54. // not all operators are supported, so only those that are, are listed
  55. %rename(__add) *::operator+;
  56. %rename(__sub) *::operator-;
  57. %rename(__mul) *::operator*;
  58. %rename(__div) *::operator/;
  59. %rename(__unm) *::operator-();
  60. %rename(__unm) *::operator-() const;
  61. %rename(__eq) *::operator==;
  62. %ignore *::operator!=; // note: Lua does not have a notequal operator
  63. // it just uses 'not (a==b)'
  64. %rename(__lt) *::operator<;
  65. %ignore *::operator>; // ditto less than vs greater than
  66. %rename(__le) *::operator<=;
  67. %ignore *::operator>=; // ditto less than vs greater than
  68. %ignore *::operator!; // does not support not
  69. %rename(__call) *::operator(); // the fn call operator
  70. // lua does not support overloading of:
  71. // logical/bitwise operators
  72. // assign operator
  73. // +=,-=,*=, etc
  74. // therefore ignoring them for now
  75. // it also doesn't support non class operators
  76. // eg friends or XX operator+(XX,XX)
  77. // also ignoring
  78. // note: some of these might be better to rename, but not doing that for now
  79. %ignore *::operator&&; %ignore operator&&;
  80. %ignore *::operator||; %ignore operator||;
  81. %ignore *::operator+=;
  82. %ignore *::operator-=;
  83. %ignore *::operator*=;
  84. %ignore *::operator/=;
  85. %ignore *::operator%=;
  86. %ignore *::operator++; %ignore *::operator--;
  87. %ignore *::operator=; // note: this might be better to rename to assign() or similar
  88. %ignore operator+;
  89. %ignore operator-;
  90. %ignore operator*;
  91. %ignore operator/;
  92. %ignore operator%;
  93. %ignore operator[];
  94. %ignore operator>; %ignore operator>=;
  95. %ignore operator<; %ignore operator<=;
  96. %ignore operator==; %ignore operator!=;
  97. // renaming the python operators to be compatible with lua
  98. // this means that if a developer has written a fn __add__()
  99. // it will be used for the lua +
  100. %rename(__add) *::__add__;
  101. %rename(__sub) *::__sub__;
  102. %rename(__mul) *::__mul__;
  103. %rename(__div) *::__div__;
  104. %rename(__unm) *::__neg__; // lua calls unary minus,'unm' not 'neg'
  105. %rename(__tostring) *::__str__; // both map to __tostring
  106. %rename(__tostring) *::__repr__; // both map to __tostring
  107. %rename(__pow) *::__pow__; // lua power '^' operator
  108. %rename(__concat) *::__concat__; // lua concat '..' operator
  109. %rename(__eq) *::__eq__;
  110. %rename(__lt) *::__lt__;
  111. %rename(__le) *::__le__;
  112. %rename(__call) *::__call__; // the fn call operator()
  113. // the [] operator has two parts, the get & the set
  114. %rename(__getitem) *::__getitem__; // the v=X[i] (get operator)
  115. %rename(__setitem) *::__setitem__; // the X[i]=v (set operator)
  116. #endif
  117. /* ------------------------------------------------------------
  118. * Exceptions
  119. * ------------------------------------------------------------ */
  120. /* Confession: I don't really like C++ exceptions
  121. The python/lua ones are great, but C++ ones I don't like
  122. (mainly because I cannot get the stack trace out of it)
  123. Therefore I have not bothered to try doing much in this
  124. Therefore currently its just enough to get a few test cases running ok
  125. note: if you wish to throw anything related to std::exception
  126. use %include <std_except.i> instead
  127. */
  128. // number as number+error
  129. %typemap(throws) int,unsigned int,signed int,
  130. long,unsigned long,signed long,
  131. short,unsigned short,signed short,
  132. float,double,
  133. long long,unsigned long long,
  134. unsigned char, signed char,
  135. int&,unsigned int&,signed int&,
  136. long&,unsigned long&,signed long&,
  137. short&,unsigned short&,signed short&,
  138. float&,double&,
  139. long long&,unsigned long long&,
  140. unsigned char&, signed char&
  141. %{lua_pushnumber(L,(lua_Number)$1);SWIG_fail; %}
  142. %typemap(throws) bool,bool&
  143. %{lua_pushboolean(L,(int)($1==true));SWIG_fail; %}
  144. // enum as number+error
  145. %typemap(throws) enum SWIGTYPE
  146. %{lua_pushnumber(L,(lua_Number)(int)$1);SWIG_fail; %}
  147. // strings are just sent as errors
  148. %typemap(throws) char *, const char *
  149. %{lua_pushstring(L,$1);SWIG_fail;%}
  150. // char is changed to a string
  151. %typemap(throws) char
  152. %{lua_pushlstring(L,&$1,1);SWIG_fail;%}
  153. /*
  154. Throwing object is a serious problem:
  155. Assuming some code throws a 'FooBar'
  156. There are a few options:
  157. - return a pointer to it: but its unclear how long this will last for.
  158. - return a copy of it: but not all objects are copyable
  159. (see exception_partial_info in the test suite for a case where you cannot do this)
  160. - convert to a string & throw that
  161. it's not so useful, but it works (this is more lua like).
  162. The third option (though not nice) is used
  163. For a more useful solution: see std_except for more details
  164. */
  165. // basic typemap for structs, classes, pointers & references
  166. // convert to string and error
  167. %typemap(throws) SWIGTYPE
  168. %{(void)$1; /* ignore it */
  169. lua_pushfstring(L,"object exception:%s",SWIG_TypePrettyName($1_descriptor));
  170. SWIG_fail;%}
  171. // code to make a copy of the object and return this
  172. // if you have a function which throws a FooBar & you want SWIG to return a copy of the object as its error
  173. // then use one of the below
  174. // %apply SWIGTYPE EXCEPTION_BY_VAL {FooBar};
  175. // %apply SWIGTYPE& EXCEPTION_BY_VAL {FooBar&}; // note: need & twice
  176. %typemap(throws) SWIGTYPE EXCEPTION_BY_VAL
  177. %{SWIG_NewPointerObj(L,(void *)new $1_ltype(($1_ltype &) $1),$&1_descriptor,1);
  178. SWIG_fail;%}
  179. // similar for object reference
  180. // note: swig typemaps seem a little confused around here, therefore we use $basetype
  181. %typemap(throws) SWIGTYPE& EXCEPTION_BY_VAL
  182. %{SWIG_NewPointerObj(L,(void *)new $basetype($1),$1_descriptor,1);
  183. SWIG_fail;%}
  184. // note: no support for object pointers
  185. // its not clear how long the pointer is valid for, therefore not supporting it
  186. /* -----------------------------------------------------------------------------
  187. * extras
  188. * ----------------------------------------------------------------------------- */
  189. // this %define is to allow insertion of lua source code into the wrapper file
  190. #define %luacode %insert("luacode")
  191. /* ------------------------------ end lua.swg ------------------------------ */