1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

* error.h, error.c: Added `scm_wrong_type_arg_msg' to support

displaying the expected type.  Use SCM_LISTn in a couple places
instead of scm_cons-ing by hand.

* __scm.h: Added SCM_ASSERT_TYPE macro.

* validate.h, scm_validate.h: Added the former, as a renamed
version of the latter with SCM_ASSERT_TYPE used in
SCM_MAKE_VALIDATE (instead of just SCM_ASSERT)

* Makefile.am: Rename scm_validate.h to validate.h.

* *.c, *.h: Include validate.h, not scm_validate.h (old name's
prefix was superfluous).
This commit is contained in:
Greg J. Badros 2000-03-03 00:09:54 +00:00
parent 417bdef8a5
commit b6791b2e94
61 changed files with 89 additions and 64 deletions

View file

@ -390,11 +390,15 @@ do { \
#ifdef SCM_RECKLESS
#define SCM_ASSERT(_cond, _arg, _pos, _subr)
#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr)
#define SCM_ASRTGO(_cond, _label)
#else
#define SCM_ASSERT(_cond, _arg, _pos, _subr) \
if (!(_cond)) \
scm_wta(_arg, (char *)(_pos), _subr)
#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) \
if (!(_cond)) \
scm_wrong_type_arg_msg(_subr, _pos, _arg, _msg)
#define SCM_ASRTGO(_cond, _label) \
if (!(_cond)) \
goto _label

View file

@ -48,7 +48,7 @@
#include "eq.h"
#include "list.h"
#include "scm_validate.h"
#include "validate.h"
#include "alist.h"

View file

@ -49,7 +49,7 @@
#include "smob.h"
#include "genio.h"
#include "scm_validate.h"
#include "validate.h"
#include "arbiters.h"

View file

@ -51,7 +51,7 @@
#include "throw.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "async.h"
#ifdef HAVE_STRING_H

View file

@ -64,7 +64,7 @@
#include "throw.h"
#include "fluids.h"
#include "scm_validate.h"
#include "validate.h"
#include "backtrace.h"
/* {Error reporting and backtraces}

View file

@ -47,7 +47,7 @@
#include <stdio.h>
#include "_scm.h"
#include "scm_validate.h"
#include "validate.h"
#include "boolean.h"

View file

@ -47,7 +47,7 @@
#include <stdio.h>
#include <ctype.h>
#include "_scm.h"
#include "scm_validate.h"
#include "validate.h"
#include "chars.h"

View file

@ -44,7 +44,7 @@
#include "scm_validate.h"
#include "validate.h"
#include "coop-threads.h"
/* A counter of the current number of threads */

View file

@ -65,7 +65,7 @@
#include "dynwind.h"
#include "modules.h"
#include "scm_validate.h"
#include "validate.h"
#include "debug.h"

View file

@ -71,7 +71,7 @@ maybe_drag_in_eprintf ()
#include "smob.h"
#include "keywords.h"
#include "scm_validate.h"
#include "validate.h"
/* Converting a list of SCM strings into a argv-style array. You must
have ints disabled for the whole lifetime of the created argv (from

View file

@ -51,7 +51,7 @@
#include "smob.h"
#include "unif.h"
#include "scm_validate.h"
#include "validate.h"
#include "eq.h"
SCM_DEFINE1 (scm_eq_p, "eq?", scm_tc7_rpsubr,

View file

@ -51,7 +51,7 @@
#include "genio.h"
#include "throw.h"
#include "scm_validate.h"
#include "validate.h"
#include "error.h"
#ifdef HAVE_STRING_H
@ -188,7 +188,7 @@ scm_out_of_range (const char *subr, SCM bad_value)
scm_error (scm_out_of_range_key,
subr,
"Argument out of range: ~S",
scm_cons (bad_value, SCM_EOL),
SCM_LIST1(bad_value),
SCM_BOOL_F);
}
@ -198,7 +198,7 @@ scm_out_of_range_pos (const char *subr, SCM bad_value, SCM pos)
scm_error (scm_out_of_range_key,
subr,
"Argument ~S out of range: ~S",
scm_listify (pos, bad_value, SCM_UNDEFINED),
SCM_LIST2(pos,bad_value),
SCM_BOOL_F);
}
@ -210,7 +210,7 @@ scm_wrong_num_args (SCM proc)
scm_error (scm_args_number_key,
NULL,
"Wrong number of arguments to ~A",
scm_cons (proc, SCM_EOL),
SCM_LIST1(proc),
SCM_BOOL_F);
}
@ -222,11 +222,30 @@ scm_wrong_type_arg (const char *subr, int pos, SCM bad_value)
subr,
(pos == 0) ? "Wrong type argument: ~S"
: "Wrong type argument in position ~A: ~S",
(pos == 0) ? scm_cons (bad_value, SCM_EOL)
: scm_cons (SCM_MAKINUM (pos), scm_cons (bad_value, SCM_EOL)),
(pos == 0) ? SCM_LIST1(bad_value)
: SCM_LIST2(SCM_MAKINUM(pos), bad_value),
SCM_BOOL_F);
}
void
scm_wrong_type_arg_msg (const char *subr, int pos, SCM bad_value, const char *szMessage)
{
SCM msg = scm_makfrom0str(szMessage);
if (pos == 0) {
scm_error (scm_arg_type_key,
subr, "Wrong type argument (expecting ~A): ~S",
SCM_LIST2(msg,bad_value),
SCM_BOOL_F);
} else {
scm_error (scm_arg_type_key,
subr,
"Wrong type argument in position ~A (expecting ~A): ~S",
SCM_LIST3(SCM_MAKINUM(pos),msg,bad_value),
SCM_BOOL_F);
}
}
SCM_SYMBOL (scm_memory_alloc_key, "memory-allocation-error");
void
scm_memory_error (const char *subr)

View file

@ -78,6 +78,8 @@ extern void scm_out_of_range_pos (const char *subr, SCM bad_value, SCM pos)
extern void scm_wrong_num_args (SCM proc) SCM_NORETURN;
extern void scm_wrong_type_arg (const char *subr, int pos,
SCM bad_value) SCM_NORETURN;
extern void scm_wrong_type_arg_msg (const char *subr, int pos,
SCM bad_value, const char *sz) SCM_NORETURN;
extern void scm_memory_error (const char *subr) SCM_NORETURN;
extern void scm_misc_error (const char *subr, const char *message,
SCM args) SCM_NORETURN;

View file

@ -96,7 +96,7 @@ char *alloca ();
#include "feature.h"
#include "modules.h"
#include "scm_validate.h"
#include "validate.h"
#include "eval.h"
SCM (*scm_memoize_method) (SCM, SCM);

View file

@ -49,7 +49,7 @@
#include "macros.h"
#include "modules.h"
#include "scm_validate.h"
#include "validate.h"
#include "evalext.h"
SCM_SYMBOL (scm_sym_setter, "setter");

View file

@ -51,7 +51,7 @@
#include "procprop.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "feature.h"
#ifdef HAVE_STRING_H

View file

@ -51,7 +51,7 @@
#include "fports.h"
#include "iselect.h"
#include "scm_validate.h"
#include "validate.h"
#include "filesys.h"

View file

@ -53,7 +53,7 @@
#include "eval.h"
#define INITIAL_FLUIDS 10
#include "scm_validate.h"
#include "validate.h"
static volatile int n_fluids;
long scm_tc16_fluid;

View file

@ -48,7 +48,7 @@
#include <fcntl.h>
#include "_scm.h"
#include "scm_validate.h"
#include "validate.h"
#include "fports.h"
#ifdef HAVE_STRING_H

View file

@ -55,7 +55,7 @@
#include "unif.h"
#include "async.h"
#include "scm_validate.h"
#include "validate.h"
#include "gc.h"
#ifdef HAVE_MALLOC_H

View file

@ -62,7 +62,7 @@
#include "smob.h"
#include "genio.h"
#include "scm_validate.h"
#include "validate.h"
#include "guardians.h"
static long scm_tc16_guardian;

View file

@ -48,7 +48,7 @@
#include "_scm.h"
#include "chars.h"
#include "scm_validate.h"
#include "validate.h"
#include "hash.h"

View file

@ -50,7 +50,7 @@
#include "hash.h"
#include "eval.h"
#include "scm_validate.h"
#include "validate.h"
#include "hashtab.h"

View file

@ -54,7 +54,7 @@
#include "chars.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "ioext.h"
#include <fcntl.h>

View file

@ -49,7 +49,7 @@
#include "genio.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "keywords.h"

View file

@ -49,7 +49,7 @@
#include "eval.h"
#include "macros.h"
#include "scm_validate.h"
#include "validate.h"
#include "lang.h"

View file

@ -47,7 +47,7 @@
#include "_scm.h"
#include "eq.h"
#include "scm_validate.h"
#include "validate.h"
#include "list.h"
#ifdef __STDC__

View file

@ -54,7 +54,7 @@
#include "alist.h"
#include "dynwind.h"
#include "scm_validate.h"
#include "validate.h"
#include "load.h"
#include <sys/types.h>

View file

@ -47,7 +47,7 @@
#include "_scm.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "macros.h"
long scm_tc16_macro;

View file

@ -55,7 +55,7 @@
#include "_scm.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "net_db.h"
#ifdef HAVE_STRING_H

View file

@ -52,7 +52,7 @@
#include "feature.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "numbers.h"
#define DIGITS '0':case '1':case '2':case '3':case '4':\

View file

@ -59,7 +59,7 @@
#include "eval.h"
#include "alist.h"
#include "scm_validate.h"
#include "validate.h"
#include "objects.h"

View file

@ -47,7 +47,7 @@
#include "_scm.h"
#include "scm_validate.h"
#include "validate.h"

View file

@ -53,7 +53,7 @@
#include "keywords.h"
#include "scm_validate.h"
#include "validate.h"
#include "ports.h"
#ifdef HAVE_STRING_H

View file

@ -50,7 +50,7 @@
#include "scmsigs.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "posix.h"

View file

@ -60,7 +60,7 @@
#include "objects.h"
#include "strports.h"
#include "scm_validate.h"
#include "validate.h"
#include "print.h"

View file

@ -53,7 +53,7 @@
#include "gsubr.h"
#include "objects.h"
#include "scm_validate.h"
#include "validate.h"
#include "procprop.h"

View file

@ -49,7 +49,7 @@
#include "objects.h"
#include "scm_validate.h"
#include "validate.h"
#include "procs.h"

View file

@ -56,7 +56,7 @@
#include "eval.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "ramap.h"

View file

@ -53,7 +53,7 @@
#include "numbers.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "random.h"

View file

@ -56,7 +56,7 @@
#include "hashtab.h"
#include "hash.h"
#include "scm_validate.h"
#include "validate.h"
#include "read.h"

View file

@ -83,7 +83,7 @@
#include "ports.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "regex-posix.h"
/* This is defined by some regex libraries and omitted by others. */

View file

@ -1,4 +1,4 @@
/* $Id: scm_validate.h,v 1.20 2000-03-02 20:54:43 gjb Exp $ */
/* $Id: scm_validate.h,v 1.21 2000-03-03 00:09:53 gjb Exp $ */
/* Copyright (C) 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify

View file

@ -51,7 +51,7 @@
#include "async.h"
#include "eval.h"
#include "scm_validate.h"
#include "validate.h"
#include "scmsigs.h"
#ifdef HAVE_UNISTD_H

View file

@ -49,7 +49,7 @@
#include "scmsigs.h"
#include "scm_validate.h"
#include "validate.h"
#include "simpos.h"
#ifdef HAVE_STRING_H

View file

@ -51,7 +51,7 @@
#include "feature.h"
#include "fports.h"
#include "scm_validate.h"
#include "validate.h"
#include "socket.h"
#ifdef HAVE_STRING_H

View file

@ -86,7 +86,7 @@ char *alloca ();
#include "alist.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "sort.h"
/* The routine quicksort was extracted from the GNU C Library qsort.c

View file

@ -57,7 +57,7 @@
#include "hash.h"
#include "weaks.h"
#include "scm_validate.h"
#include "validate.h"
#include "srcprop.h"
/* {Source Properties}

View file

@ -58,7 +58,7 @@
#include "procprop.h"
#include "modules.h"
#include "scm_validate.h"
#include "validate.h"
#include "stacks.h"

View file

@ -48,7 +48,7 @@
#include "_scm.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "stime.h"
#ifdef HAVE_UNISTD_H

View file

@ -49,7 +49,7 @@
#include "chars.h"
#include "strings.h"
#include "scm_validate.h"
#include "validate.h"
/* {Strings}

View file

@ -27,7 +27,7 @@ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
#include "_scm.h"
#include "chars.h"
#include "scm_validate.h"
#include "validate.h"
#include "strop.h"
#include "read.h" /*For SCM_CASE_INSENSITIVE_P*/

View file

@ -47,7 +47,7 @@
#include "_scm.h"
#include "chars.h"
#include "scm_validate.h"
#include "validate.h"
#include "strorder.h"

View file

@ -53,7 +53,7 @@
#include "weaks.h"
#include "hashtab.h"
#include "scm_validate.h"
#include "validate.h"
#include "struct.h"
#ifdef HAVE_STRING_H

View file

@ -52,7 +52,7 @@
#include "alist.h"
#include "weaks.h"
#include "scm_validate.h"
#include "validate.h"
#include "symbols.h"
#ifdef HAVE_STRING_H

View file

@ -61,7 +61,7 @@
#include "stacks.h"
#include "fluids.h"
#include "scm_validate.h"
#include "validate.h"
#include "throw.h"

View file

@ -53,7 +53,7 @@
#include "strop.h"
#include "feature.h"
#include "scm_validate.h"
#include "validate.h"
#include "unif.h"
#include "ramap.h"

View file

@ -50,7 +50,7 @@
#include "genio.h"
#include "smob.h"
#include "scm_validate.h"
#include "validate.h"
#include "variable.h"

View file

@ -48,7 +48,7 @@
#include "_scm.h"
#include "eq.h"
#include "scm_validate.h"
#include "validate.h"
#include "vectors.h"
#include "unif.h"

View file

@ -50,7 +50,7 @@
#include "chars.h"
#include "fports.h"
#include "scm_validate.h"
#include "validate.h"
#include "vports.h"
#ifdef HAVE_STRING_H

View file

@ -46,7 +46,7 @@
#include <stdio.h>
#include "_scm.h"
#include "scm_validate.h"
#include "validate.h"
#include "weaks.h"