scimatrixint.swg 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. * C-type: int array
  3. * Scilab type: 32-bit integer matrix
  4. */
  5. %include <sciint.swg>
  6. // in (int *IN, int IN_ROWCOUNT, int IN_COLCOUNT)
  7. %typemap(in, noblock=1, fragment="SWIG_SciDoubleOrInt32_AsIntArrayAndSize") (int *IN, int IN_ROWCOUNT, int IN_COLCOUNT)
  8. {
  9. if (SWIG_SciDoubleOrInt32_AsIntArrayAndSize(pvApiCtx, $input, &$2, &$3, &$1, fname) != SWIG_OK) {
  10. return SWIG_ERROR;
  11. }
  12. }
  13. // in (int IN_ROWCOUNT, int IN_COLCOUNT, int *IN)
  14. %typemap(in, noblock=1, fragment="SWIG_SciDoubleOrInt32_AsIntArrayAndSize") (int IN_ROWCOUNT, int IN_COLCOUNT, int *IN)
  15. {
  16. if (SWIG_SciDoubleOrInt32_AsIntArrayAndSize(pvApiCtx, $input, &$1, &$2, &$3, fname) != SWIG_OK) {
  17. return SWIG_ERROR;
  18. }
  19. }
  20. // in (int *IN, int IN_SIZE)
  21. %typemap(in, noblock=1, fragment="SWIG_SciDoubleOrInt32_AsIntArrayAndSize") (int *IN, int IN_SIZE) (int rowCount, int colCount)
  22. {
  23. if (SWIG_SciDoubleOrInt32_AsIntArrayAndSize(pvApiCtx, $input, &rowCount, &colCount, &$1, fname) == SWIG_OK) {
  24. $2 = rowCount * colCount;
  25. }
  26. else {
  27. return SWIG_ERROR;
  28. }
  29. }
  30. // in (int IN_SIZE, int *IN)
  31. %typemap(in, noblock=1, fragment="SWIG_SciDoubleOrInt32_AsIntArrayAndSize") (int IN_SIZE, int *IN) (int rowCount, int colCount)
  32. {
  33. if (SWIG_SciDoubleOrInt32_AsIntArrayAndSize(pvApiCtx, $input, &rowCount, &colCount, &$2, fname) == SWIG_OK) {
  34. $1 = rowCount * colCount;
  35. }
  36. else {
  37. return SWIG_ERROR;
  38. }
  39. }
  40. // out (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
  41. %typemap(in, noblock=1, numinputs=0) (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
  42. {
  43. }
  44. %typemap(arginit, noblock=1) (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
  45. {
  46. $1 = (int**) malloc(sizeof(int*));
  47. $2 = (int*) malloc(sizeof(int));
  48. $3 = (int*) malloc(sizeof(int));
  49. }
  50. %typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
  51. {
  52. if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$2, *$3, *$1) == SWIG_OK) {
  53. SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
  54. }
  55. else {
  56. return SWIG_ERROR;
  57. }
  58. }
  59. %typemap(freearg, noblock=1) (int **OUT, int *OUT_ROWCOUNT, int *OUT_COLCOUNT)
  60. {
  61. free(*$1);
  62. free($1);
  63. free($2);
  64. free($3);
  65. }
  66. // out (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
  67. %typemap(in, noblock=1, numinputs=0) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
  68. {
  69. }
  70. %typemap(arginit, noblock=1) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
  71. {
  72. $1 = (int*) malloc(sizeof(int));
  73. $2 = (int*) malloc(sizeof(int));
  74. $3 = (int**) malloc(sizeof(int*));
  75. }
  76. %typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
  77. {
  78. if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), *$1, *$2, *$3) == SWIG_OK) {
  79. SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
  80. }
  81. else {
  82. return SWIG_ERROR;
  83. }
  84. }
  85. %typemap(freearg, noblock=1) (int *OUT_ROWCOUNT, int *OUT_COLCOUNT, int **OUT)
  86. {
  87. free($1);
  88. free($2);
  89. free(*$3);
  90. free($3);
  91. }
  92. // out (int **OUT, int *OUT_SIZE)
  93. %typemap(in, noblock=1, numinputs=0) (int **OUT, int *OUT_SIZE)
  94. {
  95. }
  96. %typemap(arginit) (int **OUT, int *OUT_SIZE)
  97. {
  98. $1 = (int**) malloc(sizeof(int*));
  99. $2 = (int*) malloc(sizeof(int));
  100. }
  101. %typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int **OUT, int *OUT_SIZE)
  102. {
  103. if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$2, *$1) == SWIG_OK) {
  104. SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
  105. }
  106. else {
  107. return SWIG_ERROR;
  108. }
  109. }
  110. %typemap(freearg, noblock=1) (int **OUT, int *OUT_SIZE)
  111. {
  112. free(*$1);
  113. free($1);
  114. free($2);
  115. }
  116. // out (int *OUT_SIZE, int **OUT)
  117. %typemap(in, noblock=1, numinputs=0) (int *OUT_SIZE, int **OUT)
  118. {
  119. }
  120. %typemap(arginit, noblock=1) (int *OUT_SIZE, int **OUT)
  121. {
  122. $1 = (int*) malloc(sizeof(int));
  123. $2 = (int**) malloc(sizeof(int*));
  124. }
  125. %typemap(argout, noblock=1, fragment="SWIG_SciDouble_FromIntArrayAndSize") (int *OUT_SIZE, int **OUT)
  126. {
  127. if (SWIG_SciDouble_FromIntArrayAndSize(pvApiCtx, SWIG_Scilab_GetOutputPosition(), 1, *$1, *$2) == SWIG_OK) {
  128. SWIG_Scilab_SetOutput(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + SWIG_Scilab_GetOutputPosition());
  129. }
  130. else {
  131. return SWIG_ERROR;
  132. }
  133. }
  134. %typemap(freearg, noblock=1) (int *IN_SIZE, int **OUT)
  135. {
  136. free($1);
  137. free(*$2);
  138. free($2);
  139. }