blob: 2c5400d575187a6cb6df2df48315e488fdee40bc [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"
Guido van Rossum1984f1e1992-08-04 12:41:02 +00007#include "grammar.h"
8#include "node.h"
Fred Drake85f36392000-07-11 17:53:00 +00009#include "token.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000010#include "parsetok.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000011#include "errcode.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000012#include "code.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000013#include "compile.h"
Jeremy Hylton4b38da62001-02-02 18:19:15 +000014#include "symtable.h"
Neal Norwitzadb69fc2005-12-17 20:54:49 +000015#include "pyarena.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000016#include "ast.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +000017#include "eval.h"
Guido van Rossumfdef2711994-09-14 13:31:04 +000018#include "marshal.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000019
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000020#include <signal.h>
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000021
Martin v. Löwis73d538b2003-03-05 15:13:47 +000022#ifdef HAVE_LANGINFO_H
23#include <locale.h>
24#include <langinfo.h>
25#endif
26
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000027#ifdef MS_WINDOWS
Guido van Rossuma44823b1995-03-14 15:01:17 +000028#undef BYTE
29#include "windows.h"
30#endif
31
Neal Norwitz4281cef2006-03-04 19:58:13 +000032#ifndef Py_REF_DEBUG
33# define PRINT_TOTAL_REFS()
34#else /* Py_REF_DEBUG */
35# if defined(MS_WIN64)
Martin v. Löwis99b93c22006-03-05 05:33:54 +000036# define PRINT_TOTAL_REFS() fprintf(stderr, "[%Id refs]\n", _Py_RefTotal);
Neal Norwitz4281cef2006-03-04 19:58:13 +000037# else /* ! MS_WIN64 */
Neal Norwitzf2e0c452006-03-06 23:31:27 +000038# define PRINT_TOTAL_REFS() fprintf(stderr, "[%ld refs]\n", \
39 Py_SAFE_DOWNCAST(_Py_RefTotal, Py_ssize_t, long));
Neal Norwitz4281cef2006-03-04 19:58:13 +000040# endif /* MS_WIN64 */
41#endif
42
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000043extern char *Py_GetPath(void);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000044
Guido van Rossum82598051997-03-05 00:20:32 +000045extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossum1984f1e1992-08-04 12:41:02 +000046
Guido van Rossumb73cc041993-11-01 16:28:59 +000047/* Forward */
Tim Petersdbd9ba62000-07-09 03:09:57 +000048static void initmain(void);
49static void initsite(void);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000050static PyObject *run_mod(mod_ty, const char *, PyObject *, PyObject *,
Neal Norwitzadb69fc2005-12-17 20:54:49 +000051 PyCompilerFlags *, PyArena *);
Martin v. Löwis95292d62002-12-11 14:04:59 +000052static PyObject *run_pyc_file(FILE *, const char *, PyObject *, PyObject *,
Jeremy Hyltonbc320242001-03-22 02:47:58 +000053 PyCompilerFlags *);
Tim Petersdbd9ba62000-07-09 03:09:57 +000054static void err_input(perrdetail *);
55static void initsigs(void);
56static void call_sys_exitfunc(void);
57static void call_ll_exitfuncs(void);
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000058extern void _PyUnicode_Init(void);
59extern void _PyUnicode_Fini(void);
Guido van Rossumc94044c2000-03-10 23:03:54 +000060
Mark Hammond8d98d2c2003-04-19 15:41:53 +000061#ifdef WITH_THREAD
62extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *);
63extern void _PyGILState_Fini(void);
64#endif /* WITH_THREAD */
65
Guido van Rossum82598051997-03-05 00:20:32 +000066int Py_DebugFlag; /* Needed by parser.c */
67int Py_VerboseFlag; /* Needed by import.c */
Guido van Rossum7433b121997-02-14 19:45:36 +000068int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
Guido van Rossumdcc0c131997-08-29 22:32:42 +000069int Py_NoSiteFlag; /* Suppress 'import site' */
Barry Warsaw3ce09642000-05-02 19:18:59 +000070int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
Guido van Rossuma61691e1998-02-06 22:27:24 +000071int Py_FrozenFlag; /* Needed by getpath.c */
Guido van Rossumb16d1972000-05-01 17:55:15 +000072int Py_UnicodeFlag = 0; /* Needed by compile.c */
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +000073int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
Guido van Rossum1984f1e1992-08-04 12:41:02 +000074
Mark Hammonda43fd0c2003-02-19 00:33:33 +000075/* Reference to 'warnings' module, to avoid importing it
Mark Hammondedd07732003-07-15 23:03:55 +000076 on the fly when the import lock may be held. See 683658/771097
Mark Hammonda43fd0c2003-02-19 00:33:33 +000077*/
Mark Hammondedd07732003-07-15 23:03:55 +000078static PyObject *warnings_module = NULL;
79
80/* Returns a borrowed reference to the 'warnings' module, or NULL.
81 If the module is returned, it is guaranteed to have been obtained
82 without acquiring the import lock
83*/
Martin v. Löwisa2c17c52003-08-09 09:47:11 +000084PyObject *PyModule_GetWarningsModule(void)
Mark Hammondedd07732003-07-15 23:03:55 +000085{
86 PyObject *typ, *val, *tb;
87 PyObject *all_modules;
88 /* If we managed to get the module at init time, just use it */
89 if (warnings_module)
90 return warnings_module;
91 /* If it wasn't available at init time, it may be available
92 now in sys.modules (common scenario is frozen apps: import
93 at init time fails, but the frozen init code sets up sys.path
94 correctly, then does an implicit import of warnings for us
95 */
96 /* Save and restore any exceptions */
97 PyErr_Fetch(&typ, &val, &tb);
98
Mark Hammond5f4e8ca2003-07-16 01:54:38 +000099 all_modules = PySys_GetObject("modules");
Mark Hammondedd07732003-07-15 23:03:55 +0000100 if (all_modules) {
101 warnings_module = PyDict_GetItemString(all_modules, "warnings");
102 /* We keep a ref in the global */
103 Py_XINCREF(warnings_module);
104 }
105 PyErr_Restore(typ, val, tb);
106 return warnings_module;
107}
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000108
Guido van Rossum25ce5661997-08-02 03:10:38 +0000109static int initialized = 0;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000110
Thomas Wouters7e474022000-07-16 12:04:32 +0000111/* API to access the initialized flag -- useful for esoteric use */
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000112
113int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000114Py_IsInitialized(void)
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000115{
116 return initialized;
117}
118
Guido van Rossum25ce5661997-08-02 03:10:38 +0000119/* Global initializations. Can be undone by Py_Finalize(). Don't
120 call this twice without an intervening Py_Finalize() call. When
121 initializations fail, a fatal error is issued and the function does
122 not return. On return, the first thread and interpreter state have
123 been created.
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000124
Guido van Rossum25ce5661997-08-02 03:10:38 +0000125 Locking: you must hold the interpreter lock while calling this.
126 (If the lock has not yet been initialized, that's equivalent to
127 having the lock, but you cannot use multiple threads.)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000128
Guido van Rossum25ce5661997-08-02 03:10:38 +0000129*/
Guido van Rossuma027efa1997-05-05 20:56:21 +0000130
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000131static int
132add_flag(int flag, const char *envs)
133{
134 int env = atoi(envs);
135 if (flag < env)
136 flag = env;
137 if (flag < 1)
138 flag = 1;
139 return flag;
140}
141
Guido van Rossuma027efa1997-05-05 20:56:21 +0000142void
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000143Py_InitializeEx(int install_sigs)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000144{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000145 PyInterpreterState *interp;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000146 PyThreadState *tstate;
147 PyObject *bimod, *sysmod;
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000148 char *p;
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000149#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
150 char *codeset;
151 char *saved_locale;
152 PyObject *sys_stream, *sys_isatty;
153#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +0000154 extern void _Py_ReadyTypes(void);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000155
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000156 if (initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000157 return;
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000158 initialized = 1;
Tim Petersd08e3822003-04-17 15:24:21 +0000159
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000160 if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000161 Py_DebugFlag = add_flag(Py_DebugFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000162 if ((p = Py_GETENV("PYTHONVERBOSE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000163 Py_VerboseFlag = add_flag(Py_VerboseFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000164 if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000165 Py_OptimizeFlag = add_flag(Py_OptimizeFlag, p);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000166
Guido van Rossuma027efa1997-05-05 20:56:21 +0000167 interp = PyInterpreterState_New();
168 if (interp == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000169 Py_FatalError("Py_Initialize: can't make first interpreter");
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000170
Guido van Rossuma027efa1997-05-05 20:56:21 +0000171 tstate = PyThreadState_New(interp);
172 if (tstate == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000173 Py_FatalError("Py_Initialize: can't make first thread");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000174 (void) PyThreadState_Swap(tstate);
175
Guido van Rossum70d893a2001-08-16 08:21:42 +0000176 _Py_ReadyTypes();
Guido van Rossum528b7eb2001-08-07 17:24:28 +0000177
Neal Norwitzb2501f42002-12-31 03:42:13 +0000178 if (!_PyFrame_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000179 Py_FatalError("Py_Initialize: can't init frames");
180
Neal Norwitzb2501f42002-12-31 03:42:13 +0000181 if (!_PyInt_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000182 Py_FatalError("Py_Initialize: can't init ints");
183
Michael W. Hudsonba283e22005-05-27 15:23:20 +0000184 _PyFloat_Init();
185
Guido van Rossum25ce5661997-08-02 03:10:38 +0000186 interp->modules = PyDict_New();
187 if (interp->modules == NULL)
188 Py_FatalError("Py_Initialize: can't make modules dictionary");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000189
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000190#ifdef Py_USING_UNICODE
Guido van Rossumc94044c2000-03-10 23:03:54 +0000191 /* Init Unicode implementation; relies on the codec registry */
192 _PyUnicode_Init();
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000193#endif
Guido van Rossumc94044c2000-03-10 23:03:54 +0000194
Barry Warsawf242aa02000-05-25 23:09:49 +0000195 bimod = _PyBuiltin_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000196 if (bimod == NULL)
197 Py_FatalError("Py_Initialize: can't initialize __builtin__");
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000198 interp->builtins = PyModule_GetDict(bimod);
199 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000200
201 sysmod = _PySys_Init();
202 if (sysmod == NULL)
203 Py_FatalError("Py_Initialize: can't initialize sys");
204 interp->sysdict = PyModule_GetDict(sysmod);
205 Py_INCREF(interp->sysdict);
206 _PyImport_FixupExtension("sys", "sys");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000207 PySys_SetPath(Py_GetPath());
Guido van Rossum25ce5661997-08-02 03:10:38 +0000208 PyDict_SetItemString(interp->sysdict, "modules",
209 interp->modules);
210
Guido van Rossum7c85ab81999-07-08 17:26:56 +0000211 _PyImport_Init();
212
Barry Warsawf242aa02000-05-25 23:09:49 +0000213 /* initialize builtin exceptions */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000214 _PyExc_Init();
Barry Warsaw5821bc52001-08-13 23:04:56 +0000215 _PyImport_FixupExtension("exceptions", "exceptions");
Barry Warsawf242aa02000-05-25 23:09:49 +0000216
Barry Warsaw035574d1997-08-29 22:07:17 +0000217 /* phase 2 of builtins */
Barry Warsaw963b8711997-09-18 16:42:02 +0000218 _PyImport_FixupExtension("__builtin__", "__builtin__");
Barry Warsaw035574d1997-08-29 22:07:17 +0000219
Just van Rossum52e14d62002-12-30 22:08:05 +0000220 _PyImportHooks_Init();
221
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000222 if (install_sigs)
223 initsigs(); /* Signal handling stuff, including initintr() */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000224
225 initmain(); /* Module __main__ */
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000226 if (!Py_NoSiteFlag)
227 initsite(); /* Module site */
Just van Rossum5bfba3a2003-02-25 20:25:12 +0000228
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000229 /* auto-thread-state API, if available */
230#ifdef WITH_THREAD
231 _PyGILState_Init(interp, tstate);
232#endif /* WITH_THREAD */
233
Mark Hammondedd07732003-07-15 23:03:55 +0000234 warnings_module = PyImport_ImportModule("warnings");
235 if (!warnings_module)
236 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000237
238#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
239 /* On Unix, set the file system encoding according to the
240 user's preference, if the CODESET names a well-known
241 Python codec, and Py_FileSystemDefaultEncoding isn't
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000242 initialized by other means. Also set the encoding of
243 stdin and stdout if these are terminals. */
244
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000245 saved_locale = strdup(setlocale(LC_CTYPE, NULL));
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000246 setlocale(LC_CTYPE, "");
247 codeset = nl_langinfo(CODESET);
248 if (codeset && *codeset) {
249 PyObject *enc = PyCodec_Encoder(codeset);
250 if (enc) {
251 codeset = strdup(codeset);
252 Py_DECREF(enc);
253 } else {
254 codeset = NULL;
255 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000256 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000257 } else
258 codeset = NULL;
259 setlocale(LC_CTYPE, saved_locale);
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000260 free(saved_locale);
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000261
262 if (codeset) {
Michael W. Hudson68debc92003-08-11 12:20:24 +0000263 sys_stream = PySys_GetObject("stdin");
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000264 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
265 if (!sys_isatty)
266 PyErr_Clear();
267 if(sys_isatty && PyObject_IsTrue(sys_isatty)) {
268 if (!PyFile_SetEncoding(sys_stream, codeset))
269 Py_FatalError("Cannot set codeset of stdin");
270 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000271 Py_XDECREF(sys_isatty);
272
273 sys_stream = PySys_GetObject("stdout");
274 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
275 if (!sys_isatty)
276 PyErr_Clear();
277 if(sys_isatty && PyObject_IsTrue(sys_isatty)) {
278 if (!PyFile_SetEncoding(sys_stream, codeset))
279 Py_FatalError("Cannot set codeset of stdout");
280 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000281 Py_XDECREF(sys_isatty);
282
283 if (!Py_FileSystemDefaultEncoding)
284 Py_FileSystemDefaultEncoding = codeset;
285 else
286 free(codeset);
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000287 }
288#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +0000289}
290
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000291void
292Py_Initialize(void)
293{
294 Py_InitializeEx(1);
295}
296
297
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000298#ifdef COUNT_ALLOCS
Tim Petersdbd9ba62000-07-09 03:09:57 +0000299extern void dump_counts(void);
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000300#endif
301
Guido van Rossum25ce5661997-08-02 03:10:38 +0000302/* Undo the effect of Py_Initialize().
303
304 Beware: if multiple interpreter and/or thread states exist, these
305 are not wiped out; only the current thread and interpreter state
306 are deleted. But since everything else is deleted, those other
307 interpreter and thread states should no longer be used.
308
309 (XXX We should do better, e.g. wipe out all interpreters and
310 threads.)
311
312 Locking: as above.
313
314*/
315
316void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000317Py_Finalize(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000318{
319 PyInterpreterState *interp;
320 PyThreadState *tstate;
321
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000322 if (!initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000323 return;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000324
Tim Peters384fd102001-01-21 03:40:37 +0000325 /* The interpreter is still entirely intact at this point, and the
326 * exit funcs may be relying on that. In particular, if some thread
327 * or exit func is still waiting to do an import, the import machinery
328 * expects Py_IsInitialized() to return true. So don't say the
329 * interpreter is uninitialized until after the exit funcs have run.
330 * Note that Threading.py uses an exit func to do a join on all the
331 * threads created thru it, so this also protects pending imports in
332 * the threads created via Threading.
333 */
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000334 call_sys_exitfunc();
Tim Peters384fd102001-01-21 03:40:37 +0000335 initialized = 0;
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000336
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000337 /* Get current thread state and interpreter pointer */
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000338 tstate = PyThreadState_GET();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000339 interp = tstate->interp;
340
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000341 /* Disable signal handling */
342 PyOS_FiniInterrupts();
343
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000344 /* drop module references we saved */
Mark Hammondedd07732003-07-15 23:03:55 +0000345 Py_XDECREF(warnings_module);
346 warnings_module = NULL;
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000347
Guido van Rossume13ddc92003-04-17 17:29:22 +0000348 /* Collect garbage. This may call finalizers; it's nice to call these
Tim Peters1d7323e2003-12-01 21:35:27 +0000349 * before all modules are destroyed.
350 * XXX If a __del__ or weakref callback is triggered here, and tries to
351 * XXX import a module, bad things can happen, because Python no
352 * XXX longer believes it's initialized.
353 * XXX Fatal Python error: Interpreter not initialized (version mismatch?)
354 * XXX is easy to provoke that way. I've also seen, e.g.,
355 * XXX Exception exceptions.ImportError: 'No module named sha'
356 * XXX in <function callback at 0x008F5718> ignored
357 * XXX but I'm unclear on exactly how that one happens. In any case,
358 * XXX I haven't seen a real-life report of either of these.
Neal Norwitz9589ee22006-03-04 19:01:22 +0000359 */
Guido van Rossume13ddc92003-04-17 17:29:22 +0000360 PyGC_Collect();
361
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000362 /* Destroy all modules */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000363 PyImport_Cleanup();
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000364
Guido van Rossume13ddc92003-04-17 17:29:22 +0000365 /* Collect final garbage. This disposes of cycles created by
Tim Peters1d7323e2003-12-01 21:35:27 +0000366 * new-style class definitions, for example.
367 * XXX This is disabled because it caused too many problems. If
368 * XXX a __del__ or weakref callback triggers here, Python code has
369 * XXX a hard time running, because even the sys module has been
370 * XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc).
371 * XXX One symptom is a sequence of information-free messages
372 * XXX coming from threads (if a __del__ or callback is invoked,
373 * XXX other threads can execute too, and any exception they encounter
374 * XXX triggers a comedy of errors as subsystem after subsystem
375 * XXX fails to find what it *expects* to find in sys to help report
376 * XXX the exception and consequent unexpected failures). I've also
377 * XXX seen segfaults then, after adding print statements to the
378 * XXX Python code getting called.
379 */
380#if 0
Guido van Rossume13ddc92003-04-17 17:29:22 +0000381 PyGC_Collect();
Tim Peters1d7323e2003-12-01 21:35:27 +0000382#endif
Guido van Rossume13ddc92003-04-17 17:29:22 +0000383
Guido van Rossum1707aad1997-12-08 23:43:45 +0000384 /* Destroy the database used by _PyImport_{Fixup,Find}Extension */
385 _PyImport_Fini();
386
387 /* Debugging stuff */
388#ifdef COUNT_ALLOCS
389 dump_counts();
390#endif
391
Neal Norwitz4281cef2006-03-04 19:58:13 +0000392 PRINT_TOTAL_REFS()
Guido van Rossum1707aad1997-12-08 23:43:45 +0000393
Tim Peters9cf25ce2003-04-17 15:21:01 +0000394#ifdef Py_TRACE_REFS
395 /* Display all objects still alive -- this can invoke arbitrary
396 * __repr__ overrides, so requires a mostly-intact interpreter.
397 * Alas, a lot of stuff may still be alive now that will be cleaned
398 * up later.
399 */
Tim Peters269b2a62003-04-17 19:52:29 +0000400 if (Py_GETENV("PYTHONDUMPREFS"))
Tim Peters9cf25ce2003-04-17 15:21:01 +0000401 _Py_PrintReferences(stderr);
Tim Peters9cf25ce2003-04-17 15:21:01 +0000402#endif /* Py_TRACE_REFS */
403
Mark Hammond6cb90292003-04-22 11:18:00 +0000404 /* Cleanup auto-thread-state */
405#ifdef WITH_THREAD
406 _PyGILState_Fini();
407#endif /* WITH_THREAD */
408
Guido van Rossumd922fa42003-04-15 14:10:09 +0000409 /* Clear interpreter state */
Barry Warsawf242aa02000-05-25 23:09:49 +0000410 PyInterpreterState_Clear(interp);
Guido van Rossumd922fa42003-04-15 14:10:09 +0000411
Anthony Baxter12b6f6c2005-03-29 13:36:16 +0000412 /* Now we decref the exception classes. After this point nothing
413 can raise an exception. That's okay, because each Fini() method
414 below has been checked to make sure no exceptions are ever
415 raised.
416 */
417
418 _PyExc_Fini();
419
Guido van Rossumd922fa42003-04-15 14:10:09 +0000420 /* Delete current thread */
Barry Warsawf242aa02000-05-25 23:09:49 +0000421 PyThreadState_Swap(NULL);
422 PyInterpreterState_Delete(interp);
423
Guido van Rossumd922fa42003-04-15 14:10:09 +0000424 /* Sundry finalizers */
Guido van Rossumcc283f51997-08-05 02:22:03 +0000425 PyMethod_Fini();
426 PyFrame_Fini();
427 PyCFunction_Fini();
428 PyTuple_Fini();
Raymond Hettingerfb09f0e2004-10-07 03:58:07 +0000429 PyList_Fini();
Raymond Hettingerd7946662005-08-01 21:39:29 +0000430 PySet_Fini();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000431 PyString_Fini();
Guido van Rossumcc283f51997-08-05 02:22:03 +0000432 PyInt_Fini();
433 PyFloat_Fini();
434
Marc-André Lemburg95de5c12002-04-08 08:19:36 +0000435#ifdef Py_USING_UNICODE
436 /* Cleanup Unicode implementation */
437 _PyUnicode_Fini();
438#endif
439
Guido van Rossumcc283f51997-08-05 02:22:03 +0000440 /* XXX Still allocated:
441 - various static ad-hoc pointers to interned strings
442 - int and float free list blocks
443 - whatever various modules and libraries allocate
444 */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000445
446 PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
Guido van Rossumcc283f51997-08-05 02:22:03 +0000447
Tim Peters269b2a62003-04-17 19:52:29 +0000448#ifdef Py_TRACE_REFS
449 /* Display addresses (& refcnts) of all objects still alive.
450 * An address can be used to find the repr of the object, printed
451 * above by _Py_PrintReferences.
452 */
453 if (Py_GETENV("PYTHONDUMPREFS"))
454 _Py_PrintReferenceAddresses(stderr);
455#endif /* Py_TRACE_REFS */
Tim Peters0e871182002-04-13 08:29:14 +0000456#ifdef PYMALLOC_DEBUG
457 if (Py_GETENV("PYTHONMALLOCSTATS"))
458 _PyObject_DebugMallocStats();
459#endif
460
Guido van Rossumcc283f51997-08-05 02:22:03 +0000461 call_ll_exitfuncs();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000462}
463
464/* Create and initialize a new interpreter and thread, and return the
465 new thread. This requires that Py_Initialize() has been called
466 first.
467
468 Unsuccessful initialization yields a NULL pointer. Note that *no*
469 exception information is available even in this case -- the
470 exception information is held in the thread, and there is no
471 thread.
472
473 Locking: as above.
474
475*/
476
477PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000478Py_NewInterpreter(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000479{
480 PyInterpreterState *interp;
481 PyThreadState *tstate, *save_tstate;
482 PyObject *bimod, *sysmod;
483
484 if (!initialized)
485 Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
486
487 interp = PyInterpreterState_New();
488 if (interp == NULL)
489 return NULL;
490
491 tstate = PyThreadState_New(interp);
492 if (tstate == NULL) {
493 PyInterpreterState_Delete(interp);
494 return NULL;
495 }
496
497 save_tstate = PyThreadState_Swap(tstate);
498
499 /* XXX The following is lax in error checking */
500
501 interp->modules = PyDict_New();
502
503 bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
504 if (bimod != NULL) {
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000505 interp->builtins = PyModule_GetDict(bimod);
506 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000507 }
508 sysmod = _PyImport_FindExtension("sys", "sys");
509 if (bimod != NULL && sysmod != NULL) {
510 interp->sysdict = PyModule_GetDict(sysmod);
511 Py_INCREF(interp->sysdict);
512 PySys_SetPath(Py_GetPath());
513 PyDict_SetItemString(interp->sysdict, "modules",
514 interp->modules);
Martin v. Löwisd7ceb222003-01-22 09:00:38 +0000515 _PyImportHooks_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000516 initmain();
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000517 if (!Py_NoSiteFlag)
518 initsite();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000519 }
520
521 if (!PyErr_Occurred())
522 return tstate;
523
524 /* Oops, it didn't work. Undo it all. */
525
526 PyErr_Print();
527 PyThreadState_Clear(tstate);
528 PyThreadState_Swap(save_tstate);
529 PyThreadState_Delete(tstate);
530 PyInterpreterState_Delete(interp);
531
532 return NULL;
533}
534
535/* Delete an interpreter and its last thread. This requires that the
536 given thread state is current, that the thread has no remaining
537 frames, and that it is its interpreter's only remaining thread.
538 It is a fatal error to violate these constraints.
539
540 (Py_Finalize() doesn't have these constraints -- it zaps
541 everything, regardless.)
542
543 Locking: as above.
544
545*/
546
547void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000548Py_EndInterpreter(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000549{
550 PyInterpreterState *interp = tstate->interp;
551
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000552 if (tstate != PyThreadState_GET())
Guido van Rossum25ce5661997-08-02 03:10:38 +0000553 Py_FatalError("Py_EndInterpreter: thread is not current");
554 if (tstate->frame != NULL)
555 Py_FatalError("Py_EndInterpreter: thread still has a frame");
556 if (tstate != interp->tstate_head || tstate->next != NULL)
557 Py_FatalError("Py_EndInterpreter: not the last thread");
558
559 PyImport_Cleanup();
560 PyInterpreterState_Clear(interp);
561 PyThreadState_Swap(NULL);
562 PyInterpreterState_Delete(interp);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000563}
564
565static char *progname = "python";
566
567void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000568Py_SetProgramName(char *pn)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000569{
570 if (pn && *pn)
571 progname = pn;
572}
573
574char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000575Py_GetProgramName(void)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000576{
577 return progname;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000578}
579
Guido van Rossuma61691e1998-02-06 22:27:24 +0000580static char *default_home = NULL;
581
582void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000583Py_SetPythonHome(char *home)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000584{
585 default_home = home;
586}
587
588char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000589Py_GetPythonHome(void)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000590{
591 char *home = default_home;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000592 if (home == NULL && !Py_IgnoreEnvironmentFlag)
593 home = Py_GETENV("PYTHONHOME");
Guido van Rossuma61691e1998-02-06 22:27:24 +0000594 return home;
595}
596
Guido van Rossum6135a871995-01-09 17:53:26 +0000597/* Create __main__ module */
598
599static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000600initmain(void)
Guido van Rossum6135a871995-01-09 17:53:26 +0000601{
Guido van Rossum82598051997-03-05 00:20:32 +0000602 PyObject *m, *d;
603 m = PyImport_AddModule("__main__");
Guido van Rossum6135a871995-01-09 17:53:26 +0000604 if (m == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +0000605 Py_FatalError("can't create __main__ module");
606 d = PyModule_GetDict(m);
607 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
Guido van Rossum858cb731997-11-19 16:15:37 +0000608 PyObject *bimod = PyImport_ImportModule("__builtin__");
609 if (bimod == NULL ||
610 PyDict_SetItemString(d, "__builtins__", bimod) != 0)
Guido van Rossum82598051997-03-05 00:20:32 +0000611 Py_FatalError("can't add __builtins__ to __main__");
Barry Warsaw3d05b1a1999-01-29 21:30:22 +0000612 Py_DECREF(bimod);
Guido van Rossum6135a871995-01-09 17:53:26 +0000613 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000614}
615
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000616/* Import the site module (not into __main__ though) */
617
618static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000619initsite(void)
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000620{
621 PyObject *m, *f;
622 m = PyImport_ImportModule("site");
623 if (m == NULL) {
624 f = PySys_GetObject("stderr");
625 if (Py_VerboseFlag) {
626 PyFile_WriteString(
627 "'import site' failed; traceback:\n", f);
628 PyErr_Print();
629 }
630 else {
631 PyFile_WriteString(
632 "'import site' failed; use -v for traceback\n", f);
633 PyErr_Clear();
634 }
635 }
636 else {
637 Py_DECREF(m);
638 }
639}
640
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000641/* Parse input from a file and execute it */
642
643int
Martin v. Löwis056a69c2006-03-01 16:55:42 +0000644PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000645 PyCompilerFlags *flags)
646{
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000647 if (filename == NULL)
648 filename = "???";
Guido van Rossum0df002c2000-08-27 19:21:52 +0000649 if (Py_FdIsInteractive(fp, filename)) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000650 int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
Guido van Rossum0df002c2000-08-27 19:21:52 +0000651 if (closeit)
652 fclose(fp);
653 return err;
654 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000655 else
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000656 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000657}
658
659int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000660PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000661{
Guido van Rossum82598051997-03-05 00:20:32 +0000662 PyObject *v;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000663 int ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000664 PyCompilerFlags local_flags;
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000665
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000666 if (flags == NULL) {
667 flags = &local_flags;
Tim Peters5ba58662001-07-16 02:29:45 +0000668 local_flags.cf_flags = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000669 }
Guido van Rossum82598051997-03-05 00:20:32 +0000670 v = PySys_GetObject("ps1");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000671 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000672 PySys_SetObject("ps1", v = PyString_FromString(">>> "));
673 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000674 }
Guido van Rossum82598051997-03-05 00:20:32 +0000675 v = PySys_GetObject("ps2");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000676 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000677 PySys_SetObject("ps2", v = PyString_FromString("... "));
678 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000679 }
680 for (;;) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000681 ret = PyRun_InteractiveOneFlags(fp, filename, flags);
Neal Norwitz4281cef2006-03-04 19:58:13 +0000682 PRINT_TOTAL_REFS()
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000683 if (ret == E_EOF)
684 return 0;
685 /*
686 if (ret == E_NOMEM)
687 return -1;
688 */
689 }
690}
691
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000692/* compute parser flags based on compiler flags */
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000693#define PARSER_FLAGS(flags) \
Thomas Wouters34aa7ba2006-02-28 19:02:24 +0000694 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
Guido van Rossum45aecf42006-03-15 04:58:47 +0000695 PyPARSE_DONT_IMPLY_DEDENT : 0)) : 0)
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000696
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000697int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000698PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000699{
Guido van Rossum82598051997-03-05 00:20:32 +0000700 PyObject *m, *d, *v, *w;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000701 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +0000702 PyArena *arena;
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000703 char *ps1 = "", *ps2 = "";
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000704 int errcode = 0;
Tim Petersfe2127d2001-07-16 05:37:24 +0000705
Guido van Rossum82598051997-03-05 00:20:32 +0000706 v = PySys_GetObject("ps1");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000707 if (v != NULL) {
708 v = PyObject_Str(v);
709 if (v == NULL)
710 PyErr_Clear();
711 else if (PyString_Check(v))
712 ps1 = PyString_AsString(v);
713 }
Guido van Rossum82598051997-03-05 00:20:32 +0000714 w = PySys_GetObject("ps2");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000715 if (w != NULL) {
716 w = PyObject_Str(w);
717 if (w == NULL)
718 PyErr_Clear();
719 else if (PyString_Check(w))
720 ps2 = PyString_AsString(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000721 }
Neal Norwitz9589ee22006-03-04 19:01:22 +0000722 arena = PyArena_New();
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000723 mod = PyParser_ASTFromFile(fp, filename,
724 Py_single_input, ps1, ps2,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000725 flags, &errcode, arena);
Guido van Rossum82598051997-03-05 00:20:32 +0000726 Py_XDECREF(v);
727 Py_XDECREF(w);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000728 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000729 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000730 if (errcode == E_EOF) {
731 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +0000732 return E_EOF;
733 }
Guido van Rossum82598051997-03-05 00:20:32 +0000734 PyErr_Print();
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000735 return -1;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000736 }
Guido van Rossum82598051997-03-05 00:20:32 +0000737 m = PyImport_AddModule("__main__");
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000738 if (m == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000739 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000740 return -1;
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000741 }
Guido van Rossum82598051997-03-05 00:20:32 +0000742 d = PyModule_GetDict(m);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000743 v = run_mod(mod, filename, d, d, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +0000744 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000745 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000746 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000747 return -1;
748 }
Guido van Rossum82598051997-03-05 00:20:32 +0000749 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000750 if (Py_FlushLine())
751 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000752 return 0;
753}
754
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000755/* Check whether a file maybe a pyc file: Look at the extension,
756 the file type, and, if we may close it, at the first few bytes. */
757
758static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000759maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit)
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000760{
761 if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0)
762 return 1;
763
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000764 /* Only look into the file if we are allowed to close it, since
765 it then should also be seekable. */
766 if (closeit) {
767 /* Read only two bytes of the magic. If the file was opened in
768 text mode, the bytes 3 and 4 of the magic (\r\n) might not
769 be read as they are on disk. */
770 unsigned int halfmagic = PyImport_GetMagicNumber() & 0xFFFF;
771 unsigned char buf[2];
Tim Peters3e876562001-02-11 04:35:39 +0000772 /* Mess: In case of -x, the stream is NOT at its start now,
773 and ungetc() was used to push back the first newline,
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000774 which makes the current stream position formally undefined,
775 and a x-platform nightmare.
776 Unfortunately, we have no direct way to know whether -x
777 was specified. So we use a terrible hack: if the current
778 stream position is not 0, we assume -x was specified, and
779 give up. Bug 132850 on SourceForge spells out the
780 hopelessness of trying anything else (fseek and ftell
781 don't work predictably x-platform for text-mode files).
Tim Peters3e876562001-02-11 04:35:39 +0000782 */
Tim Peters3e876562001-02-11 04:35:39 +0000783 int ispyc = 0;
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000784 if (ftell(fp) == 0) {
785 if (fread(buf, 1, 2, fp) == 2 &&
Tim Petersd08e3822003-04-17 15:24:21 +0000786 ((unsigned int)buf[1]<<8 | buf[0]) == halfmagic)
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000787 ispyc = 1;
788 rewind(fp);
789 }
Tim Peters3e876562001-02-11 04:35:39 +0000790 return ispyc;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000791 }
792 return 0;
Tim Petersd08e3822003-04-17 15:24:21 +0000793}
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000794
Guido van Rossum0df002c2000-08-27 19:21:52 +0000795int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000796PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000797 PyCompilerFlags *flags)
798{
Guido van Rossum82598051997-03-05 00:20:32 +0000799 PyObject *m, *d, *v;
Martin v. Löwis95292d62002-12-11 14:04:59 +0000800 const char *ext;
Guido van Rossumfdef2711994-09-14 13:31:04 +0000801
Guido van Rossum82598051997-03-05 00:20:32 +0000802 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000803 if (m == NULL)
804 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000805 d = PyModule_GetDict(m);
Fred Drake8ed02042002-10-17 21:24:58 +0000806 if (PyDict_GetItemString(d, "__file__") == NULL) {
807 PyObject *f = PyString_FromString(filename);
808 if (f == NULL)
809 return -1;
810 if (PyDict_SetItemString(d, "__file__", f) < 0) {
811 Py_DECREF(f);
812 return -1;
813 }
814 Py_DECREF(f);
815 }
Guido van Rossumfdef2711994-09-14 13:31:04 +0000816 ext = filename + strlen(filename) - 4;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000817 if (maybe_pyc_file(fp, filename, ext, closeit)) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000818 /* Try to run a pyc file. First, re-open in binary */
Guido van Rossum0df002c2000-08-27 19:21:52 +0000819 if (closeit)
820 fclose(fp);
Fred Drake8ed02042002-10-17 21:24:58 +0000821 if ((fp = fopen(filename, "rb")) == NULL) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000822 fprintf(stderr, "python: Can't reopen .pyc file\n");
823 return -1;
824 }
Guido van Rossum2a7f58d1997-04-02 05:28:38 +0000825 /* Turn on optimization if a .pyo file is given */
826 if (strcmp(ext, ".pyo") == 0)
827 Py_OptimizeFlag = 1;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000828 v = run_pyc_file(fp, filename, d, d, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000829 } else {
Tim Petersd08e3822003-04-17 15:24:21 +0000830 v = PyRun_FileExFlags(fp, filename, Py_file_input, d, d,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000831 closeit, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000832 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000833 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000834 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000835 return -1;
836 }
Guido van Rossum82598051997-03-05 00:20:32 +0000837 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000838 if (Py_FlushLine())
839 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000840 return 0;
841}
842
843int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000844PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
Guido van Rossum393661d2001-08-31 17:40:15 +0000845{
Guido van Rossum82598051997-03-05 00:20:32 +0000846 PyObject *m, *d, *v;
847 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000848 if (m == NULL)
849 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000850 d = PyModule_GetDict(m);
Guido van Rossum393661d2001-08-31 17:40:15 +0000851 v = PyRun_StringFlags(command, Py_file_input, d, d, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000852 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000853 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000854 return -1;
855 }
Guido van Rossum82598051997-03-05 00:20:32 +0000856 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000857 if (Py_FlushLine())
858 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000859 return 0;
860}
861
Barry Warsaw035574d1997-08-29 22:07:17 +0000862static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000863parse_syntax_error(PyObject *err, PyObject **message, const char **filename,
864 int *lineno, int *offset, const char **text)
Barry Warsaw035574d1997-08-29 22:07:17 +0000865{
866 long hold;
867 PyObject *v;
868
869 /* old style errors */
870 if (PyTuple_Check(err))
Neal Norwitz78293352002-04-01 01:41:20 +0000871 return PyArg_ParseTuple(err, "O(ziiz)", message, filename,
Neal Norwitz9589ee22006-03-04 19:01:22 +0000872 lineno, offset, text);
Barry Warsaw035574d1997-08-29 22:07:17 +0000873
874 /* new style errors. `err' is an instance */
875
876 if (! (v = PyObject_GetAttrString(err, "msg")))
877 goto finally;
878 *message = v;
879
880 if (!(v = PyObject_GetAttrString(err, "filename")))
881 goto finally;
882 if (v == Py_None)
883 *filename = NULL;
884 else if (! (*filename = PyString_AsString(v)))
885 goto finally;
886
887 Py_DECREF(v);
888 if (!(v = PyObject_GetAttrString(err, "lineno")))
889 goto finally;
890 hold = PyInt_AsLong(v);
891 Py_DECREF(v);
892 v = NULL;
893 if (hold < 0 && PyErr_Occurred())
894 goto finally;
895 *lineno = (int)hold;
896
897 if (!(v = PyObject_GetAttrString(err, "offset")))
898 goto finally;
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000899 if (v == Py_None) {
900 *offset = -1;
901 Py_DECREF(v);
902 v = NULL;
903 } else {
904 hold = PyInt_AsLong(v);
905 Py_DECREF(v);
906 v = NULL;
907 if (hold < 0 && PyErr_Occurred())
908 goto finally;
909 *offset = (int)hold;
910 }
Barry Warsaw035574d1997-08-29 22:07:17 +0000911
912 if (!(v = PyObject_GetAttrString(err, "text")))
913 goto finally;
914 if (v == Py_None)
915 *text = NULL;
916 else if (! (*text = PyString_AsString(v)))
917 goto finally;
918 Py_DECREF(v);
919 return 1;
920
921finally:
922 Py_XDECREF(v);
923 return 0;
924}
925
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000926void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000927PyErr_Print(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000928{
Guido van Rossuma61691e1998-02-06 22:27:24 +0000929 PyErr_PrintEx(1);
930}
931
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000932static void
Martin v. Löwis95292d62002-12-11 14:04:59 +0000933print_error_text(PyObject *f, int offset, const char *text)
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000934{
935 char *nl;
936 if (offset >= 0) {
937 if (offset > 0 && offset == (int)strlen(text))
938 offset--;
939 for (;;) {
940 nl = strchr(text, '\n');
941 if (nl == NULL || nl-text >= offset)
942 break;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000943 offset -= (int)(nl+1-text);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000944 text = nl+1;
945 }
946 while (*text == ' ' || *text == '\t') {
947 text++;
948 offset--;
949 }
950 }
951 PyFile_WriteString(" ", f);
952 PyFile_WriteString(text, f);
953 if (*text == '\0' || text[strlen(text)-1] != '\n')
954 PyFile_WriteString("\n", f);
955 if (offset == -1)
956 return;
957 PyFile_WriteString(" ", f);
958 offset--;
959 while (offset > 0) {
960 PyFile_WriteString(" ", f);
961 offset--;
962 }
963 PyFile_WriteString("^\n", f);
964}
965
Guido van Rossum66e8e862001-03-23 17:54:43 +0000966static void
967handle_system_exit(void)
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000968{
Neal Norwitz9589ee22006-03-04 19:01:22 +0000969 PyObject *exception, *value, *tb;
970 int exitcode = 0;
Tim Peterscf615b52003-04-19 18:47:02 +0000971
Guido van Rossum66e8e862001-03-23 17:54:43 +0000972 PyErr_Fetch(&exception, &value, &tb);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000973 if (Py_FlushLine())
974 PyErr_Clear();
975 fflush(stdout);
976 if (value == NULL || value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +0000977 goto done;
Brett Cannonbf364092006-03-01 04:25:17 +0000978 if (PyExceptionInstance_Check(value)) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000979 /* The error code should be in the `code' attribute. */
980 PyObject *code = PyObject_GetAttrString(value, "code");
981 if (code) {
982 Py_DECREF(value);
983 value = code;
984 if (value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +0000985 goto done;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000986 }
987 /* If we failed to dig out the 'code' attribute,
988 just let the else clause below print the error. */
989 }
990 if (PyInt_Check(value))
Tim Peterscf615b52003-04-19 18:47:02 +0000991 exitcode = (int)PyInt_AsLong(value);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000992 else {
993 PyObject_Print(value, stderr, Py_PRINT_RAW);
994 PySys_WriteStderr("\n");
Tim Peterscf615b52003-04-19 18:47:02 +0000995 exitcode = 1;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +0000996 }
Tim Peterscf615b52003-04-19 18:47:02 +0000997 done:
Neal Norwitz9589ee22006-03-04 19:01:22 +0000998 /* Restore and clear the exception info, in order to properly decref
999 * the exception, value, and traceback. If we just exit instead,
1000 * these leak, which confuses PYTHONDUMPREFS output, and may prevent
1001 * some finalizers from running.
1002 */
Tim Peterscf615b52003-04-19 18:47:02 +00001003 PyErr_Restore(exception, value, tb);
1004 PyErr_Clear();
1005 Py_Exit(exitcode);
1006 /* NOTREACHED */
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001007}
1008
1009void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001010PyErr_PrintEx(int set_sys_last_vars)
Guido van Rossuma61691e1998-02-06 22:27:24 +00001011{
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001012 PyObject *exception, *v, *tb, *hook;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001013
1014 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1015 handle_system_exit();
1016 }
Guido van Rossum82598051997-03-05 00:20:32 +00001017 PyErr_Fetch(&exception, &v, &tb);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001018 if (exception == NULL)
1019 return;
Barry Warsaw035574d1997-08-29 22:07:17 +00001020 PyErr_NormalizeException(&exception, &v, &tb);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001021 if (exception == NULL)
Guido van Rossum296b4751997-05-23 00:19:20 +00001022 return;
Guido van Rossum9d785502006-03-07 18:31:44 +00001023 /* Now we know v != NULL too */
Guido van Rossuma61691e1998-02-06 22:27:24 +00001024 if (set_sys_last_vars) {
1025 PySys_SetObject("last_type", exception);
1026 PySys_SetObject("last_value", v);
1027 PySys_SetObject("last_traceback", tb);
1028 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001029 hook = PySys_GetObject("excepthook");
1030 if (hook) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001031 PyObject *args = PyTuple_Pack(3,
Guido van Rossum9d785502006-03-07 18:31:44 +00001032 exception, v, tb ? tb : Py_None);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001033 PyObject *result = PyEval_CallObject(hook, args);
1034 if (result == NULL) {
1035 PyObject *exception2, *v2, *tb2;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001036 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1037 handle_system_exit();
1038 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001039 PyErr_Fetch(&exception2, &v2, &tb2);
1040 PyErr_NormalizeException(&exception2, &v2, &tb2);
1041 if (Py_FlushLine())
1042 PyErr_Clear();
1043 fflush(stdout);
1044 PySys_WriteStderr("Error in sys.excepthook:\n");
1045 PyErr_Display(exception2, v2, tb2);
1046 PySys_WriteStderr("\nOriginal exception was:\n");
1047 PyErr_Display(exception, v, tb);
Jeremy Hylton07028582001-12-07 15:35:35 +00001048 Py_XDECREF(exception2);
1049 Py_XDECREF(v2);
1050 Py_XDECREF(tb2);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001051 }
1052 Py_XDECREF(result);
1053 Py_XDECREF(args);
1054 } else {
1055 PySys_WriteStderr("sys.excepthook is missing\n");
1056 PyErr_Display(exception, v, tb);
1057 }
1058 Py_XDECREF(exception);
1059 Py_XDECREF(v);
1060 Py_XDECREF(tb);
1061}
1062
1063void PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb)
1064{
1065 int err = 0;
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001066 PyObject *f = PySys_GetObject("stderr");
Armin Rigo5d2c6832004-03-22 20:16:58 +00001067 Py_INCREF(value);
Guido van Rossum3165fe61992-09-25 21:59:05 +00001068 if (f == NULL)
1069 fprintf(stderr, "lost sys.stderr\n");
1070 else {
Guido van Rossum0829c751998-02-28 04:31:39 +00001071 if (Py_FlushLine())
1072 PyErr_Clear();
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001073 fflush(stdout);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001074 if (tb && tb != Py_None)
1075 err = PyTraceBack_Print(tb, f);
Barry Warsaw36b8f941997-08-26 18:09:48 +00001076 if (err == 0 &&
Armin Rigo5d2c6832004-03-22 20:16:58 +00001077 PyObject_HasAttrString(value, "print_file_and_line"))
Barry Warsaw36b8f941997-08-26 18:09:48 +00001078 {
Guido van Rossum82598051997-03-05 00:20:32 +00001079 PyObject *message;
Martin v. Löwis95292d62002-12-11 14:04:59 +00001080 const char *filename, *text;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001081 int lineno, offset;
Armin Rigo5d2c6832004-03-22 20:16:58 +00001082 if (!parse_syntax_error(value, &message, &filename,
Barry Warsaw035574d1997-08-29 22:07:17 +00001083 &lineno, &offset, &text))
Guido van Rossum82598051997-03-05 00:20:32 +00001084 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001085 else {
1086 char buf[10];
Guido van Rossum82598051997-03-05 00:20:32 +00001087 PyFile_WriteString(" File \"", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001088 if (filename == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +00001089 PyFile_WriteString("<string>", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001090 else
Guido van Rossum82598051997-03-05 00:20:32 +00001091 PyFile_WriteString(filename, f);
1092 PyFile_WriteString("\", line ", f);
Jeremy Hylton518ab1c2001-11-28 20:42:20 +00001093 PyOS_snprintf(buf, sizeof(buf), "%d", lineno);
Guido van Rossum82598051997-03-05 00:20:32 +00001094 PyFile_WriteString(buf, f);
1095 PyFile_WriteString("\n", f);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001096 if (text != NULL)
1097 print_error_text(f, offset, text);
Armin Rigo5d2c6832004-03-22 20:16:58 +00001098 Py_DECREF(value);
1099 value = message;
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001100 /* Can't be bothered to check all those
1101 PyFile_WriteString() calls */
1102 if (PyErr_Occurred())
1103 err = -1;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001104 }
1105 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001106 if (err) {
1107 /* Don't do anything else */
1108 }
Brett Cannonbf364092006-03-01 04:25:17 +00001109 else if (PyExceptionClass_Check(exception)) {
1110 char* className = PyExceptionClass_Name(exception);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001111 PyObject* moduleName =
Brett Cannonbf364092006-03-01 04:25:17 +00001112 PyObject_GetAttrString(exception, "__module__");
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001113
1114 if (moduleName == NULL)
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001115 err = PyFile_WriteString("<unknown>", f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001116 else {
1117 char* modstr = PyString_AsString(moduleName);
Brett Cannon2e63b732006-03-02 18:34:57 +00001118 Py_DECREF(moduleName);
Tim Petersd08e3822003-04-17 15:24:21 +00001119 if (modstr && strcmp(modstr, "exceptions"))
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001120 {
1121 err = PyFile_WriteString(modstr, f);
1122 err += PyFile_WriteString(".", f);
1123 }
1124 }
1125 if (err == 0) {
1126 if (className == NULL)
1127 err = PyFile_WriteString("<unknown>", f);
1128 else
Brett Cannonbf364092006-03-01 04:25:17 +00001129 err = PyFile_WriteString(className, f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001130 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001131 }
1132 else
1133 err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
Brett Cannon2e63b732006-03-02 18:34:57 +00001134 if (err == 0 && (value != Py_None)) {
1135 PyObject *s = PyObject_Str(value);
1136 /* only print colon if the str() of the
1137 object is not the empty string
1138 */
1139 if (s == NULL)
1140 err = -1;
1141 else if (!PyString_Check(s) ||
1142 PyString_GET_SIZE(s) != 0)
1143 err = PyFile_WriteString(": ", f);
1144 if (err == 0)
1145 err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
1146 Py_XDECREF(s);
Guido van Rossum262e1241995-02-07 15:30:45 +00001147 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001148 if (err == 0)
1149 err = PyFile_WriteString("\n", f);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001150 }
Armin Rigo5d2c6832004-03-22 20:16:58 +00001151 Py_DECREF(value);
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001152 /* If an error happened here, don't show it.
1153 XXX This is wrong, but too many callers rely on this behavior. */
1154 if (err != 0)
1155 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001156}
1157
Guido van Rossum82598051997-03-05 00:20:32 +00001158PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001159PyRun_StringFlags(const char *str, int start, PyObject *globals,
1160 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001161{
Neal Norwitze92fba02006-03-04 18:52:26 +00001162 PyObject *ret = NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001163 PyArena *arena = PyArena_New();
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001164 mod_ty mod = PyParser_ASTFromString(str, "<string>", start, flags,
Neal Norwitz9589ee22006-03-04 19:01:22 +00001165 arena);
Neal Norwitze92fba02006-03-04 18:52:26 +00001166 if (mod != NULL)
1167 ret = run_mod(mod, "<string>", globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001168 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001169 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001170}
1171
1172PyObject *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001173PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001174 PyObject *locals, int closeit, PyCompilerFlags *flags)
1175{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001176 PyObject *ret;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001177 PyArena *arena = PyArena_New();
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001178 mod_ty mod = PyParser_ASTFromFile(fp, filename, start, 0, 0,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001179 flags, NULL, arena);
1180 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001181 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001182 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001183 }
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001184 if (closeit)
1185 fclose(fp);
Neal Norwitze92fba02006-03-04 18:52:26 +00001186 ret = run_mod(mod, filename, globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001187 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001188 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001189}
1190
Guido van Rossum82598051997-03-05 00:20:32 +00001191static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001192run_mod(mod_ty mod, const char *filename, PyObject *globals, PyObject *locals,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001193 PyCompilerFlags *flags, PyArena *arena)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001194{
Guido van Rossum82598051997-03-05 00:20:32 +00001195 PyCodeObject *co;
1196 PyObject *v;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001197 co = PyAST_Compile(mod, filename, flags, arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001198 if (co == NULL)
1199 return NULL;
Guido van Rossum82598051997-03-05 00:20:32 +00001200 v = PyEval_EvalCode(co, globals, locals);
1201 Py_DECREF(co);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001202 return v;
1203}
1204
Guido van Rossum82598051997-03-05 00:20:32 +00001205static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001206run_pyc_file(FILE *fp, const char *filename, PyObject *globals,
1207 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossumfdef2711994-09-14 13:31:04 +00001208{
Guido van Rossum82598051997-03-05 00:20:32 +00001209 PyCodeObject *co;
1210 PyObject *v;
Guido van Rossumfdef2711994-09-14 13:31:04 +00001211 long magic;
Fred Drakee8de31c2000-08-31 05:38:39 +00001212 long PyImport_GetMagicNumber(void);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001213
Guido van Rossum82598051997-03-05 00:20:32 +00001214 magic = PyMarshal_ReadLongFromFile(fp);
1215 if (magic != PyImport_GetMagicNumber()) {
1216 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001217 "Bad magic number in .pyc file");
1218 return NULL;
1219 }
Guido van Rossum82598051997-03-05 00:20:32 +00001220 (void) PyMarshal_ReadLongFromFile(fp);
Tim Petersd9b9ac82001-01-28 00:27:39 +00001221 v = PyMarshal_ReadLastObjectFromFile(fp);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001222 fclose(fp);
Guido van Rossum82598051997-03-05 00:20:32 +00001223 if (v == NULL || !PyCode_Check(v)) {
1224 Py_XDECREF(v);
1225 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001226 "Bad code object in .pyc file");
1227 return NULL;
1228 }
Guido van Rossum82598051997-03-05 00:20:32 +00001229 co = (PyCodeObject *)v;
1230 v = PyEval_EvalCode(co, globals, locals);
Jeremy Hyltonb857ba22001-08-10 21:41:33 +00001231 if (v && flags)
1232 flags->cf_flags |= (co->co_flags & PyCF_MASK);
Guido van Rossum82598051997-03-05 00:20:32 +00001233 Py_DECREF(co);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001234 return v;
1235}
1236
Guido van Rossum82598051997-03-05 00:20:32 +00001237PyObject *
Tim Petersd08e3822003-04-17 15:24:21 +00001238Py_CompileStringFlags(const char *str, const char *filename, int start,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001239 PyCompilerFlags *flags)
1240{
Guido van Rossum82598051997-03-05 00:20:32 +00001241 PyCodeObject *co;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001242 PyArena *arena = PyArena_New();
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001243 mod_ty mod = PyParser_ASTFromString(str, filename, start, flags, arena);
1244 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001245 PyArena_Free(arena);
Guido van Rossum5b722181993-03-30 17:46:03 +00001246 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001247 }
Martin v. Löwis2b366e42006-02-26 22:12:35 +00001248 if (flags && (flags->cf_flags & PyCF_ONLY_AST)) {
Martin v. Löwisbd260da2006-02-26 19:42:26 +00001249 PyObject *result = PyAST_mod2obj(mod);
1250 PyArena_Free(arena);
1251 return result;
1252 }
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001253 co = PyAST_Compile(mod, filename, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001254 PyArena_Free(arena);
Guido van Rossum82598051997-03-05 00:20:32 +00001255 return (PyObject *)co;
Guido van Rossum5b722181993-03-30 17:46:03 +00001256}
1257
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001258struct symtable *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001259Py_SymtableString(const char *str, const char *filename, int start)
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001260{
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001261 struct symtable *st;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001262 PyArena *arena = PyArena_New();
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001263 mod_ty mod = PyParser_ASTFromString(str, filename, start, NULL, arena);
1264 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001265 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001266 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001267 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001268 st = PySymtable_Build(mod, filename, 0);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001269 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001270 return st;
1271}
1272
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001273/* Preferred access to parser is through AST. */
1274mod_ty
1275PyParser_ASTFromString(const char *s, const char *filename, int start,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001276 PyCompilerFlags *flags, PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001277{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001278 mod_ty mod;
1279 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001280 node *n = PyParser_ParseStringFlagsFilename(s, filename,
1281 &_PyParser_Grammar, start, &err,
1282 PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001283 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001284 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001285 PyNode_Free(n);
1286 return mod;
1287 }
1288 else {
1289 err_input(&err);
1290 return NULL;
1291 }
1292}
1293
1294mod_ty
1295PyParser_ASTFromFile(FILE *fp, const char *filename, int start, char *ps1,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001296 char *ps2, PyCompilerFlags *flags, int *errcode,
Neal Norwitz9589ee22006-03-04 19:01:22 +00001297 PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001298{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001299 mod_ty mod;
1300 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001301 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1302 start, ps1, ps2, &err, PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001303 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001304 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001305 PyNode_Free(n);
1306 return mod;
1307 }
1308 else {
1309 err_input(&err);
1310 if (errcode)
1311 *errcode = err.error;
1312 return NULL;
1313 }
1314}
1315
Guido van Rossuma110aa61994-08-29 12:50:44 +00001316/* Simplified interface to parsefile -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001317
Guido van Rossuma110aa61994-08-29 12:50:44 +00001318node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001319PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001320{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001321 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001322 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1323 start, NULL, NULL, &err, flags);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001324 if (n == NULL)
1325 err_input(&err);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001326
Guido van Rossuma110aa61994-08-29 12:50:44 +00001327 return n;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001328}
1329
Guido van Rossuma110aa61994-08-29 12:50:44 +00001330/* Simplified interface to parsestring -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001331
Guido van Rossuma110aa61994-08-29 12:50:44 +00001332node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001333PyParser_SimpleParseStringFlags(const char *str, int start, int flags)
Tim Petersfe2127d2001-07-16 05:37:24 +00001334{
Tim Petersfe2127d2001-07-16 05:37:24 +00001335 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001336 node *n = PyParser_ParseStringFlags(str, &_PyParser_Grammar,
1337 start, &err, flags);
Tim Petersfe2127d2001-07-16 05:37:24 +00001338 if (n == NULL)
1339 err_input(&err);
1340 return n;
1341}
1342
1343node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001344PyParser_SimpleParseStringFlagsFilename(const char *str, const char *filename,
Thomas Heller6b17abf2002-07-09 09:23:27 +00001345 int start, int flags)
1346{
Thomas Heller6b17abf2002-07-09 09:23:27 +00001347 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001348 node *n = PyParser_ParseStringFlagsFilename(str, filename,
1349 &_PyParser_Grammar, start, &err, flags);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001350 if (n == NULL)
1351 err_input(&err);
1352 return n;
1353}
1354
1355node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001356PyParser_SimpleParseStringFilename(const char *str, const char *filename, int start)
Thomas Heller6b17abf2002-07-09 09:23:27 +00001357{
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001358 return PyParser_SimpleParseStringFlagsFilename(str, filename, start, 0);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001359}
1360
Guido van Rossum66ebd912003-04-17 16:02:26 +00001361/* May want to move a more generalized form of this to parsetok.c or
1362 even parser modules. */
1363
1364void
1365PyParser_SetError(perrdetail *err)
1366{
1367 err_input(err);
1368}
1369
Guido van Rossuma110aa61994-08-29 12:50:44 +00001370/* Set the error appropriate to the given input error code (see errcode.h) */
1371
1372static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001373err_input(perrdetail *err)
Guido van Rossuma110aa61994-08-29 12:50:44 +00001374{
Fred Drake85f36392000-07-11 17:53:00 +00001375 PyObject *v, *w, *errtype;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001376 PyObject* u = NULL;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001377 char *msg = NULL;
Fred Drake85f36392000-07-11 17:53:00 +00001378 errtype = PyExc_SyntaxError;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001379 switch (err->error) {
1380 case E_SYNTAX:
Fred Drake85f36392000-07-11 17:53:00 +00001381 errtype = PyExc_IndentationError;
1382 if (err->expected == INDENT)
1383 msg = "expected an indented block";
1384 else if (err->token == INDENT)
1385 msg = "unexpected indent";
1386 else if (err->token == DEDENT)
1387 msg = "unexpected unindent";
1388 else {
1389 errtype = PyExc_SyntaxError;
1390 msg = "invalid syntax";
1391 }
Guido van Rossuma110aa61994-08-29 12:50:44 +00001392 break;
1393 case E_TOKEN:
1394 msg = "invalid token";
Guido van Rossuma110aa61994-08-29 12:50:44 +00001395 break;
Skip Montanaro118ec702002-08-15 01:20:16 +00001396 case E_EOFS:
1397 msg = "EOF while scanning triple-quoted string";
1398 break;
1399 case E_EOLS:
1400 msg = "EOL while scanning single-quoted string";
1401 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001402 case E_INTR:
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00001403 if (!PyErr_Occurred())
1404 PyErr_SetNone(PyExc_KeyboardInterrupt);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001405 return;
1406 case E_NOMEM:
Guido van Rossum82598051997-03-05 00:20:32 +00001407 PyErr_NoMemory();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001408 return;
1409 case E_EOF:
1410 msg = "unexpected EOF while parsing";
1411 break;
Fred Drake85f36392000-07-11 17:53:00 +00001412 case E_TABSPACE:
1413 errtype = PyExc_TabError;
Guido van Rossum560e8ad1998-04-10 19:43:42 +00001414 msg = "inconsistent use of tabs and spaces in indentation";
1415 break;
Jeremy Hylton94988062000-06-20 19:10:44 +00001416 case E_OVERFLOW:
1417 msg = "expression too long";
1418 break;
Fred Drake85f36392000-07-11 17:53:00 +00001419 case E_DEDENT:
1420 errtype = PyExc_IndentationError;
1421 msg = "unindent does not match any outer indentation level";
1422 break;
1423 case E_TOODEEP:
1424 errtype = PyExc_IndentationError;
1425 msg = "too many levels of indentation";
1426 break;
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001427 case E_DECODE: {
1428 PyObject *type, *value, *tb;
1429 PyErr_Fetch(&type, &value, &tb);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001430 if (value != NULL) {
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001431 u = PyObject_Str(value);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001432 if (u != NULL) {
1433 msg = PyString_AsString(u);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001434 }
1435 }
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001436 if (msg == NULL)
1437 msg = "unknown decode error";
Neal Norwitzdb83eb32005-12-18 05:29:30 +00001438 Py_XDECREF(type);
1439 Py_XDECREF(value);
Neal Norwitz40d37812005-10-02 01:48:49 +00001440 Py_XDECREF(tb);
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001441 break;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001442 }
Martin v. Löwis4bf108d2005-03-03 11:45:45 +00001443 case E_LINECONT:
1444 msg = "unexpected character after line continuation character";
1445 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001446 default:
1447 fprintf(stderr, "error=%d\n", err->error);
1448 msg = "unknown parsing error";
1449 break;
1450 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001451 v = Py_BuildValue("(ziiz)", err->filename,
1452 err->lineno, err->offset, err->text);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001453 if (err->text != NULL) {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001454 PyMem_DEL(err->text);
1455 err->text = NULL;
1456 }
1457 w = NULL;
1458 if (v != NULL)
1459 w = Py_BuildValue("(sO)", msg, v);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001460 Py_XDECREF(u);
Guido van Rossum41318302001-03-23 04:01:07 +00001461 Py_XDECREF(v);
Fred Drake85f36392000-07-11 17:53:00 +00001462 PyErr_SetObject(errtype, w);
Guido van Rossum82598051997-03-05 00:20:32 +00001463 Py_XDECREF(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001464}
1465
1466/* Print fatal error message and abort */
1467
1468void
Tim Peters7c321a82002-07-09 02:57:01 +00001469Py_FatalError(const char *msg)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001470{
Guido van Rossum83dd6c31994-09-29 09:38:33 +00001471 fprintf(stderr, "Fatal Python error: %s\n", msg);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001472#ifdef MS_WINDOWS
Guido van Rossum23c94461997-05-22 20:21:30 +00001473 OutputDebugString("Fatal Python error: ");
Guido van Rossuma44823b1995-03-14 15:01:17 +00001474 OutputDebugString(msg);
1475 OutputDebugString("\n");
Guido van Rossum0ba35361998-08-13 13:33:16 +00001476#ifdef _DEBUG
1477 DebugBreak();
Guido van Rossuma44823b1995-03-14 15:01:17 +00001478#endif
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001479#endif /* MS_WINDOWS */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001480 abort();
1481}
1482
1483/* Clean up and exit */
1484
Guido van Rossuma110aa61994-08-29 12:50:44 +00001485#ifdef WITH_THREAD
Guido van Rossum49b56061998-10-01 20:42:43 +00001486#include "pythread.h"
Guido van Rossumf9f2e821992-08-17 08:59:08 +00001487#endif
1488
Guido van Rossum2dcfc961998-10-01 16:01:57 +00001489#define NEXITFUNCS 32
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001490static void (*exitfuncs[NEXITFUNCS])(void);
Guido van Rossum1662dd51994-09-07 14:38:28 +00001491static int nexitfuncs = 0;
1492
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001493int Py_AtExit(void (*func)(void))
Guido van Rossum1662dd51994-09-07 14:38:28 +00001494{
1495 if (nexitfuncs >= NEXITFUNCS)
1496 return -1;
1497 exitfuncs[nexitfuncs++] = func;
1498 return 0;
1499}
1500
Guido van Rossumcc283f51997-08-05 02:22:03 +00001501static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001502call_sys_exitfunc(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001503{
Guido van Rossum82598051997-03-05 00:20:32 +00001504 PyObject *exitfunc = PySys_GetObject("exitfunc");
Guido van Rossum59bff391992-09-03 20:28:00 +00001505
1506 if (exitfunc) {
Fred Drake6a12d8d2001-03-23 17:34:02 +00001507 PyObject *res;
Guido van Rossum82598051997-03-05 00:20:32 +00001508 Py_INCREF(exitfunc);
1509 PySys_SetObject("exitfunc", (PyObject *)NULL);
1510 res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
Guido van Rossum59bff391992-09-03 20:28:00 +00001511 if (res == NULL) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001512 if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
1513 PySys_WriteStderr("Error in sys.exitfunc:\n");
1514 }
Guido van Rossum82598051997-03-05 00:20:32 +00001515 PyErr_Print();
Guido van Rossum59bff391992-09-03 20:28:00 +00001516 }
Guido van Rossum82598051997-03-05 00:20:32 +00001517 Py_DECREF(exitfunc);
Guido van Rossum59bff391992-09-03 20:28:00 +00001518 }
1519
Guido van Rossum0829c751998-02-28 04:31:39 +00001520 if (Py_FlushLine())
1521 PyErr_Clear();
Guido van Rossumcc283f51997-08-05 02:22:03 +00001522}
Guido van Rossum1662dd51994-09-07 14:38:28 +00001523
Guido van Rossumcc283f51997-08-05 02:22:03 +00001524static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001525call_ll_exitfuncs(void)
Guido van Rossumcc283f51997-08-05 02:22:03 +00001526{
Guido van Rossum1662dd51994-09-07 14:38:28 +00001527 while (nexitfuncs > 0)
1528 (*exitfuncs[--nexitfuncs])();
Guido van Rossum25ce5661997-08-02 03:10:38 +00001529
1530 fflush(stdout);
1531 fflush(stderr);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001532}
1533
1534void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001535Py_Exit(int sts)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001536{
Guido van Rossumcc283f51997-08-05 02:22:03 +00001537 Py_Finalize();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001538
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001539 exit(sts);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001540}
1541
Guido van Rossumf1dc5661993-07-05 10:31:29 +00001542static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001543initsigs(void)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001544{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001545#ifdef SIGPIPE
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001546 PyOS_setsig(SIGPIPE, SIG_IGN);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001547#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +00001548#ifdef SIGXFZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001549 PyOS_setsig(SIGXFZ, SIG_IGN);
Guido van Rossum70d893a2001-08-16 08:21:42 +00001550#endif
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001551#ifdef SIGXFSZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001552 PyOS_setsig(SIGXFSZ, SIG_IGN);
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001553#endif
Guido van Rossum82598051997-03-05 00:20:32 +00001554 PyOS_InitInterrupts(); /* May imply initsignal() */
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001555}
1556
Guido van Rossum7433b121997-02-14 19:45:36 +00001557
1558/*
1559 * The file descriptor fd is considered ``interactive'' if either
1560 * a) isatty(fd) is TRUE, or
1561 * b) the -i flag was given, and the filename associated with
1562 * the descriptor is NULL or "<stdin>" or "???".
1563 */
1564int
Martin v. Löwis95292d62002-12-11 14:04:59 +00001565Py_FdIsInteractive(FILE *fp, const char *filename)
Guido van Rossum7433b121997-02-14 19:45:36 +00001566{
1567 if (isatty((int)fileno(fp)))
1568 return 1;
1569 if (!Py_InteractiveFlag)
1570 return 0;
1571 return (filename == NULL) ||
1572 (strcmp(filename, "<stdin>") == 0) ||
1573 (strcmp(filename, "???") == 0);
1574}
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001575
1576
Tim Petersd08e3822003-04-17 15:24:21 +00001577#if defined(USE_STACKCHECK)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001578#if defined(WIN32) && defined(_MSC_VER)
1579
1580/* Stack checking for Microsoft C */
1581
1582#include <malloc.h>
1583#include <excpt.h>
1584
Fred Drakee8de31c2000-08-31 05:38:39 +00001585/*
1586 * Return non-zero when we run out of memory on the stack; zero otherwise.
1587 */
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001588int
Fred Drake399739f2000-08-31 05:52:44 +00001589PyOS_CheckStack(void)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001590{
1591 __try {
Tim Peters92e4dd82002-10-05 01:47:34 +00001592 /* alloca throws a stack overflow exception if there's
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001593 not enough space left on the stack */
Tim Peters92e4dd82002-10-05 01:47:34 +00001594 alloca(PYOS_STACK_MARGIN * sizeof(void*));
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001595 return 0;
1596 } __except (EXCEPTION_EXECUTE_HANDLER) {
1597 /* just ignore all errors */
1598 }
1599 return 1;
1600}
1601
1602#endif /* WIN32 && _MSC_VER */
1603
1604/* Alternate implementations can be added here... */
1605
1606#endif /* USE_STACKCHECK */
Guido van Rossum6f256182000-09-16 16:32:19 +00001607
1608
1609/* Wrappers around sigaction() or signal(). */
1610
1611PyOS_sighandler_t
1612PyOS_getsig(int sig)
1613{
1614#ifdef HAVE_SIGACTION
1615 struct sigaction context;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001616 if (sigaction(sig, NULL, &context) == -1)
1617 return SIG_ERR;
Guido van Rossum6f256182000-09-16 16:32:19 +00001618 return context.sa_handler;
1619#else
1620 PyOS_sighandler_t handler;
Martin v. Löwisb45b3152005-11-28 17:34:23 +00001621/* Special signal handling for the secure CRT in Visual Studio 2005 */
1622#if defined(_MSC_VER) && _MSC_VER >= 1400
1623 switch (sig) {
1624 /* Only these signals are valid */
1625 case SIGINT:
1626 case SIGILL:
1627 case SIGFPE:
1628 case SIGSEGV:
1629 case SIGTERM:
1630 case SIGBREAK:
1631 case SIGABRT:
1632 break;
1633 /* Don't call signal() with other values or it will assert */
1634 default:
1635 return SIG_ERR;
1636 }
1637#endif /* _MSC_VER && _MSC_VER >= 1400 */
Guido van Rossum6f256182000-09-16 16:32:19 +00001638 handler = signal(sig, SIG_IGN);
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001639 if (handler != SIG_ERR)
1640 signal(sig, handler);
Guido van Rossum6f256182000-09-16 16:32:19 +00001641 return handler;
1642#endif
1643}
1644
1645PyOS_sighandler_t
1646PyOS_setsig(int sig, PyOS_sighandler_t handler)
1647{
1648#ifdef HAVE_SIGACTION
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001649 struct sigaction context, ocontext;
Guido van Rossum6f256182000-09-16 16:32:19 +00001650 context.sa_handler = handler;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001651 sigemptyset(&context.sa_mask);
1652 context.sa_flags = 0;
1653 if (sigaction(sig, &context, &ocontext) == -1)
1654 return SIG_ERR;
1655 return ocontext.sa_handler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001656#else
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001657 PyOS_sighandler_t oldhandler;
1658 oldhandler = signal(sig, handler);
1659#ifdef HAVE_SIGINTERRUPT
1660 siginterrupt(sig, 1);
1661#endif
1662 return oldhandler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001663#endif
1664}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001665
1666/* Deprecated C API functions still provided for binary compatiblity */
1667
1668#undef PyParser_SimpleParseFile
1669#undef PyParser_SimpleParseString
1670
1671node *
1672PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
1673{
1674 return PyParser_SimpleParseFileFlags(fp, filename, start, 0);
1675}
1676
1677node *
1678PyParser_SimpleParseString(const char *str, int start)
1679{
1680 return PyParser_SimpleParseStringFlags(str, start, 0);
1681}