1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1995-01-04 15:12:13 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1991-02-19 08:39:46 -04:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1991-02-19 08:39:46 -04:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1997-04-29 15:22:47 -03:00
|
|
|
/* Error handling */
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1997-04-29 15:22:47 -03:00
|
|
|
#include "Python.h"
|
1990-12-20 19:05:40 -04:00
|
|
|
|
1995-06-27 10:15:15 -03:00
|
|
|
#ifdef SYMANTEC__CFM68K__
|
1995-02-18 10:52:19 -04:00
|
|
|
#pragma lib_export on
|
|
|
|
#endif
|
|
|
|
|
1994-12-14 08:54:54 -04:00
|
|
|
#ifdef macintosh
|
1997-04-29 15:22:47 -03:00
|
|
|
extern char *PyMac_StrError Py_PROTO((int));
|
1995-01-19 08:16:44 -04:00
|
|
|
#undef strerror
|
1995-02-18 10:52:19 -04:00
|
|
|
#define strerror PyMac_StrError
|
|
|
|
#endif /* macintosh */
|
|
|
|
|
1995-03-09 08:11:31 -04:00
|
|
|
#ifndef __STDC__
|
1997-04-11 17:44:04 -03:00
|
|
|
#ifndef MS_WINDOWS
|
1997-04-29 15:22:47 -03:00
|
|
|
extern char *strerror Py_PROTO((int));
|
1995-03-09 08:11:31 -04:00
|
|
|
#endif
|
1997-04-11 17:44:04 -03:00
|
|
|
#endif
|
1990-11-02 13:50:28 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
void
|
1997-05-05 17:56:21 -03:00
|
|
|
PyErr_Restore(type, value, traceback)
|
|
|
|
PyObject *type;
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *value;
|
|
|
|
PyObject *traceback;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyThreadState *tstate = PyThreadState_Get();
|
|
|
|
PyObject *oldtype, *oldvalue, *oldtraceback;
|
|
|
|
|
|
|
|
if (traceback != NULL && !PyTraceBack_Check(traceback)) {
|
|
|
|
/* XXX Should never happen -- fatal error instead? */
|
|
|
|
Py_DECREF(traceback);
|
|
|
|
traceback = NULL;
|
|
|
|
}
|
1994-11-10 18:34:33 -04:00
|
|
|
|
1997-05-05 17:56:21 -03:00
|
|
|
/* Save these in locals to safeguard against recursive
|
|
|
|
invocation through Py_XDECREF */
|
|
|
|
oldtype = tstate->curexc_type;
|
|
|
|
oldvalue = tstate->curexc_value;
|
|
|
|
oldtraceback = tstate->curexc_traceback;
|
|
|
|
|
|
|
|
tstate->curexc_type = type;
|
|
|
|
tstate->curexc_value = value;
|
|
|
|
tstate->curexc_traceback = traceback;
|
|
|
|
|
|
|
|
Py_XDECREF(oldtype);
|
|
|
|
Py_XDECREF(oldvalue);
|
|
|
|
Py_XDECREF(oldtraceback);
|
1995-01-02 15:04:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_SetObject(exception, value)
|
|
|
|
PyObject *exception;
|
|
|
|
PyObject *value;
|
1995-01-02 15:04:15 -04:00
|
|
|
{
|
1997-04-29 15:22:47 -03:00
|
|
|
Py_XINCREF(exception);
|
|
|
|
Py_XINCREF(value);
|
|
|
|
PyErr_Restore(exception, value, (PyObject *)NULL);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_SetNone(exception)
|
|
|
|
PyObject *exception;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_SetObject(exception, (PyObject *)NULL);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_SetString(exception, string)
|
|
|
|
PyObject *exception;
|
1996-12-10 11:33:34 -04:00
|
|
|
const char *string;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *value = PyString_FromString(string);
|
|
|
|
PyErr_SetObject(exception, value);
|
|
|
|
Py_XDECREF(value);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1994-08-29 09:14:12 -03:00
|
|
|
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *
|
|
|
|
PyErr_Occurred()
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyThreadState *tstate = PyThreadState_Get();
|
|
|
|
|
|
|
|
return tstate->curexc_type;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
Three new C API functions:
- int PyErr_GivenExceptionMatches(obj1, obj2)
Returns 1 if obj1 and obj2 are the same object, or if obj1 is an
instance of type obj2, or of a class derived from obj2
- int PyErr_ExceptionMatches(obj)
Higher level wrapper around PyErr_GivenExceptionMatches() which uses
PyErr_Occurred() as obj1. This will be the more commonly called
function.
- void PyErr_NormalizeException(typeptr, valptr, tbptr)
Normalizes exceptions, and places the normalized values in the
arguments. If type is not a class, this does nothing. If type is a
class, then it makes sure that value is an instance of the class by:
1. if instance is of the type, or a class derived from type, it does
nothing.
2. otherwise it instantiates the class, using the value as an
argument. If value is None, it uses an empty arg tuple, and if
the value is a tuple, it uses just that.
1997-08-22 18:22:58 -03:00
|
|
|
|
|
|
|
int
|
|
|
|
PyErr_GivenExceptionMatches(err, exc)
|
|
|
|
PyObject *err, *exc;
|
|
|
|
{
|
|
|
|
if (PyTuple_Check(exc)) {
|
|
|
|
int i, n;
|
|
|
|
n = PyTuple_Size(exc);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
/* Test recursively */
|
|
|
|
if (PyErr_GivenExceptionMatches(
|
|
|
|
err, PyTuple_GET_ITEM(exc, i)))
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* err might be an instance, so check its class. */
|
|
|
|
if (PyInstance_Check(err))
|
|
|
|
err = (PyObject*)((PyInstanceObject*)err)->in_class;
|
|
|
|
|
|
|
|
if (PyClass_Check(err) && PyClass_Check(exc))
|
|
|
|
return PyClass_IsSubclass(err, exc);
|
|
|
|
|
|
|
|
return err == exc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
PyErr_ExceptionMatches(exc)
|
|
|
|
PyObject *exc;
|
|
|
|
{
|
|
|
|
return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Used in many places to normalize a raised exception, including in
|
|
|
|
eval_code2(), do_raise(), and PyErr_Print()
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
PyErr_NormalizeException(exc, val, tb)
|
|
|
|
PyObject **exc;
|
|
|
|
PyObject **val;
|
|
|
|
PyObject **tb;
|
|
|
|
{
|
|
|
|
PyObject *type = *exc;
|
|
|
|
PyObject *value = *val;
|
|
|
|
PyObject *inclass = NULL;
|
|
|
|
|
|
|
|
/* If PyErr_SetNone() was used, the value will have been actually
|
|
|
|
set to NULL.
|
|
|
|
*/
|
|
|
|
if (!value) {
|
|
|
|
value = Py_None;
|
|
|
|
Py_INCREF(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PyInstance_Check(value))
|
|
|
|
inclass = (PyObject*)((PyInstanceObject*)value)->in_class;
|
|
|
|
|
|
|
|
/* Normalize the exception so that if the type is a class, the
|
|
|
|
value will be an instance.
|
|
|
|
*/
|
|
|
|
if (PyClass_Check(type)) {
|
|
|
|
/* if the value was not an instance, or is not an instance
|
|
|
|
whose class is (or is derived from) type, then use the
|
|
|
|
value as an argument to instantiation of the type
|
|
|
|
class.
|
|
|
|
*/
|
|
|
|
if (!inclass || !PyClass_IsSubclass(inclass, type)) {
|
|
|
|
PyObject *args, *res;
|
|
|
|
|
|
|
|
if (value == Py_None)
|
|
|
|
args = Py_BuildValue("()");
|
|
|
|
else if (PyTuple_Check(value)) {
|
|
|
|
Py_INCREF(value);
|
|
|
|
args = value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
args = Py_BuildValue("(O)", value);
|
|
|
|
|
|
|
|
if (args == NULL)
|
|
|
|
goto finally;
|
|
|
|
res = PyEval_CallObject(type, args);
|
|
|
|
Py_DECREF(args);
|
|
|
|
if (res == NULL)
|
|
|
|
goto finally;
|
|
|
|
Py_DECREF(value);
|
|
|
|
value = res;
|
|
|
|
}
|
1997-09-30 12:00:18 -03:00
|
|
|
/* if the class of the instance doesn't exactly match the
|
|
|
|
class of the type, believe the instance
|
|
|
|
*/
|
|
|
|
else if (inclass != type) {
|
|
|
|
Py_DECREF(type);
|
|
|
|
type = inclass;
|
|
|
|
Py_INCREF(type);
|
|
|
|
}
|
Three new C API functions:
- int PyErr_GivenExceptionMatches(obj1, obj2)
Returns 1 if obj1 and obj2 are the same object, or if obj1 is an
instance of type obj2, or of a class derived from obj2
- int PyErr_ExceptionMatches(obj)
Higher level wrapper around PyErr_GivenExceptionMatches() which uses
PyErr_Occurred() as obj1. This will be the more commonly called
function.
- void PyErr_NormalizeException(typeptr, valptr, tbptr)
Normalizes exceptions, and places the normalized values in the
arguments. If type is not a class, this does nothing. If type is a
class, then it makes sure that value is an instance of the class by:
1. if instance is of the type, or a class derived from type, it does
nothing.
2. otherwise it instantiates the class, using the value as an
argument. If value is None, it uses an empty arg tuple, and if
the value is a tuple, it uses just that.
1997-08-22 18:22:58 -03:00
|
|
|
}
|
|
|
|
*exc = type;
|
|
|
|
*val = value;
|
|
|
|
return;
|
|
|
|
finally:
|
|
|
|
Py_DECREF(*exc);
|
|
|
|
Py_DECREF(*val);
|
|
|
|
Py_XDECREF(*tb);
|
|
|
|
PyErr_Fetch(exc, val, tb);
|
|
|
|
/* normalize recursively */
|
|
|
|
PyErr_NormalizeException(exc, val, tb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
void
|
1997-05-05 17:56:21 -03:00
|
|
|
PyErr_Fetch(p_type, p_value, p_traceback)
|
|
|
|
PyObject **p_type;
|
|
|
|
PyObject **p_value;
|
|
|
|
PyObject **p_traceback;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyThreadState *tstate = PyThreadState_Get();
|
|
|
|
|
|
|
|
*p_type = tstate->curexc_type;
|
|
|
|
*p_value = tstate->curexc_value;
|
|
|
|
*p_traceback = tstate->curexc_traceback;
|
|
|
|
|
|
|
|
tstate->curexc_type = NULL;
|
|
|
|
tstate->curexc_value = NULL;
|
|
|
|
tstate->curexc_traceback = NULL;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_Clear()
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyErr_Restore(NULL, NULL, 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
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_BadArgument()
|
1990-10-14 17:00:05 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"illegal argument type for built-in operation");
|
1990-10-14 17:00:05 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *
|
|
|
|
PyErr_NoMemory()
|
1990-10-14 17:00:05 -03:00
|
|
|
{
|
1997-08-29 18:54:35 -03:00
|
|
|
/* raise the pre-allocated instance if it still exists */
|
|
|
|
if (PyExc_MemoryErrorInst)
|
|
|
|
PyErr_SetObject(PyExc_MemoryError, PyExc_MemoryErrorInst);
|
|
|
|
else
|
|
|
|
/* this will probably fail since there's no memory and hee,
|
|
|
|
hee, we have to instantiate this class
|
|
|
|
*/
|
|
|
|
PyErr_SetNone(PyExc_MemoryError);
|
|
|
|
|
1990-10-14 17:00:05 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *
|
|
|
|
PyErr_SetFromErrno(exc)
|
|
|
|
PyObject *exc;
|
1990-10-14 17:00:05 -03:00
|
|
|
{
|
1997-04-29 15:22:47 -03:00
|
|
|
PyObject *v;
|
1994-08-29 09:14:12 -03:00
|
|
|
int i = errno;
|
1995-02-18 10:52:19 -04:00
|
|
|
#ifdef EINTR
|
1997-04-29 15:22:47 -03:00
|
|
|
if (i == EINTR && PyErr_CheckSignals())
|
1991-10-20 17:14:56 -03:00
|
|
|
return NULL;
|
1995-02-18 10:52:19 -04:00
|
|
|
#endif
|
1997-04-29 15:22:47 -03:00
|
|
|
v = Py_BuildValue("(is)", i, strerror(i));
|
1990-10-14 17:00:05 -03:00
|
|
|
if (v != NULL) {
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_SetObject(exc, v);
|
|
|
|
Py_DECREF(v);
|
1990-10-14 17:00:05 -03:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-21 19:09:12 -03:00
|
|
|
|
|
|
|
void
|
1997-04-29 15:22:47 -03:00
|
|
|
PyErr_BadInternalCall()
|
1990-10-21 19:09:12 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"bad argument to internal function");
|
1990-10-21 19:09:12 -03:00
|
|
|
}
|
1997-02-14 13:09:47 -04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_STDARG_PROTOTYPES
|
|
|
|
PyObject *
|
|
|
|
PyErr_Format(PyObject *exception, const char *format, ...)
|
|
|
|
#else
|
|
|
|
PyObject *
|
|
|
|
PyErr_Format(exception, format, va_alist)
|
|
|
|
PyObject *exception;
|
|
|
|
const char *format;
|
|
|
|
va_dcl
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
va_list vargs;
|
|
|
|
char buffer[500]; /* Caller is responsible for limiting the format */
|
|
|
|
|
|
|
|
#ifdef HAVE_STDARG_PROTOTYPES
|
|
|
|
va_start(vargs, format);
|
|
|
|
#else
|
|
|
|
va_start(vargs);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
vsprintf(buffer, format, vargs);
|
|
|
|
PyErr_SetString(exception, buffer);
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-09-16 15:43:50 -03:00
|
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyErr_NewException(name, base, dict)
|
1997-10-03 16:50:55 -03:00
|
|
|
char *name; /* modulename.classname */
|
1997-09-16 15:43:50 -03:00
|
|
|
PyObject *base;
|
|
|
|
PyObject *dict;
|
|
|
|
{
|
1997-10-03 16:50:55 -03:00
|
|
|
char *dot;
|
|
|
|
PyObject *modulename = NULL;
|
|
|
|
PyObject *classname = NULL;
|
|
|
|
PyObject *mydict = NULL;
|
|
|
|
PyObject *bases = NULL;
|
1997-09-16 15:43:50 -03:00
|
|
|
PyObject *result = NULL;
|
1997-10-03 16:50:55 -03:00
|
|
|
dot = strrchr(name, '.');
|
|
|
|
if (dot == NULL) {
|
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"PyErr_NewException: name must be module.class");
|
1997-09-16 15:43:50 -03:00
|
|
|
return NULL;
|
1997-10-03 16:50:55 -03:00
|
|
|
}
|
|
|
|
if (base == NULL)
|
|
|
|
base = PyExc_Exception;
|
|
|
|
if (!PyClass_Check(base)) {
|
|
|
|
/* Must be using string-based standard exceptions (-X) */
|
|
|
|
return PyString_FromString(name);
|
|
|
|
}
|
1997-09-16 15:43:50 -03:00
|
|
|
if (dict == NULL) {
|
1997-10-03 16:50:55 -03:00
|
|
|
dict = mydict = PyDict_New();
|
1997-09-16 15:43:50 -03:00
|
|
|
if (dict == NULL)
|
|
|
|
goto failure;
|
|
|
|
}
|
1997-10-03 16:50:55 -03:00
|
|
|
if (PyDict_GetItemString(dict, "__module__") == NULL) {
|
|
|
|
modulename = PyString_FromStringAndSize(name, (int)(dot-name));
|
|
|
|
if (modulename == NULL)
|
|
|
|
goto failure;
|
|
|
|
if (PyDict_SetItemString(dict, "__module__", modulename) != 0)
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
classname = PyString_FromString(dot+1);
|
|
|
|
if (classname == NULL)
|
|
|
|
goto failure;
|
|
|
|
bases = Py_BuildValue("(O)", base);
|
|
|
|
if (bases == NULL)
|
1997-09-16 15:43:50 -03:00
|
|
|
goto failure;
|
1997-10-03 16:50:55 -03:00
|
|
|
result = PyClass_New(bases, dict, classname);
|
1997-09-16 15:43:50 -03:00
|
|
|
failure:
|
1997-10-03 16:50:55 -03:00
|
|
|
Py_XDECREF(bases);
|
|
|
|
Py_XDECREF(mydict);
|
|
|
|
Py_XDECREF(classname);
|
|
|
|
Py_XDECREF(modulename);
|
1997-09-16 15:43:50 -03:00
|
|
|
return result;
|
|
|
|
}
|