*** empty log message ***
[bpt/guile.git] / libguile / error.c
CommitLineData
9f40cd87 1/* Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
0f2d19dd 7 *
73be1d9e
MV
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
1bbd0b84 17
1bbd0b84 18
0f2d19dd
JB
19\f
20
4600886f
RB
21#if HAVE_CONFIG_H
22# include <config.h>
23#endif
24
0f2d19dd 25#include <stdio.h>
e6e2e95a 26#include <errno.h>
bd9e24b3 27
a0599745
MD
28#include "libguile/_scm.h"
29#include "libguile/pairs.h"
30#include "libguile/strings.h"
31#include "libguile/throw.h"
20e6290e 32
a0599745
MD
33#include "libguile/validate.h"
34#include "libguile/error.h"
0f2d19dd 35
bd9e24b3
GH
36#ifdef HAVE_STRING_H
37#include <string.h>
38#endif
95b88819
GH
39#ifdef HAVE_UNISTD_H
40#include <unistd.h>
41#endif
7beabedb
MG
42
43/* For Windows... */
44#ifdef HAVE_IO_H
45#include <io.h>
46#endif
0f2d19dd
JB
47\f
48
49\f
50/* {Errors and Exceptional Conditions}
51 */
52
0f2d19dd 53
c37e0e55 54/* All errors should pass through here. */
7cb1d4d3 55void
1bbd0b84 56scm_error (SCM key, const char *subr, const char *message, SCM args, SCM rest)
7cb1d4d3
GH
57{
58 SCM arg_list;
406c7d90 59 if (scm_gc_running_p)
ef18914a
MD
60 {
61 /* The error occured during GC --- abort */
62 fprintf (stderr, "Error in %s during GC: %s\n",
63 subr ? subr : "unknown function",
64 message ? message : "<empty message>");
65 abort ();
66 }
1afff620
KN
67 arg_list = scm_list_4 (subr ? scm_makfrom0str (subr) : SCM_BOOL_F,
68 message ? scm_makfrom0str (message) : SCM_BOOL_F,
69 args,
70 rest);
7cb1d4d3
GH
71 scm_ithrow (key, arg_list, 1);
72
73 /* No return, but just in case: */
5c11cc9d
GH
74 {
75 const char msg[] = "guile:scm_error:scm_ithrow returned!\n";
7cb1d4d3 76
5c11cc9d
GH
77 write (2, msg, (sizeof msg) - 1);
78 }
7cb1d4d3
GH
79 exit (1);
80}
0f2d19dd 81
c37e0e55 82/* Scheme interface to scm_error. */
3b3b36dd 83SCM_DEFINE (scm_error_scm, "scm-error", 5, 0, 0,
1e6808ea
MG
84 (SCM key, SCM subr, SCM message, SCM args, SCM data),
85 "Raise an error with key @var{key}. @var{subr} can be a string\n"
86 "naming the procedure associated with the error, or @code{#f}.\n"
87 "@var{message} is the error message string, possibly containing\n"
88 "@code{~S} and @code{~A} escapes. When an error is reported,\n"
89 "these are replaced by formatting the corresponding members of\n"
90 "@var{args}: @code{~A} (was @code{%s} in older versions of\n"
91 "Guile) formats using @code{display} and @code{~S} (was\n"
92 "@code{%S}) formats using @code{write}. @var{data} is a list or\n"
93 "@code{#f} depending on @var{key}: if @var{key} is\n"
94 "@code{system-error} then it should be a list containing the\n"
95 "Unix @code{errno} value; If @var{key} is @code{signal} then it\n"
96 "should be a list containing the Unix signal number; otherwise\n"
97 "it will usually be @code{#f}.")
1bbd0b84 98#define FUNC_NAME s_scm_error_scm
c37e0e55 99{
1bbd0b84
GB
100 char *szSubr;
101 char *szMessage;
a6d9e5ab
DH
102
103 SCM_VALIDATE_SYMBOL (1, key);
104
105 if (SCM_FALSEP (subr))
106 {
107 szSubr = NULL;
108 }
109 else if (SCM_SYMBOLP (subr))
110 {
111 szSubr = SCM_SYMBOL_CHARS (subr);
112 }
113 else
114 {
115 SCM_VALIDATE_STRING (2, subr);
a6d9e5ab
DH
116 szSubr = SCM_STRING_CHARS (subr);
117 }
118
119 if (SCM_FALSEP (message))
120 {
121 szMessage = NULL;
122 }
123 else
124 {
125 SCM_VALIDATE_STRING (2, message);
a6d9e5ab
DH
126 szMessage = SCM_STRING_CHARS (message);
127 }
89958ad0 128
1e6808ea 129 scm_error (key, szSubr, szMessage, args, data);
c37e0e55
GH
130 /* not reached. */
131}
1bbd0b84 132#undef FUNC_NAME
c37e0e55 133
b4e15479
SJ
134#ifdef __MINGW32__
135# include "win32-socket.h"
136# define SCM_I_STRERROR(err) \
137 ((err >= WSABASEERR) ? scm_i_socket_strerror (err) : strerror (err))
138# define SCM_I_ERRNO() \
139 (errno ? errno : scm_i_socket_errno ())
140#else
141# define SCM_I_STRERROR(err) strerror (err)
142# define SCM_I_ERRNO() errno
143#endif /* __MINGW32__ */
144
a1ec6916 145SCM_DEFINE (scm_strerror, "strerror", 1, 0, 0,
1bbd0b84 146 (SCM err),
1e6808ea
MG
147 "Return the Unix error message corresponding to @var{err}, which\n"
148 "must be an integer value.")
1bbd0b84 149#define FUNC_NAME s_scm_strerror
efb997f5 150{
34d19ef6 151 SCM_VALIDATE_INUM (1, err);
b4e15479 152 return scm_makfrom0str (SCM_I_STRERROR (SCM_INUM (err)));
efb997f5 153}
1bbd0b84 154#undef FUNC_NAME
efb997f5 155
a7f54aed 156SCM_GLOBAL_SYMBOL (scm_system_error_key, "system-error");
52859adf 157void
1bbd0b84 158scm_syserror (const char *subr)
52859adf 159{
b4e15479 160 int save_errno = SCM_I_ERRNO ();
1de052a7 161
01f61221 162 scm_error (scm_system_error_key,
52859adf 163 subr,
70d63753 164 "~A",
b4e15479 165 scm_cons (scm_makfrom0str (SCM_I_STRERROR (save_errno)), SCM_EOL),
1de052a7 166 scm_cons (SCM_MAKINUM (save_errno), SCM_EOL));
52859adf
GH
167}
168
169void
1bbd0b84 170scm_syserror_msg (const char *subr, const char *message, SCM args, int eno)
52859adf 171{
01f61221 172 scm_error (scm_system_error_key,
52859adf
GH
173 subr,
174 message,
175 args,
5c11cc9d 176 scm_cons (SCM_MAKINUM (eno), SCM_EOL));
52859adf
GH
177}
178
a7f54aed 179SCM_GLOBAL_SYMBOL (scm_num_overflow_key, "numerical-overflow");
52859adf 180void
1bbd0b84 181scm_num_overflow (const char *subr)
52859adf 182{
01f61221 183 scm_error (scm_num_overflow_key,
52859adf
GH
184 subr,
185 "Numerical overflow",
186 SCM_BOOL_F,
187 SCM_BOOL_F);
188}
189
a7f54aed 190SCM_GLOBAL_SYMBOL (scm_out_of_range_key, "out-of-range");
52859adf 191void
1bbd0b84 192scm_out_of_range (const char *subr, SCM bad_value)
52859adf 193{
01f61221 194 scm_error (scm_out_of_range_key,
52859adf 195 subr,
70d63753 196 "Argument out of range: ~S",
1afff620 197 scm_list_1 (bad_value),
52859adf
GH
198 SCM_BOOL_F);
199}
f5bf2977 200
1e76143f
GB
201void
202scm_out_of_range_pos (const char *subr, SCM bad_value, SCM pos)
203{
204 scm_error (scm_out_of_range_key,
205 subr,
70d63753 206 "Argument ~S out of range: ~S",
34d19ef6 207 scm_list_2 (pos, bad_value),
1e76143f
GB
208 SCM_BOOL_F);
209}
210
211
a7f54aed 212SCM_GLOBAL_SYMBOL (scm_args_number_key, "wrong-number-of-args");
0f2d19dd 213void
1bbd0b84 214scm_wrong_num_args (SCM proc)
f5bf2977 215{
01f61221 216 scm_error (scm_args_number_key,
f5bf2977 217 NULL,
70d63753 218 "Wrong number of arguments to ~A",
1afff620 219 scm_list_1 (proc),
f5bf2977
GH
220 SCM_BOOL_F);
221}
222
9f40cd87
DH
223
224void
225scm_error_num_args_subr (const char *subr)
226{
227 scm_error (scm_args_number_key,
228 NULL,
229 "Wrong number of arguments to ~A",
1afff620 230 scm_list_1 (scm_makfrom0str (subr)),
9f40cd87
DH
231 SCM_BOOL_F);
232}
233
234
a7f54aed 235SCM_GLOBAL_SYMBOL (scm_arg_type_key, "wrong-type-arg");
f5bf2977 236void
1bbd0b84 237scm_wrong_type_arg (const char *subr, int pos, SCM bad_value)
f5bf2977 238{
01f61221 239 scm_error (scm_arg_type_key,
f5bf2977 240 subr,
70d63753
GB
241 (pos == 0) ? "Wrong type argument: ~S"
242 : "Wrong type argument in position ~A: ~S",
1afff620
KN
243 (pos == 0) ? scm_list_1 (bad_value)
244 : scm_list_2 (SCM_MAKINUM (pos), bad_value),
f5bf2977
GH
245 SCM_BOOL_F);
246}
247
b6791b2e
GB
248void
249scm_wrong_type_arg_msg (const char *subr, int pos, SCM bad_value, const char *szMessage)
250{
251 SCM msg = scm_makfrom0str(szMessage);
252 if (pos == 0) {
253 scm_error (scm_arg_type_key,
254 subr, "Wrong type argument (expecting ~A): ~S",
1afff620 255 scm_list_2 (msg, bad_value),
b6791b2e
GB
256 SCM_BOOL_F);
257 } else {
258 scm_error (scm_arg_type_key,
259 subr,
260 "Wrong type argument in position ~A (expecting ~A): ~S",
1afff620 261 scm_list_3 (SCM_MAKINUM (pos), msg, bad_value),
b6791b2e
GB
262 SCM_BOOL_F);
263 }
264}
265
266
a7f54aed 267SCM_GLOBAL_SYMBOL (scm_memory_alloc_key, "memory-allocation-error");
f5bf2977 268void
1bbd0b84 269scm_memory_error (const char *subr)
f5bf2977 270{
01f61221 271 scm_error (scm_memory_alloc_key,
f5bf2977
GH
272 subr,
273 "Memory allocation error",
274 SCM_BOOL_F,
275 SCM_BOOL_F);
276}
277
a7f54aed 278SCM_GLOBAL_SYMBOL (scm_misc_error_key, "misc-error");
523f5266 279void
1bbd0b84 280scm_misc_error (const char *subr, const char *message, SCM args)
523f5266
GH
281{
282 scm_error (scm_misc_error_key, subr, message, args, SCM_BOOL_F);
283}
284
0f2d19dd
JB
285void
286scm_init_error ()
0f2d19dd 287{
a0599745
MD
288#include "libguile/cpp_err_symbols.c"
289#include "libguile/error.x"
0f2d19dd
JB
290}
291
89e00824
ML
292
293/*
294 Local Variables:
295 c-file-style: "gnu"
296 End:
297*/