1990-10-14 09:07:46 -03:00
|
|
|
/* Error handling -- see also run.c */
|
|
|
|
|
|
|
|
/* New error handling interface.
|
|
|
|
|
|
|
|
The following problem exists (existed): methods of built-in modules
|
|
|
|
are called with 'self' and 'args' arguments, but without a context
|
|
|
|
argument, so they have no way to raise a specific exception.
|
|
|
|
The same is true for the object implementations: no context argument.
|
|
|
|
The old convention was to set 'errno' and to return NULL.
|
|
|
|
The caller (usually call_function() in eval.c) detects the NULL
|
|
|
|
return value and then calls puterrno(ctx) to turn the errno value
|
|
|
|
into a true exception. Problems with this approach are:
|
|
|
|
- it used standard errno values to indicate Python-specific errors,
|
1990-12-20 11:06:42 -04:00
|
|
|
but this means that when such an error code is reported by a system
|
|
|
|
call (e.g., in module posix), the user gets a confusing message
|
1990-10-14 09:07:46 -03:00
|
|
|
- errno is a global variable, which makes extensions to a multi-
|
|
|
|
threading environment difficult; e.g., in IRIX, multi-threaded
|
1990-12-20 11:06:42 -04:00
|
|
|
programs must use the function oserror() instead of looking in errno
|
1990-10-14 09:07:46 -03:00
|
|
|
- there is no portable way to add new error numbers for specic
|
|
|
|
situations -- the value space for errno is reserved to the OS, yet
|
|
|
|
the way to turn module-specific errors into a module-specific
|
|
|
|
exception requires module-specific values for errno
|
|
|
|
- there is no way to add a more situation-specific message to an
|
|
|
|
error.
|
|
|
|
|
|
|
|
The new interface solves all these problems. To return an error, a
|
1990-12-20 11:06:42 -04:00
|
|
|
built-in function calls err_set(exception), err_setval(exception,
|
1990-10-14 09:07:46 -03:00
|
|
|
value) or err_setstr(exception, string), and returns NULL. These
|
|
|
|
functions save the value for later use by puterrno(). To adapt this
|
|
|
|
scheme to a multi-threaded environment, only the implementation of
|
|
|
|
err_setval() has to be changed.
|
|
|
|
*/
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
|
|
|
|
1990-12-20 19:05:40 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#ifndef errno
|
|
|
|
extern int errno;
|
|
|
|
#endif
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "errcode.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1990-11-02 13:50:28 -04:00
|
|
|
extern char *strerror PROTO((int));
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Last exception stored by err_setval() */
|
|
|
|
|
|
|
|
static object *last_exception;
|
|
|
|
static object *last_exc_val;
|
|
|
|
|
|
|
|
void
|
|
|
|
err_setval(exception, value)
|
|
|
|
object *exception;
|
|
|
|
object *value;
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
XDECREF(last_exception);
|
|
|
|
XINCREF(exception);
|
1990-10-14 09:07:46 -03:00
|
|
|
last_exception = exception;
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
XDECREF(last_exc_val);
|
|
|
|
XINCREF(value);
|
1990-10-14 09:07:46 -03:00
|
|
|
last_exc_val = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
err_set(exception)
|
|
|
|
object *exception;
|
|
|
|
{
|
|
|
|
err_setval(exception, (object *)NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
err_setstr(exception, string)
|
|
|
|
object *exception;
|
|
|
|
char *string;
|
|
|
|
{
|
|
|
|
object *value = newstringobject(string);
|
|
|
|
err_setval(exception, value);
|
1990-12-20 11:06:42 -04:00
|
|
|
XDECREF(value);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
err_occurred()
|
|
|
|
{
|
|
|
|
return last_exception != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
err_get(p_exc, p_val)
|
|
|
|
object **p_exc;
|
|
|
|
object **p_val;
|
|
|
|
{
|
|
|
|
*p_exc = last_exception;
|
|
|
|
last_exception = NULL;
|
|
|
|
*p_val = last_exc_val;
|
|
|
|
last_exc_val = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
err_clear()
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
XDECREF(last_exception);
|
|
|
|
last_exception = NULL;
|
|
|
|
XDECREF(last_exc_val);
|
|
|
|
last_exc_val = NULL;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1990-10-14 17:00:05 -03:00
|
|
|
|
|
|
|
/* Convenience functions to set a type error exception and return 0 */
|
|
|
|
|
|
|
|
int
|
|
|
|
err_badarg()
|
|
|
|
{
|
1990-11-09 11:05:53 -04:00
|
|
|
err_setstr(TypeError, "illegal argument type for built-in operation");
|
1990-10-14 17:00:05 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
|
|
|
err_nomem()
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
err_set(MemoryError);
|
1990-10-14 17:00:05 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
|
|
|
err_errno(exc)
|
|
|
|
object *exc;
|
|
|
|
{
|
|
|
|
object *v = newtupleobject(2);
|
|
|
|
if (v != NULL) {
|
|
|
|
settupleitem(v, 0, newintobject((long)errno));
|
|
|
|
settupleitem(v, 1, newstringobject(strerror(errno)));
|
|
|
|
}
|
|
|
|
err_setval(exc, v);
|
1990-12-20 11:06:42 -04:00
|
|
|
XDECREF(v);
|
1990-10-14 17:00:05 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-21 19:09:12 -03:00
|
|
|
|
|
|
|
void
|
|
|
|
err_badcall()
|
|
|
|
{
|
|
|
|
err_setstr(SystemError, "bad argument to internal function");
|
|
|
|
}
|
1990-12-20 11:06:42 -04:00
|
|
|
|
|
|
|
/* Set the error appropriate to the given input error code (see errcode.h) */
|
|
|
|
|
|
|
|
void
|
|
|
|
err_input(err)
|
|
|
|
int err;
|
|
|
|
{
|
|
|
|
switch (err) {
|
|
|
|
case E_DONE:
|
|
|
|
case E_OK:
|
|
|
|
break;
|
|
|
|
case E_SYNTAX:
|
|
|
|
err_setstr(RuntimeError, "syntax error");
|
|
|
|
break;
|
|
|
|
case E_TOKEN:
|
|
|
|
err_setstr(RuntimeError, "illegal token");
|
|
|
|
break;
|
|
|
|
case E_INTR:
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
break;
|
|
|
|
case E_NOMEM:
|
|
|
|
err_nomem();
|
|
|
|
break;
|
|
|
|
case E_EOF:
|
|
|
|
err_set(EOFError);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err_setstr(RuntimeError, "unknown input error");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|