R5RS Scheme requires certain operations to signal an error when they fail. "Signalling an error" means that implementations must detect and report the error. Moreover, R5RS encourages, but not requires, implementations to signal an error in many more circumstances.
However, there is no direct way for the Scheme application programmer to report an error that occurred in his or her own application. This means that Scheme procedures created by applications or libraries are in this respect not on equal footing with procedures provided by the Scheme system.
Many Scheme systems already provide a mechanism that allows application code to report an error. At least the following implementations support such a mechanism: Bigloo, Guile, MIT Scheme, PLT Scheme, RScheme, Scsh, SCM, all implementations supported by SLIB. Of these implementations, the following have an error mechanism compatible with this SRFI: Guile, MIT Scheme, PLT Scheme, RScheme, Scsh. The implementation in SLIB has a different name than the one proposed in this SRFI.
To summarise, many implementations already have the error reporting mechanism described in this SRFI and others are easily made compatible with this SRFI. This shows that the proposed mechanism is considered useful and that it is easy to implement in most major implementations.
The following procedure should be provided:
(error
<reason> [<arg1> [<arg2> ...]])
The argument <reason> should be a string.
The procedure error
will signal an error,
as described in R5RS, and it will report the message <reason>
and the objects <arg1>, <arg2>, ....
What exactly constitutes "signalling" and "reporting" is not prescribed, because of the large variation in Scheme systems. So it is left to the implementor
to do something reasonable. To that end, a few examples of possible behaviour
are given.
error
available to other threads in some
way. See the thread-join!
mechanism in SRFI-18 on
how this could be done.
error
is a procedureerror
to be a special form,
such as a macro, rather than a procedure. This might make providing
information such as the source code location easier. This possibility
has been considered, but rejected, for two reasons.
error
accepts a variable number of arguments,
it could occasionally be useful to use apply
to call
error
. However, this is not possible if error
was allowed to be a special form.
error
is currently a procedure in all Scheme
implementations mentioned above, it doesn't seem all that
worthwhile to allow it to be a special form.
(define (error reason . args) (display "Error: ") (display reason) (for-each (lambda (arg) (display " ") (write arg)) args) (newline) (scheme-report-environment -1)) ;; we hope that this will signal an errorThis implementation has a flaw, namely, in many implementations this will actually print 2 messages.
message
, followed by objs
, and
scheme-report-environment
getting an invalid argument.
The SLIB procedure slib:error
works like the error
procedure described in this document.
Thus, when SLIB is loaded, error
can be defined as:
(define error slib:error)
If SRFI 18 is supported, it is allowed
(but not required) to implement error
in
terms of the exception mechanism of SRFI 18.
(define (error reason . args) (raise (make-error-exception reason args)))Here,
make-error-exception
is implementation dependent.
Copyright (C) Stephan Houben (2001). All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.