* validate.h (SCM_VALIDATE_INPUT_PORT, SCM_VALIDATE_OUTPUT_PORT):
[bpt/guile.git] / libguile / validate.h
CommitLineData
39bcc76e
MD
1/* $Id: validate.h,v 1.5 2000-04-15 19:30:16 mdj Exp $ */
2/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
e94e3f21 3 *
5bff3127
GB
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
e94e3f21 8 *
5bff3127
GB
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
e94e3f21 13 *
5bff3127
GB
14 * You should have received a copy of the GNU General Public License
15 * along with this software; see the file COPYING. If not, write to
16 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307 USA
1bbd0b84 18 *
5bff3127
GB
19 * As a special exception, the Free Software Foundation gives permission
20 * for additional uses of the text contained in its release of GUILE.
21 *
22 * The exception is that, if you link the GUILE library with other files
23 * to produce an executable, this does not by itself cause the
24 * resulting executable to be covered by the GNU General Public License.
25 * Your use of that executable is in no way restricted on account of
26 * linking the GUILE library code into it.
27 *
28 * This exception does not however invalidate any other reasons why
29 * the executable file might be covered by the GNU General Public License.
30 *
31 * This exception applies only to the code released by the
32 * Free Software Foundation under the name GUILE. If you copy
33 * code from other Free Software Foundation releases into a copy of
34 * GUILE, as the General Public License permits, the exception does
35 * not apply to the code that you add in this way. To avoid misleading
36 * anyone as to the status of such modified files, you must delete
37 * this exception notice from them.
38 *
39 * If you write modifications of your own for GUILE, it is your choice
40 * whether to permit this exception to apply to your modifications.
41 * If you do not wish that, delete this exception notice. */
42
43/* Written by Greg J. Badros <gjb@cs.washington.edu>, Dec-1999 */
1bbd0b84
GB
44
45#ifndef SCM_VALIDATE_H__
46#define SCM_VALIDATE_H__
47
39bcc76e 48#define SCM_FUNC_NAME (scm_makfrom0str (FUNC_NAME))
1bbd0b84 49
39bcc76e 50#define SCM_SYSERROR do { scm_syserror (FUNC_NAME); } while (0)
1bbd0b84 51
39bcc76e 52#define SCM_MEMORY_ERROR do { scm_memory_error (FUNC_NAME); } while (0)
1bbd0b84 53
39bcc76e
MD
54#define SCM_SYSERROR_MSG(str, args, val) \
55 do { scm_syserror_msg (FUNC_NAME, (str), (args), (val)); } while (0)
1bbd0b84 56
39bcc76e 57#define SCM_COERCE_ROSTRING(pos, scm) \
c1bfcf60
GB
58 do { scm = scm_coerce_rostring (scm, FUNC_NAME, pos); } while (0)
59
39bcc76e
MD
60#define SCM_WTA(pos, scm) \
61 do { scm_wta (scm, (char *) pos, FUNC_NAME); } while (0)
1bbd0b84 62
39bcc76e
MD
63#define RETURN_SCM_WTA(pos, scm) \
64 do { return scm_wta (scm, (char *) pos, FUNC_NAME); } while (0)
1bbd0b84 65
39bcc76e
MD
66#define SCM_MISC_ERROR(str, args) \
67 do { scm_misc_error (FUNC_NAME, str, args); } while (0)
1bbd0b84 68
39bcc76e
MD
69#define SCM_WRONG_TYPE_ARG(pos, obj) \
70 do { scm_wrong_type_arg (FUNC_NAME, pos, obj); } while (0)
1bbd0b84 71
39bcc76e 72#define SCM_NUM2ULONG(pos, arg) (scm_num2ulong (arg, (char *) pos, FUNC_NAME))
1bbd0b84 73
39bcc76e 74#define SCM_NUM2LONG(pos, arg) (scm_num2long (arg, (char *) pos, FUNC_NAME))
1bbd0b84 75
39bcc76e
MD
76#define SCM_NUM2LONG_DEF(pos, arg, def) \
77 (SCM_UNBNDP (arg) ? def : scm_num2long (arg, (char *) pos, FUNC_NAME))
c1bfcf60 78
39bcc76e
MD
79#define SCM_NUM2LONG_LONG(pos, arg) \
80 (scm_num2long_long (arg, (char *) pos, FUNC_NAME))
1bbd0b84 81
39bcc76e
MD
82#define SCM_OUT_OF_RANGE(pos, arg) \
83 do { scm_out_of_range_pos (FUNC_NAME, arg, SCM_MAKINUM (pos)); } while (0)
1bbd0b84 84
39bcc76e
MD
85#define SCM_ASSERT_RANGE(pos, arg, f) \
86 do { SCM_ASSERT (f, arg, SCM_OUTOFRANGE, FUNC_NAME); } while (0)
1bbd0b84 87
39bcc76e
MD
88#define SCM_MUST_MALLOC_TYPE(type) \
89 ((type *) scm_must_malloc (sizeof (type), FUNC_NAME))
1bbd0b84 90
39bcc76e
MD
91#define SCM_MUST_MALLOC_TYPE_NUM(type, num) \
92 ((type *) scm_must_malloc (sizeof (type) * (num), FUNC_NAME))
1bbd0b84 93
39bcc76e 94#define SCM_MUST_MALLOC(size) (scm_must_malloc ((size), FUNC_NAME))
1bbd0b84 95
39bcc76e
MD
96#define SCM_MAKE_VALIDATE(pos, var, pred) \
97 do { \
98 SCM_ASSERT_TYPE (SCM_ ## pred (var), var, pos, FUNC_NAME, #pred); \
99 } while (0)
6b5a304f 100
6e8d25a6
GB
101\f
102
39bcc76e 103#define SCM_VALIDATE_NIM(pos, scm) SCM_MAKE_VALIDATE (pos, scm, NIMP)
6e8d25a6 104
39bcc76e 105#define SCM_VALIDATE_BOOL(pos, flag) SCM_MAKE_VALIDATE(pos, flag, BOOLP)
1bbd0b84 106
39bcc76e
MD
107#define SCM_VALIDATE_BOOL_COPY(pos, flag, cvar) \
108 do { \
109 SCM_ASSERT (SCM_BOOLP (flag), flag, pos, FUNC_NAME); \
110 cvar = SCM_TRUE_P (flag) ? 1 : 0; \
111 } while (0)
1bbd0b84 112
39bcc76e 113#define SCM_VALIDATE_CHAR(pos, scm) SCM_MAKE_VALIDATE (pos, scm, ICHRP)
1bbd0b84 114
39bcc76e
MD
115#define SCM_VALIDATE_CHAR_COPY(pos, scm, cvar) \
116 do { \
117 SCM_ASSERT (SCM_CHARP (scm), scm, pos, FUNC_NAME); \
118 cvar = SCM_CHAR (scm); \
119 } while (0)
1bbd0b84 120
39bcc76e 121#define SCM_VALIDATE_ROSTRING(pos, str) SCM_MAKE_VALIDATE (pos, str, ROSTRINGP)
1bbd0b84 122
39bcc76e
MD
123#define SCM_VALIDATE_ROSTRING_COPY(pos, str, cvar) \
124 do { \
125 SCM_ASSERT (SCM_ROSTRINGP (str), str, pos, FUNC_NAME); \
126 cvar = SCM_ROCHARS (str); \
127 } while (0)
1bbd0b84 128
39bcc76e
MD
129#define SCM_VALIDATE_NULLORROSTRING_COPY(pos, str, cvar) \
130 do { \
131 SCM_ASSERT (SCM_FALSEP (str) || SCM_ROSTRINGP (str), \
132 str, pos, FUNC_NAME); \
133 if (SCM_FALSEP(str)) \
134 cvar = NULL; \
135 else \
136 cvar = SCM_ROCHARS(str); \
137 } while (0)
1bbd0b84 138
39bcc76e 139#define SCM_VALIDATE_STRING(pos, str) SCM_MAKE_VALIDATE (pos, str, STRINGP)
1bbd0b84 140
39bcc76e
MD
141#define SCM_VALIDATE_STRINGORSUBSTR(pos, str) \
142 do { \
143 SCM_ASSERT (SCM_STRINGP (str) || SCM_SUBSTRP (str), \
144 str, pos, FUNC_NAME); \
145 } while (0)
1bbd0b84 146
39bcc76e
MD
147#define SCM_VALIDATE_STRING_COPY(pos, str, cvar) \
148 do { \
149 SCM_ASSERT (SCM_STRINGP (str), str, pos, FUNC_NAME); \
150 cvar = SCM_CHARS(str); \
151 } while (0)
1bbd0b84 152
39bcc76e
MD
153#define SCM_VALIDATE_RWSTRING(pos, str) \
154 do { \
155 SCM_ASSERT (SCM_STRINGP (str), str, pos, FUNC_NAME); \
156 if (!SCM_RWSTRINGP (str)) \
157 scm_misc_error (FUNC_NAME, "argument is a read-only string", str); \
158 } while (0)
1bbd0b84 159
39bcc76e 160#define SCM_VALIDATE_REAL(pos, z) SCM_MAKE_VALIDATE (pos, z, REALP)
1bbd0b84 161
39bcc76e 162#define SCM_VALIDATE_INUM(pos, k) SCM_MAKE_VALIDATE (pos, k, INUMP)
1bbd0b84 163
39bcc76e
MD
164#define SCM_VALIDATE_INUM_COPY(pos, k, cvar) \
165 do { \
166 SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
167 cvar = SCM_INUM (k); \
168 } while (0)
1bbd0b84 169
39bcc76e
MD
170#define SCM_VALIDATE_ULONG_COPY(pos, k, cvar) \
171 do { \
172 cvar = SCM_NUM2ULONG (pos, k); \
173 } while (0)
2cd04b42 174
39bcc76e
MD
175#define SCM_VALIDATE_LONG_COPY(pos, k, cvar) \
176 do { \
177 cvar = SCM_NUM2LONG(pos, k); \
178 } while (0)
2cd04b42 179
39bcc76e 180#define SCM_VALIDATE_BIGINT(pos, k) SCM_MAKE_VALIDATE (pos, k, BIGP)
1bbd0b84 181
39bcc76e
MD
182#define SCM_VALIDATE_INUM_MIN(pos, k, min) \
183 do { \
184 SCM_ASSERT (SCM_INUMP(k), k, pos, FUNC_NAME); \
185 SCM_ASSERT_RANGE (pos, k, (SCM_INUM (k) >= min)); \
186 } while (0)
1bbd0b84 187
39bcc76e
MD
188#define SCM_VALIDATE_INUM_MIN_COPY(pos, k, min, cvar) \
189 do { \
190 SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
191 cvar = SCM_INUM (k); \
192 SCM_ASSERT_RANGE (pos, k, (cvar >= min)); \
193 } while (0)
1bbd0b84 194
39bcc76e
MD
195#define SCM_VALIDATE_INUM_MIN_DEF_COPY(pos, k, min, default, cvar) \
196 do { \
197 if (SCM_UNBNDP (k)) \
198 k = SCM_MAKINUM (default); \
199 SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
200 cvar = SCM_INUM (k); \
201 SCM_ASSERT_RANGE (pos, k, (cvar >= min)); \
202 } while (0)
1bbd0b84 203
39bcc76e
MD
204#define SCM_VALIDATE_INUM_DEF(pos, k, default) \
205 do { \
206 if (SCM_UNBNDP (k)) \
207 k = SCM_MAKINUM (default); \
208 else SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
209 } while (0)
1bbd0b84 210
39bcc76e
MD
211#define SCM_VALIDATE_INUM_DEF_COPY(pos, k, default, cvar) \
212 do { \
213 if (SCM_UNBNDP (k)) \
214 { \
215 k = SCM_MAKINUM (default); \
216 cvar = default; \
217 } \
218 else \
219 { \
220 SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
221 cvar = SCM_INUM (k); \
222 } \
223 } while (0)
1bbd0b84
GB
224
225/* [low,high) */
39bcc76e
MD
226#define SCM_VALIDATE_INUM_RANGE(pos, k, low, high) \
227 do { \
228 SCM_ASSERT (SCM_INUMP (k), k, pos, FUNC_NAME); \
229 SCM_ASSERT_RANGE (pos, k, \
230 (SCM_INUM (k) >= low \
231 && ((unsigned) SCM_INUM (k)) < high)); \
232 } while (0)
233
234#define SCM_VALIDATE_NULL(pos, scm) SCM_MAKE_VALIDATE (pos, scm, NULLP)
1bbd0b84 235
39bcc76e 236#define SCM_VALIDATE_CONS(pos, scm) SCM_MAKE_VALIDATE (pos, scm, CONSP)
1bbd0b84 237
39bcc76e
MD
238#define SCM_VALIDATE_LIST(pos, lst) \
239 do { \
240 SCM_ASSERT (scm_ilength (lst) >= 0, lst, pos, FUNC_NAME); \
241 } while (0)
1bbd0b84 242
39bcc76e
MD
243#define SCM_VALIDATE_NONEMPTYLIST(pos, lst) \
244 do { \
245 SCM_ASSERT (scm_ilength (lst) > 0, lst, pos, FUNC_NAME); \
246 } while (0)
1bbd0b84 247
39bcc76e
MD
248#define SCM_VALIDATE_LIST_COPYLEN(pos, lst, cvar) \
249 do { \
250 cvar = scm_ilength (lst); \
251 SCM_ASSERT (cvar >= 0, lst, pos, FUNC_NAME); \
252 } while (0)
c1bfcf60 253
39bcc76e
MD
254#define SCM_VALIDATE_NONEMPTYLIST_COPYLEN(pos, lst, cvar) \
255 do { \
256 cvar = scm_ilength (lst); \
257 SCM_ASSERT (cvar >= 1, lst, pos, FUNC_NAME); \
258 } while (0)
1bbd0b84 259
39bcc76e
MD
260#define SCM_VALIDATE_ALISTCELL(pos, alist) \
261 do { \
262 SCM_ASSERT (SCM_CONSP (alist) && SCM_CONSP (SCM_CAR (alist)), \
263 alist, pos, FUNC_NAME); \
264 } while (0)
1bbd0b84 265
39bcc76e 266#define SCM_VALIDATE_ALISTCELL_COPYSCM(pos, alist, cvar) \
1bbd0b84 267 do { \
39bcc76e
MD
268 SCM_ASSERT (SCM_CONSP (alist), alist, pos, FUNC_NAME); \
269 cvar = SCM_CAR (alist); \
270 SCM_ASSERT (SCM_CONSP (cvar), alist, pos, FUNC_NAME); \
30939477 271 } while (0)
1bbd0b84 272
39bcc76e 273#define SCM_VALIDATE_OPORT_VALUE(pos, port) \
1bbd0b84 274 do { \
39bcc76e
MD
275 SCM_ASSERT (scm_valid_oport_value_p (port), port, pos, FUNC_NAME); \
276 } while (0)
277
278#define SCM_VALIDATE_PRINTSTATE(pos, a) SCM_MAKE_VALIDATE(pos,a,PRINT_STATE_P)
1bbd0b84 279
39bcc76e
MD
280#define SCM_VALIDATE_SMOB(pos, obj, type) \
281 do { \
282 SCM_ASSERT ((SCM_NIMP (obj) && SCM_TYP16 (obj) == scm_tc16_ ## type), \
283 obj, pos, FUNC_NAME); \
284 } while (0)
1bbd0b84 285
39bcc76e 286#define SCM_VALIDATE_THREAD(pos, a) SCM_MAKE_VALIDATE (pos, a, THREADP)
1bbd0b84 287
39bcc76e
MD
288#define SCM_VALIDATE_THUNK(pos, thunk) \
289 do { \
290 SCM_ASSERT (SCM_NFALSEP (scm_thunk_p (thunk)), thunk, pos, FUNC_NAME); \
291 } while (0)
1bbd0b84 292
39bcc76e 293#define SCM_VALIDATE_SYMBOL(pos, sym) SCM_MAKE_VALIDATE (pos, sym, SYMBOLP)
0c95b57d 294
39bcc76e 295#define SCM_VALIDATE_VARIABLE(pos, var) SCM_MAKE_VALIDATE (pos, var, VARIABLEP)
1bbd0b84 296
39bcc76e 297#define SCM_VALIDATE_MEMOIZED(pos, obj) SCM_MAKE_VALIDATE (pos, obj, MEMOIZEDP)
1bbd0b84 298
39bcc76e 299#define SCM_VALIDATE_CLOSURE(pos, obj) SCM_MAKE_VALIDATE (pos, obj, CLOSUREP)
1bbd0b84 300
39bcc76e
MD
301#define SCM_VALIDATE_PROC(pos, proc) \
302 do { \
303 SCM_ASSERT (SCM_TRUE_P (scm_procedure_p (proc)), proc, pos, FUNC_NAME); \
304 } while (0)
1bbd0b84 305
39bcc76e
MD
306#define SCM_VALIDATE_NULLORCONS(pos, env) \
307 do { \
308 SCM_ASSERT (SCM_NULLP (env) || SCM_CONSP (env), env, pos, FUNC_NAME); \
309 } while (0)
1bbd0b84 310
39bcc76e 311#define SCM_VALIDATE_HOOK(pos, a) SCM_MAKE_VALIDATE (pos, a, HOOKP)
1bbd0b84 312
39bcc76e 313#define SCM_VALIDATE_RGXP(pos, a) SCM_MAKE_VALIDATE (pos, a, RGXP)
1bbd0b84 314
39bcc76e 315#define SCM_VALIDATE_OPDIR(pos, port) SCM_MAKE_VALIDATE (pos, port, OPDIRP)
1bbd0b84 316
39bcc76e 317#define SCM_VALIDATE_DIR(pos, port) SCM_MAKE_VALIDATE (pos, port, DIRP)
1bbd0b84 318
39bcc76e 319#define SCM_VALIDATE_PORT(pos, port) SCM_MAKE_VALIDATE (pos, port, PORTP)
1bbd0b84 320
39bcc76e
MD
321#define SCM_VALIDATE_INPUT_PORT(pos, port) \
322 SCM_MAKE_VALIDATE (pos, port, INPUT_PORT_P)
1bbd0b84 323
39bcc76e
MD
324#define SCM_VALIDATE_OUTPUT_PORT(pos, port) \
325 SCM_MAKE_VALIDATE (pos, port, OUTPUT_PORT_P)
1bbd0b84 326
39bcc76e 327#define SCM_VALIDATE_FPORT(pos, port) SCM_MAKE_VALIDATE (pos, port, FPORTP)
1bbd0b84 328
39bcc76e 329#define SCM_VALIDATE_OPFPORT(pos, port) SCM_MAKE_VALIDATE (pos, port, OPFPORTP)
1bbd0b84 330
39bcc76e
MD
331#define SCM_VALIDATE_OPINPORT(pos, port) \
332 SCM_MAKE_VALIDATE (pos, port, OPINPORTP)
1bbd0b84
GB
333
334#define SCM_VALIDATE_OPENPORT(pos,port) \
39bcc76e
MD
335 do { \
336 SCM_ASSERT (SCM_PORTP (port) && SCM_OPENP (port), \
337 port, pos, FUNC_NAME); \
338 } while (0)
1bbd0b84 339
39bcc76e 340#define SCM_VALIDATE_OPPORT(pos, port) SCM_MAKE_VALIDATE (pos, port, OPPORTP)
1bbd0b84 341
39bcc76e
MD
342#define SCM_VALIDATE_OPOUTPORT(pos, port) \
343 SCM_MAKE_VALIDATE (pos, port, OPOUTPORTP)
1bbd0b84 344
39bcc76e 345#define SCM_VALIDATE_FLUID(pos, fluid) SCM_MAKE_VALIDATE (pos, fluid, FLUIDP)
1bbd0b84 346
39bcc76e 347#define SCM_VALIDATE_KEYWORD(pos, v) SCM_MAKE_VALIDATE (pos, v, KEYWORDP)
1bbd0b84 348
39bcc76e 349#define SCM_VALIDATE_STACK(pos, v) SCM_MAKE_VALIDATE (pos, v, STACKP)
1bbd0b84 350
39bcc76e 351#define SCM_VALIDATE_FRAME(pos, v) SCM_MAKE_VALIDATE (pos, v, FRAMEP)
1bbd0b84 352
39bcc76e 353#define SCM_VALIDATE_RSTATE(pos, v) SCM_MAKE_VALIDATE (pos, v, RSTATEP)
1bbd0b84
GB
354
355#define SCM_VALIDATE_ARRAY(pos,v) \
39bcc76e
MD
356 do { \
357 SCM_ASSERT (SCM_NIMP (v) \
358 && !SCM_FALSEP (scm_array_p (v, SCM_UNDEFINED)), \
359 v, pos, FUNC_NAME); \
360 } while (0)
1bbd0b84 361
39bcc76e 362#define SCM_VALIDATE_VECTOR(pos, v) SCM_MAKE_VALIDATE (pos, v, VECTORP)
1bbd0b84 363
39bcc76e
MD
364#define SCM_VALIDATE_VECTOR_OR_DVECTOR(pos, v) \
365 do { \
366 SCM_ASSERT ((SCM_VECTORP (v) \
367 || (SCM_NIMP (v) && SCM_TYP7 (v) == scm_tc7_dvect)), \
368 v, pos, FUNC_NAME); \
369 } while (0)
368cf54d 370
39bcc76e 371#define SCM_VALIDATE_STRUCT(pos, v) SCM_MAKE_VALIDATE (pos, v, STRUCTP)
1bbd0b84 372
39bcc76e
MD
373#define SCM_VALIDATE_VTABLE(pos, v) \
374 do { \
375 SCM_ASSERT (SCM_NIMP (v) && SCM_NFALSEP (scm_struct_vtable_p (v)), \
376 v, pos, FUNC_NAME); \
377 } while (0)
1bbd0b84 378
39bcc76e
MD
379#define SCM_VALIDATE_VECTOR_LEN(pos, v, len) \
380 do { \
381 SCM_ASSERT (SCM_VECTORP (v) && len == SCM_LENGTH (v), v, pos, FUNC_NAME); \
382 } while (0)
1bbd0b84
GB
383
384#endif
89e00824
ML
385
386/*
387 Local Variables:
388 c-file-style: "gnu"
389 End:
390*/