javascriptcomplex.swg 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 v8::Handle<v8::Value>
  14. SWIG_From_dec(Type)(%ifcplusplus(const Type&, Type) c)
  15. {
  16. SWIGV8_HANDLESCOPE_ESC();
  17. v8::Local<v8::Array> vals = SWIGV8_ARRAY_NEW(2);
  18. vals->Set(0, SWIG_From(double)(Real(c)));
  19. vals->Set(1, SWIG_From(double)(Imag(c)));
  20. SWIGV8_ESCAPE(vals);
  21. }
  22. }
  23. %enddef
  24. /* the double case */
  25. %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
  26. %fragment(SWIG_AsVal_frag(Type),"header",
  27. fragment=SWIG_AsVal_frag(double))
  28. {
  29. SWIGINTERN int
  30. SWIG_AsVal_dec(Type) (v8::Handle<v8::Value> o, Type* val)
  31. {
  32. SWIGV8_HANDLESCOPE();
  33. if (o->IsArray()) {
  34. v8::Handle<v8::Array> array = v8::Handle<v8::Array>::Cast(o);
  35. if(array->Length() != 2) SWIG_Error(SWIG_TypeError, "Illegal argument for complex: must be array[2].");
  36. double re, im;
  37. int res;
  38. res = SWIG_AsVal(double)(array->Get(0), &re);
  39. if(!SWIG_IsOK(res)) {
  40. return SWIG_TypeError;
  41. }
  42. res = SWIG_AsVal(double)(array->Get(1), &im);
  43. if(!SWIG_IsOK(res)) {
  44. return SWIG_TypeError;
  45. }
  46. if (val) *val = Constructor(re, im);
  47. return SWIG_OK;
  48. } else if(o->IsNumber()){
  49. double d;
  50. int res = SWIG_AddCast(SWIG_AsVal(double)(o, &d));
  51. if (SWIG_IsOK(res)) {
  52. if (val) *val = Constructor(d, 0.0);
  53. return res;
  54. }
  55. }
  56. return SWIG_TypeError;
  57. }
  58. }
  59. %swig_fromcplx_conv(Type, Real, Imag);
  60. %enddef
  61. /* the float case */
  62. %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
  63. %fragment(SWIG_AsVal_frag(Type),"header",
  64. fragment=SWIG_AsVal_frag(float)) {
  65. SWIGINTERN int
  66. SWIG_AsVal_dec(Type) (v8::Handle<v8::Value> o, Type* val)
  67. {
  68. SWIGV8_HANDLESCOPE();
  69. if (o->IsArray()) {
  70. v8::Handle<v8::Array> array = v8::Handle<v8::Array>::Cast(o);
  71. if(array->Length() != 2) SWIG_Error(SWIG_TypeError, "Illegal argument for complex: must be array[2].");
  72. double re, im;
  73. int res;
  74. res = SWIG_AsVal(double)(array->Get(0), &re);
  75. if(!SWIG_IsOK(res)) {
  76. return SWIG_TypeError;
  77. }
  78. res = SWIG_AsVal(double)(array->Get(1), &im);
  79. if(!SWIG_IsOK(res)) {
  80. return SWIG_TypeError;
  81. }
  82. if ((-FLT_MAX <= re && re <= FLT_MAX) && (-FLT_MAX <= im && im <= FLT_MAX)) {
  83. if (val) *val = Constructor(%numeric_cast(re, float),
  84. %numeric_cast(im, float));
  85. return SWIG_OK;
  86. } else {
  87. return SWIG_OverflowError;
  88. }
  89. } else if(o->IsNumber()){
  90. float re;
  91. int res = SWIG_AddCast(SWIG_AsVal(float)(o, &re));
  92. if (SWIG_IsOK(res)) {
  93. if (val) *val = Constructor(re, 0.0);
  94. return res;
  95. }
  96. }
  97. return SWIG_TypeError;
  98. }
  99. }
  100. %swig_fromcplx_conv(Type, Real, Imag);
  101. %enddef
  102. #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
  103. %swig_cplxflt_conv(Type, Constructor, Real, Imag)
  104. #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
  105. %swig_cplxdbl_conv(Type, Constructor, Real, Imag)