Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Traceback implementation */ |
| 3 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 5 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 6 | #include "code.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 7 | #include "frameobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 8 | #include "structmember.h" |
Guido van Rossum | 7169dbb | 1992-02-26 15:17:59 +0000 | [diff] [blame] | 9 | #include "osdefs.h" |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 10 | #include "traceback.h" |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 11 | #ifdef HAVE_FCNTL_H |
| 12 | #include <fcntl.h> |
| 13 | #endif |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 14 | |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 15 | #define OFF(x) offsetof(PyTracebackObject, x) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 16 | |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 17 | /* Method from Parser/tokenizer.c */ |
| 18 | extern char * PyTokenizer_FindEncoding(int); |
| 19 | |
Collin Winter | 3eed765 | 2007-08-14 17:53:54 +0000 | [diff] [blame] | 20 | static PyObject * |
| 21 | tb_dir(PyTracebackObject *self) |
| 22 | { |
| 23 | return Py_BuildValue("[ssss]", "tb_frame", "tb_next", |
| 24 | "tb_lasti", "tb_lineno"); |
| 25 | } |
| 26 | |
| 27 | static PyMethodDef tb_methods[] = { |
| 28 | {"__dir__", (PyCFunction)tb_dir, METH_NOARGS}, |
| 29 | {NULL, NULL, 0, NULL}, |
| 30 | }; |
| 31 | |
Neal Norwitz | 8dfc4a9 | 2007-08-11 06:39:53 +0000 | [diff] [blame] | 32 | static PyMemberDef tb_memberlist[] = { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 33 | {"tb_next", T_OBJECT, OFF(tb_next), READONLY}, |
| 34 | {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY}, |
| 35 | {"tb_lasti", T_INT, OFF(tb_lasti), READONLY}, |
| 36 | {"tb_lineno", T_INT, OFF(tb_lineno), READONLY}, |
| 37 | {NULL} /* Sentinel */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 38 | }; |
| 39 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 40 | static void |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 41 | tb_dealloc(PyTracebackObject *tb) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 42 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 43 | PyObject_GC_UnTrack(tb); |
| 44 | Py_TRASHCAN_SAFE_BEGIN(tb) |
| 45 | Py_XDECREF(tb->tb_next); |
| 46 | Py_XDECREF(tb->tb_frame); |
| 47 | PyObject_GC_Del(tb); |
| 48 | Py_TRASHCAN_SAFE_END(tb) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Jeremy Hylton | fd14d8e | 2001-10-22 22:17:41 +0000 | [diff] [blame] | 51 | static int |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 52 | tb_traverse(PyTracebackObject *tb, visitproc visit, void *arg) |
Jeremy Hylton | fd14d8e | 2001-10-22 22:17:41 +0000 | [diff] [blame] | 53 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 54 | Py_VISIT(tb->tb_next); |
| 55 | Py_VISIT(tb->tb_frame); |
| 56 | return 0; |
Jeremy Hylton | fd14d8e | 2001-10-22 22:17:41 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | static void |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 60 | tb_clear(PyTracebackObject *tb) |
Jeremy Hylton | fd14d8e | 2001-10-22 22:17:41 +0000 | [diff] [blame] | 61 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 62 | Py_CLEAR(tb->tb_next); |
| 63 | Py_CLEAR(tb->tb_frame); |
Jeremy Hylton | fd14d8e | 2001-10-22 22:17:41 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Tim Peters | d7c3652 | 2001-10-22 19:34:09 +0000 | [diff] [blame] | 66 | PyTypeObject PyTraceBack_Type = { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 67 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 68 | "traceback", |
| 69 | sizeof(PyTracebackObject), |
| 70 | 0, |
| 71 | (destructor)tb_dealloc, /*tp_dealloc*/ |
| 72 | 0, /*tp_print*/ |
| 73 | 0, /*tp_getattr*/ |
| 74 | 0, /*tp_setattr*/ |
| 75 | 0, /*tp_reserved*/ |
| 76 | 0, /*tp_repr*/ |
| 77 | 0, /*tp_as_number*/ |
| 78 | 0, /*tp_as_sequence*/ |
| 79 | 0, /*tp_as_mapping*/ |
| 80 | 0, /* tp_hash */ |
| 81 | 0, /* tp_call */ |
| 82 | 0, /* tp_str */ |
| 83 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 84 | 0, /* tp_setattro */ |
| 85 | 0, /* tp_as_buffer */ |
| 86 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 87 | 0, /* tp_doc */ |
| 88 | (traverseproc)tb_traverse, /* tp_traverse */ |
| 89 | (inquiry)tb_clear, /* tp_clear */ |
| 90 | 0, /* tp_richcompare */ |
| 91 | 0, /* tp_weaklistoffset */ |
| 92 | 0, /* tp_iter */ |
| 93 | 0, /* tp_iternext */ |
| 94 | tb_methods, /* tp_methods */ |
| 95 | tb_memberlist, /* tp_members */ |
| 96 | 0, /* tp_getset */ |
| 97 | 0, /* tp_base */ |
| 98 | 0, /* tp_dict */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
Nicholas Bastin | a7604bf | 2004-03-21 18:37:23 +0000 | [diff] [blame] | 101 | static PyTracebackObject * |
| 102 | newtracebackobject(PyTracebackObject *next, PyFrameObject *frame) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 103 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 104 | PyTracebackObject *tb; |
| 105 | if ((next != NULL && !PyTraceBack_Check(next)) || |
| 106 | frame == NULL || !PyFrame_Check(frame)) { |
| 107 | PyErr_BadInternalCall(); |
| 108 | return NULL; |
| 109 | } |
| 110 | tb = PyObject_GC_New(PyTracebackObject, &PyTraceBack_Type); |
| 111 | if (tb != NULL) { |
| 112 | Py_XINCREF(next); |
| 113 | tb->tb_next = next; |
| 114 | Py_XINCREF(frame); |
| 115 | tb->tb_frame = frame; |
| 116 | tb->tb_lasti = frame->f_lasti; |
| 117 | tb->tb_lineno = PyCode_Addr2Line(frame->f_code, |
| 118 | frame->f_lasti); |
| 119 | PyObject_GC_Track(tb); |
| 120 | } |
| 121 | return tb; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 124 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 125 | PyTraceBack_Here(PyFrameObject *frame) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 126 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 127 | PyThreadState *tstate = PyThreadState_GET(); |
| 128 | PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback; |
| 129 | PyTracebackObject *tb = newtracebackobject(oldtb, frame); |
| 130 | if (tb == NULL) |
| 131 | return -1; |
| 132 | tstate->curexc_traceback = (PyObject *)tb; |
| 133 | Py_XDECREF(oldtb); |
| 134 | return 0; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 137 | static int |
| 138 | _Py_FindSourceFile(const char* filename, char* namebuf, size_t namelen, int open_flags) |
| 139 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 140 | int i; |
| 141 | int fd = -1; |
| 142 | PyObject *v; |
| 143 | Py_ssize_t _npath; |
| 144 | int npath; |
| 145 | size_t taillen; |
| 146 | PyObject *syspath; |
| 147 | const char* path; |
| 148 | const char* tail; |
| 149 | Py_ssize_t len; |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 150 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 151 | /* Search tail of filename in sys.path before giving up */ |
| 152 | tail = strrchr(filename, SEP); |
| 153 | if (tail == NULL) |
| 154 | tail = filename; |
| 155 | else |
| 156 | tail++; |
| 157 | taillen = strlen(tail); |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 158 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 159 | syspath = PySys_GetObject("path"); |
| 160 | if (syspath == NULL || !PyList_Check(syspath)) |
| 161 | return -1; |
| 162 | _npath = PyList_Size(syspath); |
| 163 | npath = Py_SAFE_DOWNCAST(_npath, Py_ssize_t, int); |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 164 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 165 | for (i = 0; i < npath; i++) { |
| 166 | v = PyList_GetItem(syspath, i); |
| 167 | if (v == NULL) { |
| 168 | PyErr_Clear(); |
| 169 | break; |
| 170 | } |
| 171 | if (!PyUnicode_Check(v)) |
| 172 | continue; |
| 173 | path = _PyUnicode_AsStringAndSize(v, &len); |
| 174 | if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen - 1) |
| 175 | continue; /* Too long */ |
| 176 | strcpy(namebuf, path); |
| 177 | if (strlen(namebuf) != len) |
| 178 | continue; /* v contains '\0' */ |
| 179 | if (len > 0 && namebuf[len-1] != SEP) |
| 180 | namebuf[len++] = SEP; |
| 181 | strcpy(namebuf+len, tail); |
| 182 | Py_BEGIN_ALLOW_THREADS |
| 183 | fd = open(namebuf, open_flags); |
| 184 | Py_END_ALLOW_THREADS |
| 185 | if (0 <= fd) { |
| 186 | return fd; |
| 187 | } |
| 188 | } |
| 189 | return -1; |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 192 | int |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 193 | _Py_DisplaySourceLine(PyObject *f, const char *filename, int lineno, int indent) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 194 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 195 | int err = 0; |
| 196 | int fd; |
| 197 | int i; |
| 198 | char *found_encoding; |
| 199 | char *encoding; |
| 200 | PyObject *fob = NULL; |
| 201 | PyObject *lineobj = NULL; |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 202 | #ifdef O_BINARY |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 203 | const int open_flags = O_RDONLY | O_BINARY; /* necessary for Windows */ |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 204 | #else |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 205 | const int open_flags = O_RDONLY; |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 206 | #endif |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 207 | char buf[MAXPATHLEN+1]; |
| 208 | Py_UNICODE *u, *p; |
| 209 | Py_ssize_t len; |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 210 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 211 | /* open the file */ |
| 212 | if (filename == NULL) |
| 213 | return 0; |
| 214 | Py_BEGIN_ALLOW_THREADS |
| 215 | fd = open(filename, open_flags); |
| 216 | Py_END_ALLOW_THREADS |
| 217 | if (fd < 0) { |
| 218 | fd = _Py_FindSourceFile(filename, buf, sizeof(buf), open_flags); |
| 219 | if (fd < 0) |
| 220 | return 0; |
| 221 | filename = buf; |
| 222 | } |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 223 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 224 | /* use the right encoding to decode the file as unicode */ |
| 225 | found_encoding = PyTokenizer_FindEncoding(fd); |
| 226 | encoding = (found_encoding != NULL) ? found_encoding : |
| 227 | (char*)PyUnicode_GetDefaultEncoding(); |
| 228 | lseek(fd, 0, 0); /* Reset position */ |
| 229 | fob = PyFile_FromFd(fd, (char*)filename, "r", -1, (char*)encoding, |
| 230 | NULL, NULL, 1); |
| 231 | PyMem_FREE(found_encoding); |
| 232 | if (fob == NULL) { |
| 233 | PyErr_Clear(); |
| 234 | close(fd); |
| 235 | return 0; |
| 236 | } |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 237 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 238 | /* get the line number lineno */ |
| 239 | for (i = 0; i < lineno; i++) { |
| 240 | Py_XDECREF(lineobj); |
| 241 | lineobj = PyFile_GetLine(fob, -1); |
| 242 | if (!lineobj) { |
| 243 | err = -1; |
| 244 | break; |
| 245 | } |
| 246 | } |
| 247 | Py_DECREF(fob); |
| 248 | if (!lineobj || !PyUnicode_Check(lineobj)) { |
| 249 | Py_XDECREF(lineobj); |
| 250 | return err; |
| 251 | } |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 252 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 253 | /* remove the indentation of the line */ |
| 254 | u = PyUnicode_AS_UNICODE(lineobj); |
| 255 | len = PyUnicode_GET_SIZE(lineobj); |
| 256 | for (p=u; *p == ' ' || *p == '\t' || *p == '\014'; p++) |
| 257 | len--; |
| 258 | if (u != p) { |
| 259 | PyObject *truncated; |
| 260 | truncated = PyUnicode_FromUnicode(p, len); |
| 261 | if (truncated) { |
| 262 | Py_DECREF(lineobj); |
| 263 | lineobj = truncated; |
| 264 | } else { |
| 265 | PyErr_Clear(); |
| 266 | } |
| 267 | } |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 268 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 269 | /* Write some spaces before the line */ |
| 270 | strcpy(buf, " "); |
| 271 | assert (strlen(buf) == 10); |
| 272 | while (indent > 0) { |
| 273 | if(indent < 10) |
| 274 | buf[indent] = '\0'; |
| 275 | err = PyFile_WriteString(buf, f); |
| 276 | if (err != 0) |
| 277 | break; |
| 278 | indent -= 10; |
| 279 | } |
Amaury Forgeot d'Arc | cf8016a | 2008-10-09 23:37:48 +0000 | [diff] [blame] | 280 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 281 | /* finally display the line */ |
| 282 | if (err == 0) |
| 283 | err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW); |
| 284 | Py_DECREF(lineobj); |
| 285 | if (err == 0) |
| 286 | err = PyFile_WriteString("\n", f); |
| 287 | return err; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Guido van Rossum | 7e8d26d | 1997-05-22 22:35:47 +0000 | [diff] [blame] | 290 | static int |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 291 | tb_displayline(PyObject *f, const char *filename, int lineno, const char *name) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 292 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 293 | int err = 0; |
| 294 | char linebuf[2000]; |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 295 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 296 | if (filename == NULL || name == NULL) |
| 297 | return -1; |
| 298 | /* This is needed by Emacs' compile command */ |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 299 | #define FMT " File \"%.500s\", line %d, in %.500s\n" |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 300 | PyOS_snprintf(linebuf, sizeof(linebuf), FMT, filename, lineno, name); |
| 301 | err = PyFile_WriteString(linebuf, f); |
| 302 | if (err != 0) |
| 303 | return err; |
| 304 | return _Py_DisplaySourceLine(f, filename, lineno, 4); |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | static int |
| 308 | tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit) |
| 309 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 310 | int err = 0; |
| 311 | long depth = 0; |
| 312 | PyTracebackObject *tb1 = tb; |
| 313 | while (tb1 != NULL) { |
| 314 | depth++; |
| 315 | tb1 = tb1->tb_next; |
| 316 | } |
| 317 | while (tb != NULL && err == 0) { |
| 318 | if (depth <= limit) { |
| 319 | err = tb_displayline(f, |
| 320 | _PyUnicode_AsString( |
| 321 | tb->tb_frame->f_code->co_filename), |
| 322 | tb->tb_lineno, |
| 323 | _PyUnicode_AsString(tb->tb_frame->f_code->co_name)); |
| 324 | } |
| 325 | depth--; |
| 326 | tb = tb->tb_next; |
| 327 | if (err == 0) |
| 328 | err = PyErr_CheckSignals(); |
| 329 | } |
| 330 | return err; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Christian Heimes | 0fbab7f | 2007-12-04 21:55:18 +0000 | [diff] [blame] | 333 | #define PyTraceBack_LIMIT 1000 |
| 334 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 335 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 336 | PyTraceBack_Print(PyObject *v, PyObject *f) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 337 | { |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 338 | int err; |
| 339 | PyObject *limitv; |
| 340 | long limit = PyTraceBack_LIMIT; |
Christian Heimes | 0fbab7f | 2007-12-04 21:55:18 +0000 | [diff] [blame] | 341 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 342 | if (v == NULL) |
| 343 | return 0; |
| 344 | if (!PyTraceBack_Check(v)) { |
| 345 | PyErr_BadInternalCall(); |
| 346 | return -1; |
| 347 | } |
| 348 | limitv = PySys_GetObject("tracebacklimit"); |
| 349 | if (limitv) { |
| 350 | PyObject *exc_type, *exc_value, *exc_tb; |
Christian Heimes | 0fbab7f | 2007-12-04 21:55:18 +0000 | [diff] [blame] | 351 | |
Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 352 | PyErr_Fetch(&exc_type, &exc_value, &exc_tb); |
| 353 | limit = PyLong_AsLong(limitv); |
| 354 | if (limit == -1 && PyErr_Occurred()) { |
| 355 | if (PyErr_ExceptionMatches(PyExc_OverflowError)) { |
| 356 | limit = PyTraceBack_LIMIT; |
| 357 | } |
| 358 | else { |
| 359 | Py_XDECREF(exc_type); |
| 360 | Py_XDECREF(exc_value); |
| 361 | Py_XDECREF(exc_tb); |
| 362 | return 0; |
| 363 | } |
| 364 | } |
| 365 | else if (limit <= 0) { |
| 366 | limit = PyTraceBack_LIMIT; |
| 367 | } |
| 368 | PyErr_Restore(exc_type, exc_value, exc_tb); |
| 369 | } |
| 370 | err = PyFile_WriteString("Traceback (most recent call last):\n", f); |
| 371 | if (!err) |
| 372 | err = tb_printinternal((PyTracebackObject *)v, f, limit); |
| 373 | return err; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 374 | } |