123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * C-type: long
- * Scilab type: double or int32
- */
- %fragment(SWIG_AsVal_frag(long), "header", fragment="SWIG_SciDoubleOrInt32_AsLong", fragment="<limits.h>") {
- %#define SWIG_AsVal_long(scilabValue, valuePointer) SWIG_SciDoubleOrInt32_AsLong(pvApiCtx, scilabValue, valuePointer, SWIG_Scilab_GetFuncName());
- }
- %fragment("SWIG_SciDoubleOrInt32_AsLong", "header") {
- SWIGINTERN int
- SWIG_SciDoubleOrInt32_AsLong(void *pvApiCtx, SwigSciObject iVar, long *plValue, char *fname) {
- SciErr sciErr;
- int iType = 0;
- int iRows = 0;
- int iCols = 0;
- int *piAddrVar = NULL;
- sciErr = getVarAddressFromPosition(pvApiCtx, iVar, &piAddrVar);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- return SWIG_ERROR;
- }
- sciErr = getVarType(pvApiCtx, piAddrVar, &iType);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- return SWIG_ERROR;
- }
- if (iType == sci_ints) {
- int iPrec = 0;
- int *piData = NULL;
- sciErr = getMatrixOfIntegerPrecision(pvApiCtx, piAddrVar, &iPrec);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- return SWIG_ERROR;
- }
- if (iPrec != SCI_INT32) {
- Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong type for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
- return SWIG_TypeError;
- }
- sciErr = getMatrixOfInteger32(pvApiCtx, piAddrVar, &iRows, &iCols, &piData);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- return SWIG_ERROR;
- }
- if (iRows * iCols != 1) {
- Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong size for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
- return SWIG_TypeError;
- }
- *plValue = (long) *piData;
- }
- else if (iType == sci_matrix) {
- double *pdData = NULL;
- double dValue = 0.0f;
- sciErr = getMatrixOfDouble(pvApiCtx, piAddrVar, &iRows, &iCols, &pdData);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- return SWIG_ERROR;
- }
- if (iRows * iCols != 1) {
- Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong size for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
- return SWIG_TypeError;
- }
- dValue = *pdData;
- if (dValue != floor(dValue)) {
- 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);
- return SWIG_ValueError;
- }
- if ((dValue < LONG_MIN) || (dValue > LONG_MAX)) {
- 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);
- return SWIG_OverflowError;
- }
- *plValue = (long) dValue;
- }
- else {
- Scierror(SCILAB_API_ARGUMENT_ERROR, _("%s: Wrong type for input argument #%d: A 32-bit signed integer or a double expected.\n"), fname, iVar);
- return SWIG_TypeError;
- }
- return SWIG_OK;
- }
- }
- %fragment(SWIG_From_frag(long), "header", fragment="SWIG_SciDouble_FromLong") {
- %#define SWIG_From_long(scilabValue) SWIG_SciDouble_FromLong(pvApiCtx, SWIG_Scilab_GetOutputPosition(), scilabValue, SWIG_Scilab_GetFuncName())
- }
- %fragment("SWIG_SciDouble_FromLong", "header") {
- SWIGINTERN int
- SWIG_SciDouble_FromLong(void *pvApiCtx, int iVarOut, long lValue, char *fname) {
- if (createScalarDouble(pvApiCtx,
- SWIG_NbInputArgument(pvApiCtx) + iVarOut, (double) lValue))
- return SWIG_ERROR;
- return SWIG_OK;
- }
- }
- %fragment("SWIG_SciDouble_FromLongArrayAndSize", "header") {
- SWIGINTERN int
- SWIG_SciDouble_FromLongArrayAndSize(void *pvApiCtx, int iVarOut, int iRows, int iCols, const long *plData) {
- SciErr sciErr;
- int i;
- double *pdValues = NULL;
- pdValues = (double*) malloc(iRows * iCols * sizeof(double));
- for (i=0; i<iRows * iCols; i++) {
- pdValues[i] = plData[i];
- }
- sciErr = createMatrixOfDouble(pvApiCtx, SWIG_NbInputArgument(pvApiCtx) + iVarOut, iRows, iCols, pdValues);
- if (sciErr.iErr) {
- printError(&sciErr, 0);
- free(pdValues);
- return SWIG_ERROR;
- }
- free(pdValues);
- return SWIG_OK;
- }
- }
|