scilong.swg 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * C-type: long
  3. * Scilab type: double or int32
  4. */
  5. %fragment(SWIG_AsVal_frag(long), "header", fragment="SWIG_SciDoubleOrInt32_AsLong", fragment="<limits.h>") {
  6. %#define SWIG_AsVal_long(scilabValue, valuePointer) SWIG_SciDoubleOrInt32_AsLong(pvApiCtx, scilabValue, valuePointer, SWIG_Scilab_GetFuncName());
  7. }
  8. %fragment("SWIG_SciDoubleOrInt32_AsLong", "header") {
  9. SWIGINTERN int
  10. SWIG_SciDoubleOrInt32_AsLong(void *pvApiCtx, SwigSciObject iVar, long *plValue, char *fname) {
  11. SciErr sciErr;
  12. int iType = 0;
  13. int iRows = 0;
  14. int iCols = 0;
  15. int *piAddrVar = NULL;
  16. sciErr = getVarAddressFromPosition(pvApiCtx, iVar, &piAddrVar);
  17. if (sciErr.iErr) {
  18. printError(&sciErr, 0);
  19. return SWIG_ERROR;
  20. }
  21. sciErr = getVarType(pvApiCtx, piAddrVar, &iType);
  22. if (sciErr.iErr) {
  23. printError(&sciErr, 0);
  24. return SWIG_ERROR;
  25. }
  26. if (iType == sci_ints) {
  27. int iPrec = 0;
  28. int *piData = NULL;
  29. sciErr = getMatrixOfIntegerPrecision(pvApiCtx, piAddrVar, &iPrec);
  30. if (sciErr.iErr) {
  31. printError(&sciErr, 0);
  32. return SWIG_ERROR;
  33. }
  34. if (iPrec != SCI_INT32) {
  35. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong type for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
  36. return SWIG_TypeError;
  37. }
  38. sciErr = getMatrixOfInteger32(pvApiCtx, piAddrVar, &iRows, &iCols, &piData);
  39. if (sciErr.iErr) {
  40. printError(&sciErr, 0);
  41. return SWIG_ERROR;
  42. }
  43. if (iRows * iCols != 1) {
  44. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong size for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
  45. return SWIG_TypeError;
  46. }
  47. *plValue = (long) *piData;
  48. }
  49. else if (iType == sci_matrix) {
  50. double *pdData = NULL;
  51. double dValue = 0.0f;
  52. sciErr = getMatrixOfDouble(pvApiCtx, piAddrVar, &iRows, &iCols, &pdData);
  53. if (sciErr.iErr) {
  54. printError(&sciErr, 0);
  55. return SWIG_ERROR;
  56. }
  57. if (iRows * iCols != 1) {
  58. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong size for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
  59. return SWIG_TypeError;
  60. }
  61. dValue = *pdData;
  62. if (dValue != floor(dValue)) {
  63. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Incorrect value for input argument #%d: The double value cannot be converted to a 32-bit signed integer.\n"), fname, iVar);
  64. return SWIG_ValueError;
  65. }
  66. if ((dValue < LONG_MIN) || (dValue > LONG_MAX)) {
  67. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Overflow error for input argument #%d: The double value cannot be converted to a 32-bit signed integer.\n"), fname, iVar);
  68. return SWIG_OverflowError;
  69. }
  70. *plValue = (long) dValue;
  71. }
  72. else {
  73. Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong type for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
  74. return SWIG_TypeError;
  75. }
  76. return SWIG_OK;
  77. }
  78. }
  79. %fragment(SWIG_From_frag(long), "header", fragment="SWIG_SciDouble_FromLong") {
  80. %#define SWIG_From_long(scilabValue) SWIG_SciDouble_FromLong(pvApiCtx, SWIG_Scilab_GetOutputPosition(), scilabValue, SWIG_Scilab_GetFuncName())
  81. }
  82. %fragment("SWIG_SciDouble_FromLong", "header") {
  83. SWIGINTERN int
  84. SWIG_SciDouble_FromLong(void *pvApiCtx, int iVarOut, long lValue, char *fname) {
  85. if (createScalarDouble(pvApiCtx,
  86. SWIG_NbInputArgument(pvApiCtx) + iVarOut, (double) lValue))
  87. return SWIG_ERROR;
  88. return SWIG_OK;
  89. }
  90. }
  91. %fragment("SWIG_SciDouble_FromLongArrayAndSize", "header") {
  92. SWIGINTERN int
  93. SWIG_SciDouble_FromLongArrayAndSize(void *pvApiCtx, int iVarOut, int iRows, int iCols, const long *plData) {
  94. SciErr sciErr;
  95. int i;
  96. double *pdValues = NULL;
  97. pdValues = (double*) malloc(iRows * iCols * sizeof(double));
  98. for (i=0; i<iRows * iCols; i++) {
  99. pdValues[i] = plData[i];
  100. }
  101. sciErr = createMatrixOfDouble(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + iVarOut, iRows, iCols, pdValues);
  102. if (sciErr.iErr) {
  103. printError(&sciErr, 0);
  104. free(pdValues);
  105. return SWIG_ERROR;
  106. }
  107. free(pdValues);
  108. return SWIG_OK;
  109. }
  110. }