exception.i 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. /* -----------------------------------------------------------------------------
  2. * exception.i
  3. *
  4. * SWIG library file providing language independent exception handling
  5. * ----------------------------------------------------------------------------- */
  6. #if defined(SWIGUTL)
  7. #error "This version of exception.i should not be used"
  8. #endif
  9. %insert("runtime") "swigerrors.swg"
  10. #ifdef SWIGPHP
  11. %{
  12. #include "zend_exceptions.h"
  13. #define SWIG_exception(code, msg) zend_throw_exception(NULL, (char*)msg, code TSRMLS_CC)
  14. %}
  15. #endif
  16. #ifdef SWIGGUILE
  17. %{
  18. SWIGINTERN void SWIG_exception_ (int code, const char *msg,
  19. const char *subr) {
  20. #define ERROR(scmerr) \
  21. scm_error(scm_from_locale_string((char *) (scmerr)), \
  22. (char *) subr, (char *) msg, \
  23. SCM_EOL, SCM_BOOL_F)
  24. #define MAP(swigerr, scmerr) \
  25. case swigerr: \
  26. ERROR(scmerr); \
  27. break
  28. switch (code) {
  29. MAP(SWIG_MemoryError, "swig-memory-error");
  30. MAP(SWIG_IOError, "swig-io-error");
  31. MAP(SWIG_RuntimeError, "swig-runtime-error");
  32. MAP(SWIG_IndexError, "swig-index-error");
  33. MAP(SWIG_TypeError, "swig-type-error");
  34. MAP(SWIG_DivisionByZero, "swig-division-by-zero");
  35. MAP(SWIG_OverflowError, "swig-overflow-error");
  36. MAP(SWIG_SyntaxError, "swig-syntax-error");
  37. MAP(SWIG_ValueError, "swig-value-error");
  38. MAP(SWIG_SystemError, "swig-system-error");
  39. default:
  40. ERROR("swig-error");
  41. }
  42. #undef ERROR
  43. #undef MAP
  44. }
  45. #define SWIG_exception(a,b) SWIG_exception_(a, b, FUNC_NAME)
  46. %}
  47. #endif
  48. #ifdef SWIGMZSCHEME
  49. %{
  50. SWIGINTERN void SWIG_exception_ (int code, const char *msg) {
  51. #define ERROR(errname) \
  52. scheme_signal_error(errname " (%s)", msg);
  53. #define MAP(swigerr, errname) \
  54. case swigerr: \
  55. ERROR(errname); \
  56. break
  57. switch (code) {
  58. MAP(SWIG_MemoryError, "swig-memory-error");
  59. MAP(SWIG_IOError, "swig-io-error");
  60. MAP(SWIG_RuntimeError, "swig-runtime-error");
  61. MAP(SWIG_IndexError, "swig-index-error");
  62. MAP(SWIG_TypeError, "swig-type-error");
  63. MAP(SWIG_DivisionByZero, "swig-division-by-zero");
  64. MAP(SWIG_OverflowError, "swig-overflow-error");
  65. MAP(SWIG_SyntaxError, "swig-syntax-error");
  66. MAP(SWIG_ValueError, "swig-value-error");
  67. MAP(SWIG_SystemError, "swig-system-error");
  68. default:
  69. ERROR("swig-error");
  70. }
  71. #undef ERROR
  72. #undef MAP
  73. }
  74. #define SWIG_exception(a,b) SWIG_exception_(a, b)
  75. %}
  76. #endif
  77. #ifdef SWIGJAVA
  78. %{
  79. SWIGINTERN void SWIG_JavaException(JNIEnv *jenv, int code, const char *msg) {
  80. SWIG_JavaExceptionCodes exception_code = SWIG_JavaUnknownError;
  81. switch(code) {
  82. case SWIG_MemoryError:
  83. exception_code = SWIG_JavaOutOfMemoryError;
  84. break;
  85. case SWIG_IOError:
  86. exception_code = SWIG_JavaIOException;
  87. break;
  88. case SWIG_SystemError:
  89. case SWIG_RuntimeError:
  90. exception_code = SWIG_JavaRuntimeException;
  91. break;
  92. case SWIG_OverflowError:
  93. case SWIG_IndexError:
  94. exception_code = SWIG_JavaIndexOutOfBoundsException;
  95. break;
  96. case SWIG_DivisionByZero:
  97. exception_code = SWIG_JavaArithmeticException;
  98. break;
  99. case SWIG_SyntaxError:
  100. case SWIG_ValueError:
  101. case SWIG_TypeError:
  102. exception_code = SWIG_JavaIllegalArgumentException;
  103. break;
  104. case SWIG_UnknownError:
  105. default:
  106. exception_code = SWIG_JavaUnknownError;
  107. break;
  108. }
  109. SWIG_JavaThrowException(jenv, exception_code, msg);
  110. }
  111. %}
  112. #define SWIG_exception(code, msg)\
  113. { SWIG_JavaException(jenv, code, msg); return $null; }
  114. #endif // SWIGJAVA
  115. #ifdef SWIGOCAML
  116. %{
  117. #define OCAML_MSG_BUF_LEN 1024
  118. SWIGINTERN void SWIG_exception_(int code, const char *msg) {
  119. char msg_buf[OCAML_MSG_BUF_LEN];
  120. sprintf( msg_buf, "Exception(%d): %s\n", code, msg );
  121. failwith( msg_buf );
  122. }
  123. #define SWIG_exception(a,b) SWIG_exception_((a),(b))
  124. %}
  125. #endif
  126. #ifdef SWIGCHICKEN
  127. %{
  128. SWIGINTERN void SWIG_exception_(int code, const char *msg) {
  129. C_word *a;
  130. C_word scmmsg;
  131. C_word list;
  132. a = C_alloc (C_SIZEOF_STRING (strlen (msg)) + C_SIZEOF_LIST(2));
  133. scmmsg = C_string2 (&a, (char *) msg);
  134. list = C_list(&a, 2, C_fix(code), scmmsg);
  135. SWIG_ThrowException(list);
  136. }
  137. #define SWIG_exception(a,b) SWIG_exception_((a),(b))
  138. %}
  139. #endif
  140. #ifdef SWIGCSHARP
  141. %{
  142. SWIGINTERN void SWIG_CSharpException(int code, const char *msg) {
  143. if (code == SWIG_ValueError) {
  144. SWIG_CSharpExceptionArgumentCodes exception_code = SWIG_CSharpArgumentOutOfRangeException;
  145. SWIG_CSharpSetPendingExceptionArgument(exception_code, msg, 0);
  146. } else {
  147. SWIG_CSharpExceptionCodes exception_code = SWIG_CSharpApplicationException;
  148. switch(code) {
  149. case SWIG_MemoryError:
  150. exception_code = SWIG_CSharpOutOfMemoryException;
  151. break;
  152. case SWIG_IndexError:
  153. exception_code = SWIG_CSharpIndexOutOfRangeException;
  154. break;
  155. case SWIG_DivisionByZero:
  156. exception_code = SWIG_CSharpDivideByZeroException;
  157. break;
  158. case SWIG_IOError:
  159. exception_code = SWIG_CSharpIOException;
  160. break;
  161. case SWIG_OverflowError:
  162. exception_code = SWIG_CSharpOverflowException;
  163. break;
  164. case SWIG_RuntimeError:
  165. case SWIG_TypeError:
  166. case SWIG_SyntaxError:
  167. case SWIG_SystemError:
  168. case SWIG_UnknownError:
  169. default:
  170. exception_code = SWIG_CSharpApplicationException;
  171. break;
  172. }
  173. SWIG_CSharpSetPendingException(exception_code, msg);
  174. }
  175. }
  176. %}
  177. #define SWIG_exception(code, msg)\
  178. { SWIG_CSharpException(code, msg); return $null; }
  179. #endif // SWIGCSHARP
  180. #ifdef SWIGLUA
  181. %{
  182. #define SWIG_exception(a,b)\
  183. { lua_pushfstring(L,"%s:%s",#a,b);SWIG_fail; }
  184. %}
  185. #endif // SWIGLUA
  186. #ifdef SWIGD
  187. %{
  188. SWIGINTERN void SWIG_DThrowException(int code, const char *msg) {
  189. SWIG_DExceptionCodes exception_code;
  190. switch(code) {
  191. case SWIG_IndexError:
  192. exception_code = SWIG_DNoSuchElementException;
  193. break;
  194. case SWIG_IOError:
  195. exception_code = SWIG_DIOException;
  196. break;
  197. case SWIG_ValueError:
  198. exception_code = SWIG_DIllegalArgumentException;
  199. break;
  200. case SWIG_DivisionByZero:
  201. case SWIG_MemoryError:
  202. case SWIG_OverflowError:
  203. case SWIG_RuntimeError:
  204. case SWIG_TypeError:
  205. case SWIG_SyntaxError:
  206. case SWIG_SystemError:
  207. case SWIG_UnknownError:
  208. default:
  209. exception_code = SWIG_DException;
  210. break;
  211. }
  212. SWIG_DSetPendingException(exception_code, msg);
  213. }
  214. %}
  215. #define SWIG_exception(code, msg)\
  216. { SWIG_DThrowException(code, msg); return $null; }
  217. #endif // SWIGD
  218. #ifdef __cplusplus
  219. /*
  220. You can use the SWIG_CATCH_STDEXCEPT macro with the %exception
  221. directive as follows:
  222. %exception {
  223. try {
  224. $action
  225. }
  226. catch (my_except& e) {
  227. ...
  228. }
  229. SWIG_CATCH_STDEXCEPT // catch std::exception
  230. catch (...) {
  231. SWIG_exception(SWIG_UnknownError, "Unknown exception");
  232. }
  233. }
  234. */
  235. %{
  236. #include <stdexcept>
  237. %}
  238. %define SWIG_CATCH_STDEXCEPT
  239. /* catching std::exception */
  240. catch (std::invalid_argument& e) {
  241. SWIG_exception(SWIG_ValueError, e.what() );
  242. } catch (std::domain_error& e) {
  243. SWIG_exception(SWIG_ValueError, e.what() );
  244. } catch (std::overflow_error& e) {
  245. SWIG_exception(SWIG_OverflowError, e.what() );
  246. } catch (std::out_of_range& e) {
  247. SWIG_exception(SWIG_IndexError, e.what() );
  248. } catch (std::length_error& e) {
  249. SWIG_exception(SWIG_IndexError, e.what() );
  250. } catch (std::runtime_error& e) {
  251. SWIG_exception(SWIG_RuntimeError, e.what() );
  252. } catch (std::exception& e) {
  253. SWIG_exception(SWIG_SystemError, e.what() );
  254. }
  255. %enddef
  256. %define SWIG_CATCH_UNKNOWN
  257. catch (std::exception& e) {
  258. SWIG_exception(SWIG_SystemError, e.what() );
  259. }
  260. catch (...) {
  261. SWIG_exception(SWIG_UnknownError, "unknown exception");
  262. }
  263. %enddef
  264. /* rethrow the unknown exception */
  265. #if defined(SWIGCSHARP) || defined(SWIGD)
  266. %typemap(throws,noblock=1, canthrow=1) (...) {
  267. SWIG_exception(SWIG_RuntimeError,"unknown exception");
  268. }
  269. #else
  270. %typemap(throws,noblock=1) (...) {
  271. SWIG_exception(SWIG_RuntimeError,"unknown exception");
  272. }
  273. #endif
  274. #endif /* __cplusplus */
  275. /* exception.i ends here */