File: sci_error.c

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (216 lines) | stat: -rw-r--r-- 6,013 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2006-2008 - INRIA - Allan CORNET
 * 
 * This file must be used under the terms of the CeCILL.
 * This source file is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at    
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 *
 */
#include <stdlib.h>
#include "gw_core.h"
#include "stack-c.h"
#include "localization.h"
#include "Scierror.h"
#include "freeArrayOfString.h"
/*--------------------------------------------------------------------------*/
/* @TO DO : extend 'error' primitive
/*--------------------------------------------------------------------------*/
#define defaultErrorCode 10000
#define defaultErrorPosition 0
#define defaultErrorMessage " "
#define bufferErrorMessage C2F(cha1).buf
/*--------------------------------------------------------------------------*/
int C2F(sci_error)(char *fname,unsigned long fname_len)
{
	 int errorCode = defaultErrorCode;
	 int errorPosition = defaultErrorPosition;

	 CheckRhs(1,2);
	 CheckLhs(1,1);

	 if (Rhs == 1) 
	 {
		switch ( GetType(1) )
		{
			/* error('My message') */
			case sci_strings : 
			{
				int m = 0; int n = 0;
				char **InputString_Parameter = NULL;
				
				GetRhsVar(1,MATRIX_OF_STRING_DATATYPE,&m,&n,&InputString_Parameter);
				/* check scalar */
				if ( (m == 1) && (n == 1) )
				{
					errorCode = defaultErrorCode;
					strcpy(bufferErrorMessage,InputString_Parameter[0]);

					freeArrayOfString(InputString_Parameter,m*n);

					C2F(iop).err = errorPosition;
					SciError(errorCode);
				}
				else
				{
					freeArrayOfString(InputString_Parameter,m*n);
					Scierror(999,_("%s: Wrong size for input argument #%d: A string expected.\n"),fname,1);
					return 0;
				}
			}
			break;

			/* error(code error) */
			case sci_matrix :
			{
				int m = 0, n = 0, l = 0;
				/* check double compatibility scilab 4.x */
				GetRhsVar(1,MATRIX_OF_DOUBLE_DATATYPE, &m, &n, &l);

				/* check scalar */
				if ( (m == 1) && (n == 1) ) 
				{
					/* store error */
					errorCode = (int)(*stk(l));
                                        if (errorCode <= 0)
                                          {
                                            Scierror(999,_("%s: Wrong value for input argument #%d: Value greater than 0 expected.\n"),fname,1);
                                            return 0;
                                          }
					strcpy(bufferErrorMessage,defaultErrorMessage);
					C2F(iop).err = errorPosition;
					SciError(errorCode);
				}
				else 
				{
					Scierror(999,_("%s: Wrong size for input argument #%d: A scalar expected.\n"),fname,1);
					return 0;
				}
			}
			break;

			default :
			{
				Scierror(999,_("%s: Wrong type for input argument #%d.\n"),fname,1);
				return 0;
			}
			break;
		}
	 }
	 else /* Rhs == 2 */
	 {
		/* error('message',code error) */
		if ( ( GetType(1) == sci_strings ) && ( GetType(2) == sci_matrix ) )
		{
			int m1 = 0; int n1 = 0;
			char **InputString_Parameter1 = NULL;

			int m2 = 0, n2 = 0, l2 = 0;

			GetRhsVar(1,MATRIX_OF_STRING_DATATYPE,&m1,&n1,&InputString_Parameter1);

			/* check scalar */
			if ( (m1 == 1) && (n1 == 1) )
			{
				GetRhsVar(2,MATRIX_OF_DOUBLE_DATATYPE, &m2, &n2, &l2);
				/* check scalar */
				if ( (m2 == 1) && (n2 == 1) )
				{
					/* store error */
					errorCode = (int)(*stk(l2));
					strcpy(bufferErrorMessage,InputString_Parameter1[0]);
					freeArrayOfString(InputString_Parameter1,m1*n1);
					C2F(iop).err = errorPosition;
					SciError(errorCode);
				}
				else
				{
					freeArrayOfString(InputString_Parameter1,m1*n1);
					Scierror(999,_("%s: Wrong size for input argument #%d: A scalar expected.\n"),fname,2);
				}
			}
			else
			{
				freeArrayOfString(InputString_Parameter1,m1*n1);
				Scierror(999,_("%s: Wrong size for input argument #%d: A string expected.\n"),fname,1);
			}
			return 0;
		}

		/* error(code,pos) */
		if ( ( GetType(1) == sci_matrix ) && ( GetType(2) == sci_matrix ) )
		{
			int m1 = 0, n1 = 0, l1 = 0;
			int m2 = 0, n2 = 0, l2 = 0;

			GetRhsVar(1,MATRIX_OF_DOUBLE_DATATYPE, &m1, &n1, &l1);
			/* check scalar */
			if ( (m1 == 1) && (n1 == 1) )
			{
				GetRhsVar(2,MATRIX_OF_DOUBLE_DATATYPE, &m2, &n2, &l2);
				/* check scalar */
				if ( (m2 == 1) && (n2 == 1) )
				{
					/* store error */
					errorCode = (int)(*stk(l1));
					errorPosition = (int)(*stk(l2));

					strcpy(bufferErrorMessage,defaultErrorMessage);
					C2F(iop).err = errorPosition;
					SciError(errorCode);
				}
				else
				{
					Scierror(999,_("%s: Wrong size for input argument #%d: A scalar expected.\n"),fname,2);
				}
			}
			else
			{
				Scierror(999,_("%s: Wrong size for input argument #%d: A scalar expected.\n"),fname,1);
			}
			return 0;
		}

		/* error(code error,'message') */
		if ( ( GetType(1) == sci_matrix ) && ( GetType(2) == sci_strings ) )
		{
			int m1 = 0, n1 = 0, l1 = 0;

			int m2 = 0; int n2 = 0;
			char **InputString_Parameter2 = NULL;

			GetRhsVar(1,MATRIX_OF_DOUBLE_DATATYPE, &m1, &n1, &l1);
			/* check scalar */
			if ( (m1 == 1) && (n1 == 1) )
			{
				GetRhsVar(2,MATRIX_OF_STRING_DATATYPE,&m2,&n2,&InputString_Parameter2);
				/* check scalar */
				if ( (m2 == 1) && (n2 == 1) )
				{
					/* store error */
					errorCode = (int)(*stk(l1));
					Scierror(errorCode,InputString_Parameter2[0]);
					freeArrayOfString(InputString_Parameter2,m2*n2);
				}
				else
				{
					freeArrayOfString(InputString_Parameter2,m2*n2);
					Scierror(999,_("%s: Wrong size for input argument #%d: A string expected.\n"),fname,2);
				}
			}
			else
			{
				freeArrayOfString(InputString_Parameter2,m2*n2);
				Scierror(999,_("%s: Wrong size for input argument #%d: A scalar expected.\n"),fname,1);
			}

			return 0;
		}

		Scierror(999,_("%s: Wrong type for input argument.\n"),fname);
	}
	return 0;
}
/*--------------------------------------------------------------------------*/