sciexception.swg 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Exception typemaps (throws)
  3. */
  4. %include <exception.i>
  5. %typemap(throws, noblock=1) int, unsigned int, signed int,
  6. int&,unsigned int&, signed int&,
  7. long, unsigned long, signed long,
  8. short, unsigned short,signed short,
  9. long long, unsigned long long,
  10. unsigned char, signed char,
  11. long&, unsigned long&, signed long&,
  12. short&, unsigned short&, signed short&,
  13. long long&, unsigned long long&,
  14. unsigned char&, signed char&,
  15. size_t, size_t&,
  16. ptrdiff_t, ptrdiff_t& {
  17. char obj[20];
  18. sprintf(obj, "%d", (int)$1);
  19. SWIG_Scilab_Raise_Ex(obj, "$type", $descriptor);
  20. }
  21. %typemap(throws, noblock=1) enum SWIGTYPE {
  22. char obj[20];
  23. sprintf(obj, "%d", (int)$1);
  24. SWIG_Scilab_Raise_Ex(obj, "$type", $descriptor);
  25. }
  26. %typemap(throws, noblock=1) float, double,
  27. float&, double& {
  28. char obj[20];
  29. sprintf(obj, "%5.3f", (double)$1);
  30. SWIG_Scilab_Raise_Ex(obj, "$type", $descriptor);
  31. }
  32. %typemap(throws, noblock=1) bool, bool& {
  33. SWIG_Scilab_Raise_Ex($1 ? "true" : "false", "$type", $descriptor);
  34. }
  35. %typemap(throws, noblock=1) char*, char[ANY] {
  36. SWIG_Scilab_Raise_Ex($1, "$type", $descriptor);
  37. }
  38. %typemap(throws, noblock=1) char, char& {
  39. char obj[1];
  40. sprintf(obj, "%c", (char)$1);
  41. SWIG_Scilab_Raise_Ex(obj, "$type", $descriptor);
  42. }
  43. %typemap(throws, noblock=1) SWIGTYPE,
  44. SWIGTYPE*,
  45. SWIGTYPE [ANY],
  46. SWIGTYPE & {
  47. SWIG_Scilab_Raise_Ex((char*)NULL, "$type", $descriptor);
  48. }
  49. %typemap(throws, noblock=1) (...) {
  50. SWIG_exception(SWIG_RuntimeError, "unknown exception");
  51. }