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 | |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 6 | #ifndef __STDC__ |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 7 | #ifndef MS_WINDOWS |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 8 | extern char *strerror(int); |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 9 | #endif |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 10 | #endif |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 11 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 12 | #ifdef MS_WINDOWS |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 13 | #include <windows.h> |
| 14 | #include <winbase.h> |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 15 | #endif |
| 16 | |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 17 | #include <ctype.h> |
| 18 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
| 23 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 24 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 25 | PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 26 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 27 | PyThreadState *tstate = PyThreadState_GET(); |
| 28 | PyObject *oldtype, *oldvalue, *oldtraceback; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 29 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 30 | if (traceback != NULL && !PyTraceBack_Check(traceback)) { |
| 31 | /* XXX Should never happen -- fatal error instead? */ |
| 32 | /* Well, it could be None. */ |
| 33 | Py_DECREF(traceback); |
| 34 | traceback = NULL; |
| 35 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 36 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 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; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 42 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 43 | tstate->curexc_type = type; |
| 44 | tstate->curexc_value = value; |
| 45 | tstate->curexc_traceback = traceback; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 46 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 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 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 55 | PyThreadState *tstate = PyThreadState_GET(); |
| 56 | PyObject *exc_value; |
| 57 | PyObject *tb = NULL; |
Guido van Rossum | b4fb6e4 | 2008-06-14 20:20:24 +0000 | [diff] [blame] | 58 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 59 | if (exception != NULL && |
| 60 | !PyExceptionClass_Check(exception)) { |
| 61 | PyErr_Format(PyExc_SystemError, |
| 62 | "exception %R not a BaseException subclass", |
| 63 | exception); |
| 64 | return; |
| 65 | } |
| 66 | Py_XINCREF(value); |
| 67 | exc_value = tstate->exc_value; |
| 68 | if (exc_value != NULL && exc_value != Py_None) { |
| 69 | /* Implicit exception chaining */ |
| 70 | Py_INCREF(exc_value); |
| 71 | if (value == NULL || !PyExceptionInstance_Check(value)) { |
| 72 | /* We must normalize the value right now */ |
| 73 | PyObject *args, *fixed_value; |
| 74 | if (value == NULL || value == Py_None) |
| 75 | args = PyTuple_New(0); |
| 76 | else if (PyTuple_Check(value)) { |
| 77 | Py_INCREF(value); |
| 78 | args = value; |
| 79 | } |
| 80 | else |
| 81 | args = PyTuple_Pack(1, value); |
| 82 | fixed_value = args ? |
| 83 | PyEval_CallObject(exception, args) : NULL; |
| 84 | Py_XDECREF(args); |
| 85 | Py_XDECREF(value); |
| 86 | if (fixed_value == NULL) |
| 87 | return; |
| 88 | value = fixed_value; |
| 89 | } |
| 90 | /* Avoid reference cycles through the context chain. |
| 91 | This is O(chain length) but context chains are |
| 92 | usually very short. Sensitive readers may try |
| 93 | to inline the call to PyException_GetContext. */ |
| 94 | if (exc_value != value) { |
| 95 | PyObject *o = exc_value, *context; |
| 96 | while ((context = PyException_GetContext(o))) { |
| 97 | Py_DECREF(context); |
| 98 | if (context == value) { |
| 99 | PyException_SetContext(o, NULL); |
| 100 | break; |
| 101 | } |
| 102 | o = context; |
| 103 | } |
| 104 | PyException_SetContext(value, exc_value); |
| 105 | } else { |
| 106 | Py_DECREF(exc_value); |
| 107 | } |
| 108 | } |
| 109 | if (value != NULL && PyExceptionInstance_Check(value)) |
| 110 | tb = PyException_GetTraceback(value); |
| 111 | Py_XINCREF(exception); |
| 112 | PyErr_Restore(exception, value, tb); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 116 | PyErr_SetNone(PyObject *exception) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 117 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 118 | PyErr_SetObject(exception, (PyObject *)NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 122 | PyErr_SetString(PyObject *exception, const char *string) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 123 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 124 | PyObject *value = PyUnicode_FromString(string); |
| 125 | PyErr_SetObject(exception, value); |
| 126 | Py_XDECREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 129 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 130 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 131 | PyErr_Occurred(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 132 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 133 | PyThreadState *tstate = PyThreadState_GET(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 134 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 135 | return tstate->curexc_type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 138 | |
| 139 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 140 | PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 141 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 142 | if (err == NULL || exc == NULL) { |
| 143 | /* maybe caused by "import exceptions" that failed early on */ |
| 144 | return 0; |
| 145 | } |
| 146 | if (PyTuple_Check(exc)) { |
| 147 | Py_ssize_t i, n; |
| 148 | n = PyTuple_Size(exc); |
| 149 | for (i = 0; i < n; i++) { |
| 150 | /* Test recursively */ |
| 151 | if (PyErr_GivenExceptionMatches( |
| 152 | err, PyTuple_GET_ITEM(exc, i))) |
| 153 | { |
| 154 | return 1; |
| 155 | } |
| 156 | } |
| 157 | return 0; |
| 158 | } |
| 159 | /* err might be an instance, so check its class. */ |
| 160 | if (PyExceptionInstance_Check(err)) |
| 161 | err = PyExceptionInstance_Class(err); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 162 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 163 | if (PyExceptionClass_Check(err) && PyExceptionClass_Check(exc)) { |
| 164 | int res = 0; |
| 165 | PyObject *exception, *value, *tb; |
| 166 | PyErr_Fetch(&exception, &value, &tb); |
| 167 | /* PyObject_IsSubclass() can recurse and therefore is |
| 168 | not safe (see test_bad_getattr in test.pickletester). */ |
| 169 | res = PyType_IsSubtype((PyTypeObject *)err, (PyTypeObject *)exc); |
| 170 | /* This function must not fail, so print the error here */ |
| 171 | if (res == -1) { |
| 172 | PyErr_WriteUnraisable(err); |
| 173 | res = 0; |
| 174 | } |
| 175 | PyErr_Restore(exception, value, tb); |
| 176 | return res; |
| 177 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 178 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 179 | return err == exc; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 180 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 181 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 182 | |
| 183 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 184 | PyErr_ExceptionMatches(PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 185 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 186 | return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | |
| 190 | /* Used in many places to normalize a raised exception, including in |
| 191 | eval_code2(), do_raise(), and PyErr_Print() |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 192 | |
| 193 | XXX: should PyErr_NormalizeException() also call |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 194 | PyException_SetTraceback() with the resulting value and tb? |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 195 | */ |
| 196 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 197 | PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 198 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 199 | PyObject *type = *exc; |
| 200 | PyObject *value = *val; |
| 201 | PyObject *inclass = NULL; |
| 202 | PyObject *initial_tb = NULL; |
| 203 | PyThreadState *tstate = NULL; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 204 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 205 | if (type == NULL) { |
| 206 | /* There was no exception, so nothing to do. */ |
| 207 | return; |
| 208 | } |
Guido van Rossum | ed473a4 | 2000-08-07 19:18:27 +0000 | [diff] [blame] | 209 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 210 | /* If PyErr_SetNone() was used, the value will have been actually |
| 211 | set to NULL. |
| 212 | */ |
| 213 | if (!value) { |
| 214 | value = Py_None; |
| 215 | Py_INCREF(value); |
| 216 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 217 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 218 | if (PyExceptionInstance_Check(value)) |
| 219 | inclass = PyExceptionInstance_Class(value); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 220 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 221 | /* Normalize the exception so that if the type is a class, the |
| 222 | value will be an instance. |
| 223 | */ |
| 224 | if (PyExceptionClass_Check(type)) { |
| 225 | /* if the value was not an instance, or is not an instance |
| 226 | whose class is (or is derived from) type, then use the |
| 227 | value as an argument to instantiation of the type |
| 228 | class. |
| 229 | */ |
| 230 | if (!inclass || !PyObject_IsSubclass(inclass, type)) { |
| 231 | PyObject *args, *res; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 232 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 233 | if (value == Py_None) |
| 234 | args = PyTuple_New(0); |
| 235 | else if (PyTuple_Check(value)) { |
| 236 | Py_INCREF(value); |
| 237 | args = value; |
| 238 | } |
| 239 | else |
| 240 | args = PyTuple_Pack(1, value); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 241 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 242 | if (args == NULL) |
| 243 | goto finally; |
| 244 | res = PyEval_CallObject(type, args); |
| 245 | Py_DECREF(args); |
| 246 | if (res == NULL) |
| 247 | goto finally; |
| 248 | Py_DECREF(value); |
| 249 | value = res; |
| 250 | } |
| 251 | /* if the class of the instance doesn't exactly match the |
| 252 | class of the type, believe the instance |
| 253 | */ |
| 254 | else if (inclass != type) { |
| 255 | Py_DECREF(type); |
| 256 | type = inclass; |
| 257 | Py_INCREF(type); |
| 258 | } |
| 259 | } |
| 260 | *exc = type; |
| 261 | *val = value; |
| 262 | return; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 263 | finally: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 264 | Py_DECREF(type); |
| 265 | Py_DECREF(value); |
| 266 | /* If the new exception doesn't set a traceback and the old |
| 267 | exception had a traceback, use the old traceback for the |
| 268 | new exception. It's better than nothing. |
| 269 | */ |
| 270 | initial_tb = *tb; |
| 271 | PyErr_Fetch(exc, val, tb); |
| 272 | if (initial_tb != NULL) { |
| 273 | if (*tb == NULL) |
| 274 | *tb = initial_tb; |
| 275 | else |
| 276 | Py_DECREF(initial_tb); |
| 277 | } |
| 278 | /* normalize recursively */ |
| 279 | tstate = PyThreadState_GET(); |
| 280 | if (++tstate->recursion_depth > Py_GetRecursionLimit()) { |
| 281 | --tstate->recursion_depth; |
| 282 | /* throw away the old exception... */ |
| 283 | Py_DECREF(*exc); |
| 284 | Py_DECREF(*val); |
| 285 | /* ... and use the recursion error instead */ |
| 286 | *exc = PyExc_RuntimeError; |
| 287 | *val = PyExc_RecursionErrorInst; |
| 288 | Py_INCREF(*exc); |
| 289 | Py_INCREF(*val); |
| 290 | /* just keeping the old traceback */ |
| 291 | return; |
| 292 | } |
| 293 | PyErr_NormalizeException(exc, val, tb); |
| 294 | --tstate->recursion_depth; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 298 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 299 | PyErr_Fetch(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 300 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 301 | PyThreadState *tstate = PyThreadState_GET(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 302 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 303 | *p_type = tstate->curexc_type; |
| 304 | *p_value = tstate->curexc_value; |
| 305 | *p_traceback = tstate->curexc_traceback; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 306 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 307 | tstate->curexc_type = NULL; |
| 308 | tstate->curexc_value = NULL; |
| 309 | tstate->curexc_traceback = NULL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 313 | PyErr_Clear(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 314 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 315 | PyErr_Restore(NULL, NULL, NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 316 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 317 | |
| 318 | /* Convenience functions to set a type error exception and return 0 */ |
| 319 | |
| 320 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 321 | PyErr_BadArgument(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 322 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 323 | PyErr_SetString(PyExc_TypeError, |
| 324 | "bad argument type for built-in operation"); |
| 325 | return 0; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 328 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 329 | PyErr_NoMemory(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 330 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 331 | if (PyErr_ExceptionMatches(PyExc_MemoryError)) |
| 332 | /* already current */ |
| 333 | return NULL; |
Vladimir Marangozov | 0888ff1 | 2000-08-18 18:01:06 +0000 | [diff] [blame] | 334 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 335 | /* raise the pre-allocated instance if it still exists */ |
| 336 | if (PyExc_MemoryErrorInst) |
| 337 | { |
| 338 | /* Clear the previous traceback, otherwise it will be appended |
| 339 | * to the current one. |
| 340 | * |
| 341 | * The following statement is not likely to raise any error; |
| 342 | * if it does, we simply discard it. |
| 343 | */ |
| 344 | PyException_SetTraceback(PyExc_MemoryErrorInst, Py_None); |
Amaury Forgeot d'Arc | e19cadb | 2008-07-31 22:56:02 +0000 | [diff] [blame] | 345 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 346 | PyErr_SetObject(PyExc_MemoryError, PyExc_MemoryErrorInst); |
| 347 | } |
| 348 | else |
| 349 | /* this will probably fail since there's no memory and hee, |
| 350 | hee, we have to instantiate this class |
| 351 | */ |
| 352 | PyErr_SetNone(PyExc_MemoryError); |
Barry Warsaw | 2d8adff | 1997-08-29 21:54:35 +0000 | [diff] [blame] | 353 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 354 | return NULL; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 357 | PyObject * |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 358 | PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 359 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 360 | PyObject *message; |
| 361 | PyObject *v; |
| 362 | int i = errno; |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 363 | #ifndef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 364 | char *s; |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 365 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 366 | WCHAR *s_buf = NULL; |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 367 | #endif /* Unix/Windows */ |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 368 | |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 369 | #ifdef EINTR |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 370 | if (i == EINTR && PyErr_CheckSignals()) |
| 371 | return NULL; |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 372 | #endif |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 373 | |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 374 | #ifndef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 375 | if (i == 0) |
| 376 | s = "Error"; /* Sometimes errno didn't get set */ |
| 377 | else |
| 378 | s = strerror(i); |
| 379 | message = PyUnicode_DecodeUTF8(s, strlen(s), "ignore"); |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 380 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 381 | if (i == 0) |
| 382 | message = PyUnicode_FromString("Error"); /* Sometimes errno didn't get set */ |
| 383 | else |
| 384 | { |
| 385 | /* Note that the Win32 errors do not lineup with the |
| 386 | errno error. So if the error is in the MSVC error |
| 387 | table, we use it, otherwise we assume it really _is_ |
| 388 | a Win32 error code |
| 389 | */ |
| 390 | if (i > 0 && i < _sys_nerr) { |
| 391 | message = PyUnicode_FromString(_sys_errlist[i]); |
| 392 | } |
| 393 | else { |
| 394 | int len = FormatMessageW( |
| 395 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 396 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 397 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 398 | NULL, /* no message source */ |
| 399 | i, |
| 400 | MAKELANGID(LANG_NEUTRAL, |
| 401 | SUBLANG_DEFAULT), |
| 402 | /* Default language */ |
| 403 | (LPWSTR) &s_buf, |
| 404 | 0, /* size not used */ |
| 405 | NULL); /* no args */ |
| 406 | if (len==0) { |
| 407 | /* Only ever seen this in out-of-mem |
| 408 | situations */ |
| 409 | s_buf = NULL; |
| 410 | message = PyUnicode_FromFormat("Windows Error 0x%X", i); |
| 411 | } else { |
| 412 | /* remove trailing cr/lf and dots */ |
| 413 | while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) |
| 414 | s_buf[--len] = L'\0'; |
| 415 | message = PyUnicode_FromUnicode(s_buf, len); |
| 416 | } |
| 417 | } |
| 418 | } |
Martin v. Löwis | 3484a18 | 2002-03-09 12:07:51 +0000 | [diff] [blame] | 419 | #endif /* Unix/Windows */ |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 420 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 421 | if (message == NULL) |
| 422 | { |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 423 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 424 | LocalFree(s_buf); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 425 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 426 | return NULL; |
| 427 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 428 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 429 | if (filenameObject != NULL) |
| 430 | v = Py_BuildValue("(iOO)", i, message, filenameObject); |
| 431 | else |
| 432 | v = Py_BuildValue("(iO)", i, message); |
| 433 | Py_DECREF(message); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 434 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 435 | if (v != NULL) { |
| 436 | PyErr_SetObject(exc, v); |
| 437 | Py_DECREF(v); |
| 438 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 439 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 440 | LocalFree(s_buf); |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 441 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 442 | return NULL; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 443 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 444 | |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 445 | |
| 446 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 447 | PyErr_SetFromErrnoWithFilename(PyObject *exc, const char *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 448 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 449 | PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; |
| 450 | PyObject *result = PyErr_SetFromErrnoWithFilenameObject(exc, name); |
| 451 | Py_XDECREF(name); |
| 452 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 453 | } |
| 454 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 455 | #ifdef MS_WINDOWS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 456 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 457 | PyErr_SetFromErrnoWithUnicodeFilename(PyObject *exc, const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 458 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 459 | PyObject *name = filename ? |
| 460 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 461 | NULL; |
| 462 | PyObject *result = PyErr_SetFromErrnoWithFilenameObject(exc, name); |
| 463 | Py_XDECREF(name); |
| 464 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 465 | } |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 466 | #endif /* MS_WINDOWS */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 467 | |
| 468 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 469 | PyErr_SetFromErrno(PyObject *exc) |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 470 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 471 | return PyErr_SetFromErrnoWithFilenameObject(exc, NULL); |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 472 | } |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 473 | |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 474 | #ifdef MS_WINDOWS |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 475 | /* Windows specific error code handling */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 476 | PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 477 | PyObject *exc, |
| 478 | int ierr, |
| 479 | PyObject *filenameObject) |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 480 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 481 | int len; |
| 482 | WCHAR *s_buf = NULL; /* Free via LocalFree */ |
| 483 | PyObject *message; |
| 484 | PyObject *v; |
| 485 | DWORD err = (DWORD)ierr; |
| 486 | if (err==0) err = GetLastError(); |
| 487 | len = FormatMessageW( |
| 488 | /* Error API error */ |
| 489 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 490 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 491 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 492 | NULL, /* no message source */ |
| 493 | err, |
| 494 | MAKELANGID(LANG_NEUTRAL, |
| 495 | SUBLANG_DEFAULT), /* Default language */ |
| 496 | (LPWSTR) &s_buf, |
| 497 | 0, /* size not used */ |
| 498 | NULL); /* no args */ |
| 499 | if (len==0) { |
| 500 | /* Only seen this in out of mem situations */ |
| 501 | message = PyUnicode_FromFormat("Windows Error 0x%X", err); |
| 502 | s_buf = NULL; |
| 503 | } else { |
| 504 | /* remove trailing cr/lf and dots */ |
| 505 | while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) |
| 506 | s_buf[--len] = L'\0'; |
| 507 | message = PyUnicode_FromUnicode(s_buf, len); |
| 508 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 509 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 510 | if (message == NULL) |
| 511 | { |
| 512 | LocalFree(s_buf); |
| 513 | return NULL; |
| 514 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 515 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 516 | if (filenameObject != NULL) |
| 517 | v = Py_BuildValue("(iOO)", err, message, filenameObject); |
| 518 | else |
| 519 | v = Py_BuildValue("(iO)", err, message); |
| 520 | Py_DECREF(message); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 521 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 522 | if (v != NULL) { |
| 523 | PyErr_SetObject(exc, v); |
| 524 | Py_DECREF(v); |
| 525 | } |
| 526 | LocalFree(s_buf); |
| 527 | return NULL; |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 528 | } |
| 529 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 530 | PyObject *PyErr_SetExcFromWindowsErrWithFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 531 | PyObject *exc, |
| 532 | int ierr, |
| 533 | const char *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 534 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 535 | PyObject *name = filename ? PyUnicode_FromString(filename) : NULL; |
| 536 | PyObject *ret = PyErr_SetExcFromWindowsErrWithFilenameObject(exc, |
| 537 | ierr, |
| 538 | name); |
| 539 | Py_XDECREF(name); |
| 540 | return ret; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 543 | PyObject *PyErr_SetExcFromWindowsErrWithUnicodeFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 544 | PyObject *exc, |
| 545 | int ierr, |
| 546 | const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 547 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 548 | PyObject *name = filename ? |
| 549 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 550 | NULL; |
| 551 | PyObject *ret = PyErr_SetExcFromWindowsErrWithFilenameObject(exc, |
| 552 | ierr, |
| 553 | name); |
| 554 | Py_XDECREF(name); |
| 555 | return ret; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 556 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 557 | |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 558 | PyObject *PyErr_SetExcFromWindowsErr(PyObject *exc, int ierr) |
| 559 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 560 | return PyErr_SetExcFromWindowsErrWithFilename(exc, ierr, NULL); |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 563 | PyObject *PyErr_SetFromWindowsErr(int ierr) |
| 564 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 565 | return PyErr_SetExcFromWindowsErrWithFilename(PyExc_WindowsError, |
| 566 | ierr, NULL); |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 567 | } |
| 568 | PyObject *PyErr_SetFromWindowsErrWithFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 569 | int ierr, |
| 570 | const char *filename) |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 571 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 572 | PyObject *name = filename ? PyUnicode_FromString(filename) : NULL; |
| 573 | PyObject *result = PyErr_SetExcFromWindowsErrWithFilenameObject( |
| 574 | PyExc_WindowsError, |
| 575 | ierr, name); |
| 576 | Py_XDECREF(name); |
| 577 | return result; |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 578 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 579 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 580 | PyObject *PyErr_SetFromWindowsErrWithUnicodeFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 581 | int ierr, |
| 582 | const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 583 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 584 | PyObject *name = filename ? |
| 585 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 586 | NULL; |
| 587 | PyObject *result = PyErr_SetExcFromWindowsErrWithFilenameObject( |
| 588 | PyExc_WindowsError, |
| 589 | ierr, name); |
| 590 | Py_XDECREF(name); |
| 591 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 592 | } |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 593 | #endif /* MS_WINDOWS */ |
| 594 | |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 595 | void |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 596 | _PyErr_BadInternalCall(const char *filename, int lineno) |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 597 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 598 | PyErr_Format(PyExc_SystemError, |
| 599 | "%s:%d: bad argument to internal function", |
| 600 | filename, lineno); |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | /* Remove the preprocessor macro for PyErr_BadInternalCall() so that we can |
| 604 | export the entry point for existing object code: */ |
| 605 | #undef PyErr_BadInternalCall |
| 606 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 607 | PyErr_BadInternalCall(void) |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 608 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 609 | PyErr_Format(PyExc_SystemError, |
| 610 | "bad argument to internal function"); |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 611 | } |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 612 | #define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__) |
| 613 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 614 | |
| 615 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 616 | PyObject * |
| 617 | PyErr_Format(PyObject *exception, const char *format, ...) |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 618 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 619 | va_list vargs; |
| 620 | PyObject* string; |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 621 | |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 622 | #ifdef HAVE_STDARG_PROTOTYPES |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 623 | va_start(vargs, format); |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 624 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 625 | va_start(vargs); |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 626 | #endif |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 627 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 628 | string = PyUnicode_FromFormatV(format, vargs); |
| 629 | PyErr_SetObject(exception, string); |
| 630 | Py_XDECREF(string); |
| 631 | va_end(vargs); |
| 632 | return NULL; |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 633 | } |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 634 | |
| 635 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 636 | |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 637 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 638 | PyErr_NewException(const char *name, PyObject *base, PyObject *dict) |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 639 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 640 | const char *dot; |
| 641 | PyObject *modulename = NULL; |
| 642 | PyObject *classname = NULL; |
| 643 | PyObject *mydict = NULL; |
| 644 | PyObject *bases = NULL; |
| 645 | PyObject *result = NULL; |
| 646 | dot = strrchr(name, '.'); |
| 647 | if (dot == NULL) { |
| 648 | PyErr_SetString(PyExc_SystemError, |
| 649 | "PyErr_NewException: name must be module.class"); |
| 650 | return NULL; |
| 651 | } |
| 652 | if (base == NULL) |
| 653 | base = PyExc_Exception; |
| 654 | if (dict == NULL) { |
| 655 | dict = mydict = PyDict_New(); |
| 656 | if (dict == NULL) |
| 657 | goto failure; |
| 658 | } |
| 659 | if (PyDict_GetItemString(dict, "__module__") == NULL) { |
| 660 | modulename = PyUnicode_FromStringAndSize(name, |
| 661 | (Py_ssize_t)(dot-name)); |
| 662 | if (modulename == NULL) |
| 663 | goto failure; |
| 664 | if (PyDict_SetItemString(dict, "__module__", modulename) != 0) |
| 665 | goto failure; |
| 666 | } |
| 667 | if (PyTuple_Check(base)) { |
| 668 | bases = base; |
| 669 | /* INCREF as we create a new ref in the else branch */ |
| 670 | Py_INCREF(bases); |
| 671 | } else { |
| 672 | bases = PyTuple_Pack(1, base); |
| 673 | if (bases == NULL) |
| 674 | goto failure; |
| 675 | } |
| 676 | /* Create a real new-style class. */ |
| 677 | result = PyObject_CallFunction((PyObject *)&PyType_Type, "UOO", |
| 678 | dot+1, bases, dict); |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 679 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 680 | Py_XDECREF(bases); |
| 681 | Py_XDECREF(mydict); |
| 682 | Py_XDECREF(classname); |
| 683 | Py_XDECREF(modulename); |
| 684 | return result; |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 685 | } |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 686 | |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 687 | |
| 688 | /* Create an exception with docstring */ |
| 689 | PyObject * |
| 690 | PyErr_NewExceptionWithDoc(const char *name, const char *doc, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 691 | PyObject *base, PyObject *dict) |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 692 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 693 | int result; |
| 694 | PyObject *ret = NULL; |
| 695 | PyObject *mydict = NULL; /* points to the dict only if we create it */ |
| 696 | PyObject *docobj; |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 697 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 698 | if (dict == NULL) { |
| 699 | dict = mydict = PyDict_New(); |
| 700 | if (dict == NULL) { |
| 701 | return NULL; |
| 702 | } |
| 703 | } |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 704 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 705 | if (doc != NULL) { |
| 706 | docobj = PyUnicode_FromString(doc); |
| 707 | if (docobj == NULL) |
| 708 | goto failure; |
| 709 | result = PyDict_SetItemString(dict, "__doc__", docobj); |
| 710 | Py_DECREF(docobj); |
| 711 | if (result < 0) |
| 712 | goto failure; |
| 713 | } |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 714 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 715 | ret = PyErr_NewException(name, base, dict); |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 716 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 717 | Py_XDECREF(mydict); |
| 718 | return ret; |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 722 | /* Call when an exception has occurred but there is no way for Python |
| 723 | to handle it. Examples: exception in __del__ or during GC. */ |
| 724 | void |
| 725 | PyErr_WriteUnraisable(PyObject *obj) |
| 726 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 727 | PyObject *f, *t, *v, *tb; |
| 728 | PyErr_Fetch(&t, &v, &tb); |
| 729 | f = PySys_GetObject("stderr"); |
| 730 | if (f != NULL && f != Py_None) { |
| 731 | PyFile_WriteString("Exception ", f); |
| 732 | if (t) { |
| 733 | PyObject* moduleName; |
| 734 | char* className; |
| 735 | assert(PyExceptionClass_Check(t)); |
| 736 | className = PyExceptionClass_Name(t); |
| 737 | if (className != NULL) { |
| 738 | char *dot = strrchr(className, '.'); |
| 739 | if (dot != NULL) |
| 740 | className = dot+1; |
| 741 | } |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 742 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 743 | moduleName = PyObject_GetAttrString(t, "__module__"); |
| 744 | if (moduleName == NULL) |
| 745 | PyFile_WriteString("<unknown>", f); |
| 746 | else { |
| 747 | char* modstr = _PyUnicode_AsString(moduleName); |
| 748 | if (modstr && |
| 749 | strcmp(modstr, "builtins") != 0) |
| 750 | { |
| 751 | PyFile_WriteString(modstr, f); |
| 752 | PyFile_WriteString(".", f); |
| 753 | } |
| 754 | } |
| 755 | if (className == NULL) |
| 756 | PyFile_WriteString("<unknown>", f); |
| 757 | else |
| 758 | PyFile_WriteString(className, f); |
| 759 | if (v && v != Py_None) { |
| 760 | PyFile_WriteString(": ", f); |
| 761 | PyFile_WriteObject(v, f, 0); |
| 762 | } |
| 763 | Py_XDECREF(moduleName); |
| 764 | } |
| 765 | PyFile_WriteString(" in ", f); |
| 766 | PyFile_WriteObject(obj, f, 0); |
| 767 | PyFile_WriteString(" ignored\n", f); |
| 768 | PyErr_Clear(); /* Just in case */ |
| 769 | } |
| 770 | Py_XDECREF(t); |
| 771 | Py_XDECREF(v); |
| 772 | Py_XDECREF(tb); |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 773 | } |
Guido van Rossum | cfd42b5 | 2000-12-15 21:58:52 +0000 | [diff] [blame] | 774 | |
Armin Rigo | 092381a | 2003-10-25 14:29:27 +0000 | [diff] [blame] | 775 | extern PyObject *PyModule_GetWarningsModule(void); |
Guido van Rossum | cfd42b5 | 2000-12-15 21:58:52 +0000 | [diff] [blame] | 776 | |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 777 | |
Martin v. Löwis | cfeb3b6 | 2002-03-03 21:30:27 +0000 | [diff] [blame] | 778 | /* Set file and line information for the current exception. |
| 779 | If the exception is not a SyntaxError, also sets additional attributes |
| 780 | to make printing of exceptions believe it is a syntax error. */ |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 781 | |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 782 | void |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 783 | PyErr_SyntaxLocation(const char *filename, int lineno) |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 784 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 785 | PyObject *exc, *v, *tb, *tmp; |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 786 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 787 | /* add attributes for the line number and filename for the error */ |
| 788 | PyErr_Fetch(&exc, &v, &tb); |
| 789 | PyErr_NormalizeException(&exc, &v, &tb); |
| 790 | /* XXX check that it is, indeed, a syntax error. It might not |
| 791 | * be, though. */ |
| 792 | tmp = PyLong_FromLong(lineno); |
| 793 | if (tmp == NULL) |
| 794 | PyErr_Clear(); |
| 795 | else { |
| 796 | if (PyObject_SetAttrString(v, "lineno", tmp)) |
| 797 | PyErr_Clear(); |
| 798 | Py_DECREF(tmp); |
| 799 | } |
| 800 | if (filename != NULL) { |
| 801 | tmp = PyUnicode_FromString(filename); |
| 802 | if (tmp == NULL) |
| 803 | PyErr_Clear(); |
| 804 | else { |
| 805 | if (PyObject_SetAttrString(v, "filename", tmp)) |
| 806 | PyErr_Clear(); |
| 807 | Py_DECREF(tmp); |
| 808 | } |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 809 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 810 | tmp = PyErr_ProgramText(filename, lineno); |
| 811 | if (tmp) { |
| 812 | if (PyObject_SetAttrString(v, "text", tmp)) |
| 813 | PyErr_Clear(); |
| 814 | Py_DECREF(tmp); |
| 815 | } |
| 816 | } |
| 817 | if (PyObject_SetAttrString(v, "offset", Py_None)) { |
| 818 | PyErr_Clear(); |
| 819 | } |
| 820 | if (exc != PyExc_SyntaxError) { |
| 821 | if (!PyObject_HasAttrString(v, "msg")) { |
| 822 | tmp = PyObject_Str(v); |
| 823 | if (tmp) { |
| 824 | if (PyObject_SetAttrString(v, "msg", tmp)) |
| 825 | PyErr_Clear(); |
| 826 | Py_DECREF(tmp); |
| 827 | } else { |
| 828 | PyErr_Clear(); |
| 829 | } |
| 830 | } |
| 831 | if (!PyObject_HasAttrString(v, "print_file_and_line")) { |
| 832 | if (PyObject_SetAttrString(v, "print_file_and_line", |
| 833 | Py_None)) |
| 834 | PyErr_Clear(); |
| 835 | } |
| 836 | } |
| 837 | PyErr_Restore(exc, v, tb); |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 838 | } |
| 839 | |
Guido van Rossum | ebe8f8a | 2007-10-10 18:53:36 +0000 | [diff] [blame] | 840 | /* Attempt to load the line of text that the exception refers to. If it |
| 841 | fails, it will return NULL but will not set an exception. |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 842 | |
| 843 | XXX The functionality of this function is quite similar to the |
Guido van Rossum | ebe8f8a | 2007-10-10 18:53:36 +0000 | [diff] [blame] | 844 | functionality in tb_displayline() in traceback.c. */ |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 845 | |
| 846 | PyObject * |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 847 | PyErr_ProgramText(const char *filename, int lineno) |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 848 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 849 | FILE *fp; |
| 850 | int i; |
| 851 | char linebuf[1000]; |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 852 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame^] | 853 | if (filename == NULL || *filename == '\0' || lineno <= 0) |
| 854 | return NULL; |
| 855 | fp = fopen(filename, "r" PY_STDIOTEXTMODE); |
| 856 | if (fp == NULL) |
| 857 | return NULL; |
| 858 | for (i = 0; i < lineno; i++) { |
| 859 | char *pLastChar = &linebuf[sizeof(linebuf) - 2]; |
| 860 | do { |
| 861 | *pLastChar = '\0'; |
| 862 | if (Py_UniversalNewlineFgets(linebuf, sizeof linebuf, |
| 863 | fp, NULL) == NULL) |
| 864 | break; |
| 865 | /* fgets read *something*; if it didn't get as |
| 866 | far as pLastChar, it must have found a newline |
| 867 | or hit the end of the file; if pLastChar is \n, |
| 868 | it obviously found a newline; else we haven't |
| 869 | yet seen a newline, so must continue */ |
| 870 | } while (*pLastChar != '\0' && *pLastChar != '\n'); |
| 871 | } |
| 872 | fclose(fp); |
| 873 | if (i == lineno) { |
| 874 | char *p = linebuf; |
| 875 | PyObject *res; |
| 876 | while (*p == ' ' || *p == '\t' || *p == '\014') |
| 877 | p++; |
| 878 | res = PyUnicode_FromString(p); |
| 879 | if (res == NULL) |
| 880 | PyErr_Clear(); |
| 881 | return res; |
| 882 | } |
| 883 | return NULL; |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 884 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 885 | |
| 886 | #ifdef __cplusplus |
| 887 | } |
| 888 | #endif |