blob: d434d50b4f2c7984caa0961ea9ce5ee387c949c7 [file] [log] [blame]
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001
2/* Python interpreter top-level routines, including init/exit */
3
Guido van Rossum82598051997-03-05 00:20:32 +00004#include "Python.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +00005
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "Python-ast.h"
Kristján Valur Jónsson00b0a9e2007-05-02 16:02:48 +00007#undef Yield /* to avoid conflict with winbase.h */
8
Guido van Rossum1984f1e1992-08-04 12:41:02 +00009#include "grammar.h"
10#include "node.h"
Fred Drake85f36392000-07-11 17:53:00 +000011#include "token.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000012#include "parsetok.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000013#include "errcode.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000014#include "code.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000015#include "compile.h"
Jeremy Hylton4b38da62001-02-02 18:19:15 +000016#include "symtable.h"
Neal Norwitzadb69fc2005-12-17 20:54:49 +000017#include "pyarena.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000018#include "ast.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +000019#include "eval.h"
Guido van Rossumfdef2711994-09-14 13:31:04 +000020#include "marshal.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000021
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000022#ifdef HAVE_SIGNAL_H
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000023#include <signal.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000024#endif
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000025
Martin v. Löwis73d538b2003-03-05 15:13:47 +000026#ifdef HAVE_LANGINFO_H
27#include <locale.h>
28#include <langinfo.h>
29#endif
30
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000031#ifdef MS_WINDOWS
Guido van Rossuma44823b1995-03-14 15:01:17 +000032#undef BYTE
33#include "windows.h"
34#endif
35
Neal Norwitz4281cef2006-03-04 19:58:13 +000036#ifndef Py_REF_DEBUG
Tim Peters62e97f02006-03-28 21:44:32 +000037#define PRINT_TOTAL_REFS()
Neal Norwitz4281cef2006-03-04 19:58:13 +000038#else /* Py_REF_DEBUG */
Tim Peters62e97f02006-03-28 21:44:32 +000039#define PRINT_TOTAL_REFS() fprintf(stderr, \
40 "[%" PY_FORMAT_SIZE_T "d refs]\n", \
Armin Rigoe1709372006-04-12 17:06:05 +000041 _Py_GetRefTotal())
Neal Norwitz4281cef2006-03-04 19:58:13 +000042#endif
43
Anthony Baxterac6bd462006-04-13 02:06:09 +000044#ifdef __cplusplus
45extern "C" {
46#endif
47
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000048extern char *Py_GetPath(void);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000049
Guido van Rossum82598051997-03-05 00:20:32 +000050extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossum1984f1e1992-08-04 12:41:02 +000051
Guido van Rossumb73cc041993-11-01 16:28:59 +000052/* Forward */
Tim Petersdbd9ba62000-07-09 03:09:57 +000053static void initmain(void);
54static void initsite(void);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000055static PyObject *run_mod(mod_ty, const char *, PyObject *, PyObject *,
Neal Norwitzadb69fc2005-12-17 20:54:49 +000056 PyCompilerFlags *, PyArena *);
Martin v. Löwis95292d62002-12-11 14:04:59 +000057static PyObject *run_pyc_file(FILE *, const char *, PyObject *, PyObject *,
Jeremy Hyltonbc320242001-03-22 02:47:58 +000058 PyCompilerFlags *);
Tim Petersdbd9ba62000-07-09 03:09:57 +000059static void err_input(perrdetail *);
60static void initsigs(void);
61static void call_sys_exitfunc(void);
62static void call_ll_exitfuncs(void);
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000063extern void _PyUnicode_Init(void);
64extern void _PyUnicode_Fini(void);
Guido van Rossumc94044c2000-03-10 23:03:54 +000065
Mark Hammond8d98d2c2003-04-19 15:41:53 +000066#ifdef WITH_THREAD
67extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *);
68extern void _PyGILState_Fini(void);
69#endif /* WITH_THREAD */
70
Guido van Rossum82598051997-03-05 00:20:32 +000071int Py_DebugFlag; /* Needed by parser.c */
72int Py_VerboseFlag; /* Needed by import.c */
Guido van Rossum7433b121997-02-14 19:45:36 +000073int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
Guido van Rossumdcc0c131997-08-29 22:32:42 +000074int Py_NoSiteFlag; /* Suppress 'import site' */
Barry Warsaw3ce09642000-05-02 19:18:59 +000075int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
Guido van Rossuma61691e1998-02-06 22:27:24 +000076int Py_FrozenFlag; /* Needed by getpath.c */
Guido van Rossumb16d1972000-05-01 17:55:15 +000077int Py_UnicodeFlag = 0; /* Needed by compile.c */
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +000078int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
Tim Peters3caca232001-12-06 06:23:26 +000079/* _XXX Py_QnewFlag should go away in 2.3. It's true iff -Qnew is passed,
80 on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
81 true divisions (which they will be in 2.3). */
82int _Py_QnewFlag = 0;
Guido van Rossum1984f1e1992-08-04 12:41:02 +000083
Mark Hammonda43fd0c2003-02-19 00:33:33 +000084/* Reference to 'warnings' module, to avoid importing it
Mark Hammondedd07732003-07-15 23:03:55 +000085 on the fly when the import lock may be held. See 683658/771097
Mark Hammonda43fd0c2003-02-19 00:33:33 +000086*/
Mark Hammondedd07732003-07-15 23:03:55 +000087static PyObject *warnings_module = NULL;
88
89/* Returns a borrowed reference to the 'warnings' module, or NULL.
90 If the module is returned, it is guaranteed to have been obtained
91 without acquiring the import lock
92*/
Martin v. Löwisa2c17c52003-08-09 09:47:11 +000093PyObject *PyModule_GetWarningsModule(void)
Mark Hammondedd07732003-07-15 23:03:55 +000094{
95 PyObject *typ, *val, *tb;
96 PyObject *all_modules;
97 /* If we managed to get the module at init time, just use it */
98 if (warnings_module)
99 return warnings_module;
100 /* If it wasn't available at init time, it may be available
101 now in sys.modules (common scenario is frozen apps: import
102 at init time fails, but the frozen init code sets up sys.path
103 correctly, then does an implicit import of warnings for us
104 */
105 /* Save and restore any exceptions */
106 PyErr_Fetch(&typ, &val, &tb);
107
Mark Hammond5f4e8ca2003-07-16 01:54:38 +0000108 all_modules = PySys_GetObject("modules");
Mark Hammondedd07732003-07-15 23:03:55 +0000109 if (all_modules) {
110 warnings_module = PyDict_GetItemString(all_modules, "warnings");
111 /* We keep a ref in the global */
112 Py_XINCREF(warnings_module);
113 }
114 PyErr_Restore(typ, val, tb);
115 return warnings_module;
116}
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000117
Guido van Rossum25ce5661997-08-02 03:10:38 +0000118static int initialized = 0;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000119
Thomas Wouters7e474022000-07-16 12:04:32 +0000120/* API to access the initialized flag -- useful for esoteric use */
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000121
122int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000123Py_IsInitialized(void)
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000124{
125 return initialized;
126}
127
Guido van Rossum25ce5661997-08-02 03:10:38 +0000128/* Global initializations. Can be undone by Py_Finalize(). Don't
129 call this twice without an intervening Py_Finalize() call. When
130 initializations fail, a fatal error is issued and the function does
131 not return. On return, the first thread and interpreter state have
132 been created.
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000133
Guido van Rossum25ce5661997-08-02 03:10:38 +0000134 Locking: you must hold the interpreter lock while calling this.
135 (If the lock has not yet been initialized, that's equivalent to
136 having the lock, but you cannot use multiple threads.)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000137
Guido van Rossum25ce5661997-08-02 03:10:38 +0000138*/
Guido van Rossuma027efa1997-05-05 20:56:21 +0000139
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000140static int
141add_flag(int flag, const char *envs)
142{
143 int env = atoi(envs);
144 if (flag < env)
145 flag = env;
146 if (flag < 1)
147 flag = 1;
148 return flag;
149}
150
Guido van Rossuma027efa1997-05-05 20:56:21 +0000151void
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000152Py_InitializeEx(int install_sigs)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000153{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000154 PyInterpreterState *interp;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000155 PyThreadState *tstate;
156 PyObject *bimod, *sysmod;
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000157 char *p;
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000158#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
159 char *codeset;
160 char *saved_locale;
161 PyObject *sys_stream, *sys_isatty;
162#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +0000163 extern void _Py_ReadyTypes(void);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000164
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000165 if (initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000166 return;
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000167 initialized = 1;
Tim Petersd08e3822003-04-17 15:24:21 +0000168
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000169 if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000170 Py_DebugFlag = add_flag(Py_DebugFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000171 if ((p = Py_GETENV("PYTHONVERBOSE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000172 Py_VerboseFlag = add_flag(Py_VerboseFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000173 if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000174 Py_OptimizeFlag = add_flag(Py_OptimizeFlag, p);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000175
Guido van Rossuma027efa1997-05-05 20:56:21 +0000176 interp = PyInterpreterState_New();
177 if (interp == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000178 Py_FatalError("Py_Initialize: can't make first interpreter");
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000179
Guido van Rossuma027efa1997-05-05 20:56:21 +0000180 tstate = PyThreadState_New(interp);
181 if (tstate == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000182 Py_FatalError("Py_Initialize: can't make first thread");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000183 (void) PyThreadState_Swap(tstate);
184
Guido van Rossum70d893a2001-08-16 08:21:42 +0000185 _Py_ReadyTypes();
Guido van Rossum528b7eb2001-08-07 17:24:28 +0000186
Neal Norwitzb2501f42002-12-31 03:42:13 +0000187 if (!_PyFrame_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000188 Py_FatalError("Py_Initialize: can't init frames");
189
Neal Norwitzb2501f42002-12-31 03:42:13 +0000190 if (!_PyInt_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000191 Py_FatalError("Py_Initialize: can't init ints");
192
Michael W. Hudsonba283e22005-05-27 15:23:20 +0000193 _PyFloat_Init();
194
Guido van Rossum25ce5661997-08-02 03:10:38 +0000195 interp->modules = PyDict_New();
196 if (interp->modules == NULL)
197 Py_FatalError("Py_Initialize: can't make modules dictionary");
Collin Wintere19d7a32007-03-12 16:49:23 +0000198 interp->modules_reloading = PyDict_New();
199 if (interp->modules_reloading == NULL)
200 Py_FatalError("Py_Initialize: can't make modules_reloading dictionary");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000201
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000202#ifdef Py_USING_UNICODE
Guido van Rossumc94044c2000-03-10 23:03:54 +0000203 /* Init Unicode implementation; relies on the codec registry */
204 _PyUnicode_Init();
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000205#endif
Guido van Rossumc94044c2000-03-10 23:03:54 +0000206
Barry Warsawf242aa02000-05-25 23:09:49 +0000207 bimod = _PyBuiltin_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000208 if (bimod == NULL)
209 Py_FatalError("Py_Initialize: can't initialize __builtin__");
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000210 interp->builtins = PyModule_GetDict(bimod);
Neal Norwitz0f7dbf72006-08-12 03:17:41 +0000211 if (interp->builtins == NULL)
212 Py_FatalError("Py_Initialize: can't initialize builtins dict");
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000213 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000214
215 sysmod = _PySys_Init();
216 if (sysmod == NULL)
217 Py_FatalError("Py_Initialize: can't initialize sys");
218 interp->sysdict = PyModule_GetDict(sysmod);
Neal Norwitz0f7dbf72006-08-12 03:17:41 +0000219 if (interp->sysdict == NULL)
220 Py_FatalError("Py_Initialize: can't initialize sys dict");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000221 Py_INCREF(interp->sysdict);
222 _PyImport_FixupExtension("sys", "sys");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000223 PySys_SetPath(Py_GetPath());
Guido van Rossum25ce5661997-08-02 03:10:38 +0000224 PyDict_SetItemString(interp->sysdict, "modules",
225 interp->modules);
226
Guido van Rossum7c85ab81999-07-08 17:26:56 +0000227 _PyImport_Init();
228
Barry Warsawf242aa02000-05-25 23:09:49 +0000229 /* initialize builtin exceptions */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000230 _PyExc_Init();
Barry Warsaw5821bc52001-08-13 23:04:56 +0000231 _PyImport_FixupExtension("exceptions", "exceptions");
Barry Warsawf242aa02000-05-25 23:09:49 +0000232
Barry Warsaw035574d1997-08-29 22:07:17 +0000233 /* phase 2 of builtins */
Barry Warsaw963b8711997-09-18 16:42:02 +0000234 _PyImport_FixupExtension("__builtin__", "__builtin__");
Barry Warsaw035574d1997-08-29 22:07:17 +0000235
Just van Rossum52e14d62002-12-30 22:08:05 +0000236 _PyImportHooks_Init();
237
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000238 if (install_sigs)
239 initsigs(); /* Signal handling stuff, including initintr() */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000240
241 initmain(); /* Module __main__ */
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000242 if (!Py_NoSiteFlag)
243 initsite(); /* Module site */
Just van Rossum5bfba3a2003-02-25 20:25:12 +0000244
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000245 /* auto-thread-state API, if available */
246#ifdef WITH_THREAD
247 _PyGILState_Init(interp, tstate);
248#endif /* WITH_THREAD */
249
Mark Hammondedd07732003-07-15 23:03:55 +0000250 warnings_module = PyImport_ImportModule("warnings");
251 if (!warnings_module)
252 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000253
254#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
255 /* On Unix, set the file system encoding according to the
256 user's preference, if the CODESET names a well-known
257 Python codec, and Py_FileSystemDefaultEncoding isn't
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000258 initialized by other means. Also set the encoding of
259 stdin and stdout if these are terminals. */
260
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000261 saved_locale = strdup(setlocale(LC_CTYPE, NULL));
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000262 setlocale(LC_CTYPE, "");
263 codeset = nl_langinfo(CODESET);
264 if (codeset && *codeset) {
265 PyObject *enc = PyCodec_Encoder(codeset);
266 if (enc) {
267 codeset = strdup(codeset);
268 Py_DECREF(enc);
269 } else {
270 codeset = NULL;
271 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000272 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000273 } else
274 codeset = NULL;
275 setlocale(LC_CTYPE, saved_locale);
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000276 free(saved_locale);
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000277
278 if (codeset) {
Michael W. Hudson68debc92003-08-11 12:20:24 +0000279 sys_stream = PySys_GetObject("stdin");
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000280 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
281 if (!sys_isatty)
282 PyErr_Clear();
Thomas Wouterse4713172007-01-23 13:54:30 +0000283 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
284 PyFile_Check(sys_stream)) {
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000285 if (!PyFile_SetEncoding(sys_stream, codeset))
286 Py_FatalError("Cannot set codeset of stdin");
287 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000288 Py_XDECREF(sys_isatty);
289
290 sys_stream = PySys_GetObject("stdout");
291 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
292 if (!sys_isatty)
293 PyErr_Clear();
Thomas Wouterse4713172007-01-23 13:54:30 +0000294 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
295 PyFile_Check(sys_stream)) {
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000296 if (!PyFile_SetEncoding(sys_stream, codeset))
297 Py_FatalError("Cannot set codeset of stdout");
298 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000299 Py_XDECREF(sys_isatty);
300
Martin v. Löwisea62d252006-04-03 10:56:49 +0000301 sys_stream = PySys_GetObject("stderr");
302 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
303 if (!sys_isatty)
304 PyErr_Clear();
Thomas Wouterse4713172007-01-23 13:54:30 +0000305 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
306 PyFile_Check(sys_stream)) {
Martin v. Löwisea62d252006-04-03 10:56:49 +0000307 if (!PyFile_SetEncoding(sys_stream, codeset))
308 Py_FatalError("Cannot set codeset of stderr");
309 }
310 Py_XDECREF(sys_isatty);
311
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000312 if (!Py_FileSystemDefaultEncoding)
313 Py_FileSystemDefaultEncoding = codeset;
314 else
315 free(codeset);
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000316 }
317#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +0000318}
319
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000320void
321Py_Initialize(void)
322{
323 Py_InitializeEx(1);
324}
325
326
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000327#ifdef COUNT_ALLOCS
Martin v. Löwis45294a92006-04-18 06:24:08 +0000328extern void dump_counts(FILE*);
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000329#endif
330
Guido van Rossum25ce5661997-08-02 03:10:38 +0000331/* Undo the effect of Py_Initialize().
332
333 Beware: if multiple interpreter and/or thread states exist, these
334 are not wiped out; only the current thread and interpreter state
335 are deleted. But since everything else is deleted, those other
336 interpreter and thread states should no longer be used.
337
338 (XXX We should do better, e.g. wipe out all interpreters and
339 threads.)
340
341 Locking: as above.
342
343*/
344
345void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000346Py_Finalize(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000347{
348 PyInterpreterState *interp;
349 PyThreadState *tstate;
350
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000351 if (!initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000352 return;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000353
Tim Peters384fd102001-01-21 03:40:37 +0000354 /* The interpreter is still entirely intact at this point, and the
355 * exit funcs may be relying on that. In particular, if some thread
356 * or exit func is still waiting to do an import, the import machinery
357 * expects Py_IsInitialized() to return true. So don't say the
358 * interpreter is uninitialized until after the exit funcs have run.
359 * Note that Threading.py uses an exit func to do a join on all the
360 * threads created thru it, so this also protects pending imports in
361 * the threads created via Threading.
362 */
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000363 call_sys_exitfunc();
Tim Peters384fd102001-01-21 03:40:37 +0000364 initialized = 0;
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000365
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000366 /* Get current thread state and interpreter pointer */
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000367 tstate = PyThreadState_GET();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000368 interp = tstate->interp;
369
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000370 /* Disable signal handling */
371 PyOS_FiniInterrupts();
372
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000373 /* drop module references we saved */
Mark Hammondedd07732003-07-15 23:03:55 +0000374 Py_XDECREF(warnings_module);
375 warnings_module = NULL;
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000376
Guido van Rossume13ddc92003-04-17 17:29:22 +0000377 /* Collect garbage. This may call finalizers; it's nice to call these
Tim Peters1d7323e2003-12-01 21:35:27 +0000378 * before all modules are destroyed.
379 * XXX If a __del__ or weakref callback is triggered here, and tries to
380 * XXX import a module, bad things can happen, because Python no
381 * XXX longer believes it's initialized.
382 * XXX Fatal Python error: Interpreter not initialized (version mismatch?)
383 * XXX is easy to provoke that way. I've also seen, e.g.,
384 * XXX Exception exceptions.ImportError: 'No module named sha'
385 * XXX in <function callback at 0x008F5718> ignored
386 * XXX but I'm unclear on exactly how that one happens. In any case,
387 * XXX I haven't seen a real-life report of either of these.
Neal Norwitz9589ee22006-03-04 19:01:22 +0000388 */
Guido van Rossume13ddc92003-04-17 17:29:22 +0000389 PyGC_Collect();
Martin v. Löwis45294a92006-04-18 06:24:08 +0000390#ifdef COUNT_ALLOCS
391 /* With COUNT_ALLOCS, it helps to run GC multiple times:
392 each collection might release some types from the type
393 list, so they become garbage. */
394 while (PyGC_Collect() > 0)
395 /* nothing */;
396#endif
Guido van Rossume13ddc92003-04-17 17:29:22 +0000397
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000398 /* Destroy all modules */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000399 PyImport_Cleanup();
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000400
Guido van Rossume13ddc92003-04-17 17:29:22 +0000401 /* Collect final garbage. This disposes of cycles created by
Tim Peters1d7323e2003-12-01 21:35:27 +0000402 * new-style class definitions, for example.
403 * XXX This is disabled because it caused too many problems. If
404 * XXX a __del__ or weakref callback triggers here, Python code has
405 * XXX a hard time running, because even the sys module has been
406 * XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc).
407 * XXX One symptom is a sequence of information-free messages
408 * XXX coming from threads (if a __del__ or callback is invoked,
409 * XXX other threads can execute too, and any exception they encounter
410 * XXX triggers a comedy of errors as subsystem after subsystem
411 * XXX fails to find what it *expects* to find in sys to help report
412 * XXX the exception and consequent unexpected failures). I've also
413 * XXX seen segfaults then, after adding print statements to the
414 * XXX Python code getting called.
415 */
416#if 0
Guido van Rossume13ddc92003-04-17 17:29:22 +0000417 PyGC_Collect();
Tim Peters1d7323e2003-12-01 21:35:27 +0000418#endif
Guido van Rossume13ddc92003-04-17 17:29:22 +0000419
Guido van Rossum1707aad1997-12-08 23:43:45 +0000420 /* Destroy the database used by _PyImport_{Fixup,Find}Extension */
421 _PyImport_Fini();
422
423 /* Debugging stuff */
424#ifdef COUNT_ALLOCS
Martin v. Löwis45294a92006-04-18 06:24:08 +0000425 dump_counts(stdout);
Guido van Rossum1707aad1997-12-08 23:43:45 +0000426#endif
427
Tim Peters62e97f02006-03-28 21:44:32 +0000428 PRINT_TOTAL_REFS();
Guido van Rossum1707aad1997-12-08 23:43:45 +0000429
Tim Peters9cf25ce2003-04-17 15:21:01 +0000430#ifdef Py_TRACE_REFS
431 /* Display all objects still alive -- this can invoke arbitrary
432 * __repr__ overrides, so requires a mostly-intact interpreter.
433 * Alas, a lot of stuff may still be alive now that will be cleaned
434 * up later.
435 */
Tim Peters269b2a62003-04-17 19:52:29 +0000436 if (Py_GETENV("PYTHONDUMPREFS"))
Tim Peters9cf25ce2003-04-17 15:21:01 +0000437 _Py_PrintReferences(stderr);
Tim Peters9cf25ce2003-04-17 15:21:01 +0000438#endif /* Py_TRACE_REFS */
439
Mark Hammond6cb90292003-04-22 11:18:00 +0000440 /* Cleanup auto-thread-state */
441#ifdef WITH_THREAD
442 _PyGILState_Fini();
443#endif /* WITH_THREAD */
444
Guido van Rossumd922fa42003-04-15 14:10:09 +0000445 /* Clear interpreter state */
Barry Warsawf242aa02000-05-25 23:09:49 +0000446 PyInterpreterState_Clear(interp);
Guido van Rossumd922fa42003-04-15 14:10:09 +0000447
Anthony Baxter12b6f6c2005-03-29 13:36:16 +0000448 /* Now we decref the exception classes. After this point nothing
449 can raise an exception. That's okay, because each Fini() method
450 below has been checked to make sure no exceptions are ever
451 raised.
452 */
453
454 _PyExc_Fini();
455
Guido van Rossumd922fa42003-04-15 14:10:09 +0000456 /* Delete current thread */
Barry Warsawf242aa02000-05-25 23:09:49 +0000457 PyThreadState_Swap(NULL);
458 PyInterpreterState_Delete(interp);
459
Guido van Rossumd922fa42003-04-15 14:10:09 +0000460 /* Sundry finalizers */
Guido van Rossumcc283f51997-08-05 02:22:03 +0000461 PyMethod_Fini();
462 PyFrame_Fini();
463 PyCFunction_Fini();
464 PyTuple_Fini();
Raymond Hettingerfb09f0e2004-10-07 03:58:07 +0000465 PyList_Fini();
Raymond Hettingerd7946662005-08-01 21:39:29 +0000466 PySet_Fini();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000467 PyString_Fini();
Guido van Rossumcc283f51997-08-05 02:22:03 +0000468 PyInt_Fini();
469 PyFloat_Fini();
470
Marc-André Lemburg95de5c12002-04-08 08:19:36 +0000471#ifdef Py_USING_UNICODE
472 /* Cleanup Unicode implementation */
473 _PyUnicode_Fini();
474#endif
475
Guido van Rossumcc283f51997-08-05 02:22:03 +0000476 /* XXX Still allocated:
477 - various static ad-hoc pointers to interned strings
478 - int and float free list blocks
479 - whatever various modules and libraries allocate
480 */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000481
482 PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
Guido van Rossumcc283f51997-08-05 02:22:03 +0000483
Tim Peters269b2a62003-04-17 19:52:29 +0000484#ifdef Py_TRACE_REFS
485 /* Display addresses (& refcnts) of all objects still alive.
486 * An address can be used to find the repr of the object, printed
487 * above by _Py_PrintReferences.
488 */
489 if (Py_GETENV("PYTHONDUMPREFS"))
490 _Py_PrintReferenceAddresses(stderr);
491#endif /* Py_TRACE_REFS */
Tim Peters0e871182002-04-13 08:29:14 +0000492#ifdef PYMALLOC_DEBUG
493 if (Py_GETENV("PYTHONMALLOCSTATS"))
494 _PyObject_DebugMallocStats();
495#endif
496
Guido van Rossumcc283f51997-08-05 02:22:03 +0000497 call_ll_exitfuncs();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000498}
499
500/* Create and initialize a new interpreter and thread, and return the
501 new thread. This requires that Py_Initialize() has been called
502 first.
503
504 Unsuccessful initialization yields a NULL pointer. Note that *no*
505 exception information is available even in this case -- the
506 exception information is held in the thread, and there is no
507 thread.
508
509 Locking: as above.
510
511*/
512
513PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000514Py_NewInterpreter(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000515{
516 PyInterpreterState *interp;
517 PyThreadState *tstate, *save_tstate;
518 PyObject *bimod, *sysmod;
519
520 if (!initialized)
521 Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
522
523 interp = PyInterpreterState_New();
524 if (interp == NULL)
525 return NULL;
526
527 tstate = PyThreadState_New(interp);
528 if (tstate == NULL) {
529 PyInterpreterState_Delete(interp);
530 return NULL;
531 }
532
533 save_tstate = PyThreadState_Swap(tstate);
534
535 /* XXX The following is lax in error checking */
536
537 interp->modules = PyDict_New();
Collin Wintere19d7a32007-03-12 16:49:23 +0000538 interp->modules_reloading = PyDict_New();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000539
540 bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
541 if (bimod != NULL) {
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000542 interp->builtins = PyModule_GetDict(bimod);
Neal Norwitzbebdc9e2006-08-21 20:20:59 +0000543 if (interp->builtins == NULL)
544 goto handle_error;
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000545 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000546 }
547 sysmod = _PyImport_FindExtension("sys", "sys");
548 if (bimod != NULL && sysmod != NULL) {
549 interp->sysdict = PyModule_GetDict(sysmod);
Neal Norwitzbebdc9e2006-08-21 20:20:59 +0000550 if (interp->sysdict == NULL)
551 goto handle_error;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000552 Py_INCREF(interp->sysdict);
553 PySys_SetPath(Py_GetPath());
554 PyDict_SetItemString(interp->sysdict, "modules",
555 interp->modules);
Martin v. Löwisd7ceb222003-01-22 09:00:38 +0000556 _PyImportHooks_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000557 initmain();
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000558 if (!Py_NoSiteFlag)
559 initsite();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000560 }
561
562 if (!PyErr_Occurred())
563 return tstate;
564
Neal Norwitzbebdc9e2006-08-21 20:20:59 +0000565handle_error:
Guido van Rossum25ce5661997-08-02 03:10:38 +0000566 /* Oops, it didn't work. Undo it all. */
567
568 PyErr_Print();
569 PyThreadState_Clear(tstate);
570 PyThreadState_Swap(save_tstate);
571 PyThreadState_Delete(tstate);
572 PyInterpreterState_Delete(interp);
573
574 return NULL;
575}
576
577/* Delete an interpreter and its last thread. This requires that the
578 given thread state is current, that the thread has no remaining
579 frames, and that it is its interpreter's only remaining thread.
580 It is a fatal error to violate these constraints.
581
582 (Py_Finalize() doesn't have these constraints -- it zaps
583 everything, regardless.)
584
585 Locking: as above.
586
587*/
588
589void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000590Py_EndInterpreter(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000591{
592 PyInterpreterState *interp = tstate->interp;
593
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000594 if (tstate != PyThreadState_GET())
Guido van Rossum25ce5661997-08-02 03:10:38 +0000595 Py_FatalError("Py_EndInterpreter: thread is not current");
596 if (tstate->frame != NULL)
597 Py_FatalError("Py_EndInterpreter: thread still has a frame");
598 if (tstate != interp->tstate_head || tstate->next != NULL)
599 Py_FatalError("Py_EndInterpreter: not the last thread");
600
601 PyImport_Cleanup();
602 PyInterpreterState_Clear(interp);
603 PyThreadState_Swap(NULL);
604 PyInterpreterState_Delete(interp);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000605}
606
607static char *progname = "python";
608
609void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000610Py_SetProgramName(char *pn)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000611{
612 if (pn && *pn)
613 progname = pn;
614}
615
616char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000617Py_GetProgramName(void)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000618{
619 return progname;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000620}
621
Guido van Rossuma61691e1998-02-06 22:27:24 +0000622static char *default_home = NULL;
623
624void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000625Py_SetPythonHome(char *home)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000626{
627 default_home = home;
628}
629
630char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000631Py_GetPythonHome(void)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000632{
633 char *home = default_home;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000634 if (home == NULL && !Py_IgnoreEnvironmentFlag)
635 home = Py_GETENV("PYTHONHOME");
Guido van Rossuma61691e1998-02-06 22:27:24 +0000636 return home;
637}
638
Guido van Rossum6135a871995-01-09 17:53:26 +0000639/* Create __main__ module */
640
641static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000642initmain(void)
Guido van Rossum6135a871995-01-09 17:53:26 +0000643{
Guido van Rossum82598051997-03-05 00:20:32 +0000644 PyObject *m, *d;
645 m = PyImport_AddModule("__main__");
Guido van Rossum6135a871995-01-09 17:53:26 +0000646 if (m == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +0000647 Py_FatalError("can't create __main__ module");
648 d = PyModule_GetDict(m);
649 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
Guido van Rossum858cb731997-11-19 16:15:37 +0000650 PyObject *bimod = PyImport_ImportModule("__builtin__");
651 if (bimod == NULL ||
652 PyDict_SetItemString(d, "__builtins__", bimod) != 0)
Guido van Rossum82598051997-03-05 00:20:32 +0000653 Py_FatalError("can't add __builtins__ to __main__");
Barry Warsaw3d05b1a1999-01-29 21:30:22 +0000654 Py_DECREF(bimod);
Guido van Rossum6135a871995-01-09 17:53:26 +0000655 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000656}
657
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000658/* Import the site module (not into __main__ though) */
659
660static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000661initsite(void)
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000662{
663 PyObject *m, *f;
664 m = PyImport_ImportModule("site");
665 if (m == NULL) {
666 f = PySys_GetObject("stderr");
667 if (Py_VerboseFlag) {
668 PyFile_WriteString(
669 "'import site' failed; traceback:\n", f);
670 PyErr_Print();
671 }
672 else {
673 PyFile_WriteString(
674 "'import site' failed; use -v for traceback\n", f);
675 PyErr_Clear();
676 }
677 }
678 else {
679 Py_DECREF(m);
680 }
681}
682
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000683/* Parse input from a file and execute it */
684
685int
Tim Peters5e9d6cf2006-05-28 10:41:29 +0000686PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000687 PyCompilerFlags *flags)
688{
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000689 if (filename == NULL)
690 filename = "???";
Guido van Rossum0df002c2000-08-27 19:21:52 +0000691 if (Py_FdIsInteractive(fp, filename)) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000692 int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
Guido van Rossum0df002c2000-08-27 19:21:52 +0000693 if (closeit)
694 fclose(fp);
695 return err;
696 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000697 else
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000698 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000699}
700
701int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000702PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000703{
Guido van Rossum82598051997-03-05 00:20:32 +0000704 PyObject *v;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000705 int ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000706 PyCompilerFlags local_flags;
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000707
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000708 if (flags == NULL) {
709 flags = &local_flags;
Tim Peters5ba58662001-07-16 02:29:45 +0000710 local_flags.cf_flags = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000711 }
Guido van Rossum82598051997-03-05 00:20:32 +0000712 v = PySys_GetObject("ps1");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000713 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000714 PySys_SetObject("ps1", v = PyString_FromString(">>> "));
715 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000716 }
Guido van Rossum82598051997-03-05 00:20:32 +0000717 v = PySys_GetObject("ps2");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000718 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000719 PySys_SetObject("ps2", v = PyString_FromString("... "));
720 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000721 }
722 for (;;) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000723 ret = PyRun_InteractiveOneFlags(fp, filename, flags);
Tim Peters62e97f02006-03-28 21:44:32 +0000724 PRINT_TOTAL_REFS();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000725 if (ret == E_EOF)
726 return 0;
727 /*
728 if (ret == E_NOMEM)
729 return -1;
730 */
731 }
732}
733
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000734/* compute parser flags based on compiler flags */
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000735#define PARSER_FLAGS(flags) \
Thomas Wouters34aa7ba2006-02-28 19:02:24 +0000736 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
737 PyPARSE_DONT_IMPLY_DEDENT : 0) \
Neal Norwitz9589ee22006-03-04 19:01:22 +0000738 | ((flags)->cf_flags & CO_FUTURE_WITH_STATEMENT ? \
739 PyPARSE_WITH_IS_KEYWORD : 0)) : 0)
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000740
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000741int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000742PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000743{
Guido van Rossum82598051997-03-05 00:20:32 +0000744 PyObject *m, *d, *v, *w;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000745 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +0000746 PyArena *arena;
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000747 char *ps1 = "", *ps2 = "";
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000748 int errcode = 0;
Tim Petersfe2127d2001-07-16 05:37:24 +0000749
Guido van Rossum82598051997-03-05 00:20:32 +0000750 v = PySys_GetObject("ps1");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000751 if (v != NULL) {
752 v = PyObject_Str(v);
753 if (v == NULL)
754 PyErr_Clear();
755 else if (PyString_Check(v))
756 ps1 = PyString_AsString(v);
757 }
Guido van Rossum82598051997-03-05 00:20:32 +0000758 w = PySys_GetObject("ps2");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000759 if (w != NULL) {
760 w = PyObject_Str(w);
761 if (w == NULL)
762 PyErr_Clear();
763 else if (PyString_Check(w))
764 ps2 = PyString_AsString(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000765 }
Neal Norwitz9589ee22006-03-04 19:01:22 +0000766 arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +0000767 if (arena == NULL) {
768 Py_XDECREF(v);
769 Py_XDECREF(w);
770 return -1;
771 }
Tim Peters5e9d6cf2006-05-28 10:41:29 +0000772 mod = PyParser_ASTFromFile(fp, filename,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000773 Py_single_input, ps1, ps2,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000774 flags, &errcode, arena);
Guido van Rossum82598051997-03-05 00:20:32 +0000775 Py_XDECREF(v);
776 Py_XDECREF(w);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000777 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000778 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000779 if (errcode == E_EOF) {
780 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +0000781 return E_EOF;
782 }
Guido van Rossum82598051997-03-05 00:20:32 +0000783 PyErr_Print();
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000784 return -1;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000785 }
Guido van Rossum82598051997-03-05 00:20:32 +0000786 m = PyImport_AddModule("__main__");
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000787 if (m == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000788 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000789 return -1;
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000790 }
Guido van Rossum82598051997-03-05 00:20:32 +0000791 d = PyModule_GetDict(m);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000792 v = run_mod(mod, filename, d, d, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +0000793 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000794 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000795 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000796 return -1;
797 }
Guido van Rossum82598051997-03-05 00:20:32 +0000798 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000799 if (Py_FlushLine())
800 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000801 return 0;
802}
803
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000804/* Check whether a file maybe a pyc file: Look at the extension,
805 the file type, and, if we may close it, at the first few bytes. */
806
807static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000808maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit)
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000809{
810 if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0)
811 return 1;
812
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000813 /* Only look into the file if we are allowed to close it, since
814 it then should also be seekable. */
815 if (closeit) {
816 /* Read only two bytes of the magic. If the file was opened in
817 text mode, the bytes 3 and 4 of the magic (\r\n) might not
818 be read as they are on disk. */
819 unsigned int halfmagic = PyImport_GetMagicNumber() & 0xFFFF;
820 unsigned char buf[2];
Tim Peters3e876562001-02-11 04:35:39 +0000821 /* Mess: In case of -x, the stream is NOT at its start now,
822 and ungetc() was used to push back the first newline,
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000823 which makes the current stream position formally undefined,
824 and a x-platform nightmare.
825 Unfortunately, we have no direct way to know whether -x
826 was specified. So we use a terrible hack: if the current
827 stream position is not 0, we assume -x was specified, and
828 give up. Bug 132850 on SourceForge spells out the
829 hopelessness of trying anything else (fseek and ftell
830 don't work predictably x-platform for text-mode files).
Tim Peters3e876562001-02-11 04:35:39 +0000831 */
Tim Peters3e876562001-02-11 04:35:39 +0000832 int ispyc = 0;
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000833 if (ftell(fp) == 0) {
834 if (fread(buf, 1, 2, fp) == 2 &&
Tim Petersd08e3822003-04-17 15:24:21 +0000835 ((unsigned int)buf[1]<<8 | buf[0]) == halfmagic)
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000836 ispyc = 1;
837 rewind(fp);
838 }
Tim Peters3e876562001-02-11 04:35:39 +0000839 return ispyc;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000840 }
841 return 0;
Tim Petersd08e3822003-04-17 15:24:21 +0000842}
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000843
Guido van Rossum0df002c2000-08-27 19:21:52 +0000844int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000845PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000846 PyCompilerFlags *flags)
847{
Guido van Rossum82598051997-03-05 00:20:32 +0000848 PyObject *m, *d, *v;
Martin v. Löwis95292d62002-12-11 14:04:59 +0000849 const char *ext;
Guido van Rossumfdef2711994-09-14 13:31:04 +0000850
Guido van Rossum82598051997-03-05 00:20:32 +0000851 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000852 if (m == NULL)
853 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000854 d = PyModule_GetDict(m);
Fred Drake8ed02042002-10-17 21:24:58 +0000855 if (PyDict_GetItemString(d, "__file__") == NULL) {
856 PyObject *f = PyString_FromString(filename);
857 if (f == NULL)
858 return -1;
859 if (PyDict_SetItemString(d, "__file__", f) < 0) {
860 Py_DECREF(f);
861 return -1;
862 }
863 Py_DECREF(f);
864 }
Guido van Rossumfdef2711994-09-14 13:31:04 +0000865 ext = filename + strlen(filename) - 4;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000866 if (maybe_pyc_file(fp, filename, ext, closeit)) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000867 /* Try to run a pyc file. First, re-open in binary */
Guido van Rossum0df002c2000-08-27 19:21:52 +0000868 if (closeit)
869 fclose(fp);
Fred Drake8ed02042002-10-17 21:24:58 +0000870 if ((fp = fopen(filename, "rb")) == NULL) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000871 fprintf(stderr, "python: Can't reopen .pyc file\n");
872 return -1;
873 }
Guido van Rossum2a7f58d1997-04-02 05:28:38 +0000874 /* Turn on optimization if a .pyo file is given */
875 if (strcmp(ext, ".pyo") == 0)
876 Py_OptimizeFlag = 1;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000877 v = run_pyc_file(fp, filename, d, d, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000878 } else {
Tim Petersd08e3822003-04-17 15:24:21 +0000879 v = PyRun_FileExFlags(fp, filename, Py_file_input, d, d,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000880 closeit, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000881 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000882 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000883 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000884 return -1;
885 }
Guido van Rossum82598051997-03-05 00:20:32 +0000886 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000887 if (Py_FlushLine())
888 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000889 return 0;
890}
891
892int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000893PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
Guido van Rossum393661d2001-08-31 17:40:15 +0000894{
Guido van Rossum82598051997-03-05 00:20:32 +0000895 PyObject *m, *d, *v;
896 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000897 if (m == NULL)
898 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000899 d = PyModule_GetDict(m);
Guido van Rossum393661d2001-08-31 17:40:15 +0000900 v = PyRun_StringFlags(command, Py_file_input, d, d, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000901 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000902 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000903 return -1;
904 }
Guido van Rossum82598051997-03-05 00:20:32 +0000905 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000906 if (Py_FlushLine())
907 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000908 return 0;
909}
910
Barry Warsaw035574d1997-08-29 22:07:17 +0000911static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000912parse_syntax_error(PyObject *err, PyObject **message, const char **filename,
913 int *lineno, int *offset, const char **text)
Barry Warsaw035574d1997-08-29 22:07:17 +0000914{
915 long hold;
916 PyObject *v;
917
918 /* old style errors */
919 if (PyTuple_Check(err))
Neal Norwitz78293352002-04-01 01:41:20 +0000920 return PyArg_ParseTuple(err, "O(ziiz)", message, filename,
Neal Norwitz9589ee22006-03-04 19:01:22 +0000921 lineno, offset, text);
Barry Warsaw035574d1997-08-29 22:07:17 +0000922
923 /* new style errors. `err' is an instance */
924
925 if (! (v = PyObject_GetAttrString(err, "msg")))
926 goto finally;
927 *message = v;
928
929 if (!(v = PyObject_GetAttrString(err, "filename")))
930 goto finally;
931 if (v == Py_None)
932 *filename = NULL;
933 else if (! (*filename = PyString_AsString(v)))
934 goto finally;
935
936 Py_DECREF(v);
937 if (!(v = PyObject_GetAttrString(err, "lineno")))
938 goto finally;
939 hold = PyInt_AsLong(v);
940 Py_DECREF(v);
941 v = NULL;
942 if (hold < 0 && PyErr_Occurred())
943 goto finally;
944 *lineno = (int)hold;
945
946 if (!(v = PyObject_GetAttrString(err, "offset")))
947 goto finally;
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000948 if (v == Py_None) {
949 *offset = -1;
950 Py_DECREF(v);
951 v = NULL;
952 } else {
953 hold = PyInt_AsLong(v);
954 Py_DECREF(v);
955 v = NULL;
956 if (hold < 0 && PyErr_Occurred())
957 goto finally;
958 *offset = (int)hold;
959 }
Barry Warsaw035574d1997-08-29 22:07:17 +0000960
961 if (!(v = PyObject_GetAttrString(err, "text")))
962 goto finally;
963 if (v == Py_None)
964 *text = NULL;
965 else if (! (*text = PyString_AsString(v)))
966 goto finally;
967 Py_DECREF(v);
968 return 1;
969
970finally:
971 Py_XDECREF(v);
972 return 0;
973}
974
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000975void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000976PyErr_Print(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000977{
Guido van Rossuma61691e1998-02-06 22:27:24 +0000978 PyErr_PrintEx(1);
979}
980
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000981static void
Martin v. Löwis95292d62002-12-11 14:04:59 +0000982print_error_text(PyObject *f, int offset, const char *text)
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000983{
984 char *nl;
985 if (offset >= 0) {
986 if (offset > 0 && offset == (int)strlen(text))
987 offset--;
988 for (;;) {
989 nl = strchr(text, '\n');
990 if (nl == NULL || nl-text >= offset)
991 break;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000992 offset -= (int)(nl+1-text);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000993 text = nl+1;
994 }
995 while (*text == ' ' || *text == '\t') {
996 text++;
997 offset--;
998 }
999 }
1000 PyFile_WriteString(" ", f);
1001 PyFile_WriteString(text, f);
1002 if (*text == '\0' || text[strlen(text)-1] != '\n')
1003 PyFile_WriteString("\n", f);
1004 if (offset == -1)
1005 return;
1006 PyFile_WriteString(" ", f);
1007 offset--;
1008 while (offset > 0) {
1009 PyFile_WriteString(" ", f);
1010 offset--;
1011 }
1012 PyFile_WriteString("^\n", f);
1013}
1014
Guido van Rossum66e8e862001-03-23 17:54:43 +00001015static void
1016handle_system_exit(void)
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001017{
Neal Norwitz9589ee22006-03-04 19:01:22 +00001018 PyObject *exception, *value, *tb;
1019 int exitcode = 0;
Tim Peterscf615b52003-04-19 18:47:02 +00001020
Guido van Rossum66e8e862001-03-23 17:54:43 +00001021 PyErr_Fetch(&exception, &value, &tb);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001022 if (Py_FlushLine())
1023 PyErr_Clear();
1024 fflush(stdout);
1025 if (value == NULL || value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +00001026 goto done;
Brett Cannonbf364092006-03-01 04:25:17 +00001027 if (PyExceptionInstance_Check(value)) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001028 /* The error code should be in the `code' attribute. */
1029 PyObject *code = PyObject_GetAttrString(value, "code");
1030 if (code) {
1031 Py_DECREF(value);
1032 value = code;
1033 if (value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +00001034 goto done;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001035 }
1036 /* If we failed to dig out the 'code' attribute,
1037 just let the else clause below print the error. */
1038 }
1039 if (PyInt_Check(value))
Tim Peterscf615b52003-04-19 18:47:02 +00001040 exitcode = (int)PyInt_AsLong(value);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001041 else {
1042 PyObject_Print(value, stderr, Py_PRINT_RAW);
1043 PySys_WriteStderr("\n");
Tim Peterscf615b52003-04-19 18:47:02 +00001044 exitcode = 1;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001045 }
Tim Peterscf615b52003-04-19 18:47:02 +00001046 done:
Neal Norwitz9589ee22006-03-04 19:01:22 +00001047 /* Restore and clear the exception info, in order to properly decref
1048 * the exception, value, and traceback. If we just exit instead,
1049 * these leak, which confuses PYTHONDUMPREFS output, and may prevent
1050 * some finalizers from running.
1051 */
Tim Peterscf615b52003-04-19 18:47:02 +00001052 PyErr_Restore(exception, value, tb);
1053 PyErr_Clear();
1054 Py_Exit(exitcode);
1055 /* NOTREACHED */
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001056}
1057
1058void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001059PyErr_PrintEx(int set_sys_last_vars)
Guido van Rossuma61691e1998-02-06 22:27:24 +00001060{
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001061 PyObject *exception, *v, *tb, *hook;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001062
1063 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1064 handle_system_exit();
1065 }
Guido van Rossum82598051997-03-05 00:20:32 +00001066 PyErr_Fetch(&exception, &v, &tb);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001067 if (exception == NULL)
1068 return;
Barry Warsaw035574d1997-08-29 22:07:17 +00001069 PyErr_NormalizeException(&exception, &v, &tb);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001070 if (exception == NULL)
Guido van Rossum296b4751997-05-23 00:19:20 +00001071 return;
Guido van Rossum9d785502006-03-07 18:31:44 +00001072 /* Now we know v != NULL too */
Guido van Rossuma61691e1998-02-06 22:27:24 +00001073 if (set_sys_last_vars) {
1074 PySys_SetObject("last_type", exception);
1075 PySys_SetObject("last_value", v);
1076 PySys_SetObject("last_traceback", tb);
1077 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001078 hook = PySys_GetObject("excepthook");
1079 if (hook) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001080 PyObject *args = PyTuple_Pack(3,
Guido van Rossum9d785502006-03-07 18:31:44 +00001081 exception, v, tb ? tb : Py_None);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001082 PyObject *result = PyEval_CallObject(hook, args);
1083 if (result == NULL) {
1084 PyObject *exception2, *v2, *tb2;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001085 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1086 handle_system_exit();
1087 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001088 PyErr_Fetch(&exception2, &v2, &tb2);
1089 PyErr_NormalizeException(&exception2, &v2, &tb2);
Neal Norwitza5e4f222006-07-17 00:59:04 +00001090 /* It should not be possible for exception2 or v2
1091 to be NULL. However PyErr_Display() can't
1092 tolerate NULLs, so just be safe. */
1093 if (exception2 == NULL) {
1094 exception2 = Py_None;
1095 Py_INCREF(exception2);
1096 }
1097 if (v2 == NULL) {
1098 v2 = Py_None;
1099 Py_INCREF(v2);
1100 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001101 if (Py_FlushLine())
1102 PyErr_Clear();
1103 fflush(stdout);
1104 PySys_WriteStderr("Error in sys.excepthook:\n");
1105 PyErr_Display(exception2, v2, tb2);
1106 PySys_WriteStderr("\nOriginal exception was:\n");
1107 PyErr_Display(exception, v, tb);
Neal Norwitza5e4f222006-07-17 00:59:04 +00001108 Py_DECREF(exception2);
1109 Py_DECREF(v2);
Jeremy Hylton07028582001-12-07 15:35:35 +00001110 Py_XDECREF(tb2);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001111 }
1112 Py_XDECREF(result);
1113 Py_XDECREF(args);
1114 } else {
1115 PySys_WriteStderr("sys.excepthook is missing\n");
1116 PyErr_Display(exception, v, tb);
1117 }
1118 Py_XDECREF(exception);
1119 Py_XDECREF(v);
1120 Py_XDECREF(tb);
1121}
1122
Richard Jones7b9558d2006-05-27 12:29:24 +00001123void
1124PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb)
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001125{
1126 int err = 0;
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001127 PyObject *f = PySys_GetObject("stderr");
Armin Rigo5d2c6832004-03-22 20:16:58 +00001128 Py_INCREF(value);
Guido van Rossum3165fe61992-09-25 21:59:05 +00001129 if (f == NULL)
1130 fprintf(stderr, "lost sys.stderr\n");
1131 else {
Guido van Rossum0829c751998-02-28 04:31:39 +00001132 if (Py_FlushLine())
1133 PyErr_Clear();
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001134 fflush(stdout);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001135 if (tb && tb != Py_None)
1136 err = PyTraceBack_Print(tb, f);
Barry Warsaw36b8f941997-08-26 18:09:48 +00001137 if (err == 0 &&
Armin Rigo5d2c6832004-03-22 20:16:58 +00001138 PyObject_HasAttrString(value, "print_file_and_line"))
Barry Warsaw36b8f941997-08-26 18:09:48 +00001139 {
Guido van Rossum82598051997-03-05 00:20:32 +00001140 PyObject *message;
Martin v. Löwis95292d62002-12-11 14:04:59 +00001141 const char *filename, *text;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001142 int lineno, offset;
Armin Rigo5d2c6832004-03-22 20:16:58 +00001143 if (!parse_syntax_error(value, &message, &filename,
Barry Warsaw035574d1997-08-29 22:07:17 +00001144 &lineno, &offset, &text))
Guido van Rossum82598051997-03-05 00:20:32 +00001145 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001146 else {
1147 char buf[10];
Guido van Rossum82598051997-03-05 00:20:32 +00001148 PyFile_WriteString(" File \"", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001149 if (filename == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +00001150 PyFile_WriteString("<string>", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001151 else
Guido van Rossum82598051997-03-05 00:20:32 +00001152 PyFile_WriteString(filename, f);
1153 PyFile_WriteString("\", line ", f);
Jeremy Hylton518ab1c2001-11-28 20:42:20 +00001154 PyOS_snprintf(buf, sizeof(buf), "%d", lineno);
Guido van Rossum82598051997-03-05 00:20:32 +00001155 PyFile_WriteString(buf, f);
1156 PyFile_WriteString("\n", f);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001157 if (text != NULL)
1158 print_error_text(f, offset, text);
Armin Rigo5d2c6832004-03-22 20:16:58 +00001159 Py_DECREF(value);
1160 value = message;
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001161 /* Can't be bothered to check all those
1162 PyFile_WriteString() calls */
1163 if (PyErr_Occurred())
1164 err = -1;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001165 }
1166 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001167 if (err) {
1168 /* Don't do anything else */
1169 }
Brett Cannonbf364092006-03-01 04:25:17 +00001170 else if (PyExceptionClass_Check(exception)) {
Richard Jones7b9558d2006-05-27 12:29:24 +00001171 PyObject* moduleName;
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001172 char* className = PyExceptionClass_Name(exception);
1173 if (className != NULL) {
1174 char *dot = strrchr(className, '.');
1175 if (dot != NULL)
1176 className = dot+1;
1177 }
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001178
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001179 moduleName = PyObject_GetAttrString(exception, "__module__");
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001180 if (moduleName == NULL)
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001181 err = PyFile_WriteString("<unknown>", f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001182 else {
1183 char* modstr = PyString_AsString(moduleName);
Tim Petersd08e3822003-04-17 15:24:21 +00001184 if (modstr && strcmp(modstr, "exceptions"))
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001185 {
1186 err = PyFile_WriteString(modstr, f);
1187 err += PyFile_WriteString(".", f);
1188 }
Richard Jones7b9558d2006-05-27 12:29:24 +00001189 Py_DECREF(moduleName);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001190 }
1191 if (err == 0) {
1192 if (className == NULL)
1193 err = PyFile_WriteString("<unknown>", f);
1194 else
Brett Cannonbf364092006-03-01 04:25:17 +00001195 err = PyFile_WriteString(className, f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001196 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001197 }
1198 else
1199 err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
Brett Cannon2e63b732006-03-02 18:34:57 +00001200 if (err == 0 && (value != Py_None)) {
1201 PyObject *s = PyObject_Str(value);
1202 /* only print colon if the str() of the
1203 object is not the empty string
1204 */
1205 if (s == NULL)
1206 err = -1;
1207 else if (!PyString_Check(s) ||
1208 PyString_GET_SIZE(s) != 0)
1209 err = PyFile_WriteString(": ", f);
1210 if (err == 0)
1211 err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
1212 Py_XDECREF(s);
Guido van Rossum262e1241995-02-07 15:30:45 +00001213 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001214 if (err == 0)
1215 err = PyFile_WriteString("\n", f);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001216 }
Armin Rigo5d2c6832004-03-22 20:16:58 +00001217 Py_DECREF(value);
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001218 /* If an error happened here, don't show it.
1219 XXX This is wrong, but too many callers rely on this behavior. */
1220 if (err != 0)
1221 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001222}
1223
Guido van Rossum82598051997-03-05 00:20:32 +00001224PyObject *
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001225PyRun_StringFlags(const char *str, int start, PyObject *globals,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001226 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001227{
Neal Norwitze92fba02006-03-04 18:52:26 +00001228 PyObject *ret = NULL;
Neal Norwitzd12bd012006-07-21 07:59:47 +00001229 mod_ty mod;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001230 PyArena *arena = PyArena_New();
Neal Norwitzd12bd012006-07-21 07:59:47 +00001231 if (arena == NULL)
1232 return NULL;
1233
1234 mod = PyParser_ASTFromString(str, "<string>", start, flags, arena);
Neal Norwitze92fba02006-03-04 18:52:26 +00001235 if (mod != NULL)
1236 ret = run_mod(mod, "<string>", globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001237 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001238 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001239}
1240
1241PyObject *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001242PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001243 PyObject *locals, int closeit, PyCompilerFlags *flags)
1244{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001245 PyObject *ret;
Neal Norwitzd12bd012006-07-21 07:59:47 +00001246 mod_ty mod;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001247 PyArena *arena = PyArena_New();
Neal Norwitzd12bd012006-07-21 07:59:47 +00001248 if (arena == NULL)
1249 return NULL;
1250
1251 mod = PyParser_ASTFromFile(fp, filename, start, 0, 0,
1252 flags, NULL, arena);
Georg Brandl15e138a2007-03-06 12:16:52 +00001253 if (closeit)
1254 fclose(fp);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001255 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001256 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001257 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001258 }
Neal Norwitze92fba02006-03-04 18:52:26 +00001259 ret = run_mod(mod, filename, globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001260 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001261 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001262}
1263
Guido van Rossum82598051997-03-05 00:20:32 +00001264static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001265run_mod(mod_ty mod, const char *filename, PyObject *globals, PyObject *locals,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001266 PyCompilerFlags *flags, PyArena *arena)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001267{
Guido van Rossum82598051997-03-05 00:20:32 +00001268 PyCodeObject *co;
1269 PyObject *v;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001270 co = PyAST_Compile(mod, filename, flags, arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001271 if (co == NULL)
1272 return NULL;
Guido van Rossum82598051997-03-05 00:20:32 +00001273 v = PyEval_EvalCode(co, globals, locals);
1274 Py_DECREF(co);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001275 return v;
1276}
1277
Guido van Rossum82598051997-03-05 00:20:32 +00001278static PyObject *
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001279run_pyc_file(FILE *fp, const char *filename, PyObject *globals,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001280 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossumfdef2711994-09-14 13:31:04 +00001281{
Guido van Rossum82598051997-03-05 00:20:32 +00001282 PyCodeObject *co;
1283 PyObject *v;
Guido van Rossumfdef2711994-09-14 13:31:04 +00001284 long magic;
Fred Drakee8de31c2000-08-31 05:38:39 +00001285 long PyImport_GetMagicNumber(void);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001286
Guido van Rossum82598051997-03-05 00:20:32 +00001287 magic = PyMarshal_ReadLongFromFile(fp);
1288 if (magic != PyImport_GetMagicNumber()) {
1289 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001290 "Bad magic number in .pyc file");
1291 return NULL;
1292 }
Guido van Rossum82598051997-03-05 00:20:32 +00001293 (void) PyMarshal_ReadLongFromFile(fp);
Tim Petersd9b9ac82001-01-28 00:27:39 +00001294 v = PyMarshal_ReadLastObjectFromFile(fp);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001295 fclose(fp);
Guido van Rossum82598051997-03-05 00:20:32 +00001296 if (v == NULL || !PyCode_Check(v)) {
1297 Py_XDECREF(v);
1298 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001299 "Bad code object in .pyc file");
1300 return NULL;
1301 }
Guido van Rossum82598051997-03-05 00:20:32 +00001302 co = (PyCodeObject *)v;
1303 v = PyEval_EvalCode(co, globals, locals);
Jeremy Hyltonb857ba22001-08-10 21:41:33 +00001304 if (v && flags)
1305 flags->cf_flags |= (co->co_flags & PyCF_MASK);
Guido van Rossum82598051997-03-05 00:20:32 +00001306 Py_DECREF(co);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001307 return v;
1308}
1309
Guido van Rossum82598051997-03-05 00:20:32 +00001310PyObject *
Tim Petersd08e3822003-04-17 15:24:21 +00001311Py_CompileStringFlags(const char *str, const char *filename, int start,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001312 PyCompilerFlags *flags)
1313{
Guido van Rossum82598051997-03-05 00:20:32 +00001314 PyCodeObject *co;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001315 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001316 PyArena *arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001317 if (arena == NULL)
1318 return NULL;
1319
1320 mod = PyParser_ASTFromString(str, filename, start, flags, arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001321 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001322 PyArena_Free(arena);
Guido van Rossum5b722181993-03-30 17:46:03 +00001323 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001324 }
Martin v. Löwis2b366e42006-02-26 22:12:35 +00001325 if (flags && (flags->cf_flags & PyCF_ONLY_AST)) {
Martin v. Löwisbd260da2006-02-26 19:42:26 +00001326 PyObject *result = PyAST_mod2obj(mod);
1327 PyArena_Free(arena);
1328 return result;
1329 }
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001330 co = PyAST_Compile(mod, filename, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001331 PyArena_Free(arena);
Guido van Rossum82598051997-03-05 00:20:32 +00001332 return (PyObject *)co;
Guido van Rossum5b722181993-03-30 17:46:03 +00001333}
1334
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001335struct symtable *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001336Py_SymtableString(const char *str, const char *filename, int start)
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001337{
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001338 struct symtable *st;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001339 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001340 PyArena *arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001341 if (arena == NULL)
1342 return NULL;
1343
1344 mod = PyParser_ASTFromString(str, filename, start, NULL, arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001345 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001346 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001347 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001348 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001349 st = PySymtable_Build(mod, filename, 0);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001350 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001351 return st;
1352}
1353
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001354/* Preferred access to parser is through AST. */
1355mod_ty
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001356PyParser_ASTFromString(const char *s, const char *filename, int start,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001357 PyCompilerFlags *flags, PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001358{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001359 mod_ty mod;
1360 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001361 node *n = PyParser_ParseStringFlagsFilename(s, filename,
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001362 &_PyParser_Grammar, start, &err,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001363 PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001364 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001365 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001366 PyNode_Free(n);
1367 return mod;
1368 }
1369 else {
1370 err_input(&err);
1371 return NULL;
1372 }
1373}
1374
1375mod_ty
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001376PyParser_ASTFromFile(FILE *fp, const char *filename, int start, char *ps1,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001377 char *ps2, PyCompilerFlags *flags, int *errcode,
Neal Norwitz9589ee22006-03-04 19:01:22 +00001378 PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001379{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001380 mod_ty mod;
1381 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001382 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1383 start, ps1, ps2, &err, PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001384 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001385 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001386 PyNode_Free(n);
1387 return mod;
1388 }
1389 else {
1390 err_input(&err);
1391 if (errcode)
1392 *errcode = err.error;
1393 return NULL;
1394 }
1395}
1396
Guido van Rossuma110aa61994-08-29 12:50:44 +00001397/* Simplified interface to parsefile -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001398
Guido van Rossuma110aa61994-08-29 12:50:44 +00001399node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001400PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001401{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001402 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001403 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1404 start, NULL, NULL, &err, flags);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001405 if (n == NULL)
1406 err_input(&err);
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001407
Guido van Rossuma110aa61994-08-29 12:50:44 +00001408 return n;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001409}
1410
Guido van Rossuma110aa61994-08-29 12:50:44 +00001411/* Simplified interface to parsestring -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001412
Guido van Rossuma110aa61994-08-29 12:50:44 +00001413node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001414PyParser_SimpleParseStringFlags(const char *str, int start, int flags)
Tim Petersfe2127d2001-07-16 05:37:24 +00001415{
Tim Petersfe2127d2001-07-16 05:37:24 +00001416 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001417 node *n = PyParser_ParseStringFlags(str, &_PyParser_Grammar,
1418 start, &err, flags);
Tim Petersfe2127d2001-07-16 05:37:24 +00001419 if (n == NULL)
1420 err_input(&err);
1421 return n;
1422}
1423
1424node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001425PyParser_SimpleParseStringFlagsFilename(const char *str, const char *filename,
Thomas Heller6b17abf2002-07-09 09:23:27 +00001426 int start, int flags)
1427{
Thomas Heller6b17abf2002-07-09 09:23:27 +00001428 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001429 node *n = PyParser_ParseStringFlagsFilename(str, filename,
1430 &_PyParser_Grammar, start, &err, flags);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001431 if (n == NULL)
1432 err_input(&err);
1433 return n;
1434}
1435
1436node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001437PyParser_SimpleParseStringFilename(const char *str, const char *filename, int start)
Thomas Heller6b17abf2002-07-09 09:23:27 +00001438{
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001439 return PyParser_SimpleParseStringFlagsFilename(str, filename, start, 0);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001440}
1441
Guido van Rossum66ebd912003-04-17 16:02:26 +00001442/* May want to move a more generalized form of this to parsetok.c or
1443 even parser modules. */
1444
1445void
1446PyParser_SetError(perrdetail *err)
1447{
1448 err_input(err);
1449}
1450
Guido van Rossuma110aa61994-08-29 12:50:44 +00001451/* Set the error appropriate to the given input error code (see errcode.h) */
1452
1453static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001454err_input(perrdetail *err)
Guido van Rossuma110aa61994-08-29 12:50:44 +00001455{
Fred Drake85f36392000-07-11 17:53:00 +00001456 PyObject *v, *w, *errtype;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001457 PyObject* u = NULL;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001458 char *msg = NULL;
Fred Drake85f36392000-07-11 17:53:00 +00001459 errtype = PyExc_SyntaxError;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001460 switch (err->error) {
1461 case E_SYNTAX:
Fred Drake85f36392000-07-11 17:53:00 +00001462 errtype = PyExc_IndentationError;
1463 if (err->expected == INDENT)
1464 msg = "expected an indented block";
1465 else if (err->token == INDENT)
1466 msg = "unexpected indent";
1467 else if (err->token == DEDENT)
1468 msg = "unexpected unindent";
1469 else {
1470 errtype = PyExc_SyntaxError;
1471 msg = "invalid syntax";
1472 }
Guido van Rossuma110aa61994-08-29 12:50:44 +00001473 break;
1474 case E_TOKEN:
1475 msg = "invalid token";
Guido van Rossuma110aa61994-08-29 12:50:44 +00001476 break;
Skip Montanaro118ec702002-08-15 01:20:16 +00001477 case E_EOFS:
1478 msg = "EOF while scanning triple-quoted string";
1479 break;
1480 case E_EOLS:
1481 msg = "EOL while scanning single-quoted string";
1482 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001483 case E_INTR:
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00001484 if (!PyErr_Occurred())
1485 PyErr_SetNone(PyExc_KeyboardInterrupt);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001486 return;
1487 case E_NOMEM:
Guido van Rossum82598051997-03-05 00:20:32 +00001488 PyErr_NoMemory();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001489 return;
1490 case E_EOF:
1491 msg = "unexpected EOF while parsing";
1492 break;
Fred Drake85f36392000-07-11 17:53:00 +00001493 case E_TABSPACE:
1494 errtype = PyExc_TabError;
Guido van Rossum560e8ad1998-04-10 19:43:42 +00001495 msg = "inconsistent use of tabs and spaces in indentation";
1496 break;
Jeremy Hylton94988062000-06-20 19:10:44 +00001497 case E_OVERFLOW:
1498 msg = "expression too long";
1499 break;
Fred Drake85f36392000-07-11 17:53:00 +00001500 case E_DEDENT:
1501 errtype = PyExc_IndentationError;
1502 msg = "unindent does not match any outer indentation level";
1503 break;
1504 case E_TOODEEP:
1505 errtype = PyExc_IndentationError;
1506 msg = "too many levels of indentation";
1507 break;
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001508 case E_DECODE: {
1509 PyObject *type, *value, *tb;
1510 PyErr_Fetch(&type, &value, &tb);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001511 if (value != NULL) {
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001512 u = PyObject_Str(value);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001513 if (u != NULL) {
1514 msg = PyString_AsString(u);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001515 }
1516 }
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001517 if (msg == NULL)
1518 msg = "unknown decode error";
Neal Norwitzdb83eb32005-12-18 05:29:30 +00001519 Py_XDECREF(type);
1520 Py_XDECREF(value);
Neal Norwitz40d37812005-10-02 01:48:49 +00001521 Py_XDECREF(tb);
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001522 break;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001523 }
Martin v. Löwis4bf108d2005-03-03 11:45:45 +00001524 case E_LINECONT:
1525 msg = "unexpected character after line continuation character";
1526 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001527 default:
1528 fprintf(stderr, "error=%d\n", err->error);
1529 msg = "unknown parsing error";
1530 break;
1531 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001532 v = Py_BuildValue("(ziiz)", err->filename,
1533 err->lineno, err->offset, err->text);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001534 if (err->text != NULL) {
Tim Petersc9d78aa2006-03-26 23:27:58 +00001535 PyObject_FREE(err->text);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001536 err->text = NULL;
1537 }
1538 w = NULL;
1539 if (v != NULL)
1540 w = Py_BuildValue("(sO)", msg, v);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001541 Py_XDECREF(u);
Guido van Rossum41318302001-03-23 04:01:07 +00001542 Py_XDECREF(v);
Fred Drake85f36392000-07-11 17:53:00 +00001543 PyErr_SetObject(errtype, w);
Guido van Rossum82598051997-03-05 00:20:32 +00001544 Py_XDECREF(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001545}
1546
1547/* Print fatal error message and abort */
1548
1549void
Tim Peters7c321a82002-07-09 02:57:01 +00001550Py_FatalError(const char *msg)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001551{
Guido van Rossum83dd6c31994-09-29 09:38:33 +00001552 fprintf(stderr, "Fatal Python error: %s\n", msg);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001553#ifdef MS_WINDOWS
Guido van Rossum23c94461997-05-22 20:21:30 +00001554 OutputDebugString("Fatal Python error: ");
Guido van Rossuma44823b1995-03-14 15:01:17 +00001555 OutputDebugString(msg);
1556 OutputDebugString("\n");
Guido van Rossum0ba35361998-08-13 13:33:16 +00001557#ifdef _DEBUG
1558 DebugBreak();
Guido van Rossuma44823b1995-03-14 15:01:17 +00001559#endif
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001560#endif /* MS_WINDOWS */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001561 abort();
1562}
1563
1564/* Clean up and exit */
1565
Guido van Rossuma110aa61994-08-29 12:50:44 +00001566#ifdef WITH_THREAD
Guido van Rossum49b56061998-10-01 20:42:43 +00001567#include "pythread.h"
Guido van Rossumf9f2e821992-08-17 08:59:08 +00001568#endif
1569
Guido van Rossum2dcfc961998-10-01 16:01:57 +00001570#define NEXITFUNCS 32
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001571static void (*exitfuncs[NEXITFUNCS])(void);
Guido van Rossum1662dd51994-09-07 14:38:28 +00001572static int nexitfuncs = 0;
1573
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001574int Py_AtExit(void (*func)(void))
Guido van Rossum1662dd51994-09-07 14:38:28 +00001575{
1576 if (nexitfuncs >= NEXITFUNCS)
1577 return -1;
1578 exitfuncs[nexitfuncs++] = func;
1579 return 0;
1580}
1581
Guido van Rossumcc283f51997-08-05 02:22:03 +00001582static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001583call_sys_exitfunc(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001584{
Guido van Rossum82598051997-03-05 00:20:32 +00001585 PyObject *exitfunc = PySys_GetObject("exitfunc");
Guido van Rossum59bff391992-09-03 20:28:00 +00001586
1587 if (exitfunc) {
Fred Drake6a12d8d2001-03-23 17:34:02 +00001588 PyObject *res;
Guido van Rossum82598051997-03-05 00:20:32 +00001589 Py_INCREF(exitfunc);
1590 PySys_SetObject("exitfunc", (PyObject *)NULL);
1591 res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
Guido van Rossum59bff391992-09-03 20:28:00 +00001592 if (res == NULL) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001593 if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
1594 PySys_WriteStderr("Error in sys.exitfunc:\n");
1595 }
Guido van Rossum82598051997-03-05 00:20:32 +00001596 PyErr_Print();
Guido van Rossum59bff391992-09-03 20:28:00 +00001597 }
Guido van Rossum82598051997-03-05 00:20:32 +00001598 Py_DECREF(exitfunc);
Guido van Rossum59bff391992-09-03 20:28:00 +00001599 }
1600
Guido van Rossum0829c751998-02-28 04:31:39 +00001601 if (Py_FlushLine())
1602 PyErr_Clear();
Guido van Rossumcc283f51997-08-05 02:22:03 +00001603}
Guido van Rossum1662dd51994-09-07 14:38:28 +00001604
Guido van Rossumcc283f51997-08-05 02:22:03 +00001605static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001606call_ll_exitfuncs(void)
Guido van Rossumcc283f51997-08-05 02:22:03 +00001607{
Guido van Rossum1662dd51994-09-07 14:38:28 +00001608 while (nexitfuncs > 0)
1609 (*exitfuncs[--nexitfuncs])();
Guido van Rossum25ce5661997-08-02 03:10:38 +00001610
1611 fflush(stdout);
1612 fflush(stderr);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001613}
1614
1615void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001616Py_Exit(int sts)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001617{
Guido van Rossumcc283f51997-08-05 02:22:03 +00001618 Py_Finalize();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001619
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001620 exit(sts);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001621}
1622
Guido van Rossumf1dc5661993-07-05 10:31:29 +00001623static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001624initsigs(void)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001625{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001626#ifdef SIGPIPE
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001627 PyOS_setsig(SIGPIPE, SIG_IGN);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001628#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +00001629#ifdef SIGXFZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001630 PyOS_setsig(SIGXFZ, SIG_IGN);
Guido van Rossum70d893a2001-08-16 08:21:42 +00001631#endif
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001632#ifdef SIGXFSZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001633 PyOS_setsig(SIGXFSZ, SIG_IGN);
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001634#endif
Guido van Rossum82598051997-03-05 00:20:32 +00001635 PyOS_InitInterrupts(); /* May imply initsignal() */
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001636}
1637
Guido van Rossum7433b121997-02-14 19:45:36 +00001638
1639/*
1640 * The file descriptor fd is considered ``interactive'' if either
1641 * a) isatty(fd) is TRUE, or
1642 * b) the -i flag was given, and the filename associated with
1643 * the descriptor is NULL or "<stdin>" or "???".
1644 */
1645int
Martin v. Löwis95292d62002-12-11 14:04:59 +00001646Py_FdIsInteractive(FILE *fp, const char *filename)
Guido van Rossum7433b121997-02-14 19:45:36 +00001647{
1648 if (isatty((int)fileno(fp)))
1649 return 1;
1650 if (!Py_InteractiveFlag)
1651 return 0;
1652 return (filename == NULL) ||
1653 (strcmp(filename, "<stdin>") == 0) ||
1654 (strcmp(filename, "???") == 0);
1655}
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001656
1657
Tim Petersd08e3822003-04-17 15:24:21 +00001658#if defined(USE_STACKCHECK)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001659#if defined(WIN32) && defined(_MSC_VER)
1660
1661/* Stack checking for Microsoft C */
1662
1663#include <malloc.h>
1664#include <excpt.h>
1665
Fred Drakee8de31c2000-08-31 05:38:39 +00001666/*
1667 * Return non-zero when we run out of memory on the stack; zero otherwise.
1668 */
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001669int
Fred Drake399739f2000-08-31 05:52:44 +00001670PyOS_CheckStack(void)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001671{
1672 __try {
Tim Peters92e4dd82002-10-05 01:47:34 +00001673 /* alloca throws a stack overflow exception if there's
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001674 not enough space left on the stack */
Tim Peters92e4dd82002-10-05 01:47:34 +00001675 alloca(PYOS_STACK_MARGIN * sizeof(void*));
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001676 return 0;
1677 } __except (EXCEPTION_EXECUTE_HANDLER) {
1678 /* just ignore all errors */
1679 }
1680 return 1;
1681}
1682
1683#endif /* WIN32 && _MSC_VER */
1684
1685/* Alternate implementations can be added here... */
1686
1687#endif /* USE_STACKCHECK */
Guido van Rossum6f256182000-09-16 16:32:19 +00001688
1689
1690/* Wrappers around sigaction() or signal(). */
1691
1692PyOS_sighandler_t
1693PyOS_getsig(int sig)
1694{
1695#ifdef HAVE_SIGACTION
1696 struct sigaction context;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001697 if (sigaction(sig, NULL, &context) == -1)
1698 return SIG_ERR;
Guido van Rossum6f256182000-09-16 16:32:19 +00001699 return context.sa_handler;
1700#else
1701 PyOS_sighandler_t handler;
Martin v. Löwisb45b3152005-11-28 17:34:23 +00001702/* Special signal handling for the secure CRT in Visual Studio 2005 */
1703#if defined(_MSC_VER) && _MSC_VER >= 1400
1704 switch (sig) {
1705 /* Only these signals are valid */
1706 case SIGINT:
1707 case SIGILL:
1708 case SIGFPE:
1709 case SIGSEGV:
1710 case SIGTERM:
1711 case SIGBREAK:
1712 case SIGABRT:
1713 break;
1714 /* Don't call signal() with other values or it will assert */
1715 default:
1716 return SIG_ERR;
1717 }
1718#endif /* _MSC_VER && _MSC_VER >= 1400 */
Guido van Rossum6f256182000-09-16 16:32:19 +00001719 handler = signal(sig, SIG_IGN);
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001720 if (handler != SIG_ERR)
1721 signal(sig, handler);
Guido van Rossum6f256182000-09-16 16:32:19 +00001722 return handler;
1723#endif
1724}
1725
1726PyOS_sighandler_t
1727PyOS_setsig(int sig, PyOS_sighandler_t handler)
1728{
1729#ifdef HAVE_SIGACTION
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001730 struct sigaction context, ocontext;
Guido van Rossum6f256182000-09-16 16:32:19 +00001731 context.sa_handler = handler;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001732 sigemptyset(&context.sa_mask);
1733 context.sa_flags = 0;
1734 if (sigaction(sig, &context, &ocontext) == -1)
1735 return SIG_ERR;
1736 return ocontext.sa_handler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001737#else
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001738 PyOS_sighandler_t oldhandler;
1739 oldhandler = signal(sig, handler);
1740#ifdef HAVE_SIGINTERRUPT
1741 siginterrupt(sig, 1);
1742#endif
1743 return oldhandler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001744#endif
1745}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001746
1747/* Deprecated C API functions still provided for binary compatiblity */
1748
1749#undef PyParser_SimpleParseFile
Thomas Heller1b046642006-04-18 18:51:06 +00001750PyAPI_FUNC(node *)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001751PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
1752{
1753 return PyParser_SimpleParseFileFlags(fp, filename, start, 0);
1754}
1755
Thomas Heller1b046642006-04-18 18:51:06 +00001756#undef PyParser_SimpleParseString
1757PyAPI_FUNC(node *)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001758PyParser_SimpleParseString(const char *str, int start)
1759{
1760 return PyParser_SimpleParseStringFlags(str, start, 0);
1761}
Anthony Baxterac6bd462006-04-13 02:06:09 +00001762
Thomas Heller1b046642006-04-18 18:51:06 +00001763#undef PyRun_AnyFile
1764PyAPI_FUNC(int)
1765PyRun_AnyFile(FILE *fp, const char *name)
1766{
1767 return PyRun_AnyFileExFlags(fp, name, 0, NULL);
1768}
1769
1770#undef PyRun_AnyFileEx
1771PyAPI_FUNC(int)
1772PyRun_AnyFileEx(FILE *fp, const char *name, int closeit)
1773{
1774 return PyRun_AnyFileExFlags(fp, name, closeit, NULL);
1775}
1776
1777#undef PyRun_AnyFileFlags
1778PyAPI_FUNC(int)
1779PyRun_AnyFileFlags(FILE *fp, const char *name, PyCompilerFlags *flags)
1780{
1781 return PyRun_AnyFileExFlags(fp, name, 0, flags);
1782}
1783
1784#undef PyRun_File
1785PyAPI_FUNC(PyObject *)
1786PyRun_File(FILE *fp, const char *p, int s, PyObject *g, PyObject *l)
1787{
1788 return PyRun_FileExFlags(fp, p, s, g, l, 0, NULL);
1789}
1790
1791#undef PyRun_FileEx
1792PyAPI_FUNC(PyObject *)
1793PyRun_FileEx(FILE *fp, const char *p, int s, PyObject *g, PyObject *l, int c)
1794{
1795 return PyRun_FileExFlags(fp, p, s, g, l, c, NULL);
1796}
1797
1798#undef PyRun_FileFlags
1799PyAPI_FUNC(PyObject *)
1800PyRun_FileFlags(FILE *fp, const char *p, int s, PyObject *g, PyObject *l,
1801 PyCompilerFlags *flags)
1802{
1803 return PyRun_FileExFlags(fp, p, s, g, l, 0, flags);
1804}
1805
1806#undef PyRun_SimpleFile
1807PyAPI_FUNC(int)
1808PyRun_SimpleFile(FILE *f, const char *p)
1809{
1810 return PyRun_SimpleFileExFlags(f, p, 0, NULL);
1811}
1812
1813#undef PyRun_SimpleFileEx
1814PyAPI_FUNC(int)
1815PyRun_SimpleFileEx(FILE *f, const char *p, int c)
1816{
1817 return PyRun_SimpleFileExFlags(f, p, c, NULL);
1818}
1819
1820
1821#undef PyRun_String
1822PyAPI_FUNC(PyObject *)
1823PyRun_String(const char *str, int s, PyObject *g, PyObject *l)
1824{
1825 return PyRun_StringFlags(str, s, g, l, NULL);
1826}
1827
1828#undef PyRun_SimpleString
1829PyAPI_FUNC(int)
1830PyRun_SimpleString(const char *s)
1831{
1832 return PyRun_SimpleStringFlags(s, NULL);
1833}
1834
1835#undef Py_CompileString
1836PyAPI_FUNC(PyObject *)
1837Py_CompileString(const char *str, const char *p, int s)
1838{
1839 return Py_CompileStringFlags(str, p, s, NULL);
1840}
1841
1842#undef PyRun_InteractiveOne
1843PyAPI_FUNC(int)
1844PyRun_InteractiveOne(FILE *f, const char *p)
1845{
1846 return PyRun_InteractiveOneFlags(f, p, NULL);
1847}
1848
1849#undef PyRun_InteractiveLoop
1850PyAPI_FUNC(int)
1851PyRun_InteractiveLoop(FILE *f, const char *p)
1852{
1853 return PyRun_InteractiveLoopFlags(f, p, NULL);
1854}
1855
Anthony Baxterac6bd462006-04-13 02:06:09 +00001856#ifdef __cplusplus
1857}
1858#endif
1859