javascriptcomplex.swg 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. Defines the As/From converters for double/float complex, you need to
  3. provide complex Type, the Name you want to use in the converters,
  4. the complex Constructor method, and the Real and Imag complex
  5. accessor methods.
  6. See the std_complex.i and ccomplex.i for concrete examples.
  7. */
  8. /* the common from converter */
  9. %define %swig_fromcplx_conv(Type, Real, Imag)
  10. %fragment(SWIG_From_frag(Type),"header",
  11. fragment=SWIG_From_frag(double))
  12. {
  13. SWIGINTERNINLINE JSObjectRef
  14. SWIG_From_dec(Type)(%ifcplusplus(const Type&, Type) c)
  15. {
  16. JSValueRef vals[2];
  17. vals[0] = SWIG_From(double)(Real(c));
  18. vals[1] = SWIG_From(double)(Imag(c));
  19. return JSObjectMakeArray(context, 2, vals, NULL);
  20. }
  21. }
  22. %enddef
  23. /* the double case */
  24. %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
  25. %fragment(SWIG_AsVal_frag(Type),"header",
  26. fragment=SWIG_AsVal_frag(double))
  27. {
  28. SWIGINTERN int
  29. SWIG_AsVal_dec(Type) (JSValueRef o, Type* val)
  30. {
  31. if (JSValueIsObject(context, o)) {
  32. JSObjectRef array;
  33. JSValueRef exception, js_re, js_im;
  34. double re, im;
  35. int res;
  36. exception = 0;
  37. res = 0;
  38. array = JSValueToObject(context, o, &exception);
  39. if(exception != 0)
  40. return SWIG_TypeError;
  41. js_re = JSObjectGetPropertyAtIndex(context, array, 0, &exception);
  42. if(exception != 0)
  43. return SWIG_TypeError;
  44. js_im = JSObjectGetPropertyAtIndex(context, array, 1, &exception);
  45. if(exception != 0)
  46. return SWIG_TypeError;
  47. res = SWIG_AsVal(double)(js_re, &re);
  48. if(!SWIG_IsOK(res)) {
  49. return SWIG_TypeError;
  50. }
  51. res = SWIG_AsVal(double)(js_im, &im);
  52. if(!SWIG_IsOK(res)) {
  53. return SWIG_TypeError;
  54. }
  55. if (val) *val = Constructor(re, im);
  56. return SWIG_OK;
  57. } else {
  58. double d;
  59. int res = SWIG_AddCast(SWIG_AsVal(double)(o, &d));
  60. if (SWIG_IsOK(res)) {
  61. if (val) *val = Constructor(d, 0.0);
  62. return res;
  63. }
  64. }
  65. return SWIG_TypeError;
  66. }
  67. }
  68. %swig_fromcplx_conv(Type, Real, Imag);
  69. %enddef
  70. /* the float case */
  71. %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
  72. %fragment(SWIG_AsVal_frag(Type),"header",
  73. fragment=SWIG_AsVal_frag(float)) {
  74. SWIGINTERN int
  75. SWIG_AsVal_dec(Type)(JSValueRef o, Type *val)
  76. {
  77. if (JSValueIsObject(context, o)) {
  78. JSObjectRef array;
  79. JSValueRef exception, js_re, js_im;
  80. double re, im;
  81. int res;
  82. exception = 0;
  83. res = 0;
  84. array = JSValueToObject(context, o, &exception);
  85. if(exception != 0)
  86. return SWIG_TypeError;
  87. js_re = JSObjectGetPropertyAtIndex(context, array, 0, &exception);
  88. if(exception != 0)
  89. return SWIG_TypeError;
  90. js_im = JSObjectGetPropertyAtIndex(context, array, 1, &exception);
  91. if(exception != 0)
  92. return SWIG_TypeError;
  93. res = SWIG_AsVal(double)(js_re, &re);
  94. if(!SWIG_IsOK(res)) {
  95. return SWIG_TypeError;
  96. }
  97. res = SWIG_AsVal(double)(js_im, &im);
  98. if(!SWIG_IsOK(res)) {
  99. return SWIG_TypeError;
  100. }
  101. if ((-FLT_MAX <= re && re <= FLT_MAX) && (-FLT_MAX <= im && im <= FLT_MAX)) {
  102. if (val) *val = Constructor(%numeric_cast(re, float),
  103. %numeric_cast(im, float));
  104. return SWIG_OK;
  105. } else {
  106. return SWIG_OverflowError;
  107. }
  108. } else {
  109. float re;
  110. int res = SWIG_AddCast(SWIG_AsVal(float)(o, &re));
  111. if (SWIG_IsOK(res)) {
  112. if (val) *val = Constructor(re, 0.0);
  113. return res;
  114. }
  115. }
  116. return SWIG_TypeError;
  117. }
  118. }
  119. %swig_fromcplx_conv(Type, Real, Imag);
  120. %enddef
  121. #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
  122. %swig_cplxflt_conv(Type, Constructor, Real, Imag)
  123. #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
  124. %swig_cplxdbl_conv(Type, Constructor, Real, Imag)