Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 2 | /* Error handling */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | f22120a | 1990-12-20 23:05:40 +0000 | [diff] [blame] | 5 | |
Jack Jansen | 8fd2d94 | 1994-12-14 12:54:54 +0000 | [diff] [blame] | 6 | #ifdef macintosh |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 7 | extern char *PyMac_StrError(int); |
Jack Jansen | 5ef86d5 | 1995-01-19 12:16:44 +0000 | [diff] [blame] | 8 | #undef strerror |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 9 | #define strerror PyMac_StrError |
| 10 | #endif /* macintosh */ |
| 11 | |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 12 | #ifndef __STDC__ |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 13 | #ifndef MS_WINDOWS |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 14 | extern char *strerror(int); |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 15 | #endif |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 16 | #endif |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 17 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 18 | #ifdef MS_WINDOWS |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 19 | #include "windows.h" |
| 20 | #include "winbase.h" |
| 21 | #endif |
| 22 | |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 23 | #include <ctype.h> |
| 24 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 25 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 26 | PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 27 | { |
Guido van Rossum | 885553e | 1998-12-21 18:33:30 +0000 | [diff] [blame] | 28 | PyThreadState *tstate = PyThreadState_GET(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 29 | PyObject *oldtype, *oldvalue, *oldtraceback; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 30 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 31 | if (traceback != NULL && !PyTraceBack_Check(traceback)) { |
| 32 | /* XXX Should never happen -- fatal error instead? */ |
| 33 | Py_DECREF(traceback); |
| 34 | traceback = NULL; |
| 35 | } |
| 36 | |
| 37 | /* Save these in locals to safeguard against recursive |
| 38 | invocation through Py_XDECREF */ |
| 39 | oldtype = tstate->curexc_type; |
| 40 | oldvalue = tstate->curexc_value; |
| 41 | oldtraceback = tstate->curexc_traceback; |
| 42 | |
| 43 | tstate->curexc_type = type; |
| 44 | tstate->curexc_value = value; |
| 45 | tstate->curexc_traceback = traceback; |
| 46 | |
| 47 | Py_XDECREF(oldtype); |
| 48 | Py_XDECREF(oldvalue); |
| 49 | Py_XDECREF(oldtraceback); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 53 | PyErr_SetObject(PyObject *exception, PyObject *value) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 54 | { |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 55 | Py_XINCREF(exception); |
| 56 | Py_XINCREF(value); |
| 57 | PyErr_Restore(exception, value, (PyObject *)NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 61 | PyErr_SetNone(PyObject *exception) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 62 | { |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 63 | PyErr_SetObject(exception, (PyObject *)NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 67 | PyErr_SetString(PyObject *exception, const char *string) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 68 | { |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 69 | PyObject *value = PyString_FromString(string); |
| 70 | PyErr_SetObject(exception, value); |
| 71 | Py_XDECREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 74 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 75 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 76 | PyErr_Occurred(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 77 | { |
Tim Peters | 024da35 | 2001-05-30 06:09:50 +0000 | [diff] [blame] | 78 | PyThreadState *tstate = PyThreadState_GET(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 79 | |
| 80 | return tstate->curexc_type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 83 | |
| 84 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 85 | PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 86 | { |
Barry Warsaw | fa5c315 | 2000-05-02 19:27:51 +0000 | [diff] [blame] | 87 | if (err == NULL || exc == NULL) { |
| 88 | /* maybe caused by "import exceptions" that failed early on */ |
| 89 | return 0; |
| 90 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 91 | if (PyTuple_Check(exc)) { |
| 92 | int i, n; |
| 93 | n = PyTuple_Size(exc); |
| 94 | for (i = 0; i < n; i++) { |
| 95 | /* Test recursively */ |
| 96 | if (PyErr_GivenExceptionMatches( |
| 97 | err, PyTuple_GET_ITEM(exc, i))) |
| 98 | { |
| 99 | return 1; |
| 100 | } |
| 101 | } |
| 102 | return 0; |
| 103 | } |
| 104 | /* err might be an instance, so check its class. */ |
| 105 | if (PyInstance_Check(err)) |
| 106 | err = (PyObject*)((PyInstanceObject*)err)->in_class; |
| 107 | |
| 108 | if (PyClass_Check(err) && PyClass_Check(exc)) |
| 109 | return PyClass_IsSubclass(err, exc); |
| 110 | |
| 111 | return err == exc; |
| 112 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 113 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 114 | |
| 115 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 116 | PyErr_ExceptionMatches(PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 117 | { |
| 118 | return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); |
| 119 | } |
| 120 | |
| 121 | |
| 122 | /* Used in many places to normalize a raised exception, including in |
| 123 | eval_code2(), do_raise(), and PyErr_Print() |
| 124 | */ |
| 125 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 126 | PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 127 | { |
| 128 | PyObject *type = *exc; |
| 129 | PyObject *value = *val; |
| 130 | PyObject *inclass = NULL; |
Jeremy Hylton | e2e2c9f | 2001-09-26 19:58:38 +0000 | [diff] [blame] | 131 | PyObject *initial_tb = NULL; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 132 | |
Guido van Rossum | ed473a4 | 2000-08-07 19:18:27 +0000 | [diff] [blame] | 133 | if (type == NULL) { |
| 134 | /* This is a bug. Should never happen. Don't dump core. */ |
| 135 | PyErr_SetString(PyExc_SystemError, |
| 136 | "PyErr_NormalizeException() called without exception"); |
| 137 | } |
| 138 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 139 | /* If PyErr_SetNone() was used, the value will have been actually |
| 140 | set to NULL. |
| 141 | */ |
| 142 | if (!value) { |
| 143 | value = Py_None; |
| 144 | Py_INCREF(value); |
| 145 | } |
| 146 | |
| 147 | if (PyInstance_Check(value)) |
| 148 | inclass = (PyObject*)((PyInstanceObject*)value)->in_class; |
| 149 | |
| 150 | /* Normalize the exception so that if the type is a class, the |
| 151 | value will be an instance. |
| 152 | */ |
| 153 | if (PyClass_Check(type)) { |
| 154 | /* if the value was not an instance, or is not an instance |
| 155 | whose class is (or is derived from) type, then use the |
| 156 | value as an argument to instantiation of the type |
| 157 | class. |
| 158 | */ |
| 159 | if (!inclass || !PyClass_IsSubclass(inclass, type)) { |
| 160 | PyObject *args, *res; |
| 161 | |
| 162 | if (value == Py_None) |
| 163 | args = Py_BuildValue("()"); |
| 164 | else if (PyTuple_Check(value)) { |
| 165 | Py_INCREF(value); |
| 166 | args = value; |
| 167 | } |
| 168 | else |
| 169 | args = Py_BuildValue("(O)", value); |
| 170 | |
| 171 | if (args == NULL) |
| 172 | goto finally; |
| 173 | res = PyEval_CallObject(type, args); |
| 174 | Py_DECREF(args); |
| 175 | if (res == NULL) |
| 176 | goto finally; |
| 177 | Py_DECREF(value); |
| 178 | value = res; |
| 179 | } |
Barry Warsaw | 3a74993 | 1997-09-30 15:00:18 +0000 | [diff] [blame] | 180 | /* if the class of the instance doesn't exactly match the |
| 181 | class of the type, believe the instance |
| 182 | */ |
| 183 | else if (inclass != type) { |
| 184 | Py_DECREF(type); |
| 185 | type = inclass; |
| 186 | Py_INCREF(type); |
| 187 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 188 | } |
| 189 | *exc = type; |
| 190 | *val = value; |
| 191 | return; |
| 192 | finally: |
Guido van Rossum | 19b55f2 | 1997-12-09 14:11:39 +0000 | [diff] [blame] | 193 | Py_DECREF(type); |
| 194 | Py_DECREF(value); |
Jeremy Hylton | e2e2c9f | 2001-09-26 19:58:38 +0000 | [diff] [blame] | 195 | /* If the new exception doesn't set a traceback and the old |
| 196 | exception had a traceback, use the old traceback for the |
| 197 | new exception. It's better than nothing. |
| 198 | */ |
| 199 | initial_tb = *tb; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 200 | PyErr_Fetch(exc, val, tb); |
Jeremy Hylton | e2e2c9f | 2001-09-26 19:58:38 +0000 | [diff] [blame] | 201 | if (initial_tb != NULL) { |
| 202 | if (*tb == NULL) |
| 203 | *tb = initial_tb; |
| 204 | else |
| 205 | Py_DECREF(initial_tb); |
| 206 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 207 | /* normalize recursively */ |
| 208 | PyErr_NormalizeException(exc, val, tb); |
| 209 | } |
| 210 | |
| 211 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 212 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 213 | PyErr_Fetch(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 214 | { |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 215 | PyThreadState *tstate = PyThreadState_Get(); |
| 216 | |
| 217 | *p_type = tstate->curexc_type; |
| 218 | *p_value = tstate->curexc_value; |
| 219 | *p_traceback = tstate->curexc_traceback; |
| 220 | |
| 221 | tstate->curexc_type = NULL; |
| 222 | tstate->curexc_value = NULL; |
| 223 | tstate->curexc_traceback = NULL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 227 | PyErr_Clear(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 228 | { |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 229 | PyErr_Restore(NULL, NULL, NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 230 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 231 | |
| 232 | /* Convenience functions to set a type error exception and return 0 */ |
| 233 | |
| 234 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 235 | PyErr_BadArgument(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 236 | { |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 237 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 238 | "bad argument type for built-in operation"); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 242 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 243 | PyErr_NoMemory(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 244 | { |
Vladimir Marangozov | 0888ff1 | 2000-08-18 18:01:06 +0000 | [diff] [blame] | 245 | if (PyErr_ExceptionMatches(PyExc_MemoryError)) |
| 246 | /* already current */ |
| 247 | return NULL; |
| 248 | |
Barry Warsaw | 2d8adff | 1997-08-29 21:54:35 +0000 | [diff] [blame] | 249 | /* raise the pre-allocated instance if it still exists */ |
| 250 | if (PyExc_MemoryErrorInst) |
| 251 | PyErr_SetObject(PyExc_MemoryError, PyExc_MemoryErrorInst); |
| 252 | else |
| 253 | /* this will probably fail since there's no memory and hee, |
| 254 | hee, we have to instantiate this class |
| 255 | */ |
| 256 | PyErr_SetNone(PyExc_MemoryError); |
| 257 | |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 258 | return NULL; |
| 259 | } |
| 260 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 261 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 262 | PyErr_SetFromErrnoWithFilename(PyObject *exc, char *filename) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 263 | { |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 264 | PyObject *v; |
Guido van Rossum | e0e5982 | 1998-10-14 20:38:13 +0000 | [diff] [blame] | 265 | char *s; |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 266 | int i = errno; |
Martin v. Löwis | 3484a18 | 2002-03-09 12:07:51 +0000 | [diff] [blame] | 267 | #ifdef PLAN9 |
| 268 | char errbuf[ERRMAX]; |
| 269 | #endif |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 270 | #ifdef MS_WINDOWS |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 271 | char *s_buf = NULL; |
| 272 | #endif |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 273 | #ifdef EINTR |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 274 | if (i == EINTR && PyErr_CheckSignals()) |
Guido van Rossum | 5063bab | 1991-10-20 20:14:56 +0000 | [diff] [blame] | 275 | return NULL; |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 276 | #endif |
Martin v. Löwis | 3484a18 | 2002-03-09 12:07:51 +0000 | [diff] [blame] | 277 | #ifdef PLAN9 |
| 278 | rerrstr(errbuf, sizeof errbuf); |
| 279 | s = errbuf; |
| 280 | #else |
Guido van Rossum | e0e5982 | 1998-10-14 20:38:13 +0000 | [diff] [blame] | 281 | if (i == 0) |
| 282 | s = "Error"; /* Sometimes errno didn't get set */ |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 283 | else |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 284 | #ifndef MS_WINDOWS |
Guido van Rossum | e0e5982 | 1998-10-14 20:38:13 +0000 | [diff] [blame] | 285 | s = strerror(i); |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 286 | #else |
| 287 | { |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 288 | /* Note that the Win32 errors do not lineup with the |
| 289 | errno error. So if the error is in the MSVC error |
| 290 | table, we use it, otherwise we assume it really _is_ |
| 291 | a Win32 error code |
| 292 | */ |
Guido van Rossum | 584b16a | 2000-02-21 16:50:31 +0000 | [diff] [blame] | 293 | if (i > 0 && i < _sys_nerr) { |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 294 | s = _sys_errlist[i]; |
| 295 | } |
| 296 | else { |
| 297 | int len = FormatMessage( |
| 298 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 299 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 300 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 301 | NULL, /* no message source */ |
| 302 | i, |
| 303 | MAKELANGID(LANG_NEUTRAL, |
| 304 | SUBLANG_DEFAULT), |
| 305 | /* Default language */ |
| 306 | (LPTSTR) &s_buf, |
| 307 | 0, /* size not used */ |
| 308 | NULL); /* no args */ |
| 309 | s = s_buf; |
| 310 | /* remove trailing cr/lf and dots */ |
| 311 | while (len > 0 && (s[len-1] <= ' ' || s[len-1] == '.')) |
| 312 | s[--len] = '\0'; |
| 313 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 314 | } |
Martin v. Löwis | 3484a18 | 2002-03-09 12:07:51 +0000 | [diff] [blame] | 315 | #endif /* Unix/Windows */ |
| 316 | #endif /* PLAN 9*/ |
Barry Warsaw | fa5c315 | 2000-05-02 19:27:51 +0000 | [diff] [blame] | 317 | if (filename != NULL) |
Guido van Rossum | e0e5982 | 1998-10-14 20:38:13 +0000 | [diff] [blame] | 318 | v = Py_BuildValue("(iss)", i, s, filename); |
| 319 | else |
| 320 | v = Py_BuildValue("(is)", i, s); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 321 | if (v != NULL) { |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 322 | PyErr_SetObject(exc, v); |
| 323 | Py_DECREF(v); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 324 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 325 | #ifdef MS_WINDOWS |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 326 | LocalFree(s_buf); |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 327 | #endif |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 328 | return NULL; |
| 329 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 330 | |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 331 | |
| 332 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 333 | PyErr_SetFromErrno(PyObject *exc) |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 334 | { |
| 335 | return PyErr_SetFromErrnoWithFilename(exc, NULL); |
| 336 | } |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 337 | |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 338 | #ifdef MS_WINDOWS |
| 339 | /* Windows specific error code handling */ |
| 340 | PyObject *PyErr_SetFromWindowsErrWithFilename( |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 341 | int ierr, |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 342 | const char *filename) |
| 343 | { |
| 344 | int len; |
| 345 | char *s; |
| 346 | PyObject *v; |
| 347 | DWORD err = (DWORD)ierr; |
| 348 | if (err==0) err = GetLastError(); |
| 349 | len = FormatMessage( |
| 350 | /* Error API error */ |
| 351 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 352 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 353 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 354 | NULL, /* no message source */ |
| 355 | err, |
| 356 | MAKELANGID(LANG_NEUTRAL, |
| 357 | SUBLANG_DEFAULT), /* Default language */ |
| 358 | (LPTSTR) &s, |
| 359 | 0, /* size not used */ |
| 360 | NULL); /* no args */ |
| 361 | /* remove trailing cr/lf and dots */ |
| 362 | while (len > 0 && (s[len-1] <= ' ' || s[len-1] == '.')) |
| 363 | s[--len] = '\0'; |
Barry Warsaw | fa5c315 | 2000-05-02 19:27:51 +0000 | [diff] [blame] | 364 | if (filename != NULL) |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 365 | v = Py_BuildValue("(iss)", err, s, filename); |
| 366 | else |
| 367 | v = Py_BuildValue("(is)", err, s); |
| 368 | if (v != NULL) { |
Guido van Rossum | 0b55670 | 2000-03-02 13:55:01 +0000 | [diff] [blame] | 369 | PyErr_SetObject(PyExc_WindowsError, v); |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 370 | Py_DECREF(v); |
| 371 | } |
| 372 | LocalFree(s); |
| 373 | return NULL; |
| 374 | } |
| 375 | |
| 376 | PyObject *PyErr_SetFromWindowsErr(int ierr) |
| 377 | { |
| 378 | return PyErr_SetFromWindowsErrWithFilename(ierr, NULL); |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 379 | } |
| 380 | #endif /* MS_WINDOWS */ |
| 381 | |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 382 | void |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 383 | _PyErr_BadInternalCall(char *filename, int lineno) |
| 384 | { |
| 385 | PyErr_Format(PyExc_SystemError, |
| 386 | "%s:%d: bad argument to internal function", |
| 387 | filename, lineno); |
| 388 | } |
| 389 | |
| 390 | /* Remove the preprocessor macro for PyErr_BadInternalCall() so that we can |
| 391 | export the entry point for existing object code: */ |
| 392 | #undef PyErr_BadInternalCall |
| 393 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 394 | PyErr_BadInternalCall(void) |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 395 | { |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 396 | PyErr_Format(PyExc_SystemError, |
| 397 | "bad argument to internal function"); |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 398 | } |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 399 | #define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__) |
| 400 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 401 | |
| 402 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 403 | PyObject * |
| 404 | PyErr_Format(PyObject *exception, const char *format, ...) |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 405 | { |
| 406 | va_list vargs; |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 407 | PyObject* string; |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 408 | |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 409 | #ifdef HAVE_STDARG_PROTOTYPES |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 410 | va_start(vargs, format); |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 411 | #else |
| 412 | va_start(vargs); |
| 413 | #endif |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 414 | |
Barry Warsaw | 876c8cb | 2001-08-24 18:35:23 +0000 | [diff] [blame] | 415 | string = PyString_FromFormatV(format, vargs); |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 416 | PyErr_SetObject(exception, string); |
| 417 | Py_XDECREF(string); |
Tim Peters | c15c4f1 | 2001-10-02 21:32:07 +0000 | [diff] [blame] | 418 | va_end(vargs); |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 419 | return NULL; |
| 420 | } |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 421 | |
| 422 | |
| 423 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 424 | PyErr_NewException(char *name, PyObject *base, PyObject *dict) |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 425 | { |
Guido van Rossum | 2ac650f | 1997-10-03 19:50:55 +0000 | [diff] [blame] | 426 | char *dot; |
| 427 | PyObject *modulename = NULL; |
| 428 | PyObject *classname = NULL; |
| 429 | PyObject *mydict = NULL; |
| 430 | PyObject *bases = NULL; |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 431 | PyObject *result = NULL; |
Guido van Rossum | 2ac650f | 1997-10-03 19:50:55 +0000 | [diff] [blame] | 432 | dot = strrchr(name, '.'); |
| 433 | if (dot == NULL) { |
| 434 | PyErr_SetString(PyExc_SystemError, |
| 435 | "PyErr_NewException: name must be module.class"); |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 436 | return NULL; |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 437 | } |
| 438 | if (base == NULL) |
| 439 | base = PyExc_Exception; |
Guido van Rossum | 2ac650f | 1997-10-03 19:50:55 +0000 | [diff] [blame] | 440 | if (!PyClass_Check(base)) { |
| 441 | /* Must be using string-based standard exceptions (-X) */ |
| 442 | return PyString_FromString(name); |
| 443 | } |
| 444 | if (dict == NULL) { |
| 445 | dict = mydict = PyDict_New(); |
| 446 | if (dict == NULL) |
| 447 | goto failure; |
| 448 | } |
| 449 | if (PyDict_GetItemString(dict, "__module__") == NULL) { |
| 450 | modulename = PyString_FromStringAndSize(name, (int)(dot-name)); |
| 451 | if (modulename == NULL) |
| 452 | goto failure; |
| 453 | if (PyDict_SetItemString(dict, "__module__", modulename) != 0) |
| 454 | goto failure; |
| 455 | } |
| 456 | classname = PyString_FromString(dot+1); |
| 457 | if (classname == NULL) |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 458 | goto failure; |
Guido van Rossum | 2ac650f | 1997-10-03 19:50:55 +0000 | [diff] [blame] | 459 | bases = Py_BuildValue("(O)", base); |
| 460 | if (bases == NULL) |
| 461 | goto failure; |
| 462 | result = PyClass_New(bases, dict, classname); |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 463 | failure: |
Guido van Rossum | 2ac650f | 1997-10-03 19:50:55 +0000 | [diff] [blame] | 464 | Py_XDECREF(bases); |
| 465 | Py_XDECREF(mydict); |
| 466 | Py_XDECREF(classname); |
| 467 | Py_XDECREF(modulename); |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 468 | return result; |
| 469 | } |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 470 | |
| 471 | /* Call when an exception has occurred but there is no way for Python |
| 472 | to handle it. Examples: exception in __del__ or during GC. */ |
| 473 | void |
| 474 | PyErr_WriteUnraisable(PyObject *obj) |
| 475 | { |
| 476 | PyObject *f, *t, *v, *tb; |
| 477 | PyErr_Fetch(&t, &v, &tb); |
| 478 | f = PySys_GetObject("stderr"); |
| 479 | if (f != NULL) { |
| 480 | PyFile_WriteString("Exception ", f); |
| 481 | if (t) { |
| 482 | PyFile_WriteObject(t, f, Py_PRINT_RAW); |
| 483 | if (v && v != Py_None) { |
| 484 | PyFile_WriteString(": ", f); |
| 485 | PyFile_WriteObject(v, f, 0); |
| 486 | } |
| 487 | } |
| 488 | PyFile_WriteString(" in ", f); |
| 489 | PyFile_WriteObject(obj, f, 0); |
| 490 | PyFile_WriteString(" ignored\n", f); |
| 491 | PyErr_Clear(); /* Just in case */ |
| 492 | } |
| 493 | Py_XDECREF(t); |
| 494 | Py_XDECREF(v); |
| 495 | Py_XDECREF(tb); |
| 496 | } |
Guido van Rossum | cfd42b5 | 2000-12-15 21:58:52 +0000 | [diff] [blame] | 497 | |
| 498 | |
| 499 | /* Function to issue a warning message; may raise an exception. */ |
| 500 | int |
| 501 | PyErr_Warn(PyObject *category, char *message) |
| 502 | { |
| 503 | PyObject *mod, *dict, *func = NULL; |
| 504 | |
| 505 | mod = PyImport_ImportModule("warnings"); |
| 506 | if (mod != NULL) { |
| 507 | dict = PyModule_GetDict(mod); |
| 508 | func = PyDict_GetItemString(dict, "warn"); |
| 509 | Py_DECREF(mod); |
| 510 | } |
| 511 | if (func == NULL) { |
| 512 | PySys_WriteStderr("warning: %s\n", message); |
| 513 | return 0; |
| 514 | } |
| 515 | else { |
| 516 | PyObject *args, *res; |
| 517 | |
| 518 | if (category == NULL) |
| 519 | category = PyExc_RuntimeWarning; |
| 520 | args = Py_BuildValue("(sO)", message, category); |
| 521 | if (args == NULL) |
| 522 | return -1; |
| 523 | res = PyEval_CallObject(func, args); |
| 524 | Py_DECREF(args); |
| 525 | if (res == NULL) |
| 526 | return -1; |
| 527 | Py_DECREF(res); |
| 528 | return 0; |
| 529 | } |
| 530 | } |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 531 | |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 532 | |
| 533 | /* Warning with explicit origin */ |
| 534 | int |
| 535 | PyErr_WarnExplicit(PyObject *category, char *message, |
| 536 | char *filename, int lineno, |
| 537 | char *module, PyObject *registry) |
| 538 | { |
| 539 | PyObject *mod, *dict, *func = NULL; |
| 540 | |
| 541 | mod = PyImport_ImportModule("warnings"); |
| 542 | if (mod != NULL) { |
| 543 | dict = PyModule_GetDict(mod); |
| 544 | func = PyDict_GetItemString(dict, "warn_explicit"); |
| 545 | Py_DECREF(mod); |
| 546 | } |
| 547 | if (func == NULL) { |
| 548 | PySys_WriteStderr("warning: %s\n", message); |
| 549 | return 0; |
| 550 | } |
| 551 | else { |
| 552 | PyObject *args, *res; |
| 553 | |
| 554 | if (category == NULL) |
| 555 | category = PyExc_RuntimeWarning; |
| 556 | if (registry == NULL) |
| 557 | registry = Py_None; |
| 558 | args = Py_BuildValue("(sOsizO)", message, category, |
| 559 | filename, lineno, module, registry); |
| 560 | if (args == NULL) |
| 561 | return -1; |
| 562 | res = PyEval_CallObject(func, args); |
| 563 | Py_DECREF(args); |
| 564 | if (res == NULL) |
| 565 | return -1; |
| 566 | Py_DECREF(res); |
| 567 | return 0; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | |
Martin v. Löwis | cfeb3b6 | 2002-03-03 21:30:27 +0000 | [diff] [blame] | 572 | /* Set file and line information for the current exception. |
| 573 | If the exception is not a SyntaxError, also sets additional attributes |
| 574 | to make printing of exceptions believe it is a syntax error. */ |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 575 | |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 576 | void |
| 577 | PyErr_SyntaxLocation(char *filename, int lineno) |
| 578 | { |
| 579 | PyObject *exc, *v, *tb, *tmp; |
| 580 | |
| 581 | /* add attributes for the line number and filename for the error */ |
| 582 | PyErr_Fetch(&exc, &v, &tb); |
| 583 | PyErr_NormalizeException(&exc, &v, &tb); |
| 584 | /* XXX check that it is, indeed, a syntax error */ |
| 585 | tmp = PyInt_FromLong(lineno); |
| 586 | if (tmp == NULL) |
| 587 | PyErr_Clear(); |
| 588 | else { |
| 589 | if (PyObject_SetAttrString(v, "lineno", tmp)) |
| 590 | PyErr_Clear(); |
| 591 | Py_DECREF(tmp); |
| 592 | } |
| 593 | if (filename != NULL) { |
| 594 | tmp = PyString_FromString(filename); |
| 595 | if (tmp == NULL) |
| 596 | PyErr_Clear(); |
| 597 | else { |
| 598 | if (PyObject_SetAttrString(v, "filename", tmp)) |
| 599 | PyErr_Clear(); |
| 600 | Py_DECREF(tmp); |
| 601 | } |
| 602 | |
| 603 | tmp = PyErr_ProgramText(filename, lineno); |
| 604 | if (tmp) { |
| 605 | PyObject_SetAttrString(v, "text", tmp); |
| 606 | Py_DECREF(tmp); |
| 607 | } |
| 608 | } |
Martin v. Löwis | cfeb3b6 | 2002-03-03 21:30:27 +0000 | [diff] [blame] | 609 | if (PyObject_SetAttrString(v, "offset", Py_None)) { |
| 610 | PyErr_Clear(); |
| 611 | } |
| 612 | if (exc != PyExc_SyntaxError) { |
| 613 | if (!PyObject_HasAttrString(v, "msg")) { |
| 614 | tmp = PyObject_Str(v); |
| 615 | if (tmp) { |
| 616 | if (PyObject_SetAttrString(v, "msg", tmp)) |
| 617 | PyErr_Clear(); |
| 618 | Py_DECREF(tmp); |
| 619 | } else { |
| 620 | PyErr_Clear(); |
| 621 | } |
| 622 | } |
| 623 | if (!PyObject_HasAttrString(v, "print_file_and_line")) { |
| 624 | if (PyObject_SetAttrString(v, "print_file_and_line", |
| 625 | Py_None)) |
| 626 | PyErr_Clear(); |
| 627 | } |
| 628 | } |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 629 | PyErr_Restore(exc, v, tb); |
| 630 | } |
| 631 | |
| 632 | /* com_fetch_program_text will attempt to load the line of text that |
| 633 | the exception refers to. If it fails, it will return NULL but will |
| 634 | not set an exception. |
| 635 | |
| 636 | XXX The functionality of this function is quite similar to the |
| 637 | functionality in tb_displayline() in traceback.c. |
| 638 | */ |
| 639 | |
| 640 | PyObject * |
| 641 | PyErr_ProgramText(char *filename, int lineno) |
| 642 | { |
| 643 | FILE *fp; |
| 644 | int i; |
| 645 | char linebuf[1000]; |
| 646 | |
| 647 | if (filename == NULL || lineno <= 0) |
| 648 | return NULL; |
Jack Jansen | 7b8c754 | 2002-04-14 20:12:41 +0000 | [diff] [blame] | 649 | fp = fopen(filename, "r" PY_STDIOTEXTMODE); |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 650 | if (fp == NULL) |
| 651 | return NULL; |
| 652 | for (i = 0; i < lineno; i++) { |
| 653 | char *pLastChar = &linebuf[sizeof(linebuf) - 2]; |
| 654 | do { |
| 655 | *pLastChar = '\0'; |
Jack Jansen | 7b8c754 | 2002-04-14 20:12:41 +0000 | [diff] [blame] | 656 | if (Py_UniversalNewlineFgets(linebuf, sizeof linebuf, fp, NULL) == NULL) |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 657 | break; |
| 658 | /* fgets read *something*; if it didn't get as |
| 659 | far as pLastChar, it must have found a newline |
| 660 | or hit the end of the file; if pLastChar is \n, |
| 661 | it obviously found a newline; else we haven't |
| 662 | yet seen a newline, so must continue */ |
| 663 | } while (*pLastChar != '\0' && *pLastChar != '\n'); |
| 664 | } |
| 665 | fclose(fp); |
| 666 | if (i == lineno) { |
| 667 | char *p = linebuf; |
| 668 | while (*p == ' ' || *p == '\t' || *p == '\014') |
| 669 | p++; |
| 670 | return PyString_FromString(p); |
| 671 | } |
| 672 | return NULL; |
| 673 | } |