blob: f5465c5edeea64076e2bd1a727666c48d38e7323 [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ónsson67387fb2007-04-25 00:17:39 +00007#undef Yield /* undefine macro conflicting with winbase.h */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00008#include "grammar.h"
9#include "node.h"
Fred Drake85f36392000-07-11 17:53:00 +000010#include "token.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000011#include "parsetok.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000012#include "errcode.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000013#include "code.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000014#include "compile.h"
Jeremy Hylton4b38da62001-02-02 18:19:15 +000015#include "symtable.h"
Neal Norwitzadb69fc2005-12-17 20:54:49 +000016#include "pyarena.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000017#include "ast.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +000018#include "eval.h"
Guido van Rossumfdef2711994-09-14 13:31:04 +000019#include "marshal.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +000020
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000021#ifdef HAVE_SIGNAL_H
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000022#include <signal.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000023#endif
Guido van Rossuma9e7dc11992-10-18 18:53:57 +000024
Martin v. Löwis73d538b2003-03-05 15:13:47 +000025#ifdef HAVE_LANGINFO_H
26#include <locale.h>
27#include <langinfo.h>
28#endif
29
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000030#ifdef MS_WINDOWS
Guido van Rossuma44823b1995-03-14 15:01:17 +000031#undef BYTE
32#include "windows.h"
33#endif
34
Neal Norwitz4281cef2006-03-04 19:58:13 +000035#ifndef Py_REF_DEBUG
Tim Peters62e97f02006-03-28 21:44:32 +000036#define PRINT_TOTAL_REFS()
Neal Norwitz4281cef2006-03-04 19:58:13 +000037#else /* Py_REF_DEBUG */
Tim Peters62e97f02006-03-28 21:44:32 +000038#define PRINT_TOTAL_REFS() fprintf(stderr, \
39 "[%" PY_FORMAT_SIZE_T "d refs]\n", \
Armin Rigoe1709372006-04-12 17:06:05 +000040 _Py_GetRefTotal())
Neal Norwitz4281cef2006-03-04 19:58:13 +000041#endif
42
Anthony Baxterac6bd462006-04-13 02:06:09 +000043#ifdef __cplusplus
44extern "C" {
45#endif
46
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000047extern char *Py_GetPath(void);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000048
Guido van Rossum82598051997-03-05 00:20:32 +000049extern grammar _PyParser_Grammar; /* From graminit.c */
Guido van Rossum1984f1e1992-08-04 12:41:02 +000050
Guido van Rossumb73cc041993-11-01 16:28:59 +000051/* Forward */
Tim Petersdbd9ba62000-07-09 03:09:57 +000052static void initmain(void);
53static void initsite(void);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000054static PyObject *run_mod(mod_ty, const char *, PyObject *, PyObject *,
Neal Norwitzadb69fc2005-12-17 20:54:49 +000055 PyCompilerFlags *, PyArena *);
Martin v. Löwis95292d62002-12-11 14:04:59 +000056static PyObject *run_pyc_file(FILE *, const char *, PyObject *, PyObject *,
Jeremy Hyltonbc320242001-03-22 02:47:58 +000057 PyCompilerFlags *);
Tim Petersdbd9ba62000-07-09 03:09:57 +000058static void err_input(perrdetail *);
59static void initsigs(void);
60static void call_sys_exitfunc(void);
61static void call_ll_exitfuncs(void);
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000062extern void _PyUnicode_Init(void);
63extern void _PyUnicode_Fini(void);
Guido van Rossumc94044c2000-03-10 23:03:54 +000064
Mark Hammond8d98d2c2003-04-19 15:41:53 +000065#ifdef WITH_THREAD
66extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *);
67extern void _PyGILState_Fini(void);
68#endif /* WITH_THREAD */
69
Guido van Rossum82598051997-03-05 00:20:32 +000070int Py_DebugFlag; /* Needed by parser.c */
71int Py_VerboseFlag; /* Needed by import.c */
Guido van Rossum7433b121997-02-14 19:45:36 +000072int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
Georg Brandl49aafc92007-03-07 00:34:46 +000073int Py_InspectFlag; /* Needed to determine whether to exit at SystemError */
Guido van Rossumdcc0c131997-08-29 22:32:42 +000074int Py_NoSiteFlag; /* Suppress 'import site' */
Georg Brandl2da0fce2008-01-07 17:09:35 +000075int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.py[co]) */
Barry Warsaw3ce09642000-05-02 19:18:59 +000076int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
Guido van Rossuma61691e1998-02-06 22:27:24 +000077int Py_FrozenFlag; /* Needed by getpath.c */
Guido van Rossumb16d1972000-05-01 17:55:15 +000078int Py_UnicodeFlag = 0; /* Needed by compile.c */
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +000079int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
Tim Peters3caca232001-12-06 06:23:26 +000080/* _XXX Py_QnewFlag should go away in 2.3. It's true iff -Qnew is passed,
81 on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
82 true divisions (which they will be in 2.3). */
83int _Py_QnewFlag = 0;
Guido van Rossum1984f1e1992-08-04 12:41:02 +000084
Mark Hammonda43fd0c2003-02-19 00:33:33 +000085/* Reference to 'warnings' module, to avoid importing it
Mark Hammondedd07732003-07-15 23:03:55 +000086 on the fly when the import lock may be held. See 683658/771097
Mark Hammonda43fd0c2003-02-19 00:33:33 +000087*/
Mark Hammondedd07732003-07-15 23:03:55 +000088static PyObject *warnings_module = NULL;
89
90/* Returns a borrowed reference to the 'warnings' module, or NULL.
91 If the module is returned, it is guaranteed to have been obtained
92 without acquiring the import lock
93*/
Martin v. Löwisa2c17c52003-08-09 09:47:11 +000094PyObject *PyModule_GetWarningsModule(void)
Mark Hammondedd07732003-07-15 23:03:55 +000095{
96 PyObject *typ, *val, *tb;
97 PyObject *all_modules;
98 /* If we managed to get the module at init time, just use it */
99 if (warnings_module)
100 return warnings_module;
101 /* If it wasn't available at init time, it may be available
102 now in sys.modules (common scenario is frozen apps: import
103 at init time fails, but the frozen init code sets up sys.path
104 correctly, then does an implicit import of warnings for us
105 */
106 /* Save and restore any exceptions */
107 PyErr_Fetch(&typ, &val, &tb);
108
Mark Hammond5f4e8ca2003-07-16 01:54:38 +0000109 all_modules = PySys_GetObject("modules");
Mark Hammondedd07732003-07-15 23:03:55 +0000110 if (all_modules) {
111 warnings_module = PyDict_GetItemString(all_modules, "warnings");
112 /* We keep a ref in the global */
113 Py_XINCREF(warnings_module);
114 }
115 PyErr_Restore(typ, val, tb);
116 return warnings_module;
117}
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000118
Guido van Rossum25ce5661997-08-02 03:10:38 +0000119static int initialized = 0;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000120
Thomas Wouters7e474022000-07-16 12:04:32 +0000121/* API to access the initialized flag -- useful for esoteric use */
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000122
123int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000124Py_IsInitialized(void)
Guido van Rossume3c0d5e1997-08-22 04:20:13 +0000125{
126 return initialized;
127}
128
Guido van Rossum25ce5661997-08-02 03:10:38 +0000129/* Global initializations. Can be undone by Py_Finalize(). Don't
130 call this twice without an intervening Py_Finalize() call. When
131 initializations fail, a fatal error is issued and the function does
132 not return. On return, the first thread and interpreter state have
133 been created.
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000134
Guido van Rossum25ce5661997-08-02 03:10:38 +0000135 Locking: you must hold the interpreter lock while calling this.
136 (If the lock has not yet been initialized, that's equivalent to
137 having the lock, but you cannot use multiple threads.)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000138
Guido van Rossum25ce5661997-08-02 03:10:38 +0000139*/
Guido van Rossuma027efa1997-05-05 20:56:21 +0000140
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000141static int
142add_flag(int flag, const char *envs)
143{
144 int env = atoi(envs);
145 if (flag < env)
146 flag = env;
147 if (flag < 1)
148 flag = 1;
149 return flag;
150}
151
Guido van Rossuma027efa1997-05-05 20:56:21 +0000152void
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000153Py_InitializeEx(int install_sigs)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000154{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000155 PyInterpreterState *interp;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000156 PyThreadState *tstate;
157 PyObject *bimod, *sysmod;
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000158 char *p;
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000159#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
160 char *codeset;
161 char *saved_locale;
162 PyObject *sys_stream, *sys_isatty;
163#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +0000164 extern void _Py_ReadyTypes(void);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000165
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000166 if (initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000167 return;
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000168 initialized = 1;
Tim Petersd08e3822003-04-17 15:24:21 +0000169
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000170 if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000171 Py_DebugFlag = add_flag(Py_DebugFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000172 if ((p = Py_GETENV("PYTHONVERBOSE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000173 Py_VerboseFlag = add_flag(Py_VerboseFlag, p);
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000174 if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
Guido van Rossum9abaf4d2001-10-12 22:17:56 +0000175 Py_OptimizeFlag = add_flag(Py_OptimizeFlag, p);
Georg Brandl2da0fce2008-01-07 17:09:35 +0000176 if ((p = Py_GETENV("PYTHONDONTWRITEBYTECODE")) && *p != '\0')
177 Py_DontWriteBytecodeFlag = add_flag(Py_DontWriteBytecodeFlag, p);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000178
Guido van Rossuma027efa1997-05-05 20:56:21 +0000179 interp = PyInterpreterState_New();
180 if (interp == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000181 Py_FatalError("Py_Initialize: can't make first interpreter");
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000182
Guido van Rossuma027efa1997-05-05 20:56:21 +0000183 tstate = PyThreadState_New(interp);
184 if (tstate == NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000185 Py_FatalError("Py_Initialize: can't make first thread");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000186 (void) PyThreadState_Swap(tstate);
187
Guido van Rossum70d893a2001-08-16 08:21:42 +0000188 _Py_ReadyTypes();
Guido van Rossum528b7eb2001-08-07 17:24:28 +0000189
Neal Norwitzb2501f42002-12-31 03:42:13 +0000190 if (!_PyFrame_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000191 Py_FatalError("Py_Initialize: can't init frames");
192
Neal Norwitzb2501f42002-12-31 03:42:13 +0000193 if (!_PyInt_Init())
Neal Norwitzc91ed402002-12-30 22:29:22 +0000194 Py_FatalError("Py_Initialize: can't init ints");
195
Michael W. Hudsonba283e22005-05-27 15:23:20 +0000196 _PyFloat_Init();
197
Guido van Rossum25ce5661997-08-02 03:10:38 +0000198 interp->modules = PyDict_New();
199 if (interp->modules == NULL)
200 Py_FatalError("Py_Initialize: can't make modules dictionary");
Collin Winter276887b2007-03-12 16:11:39 +0000201 interp->modules_reloading = PyDict_New();
202 if (interp->modules_reloading == NULL)
203 Py_FatalError("Py_Initialize: can't make modules_reloading dictionary");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000204
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000205#ifdef Py_USING_UNICODE
Guido van Rossumc94044c2000-03-10 23:03:54 +0000206 /* Init Unicode implementation; relies on the codec registry */
207 _PyUnicode_Init();
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000208#endif
Guido van Rossumc94044c2000-03-10 23:03:54 +0000209
Barry Warsawf242aa02000-05-25 23:09:49 +0000210 bimod = _PyBuiltin_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000211 if (bimod == NULL)
212 Py_FatalError("Py_Initialize: can't initialize __builtin__");
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000213 interp->builtins = PyModule_GetDict(bimod);
Neal Norwitz0f7dbf72006-08-12 03:17:41 +0000214 if (interp->builtins == NULL)
215 Py_FatalError("Py_Initialize: can't initialize builtins dict");
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000216 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000217
218 sysmod = _PySys_Init();
219 if (sysmod == NULL)
220 Py_FatalError("Py_Initialize: can't initialize sys");
221 interp->sysdict = PyModule_GetDict(sysmod);
Neal Norwitz0f7dbf72006-08-12 03:17:41 +0000222 if (interp->sysdict == NULL)
223 Py_FatalError("Py_Initialize: can't initialize sys dict");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000224 Py_INCREF(interp->sysdict);
225 _PyImport_FixupExtension("sys", "sys");
Guido van Rossuma027efa1997-05-05 20:56:21 +0000226 PySys_SetPath(Py_GetPath());
Guido van Rossum25ce5661997-08-02 03:10:38 +0000227 PyDict_SetItemString(interp->sysdict, "modules",
228 interp->modules);
229
Guido van Rossum7c85ab81999-07-08 17:26:56 +0000230 _PyImport_Init();
231
Barry Warsawf242aa02000-05-25 23:09:49 +0000232 /* initialize builtin exceptions */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000233 _PyExc_Init();
Barry Warsaw5821bc52001-08-13 23:04:56 +0000234 _PyImport_FixupExtension("exceptions", "exceptions");
Barry Warsawf242aa02000-05-25 23:09:49 +0000235
Barry Warsaw035574d1997-08-29 22:07:17 +0000236 /* phase 2 of builtins */
Barry Warsaw963b8711997-09-18 16:42:02 +0000237 _PyImport_FixupExtension("__builtin__", "__builtin__");
Barry Warsaw035574d1997-08-29 22:07:17 +0000238
Just van Rossum52e14d62002-12-30 22:08:05 +0000239 _PyImportHooks_Init();
240
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000241 if (install_sigs)
242 initsigs(); /* Signal handling stuff, including initintr() */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000243
244 initmain(); /* Module __main__ */
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000245 if (!Py_NoSiteFlag)
246 initsite(); /* Module site */
Just van Rossum5bfba3a2003-02-25 20:25:12 +0000247
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000248 /* auto-thread-state API, if available */
249#ifdef WITH_THREAD
250 _PyGILState_Init(interp, tstate);
251#endif /* WITH_THREAD */
252
Mark Hammondedd07732003-07-15 23:03:55 +0000253 warnings_module = PyImport_ImportModule("warnings");
254 if (!warnings_module)
255 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000256
257#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
258 /* On Unix, set the file system encoding according to the
259 user's preference, if the CODESET names a well-known
260 Python codec, and Py_FileSystemDefaultEncoding isn't
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000261 initialized by other means. Also set the encoding of
262 stdin and stdout if these are terminals. */
263
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000264 saved_locale = strdup(setlocale(LC_CTYPE, NULL));
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000265 setlocale(LC_CTYPE, "");
266 codeset = nl_langinfo(CODESET);
267 if (codeset && *codeset) {
268 PyObject *enc = PyCodec_Encoder(codeset);
269 if (enc) {
270 codeset = strdup(codeset);
271 Py_DECREF(enc);
272 } else {
273 codeset = NULL;
274 PyErr_Clear();
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000275 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000276 } else
277 codeset = NULL;
278 setlocale(LC_CTYPE, saved_locale);
Martin v. Löwisf56d0152003-11-13 07:43:21 +0000279 free(saved_locale);
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000280
281 if (codeset) {
Michael W. Hudson68debc92003-08-11 12:20:24 +0000282 sys_stream = PySys_GetObject("stdin");
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000283 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
284 if (!sys_isatty)
285 PyErr_Clear();
Thomas Woutersafea5292007-01-23 13:42:00 +0000286 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
287 PyFile_Check(sys_stream)) {
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000288 if (!PyFile_SetEncoding(sys_stream, codeset))
289 Py_FatalError("Cannot set codeset of stdin");
290 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000291 Py_XDECREF(sys_isatty);
292
293 sys_stream = PySys_GetObject("stdout");
294 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
295 if (!sys_isatty)
296 PyErr_Clear();
Thomas Woutersafea5292007-01-23 13:42:00 +0000297 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
298 PyFile_Check(sys_stream)) {
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000299 if (!PyFile_SetEncoding(sys_stream, codeset))
300 Py_FatalError("Cannot set codeset of stdout");
301 }
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000302 Py_XDECREF(sys_isatty);
303
Martin v. Löwisea62d252006-04-03 10:56:49 +0000304 sys_stream = PySys_GetObject("stderr");
305 sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
306 if (!sys_isatty)
307 PyErr_Clear();
Thomas Woutersafea5292007-01-23 13:42:00 +0000308 if(sys_isatty && PyObject_IsTrue(sys_isatty) &&
309 PyFile_Check(sys_stream)) {
Martin v. Löwisea62d252006-04-03 10:56:49 +0000310 if (!PyFile_SetEncoding(sys_stream, codeset))
311 Py_FatalError("Cannot set codeset of stderr");
312 }
313 Py_XDECREF(sys_isatty);
314
Martin v. Löwisa2c17c52003-08-09 09:47:11 +0000315 if (!Py_FileSystemDefaultEncoding)
316 Py_FileSystemDefaultEncoding = codeset;
317 else
318 free(codeset);
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000319 }
320#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +0000321}
322
Martin v. Löwis336e85f2004-08-19 11:31:58 +0000323void
324Py_Initialize(void)
325{
326 Py_InitializeEx(1);
327}
328
329
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000330#ifdef COUNT_ALLOCS
Martin v. Löwis45294a92006-04-18 06:24:08 +0000331extern void dump_counts(FILE*);
Guido van Rossum2edcf0d1998-12-15 16:12:00 +0000332#endif
333
Guido van Rossum25ce5661997-08-02 03:10:38 +0000334/* Undo the effect of Py_Initialize().
335
336 Beware: if multiple interpreter and/or thread states exist, these
337 are not wiped out; only the current thread and interpreter state
338 are deleted. But since everything else is deleted, those other
339 interpreter and thread states should no longer be used.
340
341 (XXX We should do better, e.g. wipe out all interpreters and
342 threads.)
343
344 Locking: as above.
345
346*/
347
348void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000349Py_Finalize(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000350{
351 PyInterpreterState *interp;
352 PyThreadState *tstate;
353
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000354 if (!initialized)
Guido van Rossumaa615051997-08-20 22:40:18 +0000355 return;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000356
Tim Peters384fd102001-01-21 03:40:37 +0000357 /* The interpreter is still entirely intact at this point, and the
358 * exit funcs may be relying on that. In particular, if some thread
359 * or exit func is still waiting to do an import, the import machinery
360 * expects Py_IsInitialized() to return true. So don't say the
361 * interpreter is uninitialized until after the exit funcs have run.
362 * Note that Threading.py uses an exit func to do a join on all the
363 * threads created thru it, so this also protects pending imports in
364 * the threads created via Threading.
365 */
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000366 call_sys_exitfunc();
Tim Peters384fd102001-01-21 03:40:37 +0000367 initialized = 0;
Guido van Rossum4cc462e1998-01-19 22:00:38 +0000368
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000369 /* Get current thread state and interpreter pointer */
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000370 tstate = PyThreadState_GET();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000371 interp = tstate->interp;
372
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000373 /* Disable signal handling */
374 PyOS_FiniInterrupts();
375
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000376 /* drop module references we saved */
Mark Hammondedd07732003-07-15 23:03:55 +0000377 Py_XDECREF(warnings_module);
378 warnings_module = NULL;
Mark Hammonda43fd0c2003-02-19 00:33:33 +0000379
Christian Heimes908caac2008-01-27 23:34:59 +0000380 /* Clear type lookup cache */
381 PyType_ClearCache();
382
Guido van Rossume13ddc92003-04-17 17:29:22 +0000383 /* Collect garbage. This may call finalizers; it's nice to call these
Tim Peters1d7323e2003-12-01 21:35:27 +0000384 * before all modules are destroyed.
385 * XXX If a __del__ or weakref callback is triggered here, and tries to
386 * XXX import a module, bad things can happen, because Python no
387 * XXX longer believes it's initialized.
388 * XXX Fatal Python error: Interpreter not initialized (version mismatch?)
389 * XXX is easy to provoke that way. I've also seen, e.g.,
390 * XXX Exception exceptions.ImportError: 'No module named sha'
391 * XXX in <function callback at 0x008F5718> ignored
392 * XXX but I'm unclear on exactly how that one happens. In any case,
393 * XXX I haven't seen a real-life report of either of these.
Neal Norwitz9589ee22006-03-04 19:01:22 +0000394 */
Guido van Rossume13ddc92003-04-17 17:29:22 +0000395 PyGC_Collect();
Martin v. Löwis45294a92006-04-18 06:24:08 +0000396#ifdef COUNT_ALLOCS
397 /* With COUNT_ALLOCS, it helps to run GC multiple times:
398 each collection might release some types from the type
399 list, so they become garbage. */
400 while (PyGC_Collect() > 0)
401 /* nothing */;
402#endif
Guido van Rossume13ddc92003-04-17 17:29:22 +0000403
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000404 /* Destroy all modules */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000405 PyImport_Cleanup();
Guido van Rossum3a44e1b1997-11-03 21:58:47 +0000406
Guido van Rossume13ddc92003-04-17 17:29:22 +0000407 /* Collect final garbage. This disposes of cycles created by
Tim Peters1d7323e2003-12-01 21:35:27 +0000408 * new-style class definitions, for example.
409 * XXX This is disabled because it caused too many problems. If
410 * XXX a __del__ or weakref callback triggers here, Python code has
411 * XXX a hard time running, because even the sys module has been
412 * XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc).
413 * XXX One symptom is a sequence of information-free messages
414 * XXX coming from threads (if a __del__ or callback is invoked,
415 * XXX other threads can execute too, and any exception they encounter
416 * XXX triggers a comedy of errors as subsystem after subsystem
417 * XXX fails to find what it *expects* to find in sys to help report
418 * XXX the exception and consequent unexpected failures). I've also
419 * XXX seen segfaults then, after adding print statements to the
420 * XXX Python code getting called.
421 */
422#if 0
Guido van Rossume13ddc92003-04-17 17:29:22 +0000423 PyGC_Collect();
Tim Peters1d7323e2003-12-01 21:35:27 +0000424#endif
Guido van Rossume13ddc92003-04-17 17:29:22 +0000425
Guido van Rossum1707aad1997-12-08 23:43:45 +0000426 /* Destroy the database used by _PyImport_{Fixup,Find}Extension */
427 _PyImport_Fini();
428
429 /* Debugging stuff */
430#ifdef COUNT_ALLOCS
Martin v. Löwis45294a92006-04-18 06:24:08 +0000431 dump_counts(stdout);
Guido van Rossum1707aad1997-12-08 23:43:45 +0000432#endif
433
Tim Peters62e97f02006-03-28 21:44:32 +0000434 PRINT_TOTAL_REFS();
Guido van Rossum1707aad1997-12-08 23:43:45 +0000435
Tim Peters9cf25ce2003-04-17 15:21:01 +0000436#ifdef Py_TRACE_REFS
437 /* Display all objects still alive -- this can invoke arbitrary
438 * __repr__ overrides, so requires a mostly-intact interpreter.
439 * Alas, a lot of stuff may still be alive now that will be cleaned
440 * up later.
441 */
Tim Peters269b2a62003-04-17 19:52:29 +0000442 if (Py_GETENV("PYTHONDUMPREFS"))
Tim Peters9cf25ce2003-04-17 15:21:01 +0000443 _Py_PrintReferences(stderr);
Tim Peters9cf25ce2003-04-17 15:21:01 +0000444#endif /* Py_TRACE_REFS */
445
Guido van Rossumd922fa42003-04-15 14:10:09 +0000446 /* Clear interpreter state */
Barry Warsawf242aa02000-05-25 23:09:49 +0000447 PyInterpreterState_Clear(interp);
Guido van Rossumd922fa42003-04-15 14:10:09 +0000448
Anthony Baxter12b6f6c2005-03-29 13:36:16 +0000449 /* Now we decref the exception classes. After this point nothing
450 can raise an exception. That's okay, because each Fini() method
451 below has been checked to make sure no exceptions are ever
452 raised.
453 */
454
455 _PyExc_Fini();
456
Amaury Forgeot d'Arc025c3472007-11-29 23:35:25 +0000457 /* Cleanup auto-thread-state */
458#ifdef WITH_THREAD
459 _PyGILState_Fini();
460#endif /* WITH_THREAD */
461
Guido van Rossumd922fa42003-04-15 14:10:09 +0000462 /* Delete current thread */
Barry Warsawf242aa02000-05-25 23:09:49 +0000463 PyThreadState_Swap(NULL);
464 PyInterpreterState_Delete(interp);
465
Guido van Rossumd922fa42003-04-15 14:10:09 +0000466 /* Sundry finalizers */
Guido van Rossumcc283f51997-08-05 02:22:03 +0000467 PyMethod_Fini();
468 PyFrame_Fini();
469 PyCFunction_Fini();
470 PyTuple_Fini();
Raymond Hettingerfb09f0e2004-10-07 03:58:07 +0000471 PyList_Fini();
Raymond Hettingerd7946662005-08-01 21:39:29 +0000472 PySet_Fini();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000473 PyString_Fini();
Guido van Rossumcc283f51997-08-05 02:22:03 +0000474 PyInt_Fini();
475 PyFloat_Fini();
476
Marc-André Lemburg95de5c12002-04-08 08:19:36 +0000477#ifdef Py_USING_UNICODE
478 /* Cleanup Unicode implementation */
479 _PyUnicode_Fini();
480#endif
481
Guido van Rossumcc283f51997-08-05 02:22:03 +0000482 /* XXX Still allocated:
483 - various static ad-hoc pointers to interned strings
484 - int and float free list blocks
485 - whatever various modules and libraries allocate
486 */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000487
488 PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
Guido van Rossumcc283f51997-08-05 02:22:03 +0000489
Tim Peters269b2a62003-04-17 19:52:29 +0000490#ifdef Py_TRACE_REFS
491 /* Display addresses (& refcnts) of all objects still alive.
492 * An address can be used to find the repr of the object, printed
493 * above by _Py_PrintReferences.
494 */
495 if (Py_GETENV("PYTHONDUMPREFS"))
496 _Py_PrintReferenceAddresses(stderr);
497#endif /* Py_TRACE_REFS */
Tim Peters0e871182002-04-13 08:29:14 +0000498#ifdef PYMALLOC_DEBUG
499 if (Py_GETENV("PYTHONMALLOCSTATS"))
500 _PyObject_DebugMallocStats();
501#endif
502
Guido van Rossumcc283f51997-08-05 02:22:03 +0000503 call_ll_exitfuncs();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000504}
505
506/* Create and initialize a new interpreter and thread, and return the
507 new thread. This requires that Py_Initialize() has been called
508 first.
509
510 Unsuccessful initialization yields a NULL pointer. Note that *no*
511 exception information is available even in this case -- the
512 exception information is held in the thread, and there is no
513 thread.
514
515 Locking: as above.
516
517*/
518
519PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000520Py_NewInterpreter(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000521{
522 PyInterpreterState *interp;
523 PyThreadState *tstate, *save_tstate;
524 PyObject *bimod, *sysmod;
525
526 if (!initialized)
527 Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
528
529 interp = PyInterpreterState_New();
530 if (interp == NULL)
531 return NULL;
532
533 tstate = PyThreadState_New(interp);
534 if (tstate == NULL) {
535 PyInterpreterState_Delete(interp);
536 return NULL;
537 }
538
539 save_tstate = PyThreadState_Swap(tstate);
540
541 /* XXX The following is lax in error checking */
542
543 interp->modules = PyDict_New();
Collin Winter276887b2007-03-12 16:11:39 +0000544 interp->modules_reloading = PyDict_New();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000545
546 bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
547 if (bimod != NULL) {
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000548 interp->builtins = PyModule_GetDict(bimod);
Neal Norwitz0c6ae5b2006-08-21 20:16:24 +0000549 if (interp->builtins == NULL)
550 goto handle_error;
Guido van Rossum4a1f39a1997-11-04 19:36:18 +0000551 Py_INCREF(interp->builtins);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000552 }
553 sysmod = _PyImport_FindExtension("sys", "sys");
554 if (bimod != NULL && sysmod != NULL) {
555 interp->sysdict = PyModule_GetDict(sysmod);
Neal Norwitz0c6ae5b2006-08-21 20:16:24 +0000556 if (interp->sysdict == NULL)
557 goto handle_error;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000558 Py_INCREF(interp->sysdict);
559 PySys_SetPath(Py_GetPath());
560 PyDict_SetItemString(interp->sysdict, "modules",
561 interp->modules);
Martin v. Löwisd7ceb222003-01-22 09:00:38 +0000562 _PyImportHooks_Init();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000563 initmain();
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000564 if (!Py_NoSiteFlag)
565 initsite();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000566 }
567
568 if (!PyErr_Occurred())
569 return tstate;
570
Neal Norwitz0c6ae5b2006-08-21 20:16:24 +0000571handle_error:
Guido van Rossum25ce5661997-08-02 03:10:38 +0000572 /* Oops, it didn't work. Undo it all. */
573
574 PyErr_Print();
575 PyThreadState_Clear(tstate);
576 PyThreadState_Swap(save_tstate);
577 PyThreadState_Delete(tstate);
578 PyInterpreterState_Delete(interp);
579
580 return NULL;
581}
582
583/* Delete an interpreter and its last thread. This requires that the
584 given thread state is current, that the thread has no remaining
585 frames, and that it is its interpreter's only remaining thread.
586 It is a fatal error to violate these constraints.
587
588 (Py_Finalize() doesn't have these constraints -- it zaps
589 everything, regardless.)
590
591 Locking: as above.
592
593*/
594
595void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000596Py_EndInterpreter(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000597{
598 PyInterpreterState *interp = tstate->interp;
599
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000600 if (tstate != PyThreadState_GET())
Guido van Rossum25ce5661997-08-02 03:10:38 +0000601 Py_FatalError("Py_EndInterpreter: thread is not current");
602 if (tstate->frame != NULL)
603 Py_FatalError("Py_EndInterpreter: thread still has a frame");
604 if (tstate != interp->tstate_head || tstate->next != NULL)
605 Py_FatalError("Py_EndInterpreter: not the last thread");
606
607 PyImport_Cleanup();
608 PyInterpreterState_Clear(interp);
609 PyThreadState_Swap(NULL);
610 PyInterpreterState_Delete(interp);
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000611}
612
613static char *progname = "python";
614
615void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000616Py_SetProgramName(char *pn)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000617{
618 if (pn && *pn)
619 progname = pn;
620}
621
622char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000623Py_GetProgramName(void)
Guido van Rossumad6dfda1997-07-19 19:17:22 +0000624{
625 return progname;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000626}
627
Guido van Rossuma61691e1998-02-06 22:27:24 +0000628static char *default_home = NULL;
629
630void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000631Py_SetPythonHome(char *home)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000632{
633 default_home = home;
634}
635
636char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000637Py_GetPythonHome(void)
Guido van Rossuma61691e1998-02-06 22:27:24 +0000638{
639 char *home = default_home;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000640 if (home == NULL && !Py_IgnoreEnvironmentFlag)
641 home = Py_GETENV("PYTHONHOME");
Guido van Rossuma61691e1998-02-06 22:27:24 +0000642 return home;
643}
644
Guido van Rossum6135a871995-01-09 17:53:26 +0000645/* Create __main__ module */
646
647static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000648initmain(void)
Guido van Rossum6135a871995-01-09 17:53:26 +0000649{
Guido van Rossum82598051997-03-05 00:20:32 +0000650 PyObject *m, *d;
651 m = PyImport_AddModule("__main__");
Guido van Rossum6135a871995-01-09 17:53:26 +0000652 if (m == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +0000653 Py_FatalError("can't create __main__ module");
654 d = PyModule_GetDict(m);
655 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
Guido van Rossum858cb731997-11-19 16:15:37 +0000656 PyObject *bimod = PyImport_ImportModule("__builtin__");
657 if (bimod == NULL ||
658 PyDict_SetItemString(d, "__builtins__", bimod) != 0)
Guido van Rossum82598051997-03-05 00:20:32 +0000659 Py_FatalError("can't add __builtins__ to __main__");
Barry Warsaw3d05b1a1999-01-29 21:30:22 +0000660 Py_DECREF(bimod);
Guido van Rossum6135a871995-01-09 17:53:26 +0000661 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000662}
663
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000664/* Import the site module (not into __main__ though) */
665
666static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000667initsite(void)
Guido van Rossumdcc0c131997-08-29 22:32:42 +0000668{
669 PyObject *m, *f;
670 m = PyImport_ImportModule("site");
671 if (m == NULL) {
672 f = PySys_GetObject("stderr");
673 if (Py_VerboseFlag) {
674 PyFile_WriteString(
675 "'import site' failed; traceback:\n", f);
676 PyErr_Print();
677 }
678 else {
679 PyFile_WriteString(
680 "'import site' failed; use -v for traceback\n", f);
681 PyErr_Clear();
682 }
683 }
684 else {
685 Py_DECREF(m);
686 }
687}
688
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000689/* Parse input from a file and execute it */
690
691int
Tim Peters5e9d6cf2006-05-28 10:41:29 +0000692PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000693 PyCompilerFlags *flags)
694{
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000695 if (filename == NULL)
696 filename = "???";
Guido van Rossum0df002c2000-08-27 19:21:52 +0000697 if (Py_FdIsInteractive(fp, filename)) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000698 int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
Guido van Rossum0df002c2000-08-27 19:21:52 +0000699 if (closeit)
700 fclose(fp);
701 return err;
702 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000703 else
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000704 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000705}
706
707int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000708PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000709{
Guido van Rossum82598051997-03-05 00:20:32 +0000710 PyObject *v;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000711 int ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000712 PyCompilerFlags local_flags;
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000713
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000714 if (flags == NULL) {
715 flags = &local_flags;
Tim Peters5ba58662001-07-16 02:29:45 +0000716 local_flags.cf_flags = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000717 }
Guido van Rossum82598051997-03-05 00:20:32 +0000718 v = PySys_GetObject("ps1");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000719 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000720 PySys_SetObject("ps1", v = PyString_FromString(">>> "));
721 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000722 }
Guido van Rossum82598051997-03-05 00:20:32 +0000723 v = PySys_GetObject("ps2");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000724 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000725 PySys_SetObject("ps2", v = PyString_FromString("... "));
726 Py_XDECREF(v);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000727 }
728 for (;;) {
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000729 ret = PyRun_InteractiveOneFlags(fp, filename, flags);
Tim Peters62e97f02006-03-28 21:44:32 +0000730 PRINT_TOTAL_REFS();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000731 if (ret == E_EOF)
732 return 0;
733 /*
734 if (ret == E_NOMEM)
735 return -1;
736 */
737 }
738}
739
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000740/* compute parser flags based on compiler flags */
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000741#define PARSER_FLAGS(flags) \
Thomas Wouters34aa7ba2006-02-28 19:02:24 +0000742 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
Neal Norwitzca460d92006-09-06 06:28:06 +0000743 PyPARSE_DONT_IMPLY_DEDENT : 0)) : 0)
744
745#if 0
746/* Keep an example of flags with future keyword support. */
747#define PARSER_FLAGS(flags) \
748 ((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
Thomas Wouters34aa7ba2006-02-28 19:02:24 +0000749 PyPARSE_DONT_IMPLY_DEDENT : 0) \
Neal Norwitz9589ee22006-03-04 19:01:22 +0000750 | ((flags)->cf_flags & CO_FUTURE_WITH_STATEMENT ? \
751 PyPARSE_WITH_IS_KEYWORD : 0)) : 0)
Neal Norwitzca460d92006-09-06 06:28:06 +0000752#endif
Neil Schemenauerc24ea082002-03-22 23:53:36 +0000753
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000754int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000755PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Jeremy Hylton9f324e92001-03-01 22:59:14 +0000756{
Guido van Rossum82598051997-03-05 00:20:32 +0000757 PyObject *m, *d, *v, *w;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000758 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +0000759 PyArena *arena;
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000760 char *ps1 = "", *ps2 = "";
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000761 int errcode = 0;
Tim Petersfe2127d2001-07-16 05:37:24 +0000762
Guido van Rossum82598051997-03-05 00:20:32 +0000763 v = PySys_GetObject("ps1");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000764 if (v != NULL) {
765 v = PyObject_Str(v);
766 if (v == NULL)
767 PyErr_Clear();
768 else if (PyString_Check(v))
769 ps1 = PyString_AsString(v);
770 }
Guido van Rossum82598051997-03-05 00:20:32 +0000771 w = PySys_GetObject("ps2");
Guido van Rossumddc3fb51997-11-25 20:58:13 +0000772 if (w != NULL) {
773 w = PyObject_Str(w);
774 if (w == NULL)
775 PyErr_Clear();
776 else if (PyString_Check(w))
777 ps2 = PyString_AsString(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000778 }
Neal Norwitz9589ee22006-03-04 19:01:22 +0000779 arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +0000780 if (arena == NULL) {
781 Py_XDECREF(v);
782 Py_XDECREF(w);
783 return -1;
784 }
Tim Peters5e9d6cf2006-05-28 10:41:29 +0000785 mod = PyParser_ASTFromFile(fp, filename,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000786 Py_single_input, ps1, ps2,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000787 flags, &errcode, arena);
Guido van Rossum82598051997-03-05 00:20:32 +0000788 Py_XDECREF(v);
789 Py_XDECREF(w);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000790 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000791 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000792 if (errcode == E_EOF) {
793 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +0000794 return E_EOF;
795 }
Guido van Rossum82598051997-03-05 00:20:32 +0000796 PyErr_Print();
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000797 return -1;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000798 }
Guido van Rossum82598051997-03-05 00:20:32 +0000799 m = PyImport_AddModule("__main__");
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000800 if (m == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +0000801 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000802 return -1;
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000803 }
Guido van Rossum82598051997-03-05 00:20:32 +0000804 d = PyModule_GetDict(m);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000805 v = run_mod(mod, filename, d, d, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +0000806 PyArena_Free(arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000807 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000808 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000809 return -1;
810 }
Guido van Rossum82598051997-03-05 00:20:32 +0000811 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000812 if (Py_FlushLine())
813 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000814 return 0;
815}
816
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000817/* Check whether a file maybe a pyc file: Look at the extension,
818 the file type, and, if we may close it, at the first few bytes. */
819
820static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000821maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit)
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000822{
823 if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0)
824 return 1;
825
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000826 /* Only look into the file if we are allowed to close it, since
827 it then should also be seekable. */
828 if (closeit) {
829 /* Read only two bytes of the magic. If the file was opened in
830 text mode, the bytes 3 and 4 of the magic (\r\n) might not
831 be read as they are on disk. */
832 unsigned int halfmagic = PyImport_GetMagicNumber() & 0xFFFF;
833 unsigned char buf[2];
Tim Peters3e876562001-02-11 04:35:39 +0000834 /* Mess: In case of -x, the stream is NOT at its start now,
835 and ungetc() was used to push back the first newline,
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000836 which makes the current stream position formally undefined,
837 and a x-platform nightmare.
838 Unfortunately, we have no direct way to know whether -x
839 was specified. So we use a terrible hack: if the current
840 stream position is not 0, we assume -x was specified, and
841 give up. Bug 132850 on SourceForge spells out the
842 hopelessness of trying anything else (fseek and ftell
843 don't work predictably x-platform for text-mode files).
Tim Peters3e876562001-02-11 04:35:39 +0000844 */
Tim Peters3e876562001-02-11 04:35:39 +0000845 int ispyc = 0;
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000846 if (ftell(fp) == 0) {
847 if (fread(buf, 1, 2, fp) == 2 &&
Tim Petersd08e3822003-04-17 15:24:21 +0000848 ((unsigned int)buf[1]<<8 | buf[0]) == halfmagic)
Tim Peters6f5a4ef2001-02-17 22:02:34 +0000849 ispyc = 1;
850 rewind(fp);
851 }
Tim Peters3e876562001-02-11 04:35:39 +0000852 return ispyc;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000853 }
854 return 0;
Tim Petersd08e3822003-04-17 15:24:21 +0000855}
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000856
Guido van Rossum0df002c2000-08-27 19:21:52 +0000857int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000858PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000859 PyCompilerFlags *flags)
860{
Guido van Rossum82598051997-03-05 00:20:32 +0000861 PyObject *m, *d, *v;
Martin v. Löwis95292d62002-12-11 14:04:59 +0000862 const char *ext;
Georg Brandlaa2321b2007-03-07 00:40:28 +0000863 int set_file_name = 0, ret;
Guido van Rossumfdef2711994-09-14 13:31:04 +0000864
Guido van Rossum82598051997-03-05 00:20:32 +0000865 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000866 if (m == NULL)
867 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000868 d = PyModule_GetDict(m);
Fred Drake8ed02042002-10-17 21:24:58 +0000869 if (PyDict_GetItemString(d, "__file__") == NULL) {
870 PyObject *f = PyString_FromString(filename);
871 if (f == NULL)
872 return -1;
873 if (PyDict_SetItemString(d, "__file__", f) < 0) {
874 Py_DECREF(f);
875 return -1;
876 }
Georg Brandlaa2321b2007-03-07 00:40:28 +0000877 set_file_name = 1;
Fred Drake8ed02042002-10-17 21:24:58 +0000878 Py_DECREF(f);
879 }
Guido van Rossumfdef2711994-09-14 13:31:04 +0000880 ext = filename + strlen(filename) - 4;
Martin v. Löwisbe4c0f52001-01-04 20:30:56 +0000881 if (maybe_pyc_file(fp, filename, ext, closeit)) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000882 /* Try to run a pyc file. First, re-open in binary */
Guido van Rossum0df002c2000-08-27 19:21:52 +0000883 if (closeit)
884 fclose(fp);
Fred Drake8ed02042002-10-17 21:24:58 +0000885 if ((fp = fopen(filename, "rb")) == NULL) {
Guido van Rossumfdef2711994-09-14 13:31:04 +0000886 fprintf(stderr, "python: Can't reopen .pyc file\n");
Georg Brandlaa2321b2007-03-07 00:40:28 +0000887 ret = -1;
888 goto done;
Guido van Rossumfdef2711994-09-14 13:31:04 +0000889 }
Guido van Rossum2a7f58d1997-04-02 05:28:38 +0000890 /* Turn on optimization if a .pyo file is given */
891 if (strcmp(ext, ".pyo") == 0)
892 Py_OptimizeFlag = 1;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000893 v = run_pyc_file(fp, filename, d, d, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000894 } else {
Tim Petersd08e3822003-04-17 15:24:21 +0000895 v = PyRun_FileExFlags(fp, filename, Py_file_input, d, d,
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000896 closeit, flags);
Guido van Rossumfdef2711994-09-14 13:31:04 +0000897 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000898 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000899 PyErr_Print();
Georg Brandlaa2321b2007-03-07 00:40:28 +0000900 ret = -1;
901 goto done;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000902 }
Guido van Rossum82598051997-03-05 00:20:32 +0000903 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000904 if (Py_FlushLine())
905 PyErr_Clear();
Georg Brandlaa2321b2007-03-07 00:40:28 +0000906 ret = 0;
907 done:
908 if (set_file_name && PyDict_DelItemString(d, "__file__"))
909 PyErr_Clear();
910 return ret;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000911}
912
913int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000914PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
Guido van Rossum393661d2001-08-31 17:40:15 +0000915{
Guido van Rossum82598051997-03-05 00:20:32 +0000916 PyObject *m, *d, *v;
917 m = PyImport_AddModule("__main__");
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000918 if (m == NULL)
919 return -1;
Guido van Rossum82598051997-03-05 00:20:32 +0000920 d = PyModule_GetDict(m);
Guido van Rossum393661d2001-08-31 17:40:15 +0000921 v = PyRun_StringFlags(command, Py_file_input, d, d, flags);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000922 if (v == NULL) {
Guido van Rossum82598051997-03-05 00:20:32 +0000923 PyErr_Print();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000924 return -1;
925 }
Guido van Rossum82598051997-03-05 00:20:32 +0000926 Py_DECREF(v);
Guido van Rossum78a1ed31997-05-22 22:35:04 +0000927 if (Py_FlushLine())
928 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000929 return 0;
930}
931
Barry Warsaw035574d1997-08-29 22:07:17 +0000932static int
Martin v. Löwis95292d62002-12-11 14:04:59 +0000933parse_syntax_error(PyObject *err, PyObject **message, const char **filename,
934 int *lineno, int *offset, const char **text)
Barry Warsaw035574d1997-08-29 22:07:17 +0000935{
936 long hold;
937 PyObject *v;
938
939 /* old style errors */
940 if (PyTuple_Check(err))
Neal Norwitz78293352002-04-01 01:41:20 +0000941 return PyArg_ParseTuple(err, "O(ziiz)", message, filename,
Neal Norwitz9589ee22006-03-04 19:01:22 +0000942 lineno, offset, text);
Barry Warsaw035574d1997-08-29 22:07:17 +0000943
944 /* new style errors. `err' is an instance */
945
946 if (! (v = PyObject_GetAttrString(err, "msg")))
947 goto finally;
948 *message = v;
949
950 if (!(v = PyObject_GetAttrString(err, "filename")))
951 goto finally;
952 if (v == Py_None)
953 *filename = NULL;
954 else if (! (*filename = PyString_AsString(v)))
955 goto finally;
956
957 Py_DECREF(v);
958 if (!(v = PyObject_GetAttrString(err, "lineno")))
959 goto finally;
960 hold = PyInt_AsLong(v);
961 Py_DECREF(v);
962 v = NULL;
963 if (hold < 0 && PyErr_Occurred())
964 goto finally;
965 *lineno = (int)hold;
966
967 if (!(v = PyObject_GetAttrString(err, "offset")))
968 goto finally;
Jeremy Hylton9f1b9932001-02-28 07:07:43 +0000969 if (v == Py_None) {
970 *offset = -1;
971 Py_DECREF(v);
972 v = NULL;
973 } else {
974 hold = PyInt_AsLong(v);
975 Py_DECREF(v);
976 v = NULL;
977 if (hold < 0 && PyErr_Occurred())
978 goto finally;
979 *offset = (int)hold;
980 }
Barry Warsaw035574d1997-08-29 22:07:17 +0000981
982 if (!(v = PyObject_GetAttrString(err, "text")))
983 goto finally;
984 if (v == Py_None)
985 *text = NULL;
986 else if (! (*text = PyString_AsString(v)))
987 goto finally;
988 Py_DECREF(v);
989 return 1;
990
991finally:
992 Py_XDECREF(v);
993 return 0;
994}
995
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000996void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000997PyErr_Print(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000998{
Guido van Rossuma61691e1998-02-06 22:27:24 +0000999 PyErr_PrintEx(1);
1000}
1001
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001002static void
Martin v. Löwis95292d62002-12-11 14:04:59 +00001003print_error_text(PyObject *f, int offset, const char *text)
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001004{
1005 char *nl;
1006 if (offset >= 0) {
1007 if (offset > 0 && offset == (int)strlen(text))
1008 offset--;
1009 for (;;) {
1010 nl = strchr(text, '\n');
1011 if (nl == NULL || nl-text >= offset)
1012 break;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001013 offset -= (int)(nl+1-text);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001014 text = nl+1;
1015 }
1016 while (*text == ' ' || *text == '\t') {
1017 text++;
1018 offset--;
1019 }
1020 }
1021 PyFile_WriteString(" ", f);
1022 PyFile_WriteString(text, f);
1023 if (*text == '\0' || text[strlen(text)-1] != '\n')
1024 PyFile_WriteString("\n", f);
1025 if (offset == -1)
1026 return;
1027 PyFile_WriteString(" ", f);
1028 offset--;
1029 while (offset > 0) {
1030 PyFile_WriteString(" ", f);
1031 offset--;
1032 }
1033 PyFile_WriteString("^\n", f);
1034}
1035
Guido van Rossum66e8e862001-03-23 17:54:43 +00001036static void
1037handle_system_exit(void)
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001038{
Neal Norwitz9589ee22006-03-04 19:01:22 +00001039 PyObject *exception, *value, *tb;
1040 int exitcode = 0;
Tim Peterscf615b52003-04-19 18:47:02 +00001041
Georg Brandl49aafc92007-03-07 00:34:46 +00001042 if (Py_InspectFlag)
1043 /* Don't exit if -i flag was given. This flag is set to 0
1044 * when entering interactive mode for inspecting. */
1045 return;
1046
Guido van Rossum66e8e862001-03-23 17:54:43 +00001047 PyErr_Fetch(&exception, &value, &tb);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001048 if (Py_FlushLine())
1049 PyErr_Clear();
1050 fflush(stdout);
1051 if (value == NULL || value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +00001052 goto done;
Brett Cannonbf364092006-03-01 04:25:17 +00001053 if (PyExceptionInstance_Check(value)) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001054 /* The error code should be in the `code' attribute. */
1055 PyObject *code = PyObject_GetAttrString(value, "code");
1056 if (code) {
1057 Py_DECREF(value);
1058 value = code;
1059 if (value == Py_None)
Tim Peterscf615b52003-04-19 18:47:02 +00001060 goto done;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001061 }
1062 /* If we failed to dig out the 'code' attribute,
1063 just let the else clause below print the error. */
1064 }
1065 if (PyInt_Check(value))
Tim Peterscf615b52003-04-19 18:47:02 +00001066 exitcode = (int)PyInt_AsLong(value);
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001067 else {
1068 PyObject_Print(value, stderr, Py_PRINT_RAW);
1069 PySys_WriteStderr("\n");
Tim Peterscf615b52003-04-19 18:47:02 +00001070 exitcode = 1;
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001071 }
Tim Peterscf615b52003-04-19 18:47:02 +00001072 done:
Neal Norwitz9589ee22006-03-04 19:01:22 +00001073 /* Restore and clear the exception info, in order to properly decref
1074 * the exception, value, and traceback. If we just exit instead,
1075 * these leak, which confuses PYTHONDUMPREFS output, and may prevent
1076 * some finalizers from running.
1077 */
Tim Peterscf615b52003-04-19 18:47:02 +00001078 PyErr_Restore(exception, value, tb);
1079 PyErr_Clear();
1080 Py_Exit(exitcode);
1081 /* NOTREACHED */
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001082}
1083
1084void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001085PyErr_PrintEx(int set_sys_last_vars)
Guido van Rossuma61691e1998-02-06 22:27:24 +00001086{
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001087 PyObject *exception, *v, *tb, *hook;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001088
1089 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1090 handle_system_exit();
1091 }
Guido van Rossum82598051997-03-05 00:20:32 +00001092 PyErr_Fetch(&exception, &v, &tb);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001093 if (exception == NULL)
1094 return;
Barry Warsaw035574d1997-08-29 22:07:17 +00001095 PyErr_NormalizeException(&exception, &v, &tb);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001096 if (exception == NULL)
Guido van Rossum296b4751997-05-23 00:19:20 +00001097 return;
Guido van Rossum9d785502006-03-07 18:31:44 +00001098 /* Now we know v != NULL too */
Guido van Rossuma61691e1998-02-06 22:27:24 +00001099 if (set_sys_last_vars) {
1100 PySys_SetObject("last_type", exception);
1101 PySys_SetObject("last_value", v);
1102 PySys_SetObject("last_traceback", tb);
1103 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001104 hook = PySys_GetObject("excepthook");
1105 if (hook) {
Raymond Hettinger8ae46892003-10-12 19:09:37 +00001106 PyObject *args = PyTuple_Pack(3,
Guido van Rossum9d785502006-03-07 18:31:44 +00001107 exception, v, tb ? tb : Py_None);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001108 PyObject *result = PyEval_CallObject(hook, args);
1109 if (result == NULL) {
1110 PyObject *exception2, *v2, *tb2;
Guido van Rossum66e8e862001-03-23 17:54:43 +00001111 if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
1112 handle_system_exit();
1113 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001114 PyErr_Fetch(&exception2, &v2, &tb2);
1115 PyErr_NormalizeException(&exception2, &v2, &tb2);
Neal Norwitza5e4f222006-07-17 00:59:04 +00001116 /* It should not be possible for exception2 or v2
1117 to be NULL. However PyErr_Display() can't
1118 tolerate NULLs, so just be safe. */
1119 if (exception2 == NULL) {
1120 exception2 = Py_None;
1121 Py_INCREF(exception2);
1122 }
1123 if (v2 == NULL) {
1124 v2 = Py_None;
1125 Py_INCREF(v2);
1126 }
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001127 if (Py_FlushLine())
1128 PyErr_Clear();
1129 fflush(stdout);
1130 PySys_WriteStderr("Error in sys.excepthook:\n");
1131 PyErr_Display(exception2, v2, tb2);
1132 PySys_WriteStderr("\nOriginal exception was:\n");
1133 PyErr_Display(exception, v, tb);
Neal Norwitza5e4f222006-07-17 00:59:04 +00001134 Py_DECREF(exception2);
1135 Py_DECREF(v2);
Jeremy Hylton07028582001-12-07 15:35:35 +00001136 Py_XDECREF(tb2);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001137 }
1138 Py_XDECREF(result);
1139 Py_XDECREF(args);
1140 } else {
1141 PySys_WriteStderr("sys.excepthook is missing\n");
1142 PyErr_Display(exception, v, tb);
1143 }
1144 Py_XDECREF(exception);
1145 Py_XDECREF(v);
1146 Py_XDECREF(tb);
1147}
1148
Richard Jones7b9558d2006-05-27 12:29:24 +00001149void
1150PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb)
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001151{
1152 int err = 0;
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001153 PyObject *f = PySys_GetObject("stderr");
Armin Rigo5d2c6832004-03-22 20:16:58 +00001154 Py_INCREF(value);
Guido van Rossum3165fe61992-09-25 21:59:05 +00001155 if (f == NULL)
1156 fprintf(stderr, "lost sys.stderr\n");
1157 else {
Guido van Rossum0829c751998-02-28 04:31:39 +00001158 if (Py_FlushLine())
1159 PyErr_Clear();
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001160 fflush(stdout);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001161 if (tb && tb != Py_None)
1162 err = PyTraceBack_Print(tb, f);
Barry Warsaw36b8f941997-08-26 18:09:48 +00001163 if (err == 0 &&
Armin Rigo5d2c6832004-03-22 20:16:58 +00001164 PyObject_HasAttrString(value, "print_file_and_line"))
Barry Warsaw36b8f941997-08-26 18:09:48 +00001165 {
Guido van Rossum82598051997-03-05 00:20:32 +00001166 PyObject *message;
Martin v. Löwis95292d62002-12-11 14:04:59 +00001167 const char *filename, *text;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001168 int lineno, offset;
Armin Rigo5d2c6832004-03-22 20:16:58 +00001169 if (!parse_syntax_error(value, &message, &filename,
Barry Warsaw035574d1997-08-29 22:07:17 +00001170 &lineno, &offset, &text))
Guido van Rossum82598051997-03-05 00:20:32 +00001171 PyErr_Clear();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001172 else {
1173 char buf[10];
Guido van Rossum82598051997-03-05 00:20:32 +00001174 PyFile_WriteString(" File \"", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001175 if (filename == NULL)
Guido van Rossum82598051997-03-05 00:20:32 +00001176 PyFile_WriteString("<string>", f);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001177 else
Guido van Rossum82598051997-03-05 00:20:32 +00001178 PyFile_WriteString(filename, f);
1179 PyFile_WriteString("\", line ", f);
Jeremy Hylton518ab1c2001-11-28 20:42:20 +00001180 PyOS_snprintf(buf, sizeof(buf), "%d", lineno);
Guido van Rossum82598051997-03-05 00:20:32 +00001181 PyFile_WriteString(buf, f);
1182 PyFile_WriteString("\n", f);
Jeremy Hylton9f1b9932001-02-28 07:07:43 +00001183 if (text != NULL)
1184 print_error_text(f, offset, text);
Armin Rigo5d2c6832004-03-22 20:16:58 +00001185 Py_DECREF(value);
1186 value = message;
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001187 /* Can't be bothered to check all those
1188 PyFile_WriteString() calls */
1189 if (PyErr_Occurred())
1190 err = -1;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001191 }
1192 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001193 if (err) {
1194 /* Don't do anything else */
1195 }
Brett Cannonbf364092006-03-01 04:25:17 +00001196 else if (PyExceptionClass_Check(exception)) {
Richard Jones7b9558d2006-05-27 12:29:24 +00001197 PyObject* moduleName;
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001198 char* className = PyExceptionClass_Name(exception);
1199 if (className != NULL) {
1200 char *dot = strrchr(className, '.');
1201 if (dot != NULL)
1202 className = dot+1;
1203 }
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001204
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001205 moduleName = PyObject_GetAttrString(exception, "__module__");
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001206 if (moduleName == NULL)
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001207 err = PyFile_WriteString("<unknown>", f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001208 else {
1209 char* modstr = PyString_AsString(moduleName);
Tim Petersd08e3822003-04-17 15:24:21 +00001210 if (modstr && strcmp(modstr, "exceptions"))
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001211 {
1212 err = PyFile_WriteString(modstr, f);
1213 err += PyFile_WriteString(".", f);
1214 }
Richard Jones7b9558d2006-05-27 12:29:24 +00001215 Py_DECREF(moduleName);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001216 }
1217 if (err == 0) {
1218 if (className == NULL)
1219 err = PyFile_WriteString("<unknown>", f);
1220 else
Brett Cannonbf364092006-03-01 04:25:17 +00001221 err = PyFile_WriteString(className, f);
Barry Warsaw2f5f6a21997-09-16 21:42:03 +00001222 }
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001223 }
1224 else
1225 err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
Brett Cannon2e63b732006-03-02 18:34:57 +00001226 if (err == 0 && (value != Py_None)) {
1227 PyObject *s = PyObject_Str(value);
1228 /* only print colon if the str() of the
1229 object is not the empty string
1230 */
1231 if (s == NULL)
1232 err = -1;
1233 else if (!PyString_Check(s) ||
1234 PyString_GET_SIZE(s) != 0)
1235 err = PyFile_WriteString(": ", f);
1236 if (err == 0)
1237 err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
1238 Py_XDECREF(s);
Guido van Rossum262e1241995-02-07 15:30:45 +00001239 }
Georg Brandl7b9c5552007-03-12 14:30:05 +00001240 /* try to write a newline in any case */
1241 err += PyFile_WriteString("\n", f);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001242 }
Armin Rigo5d2c6832004-03-22 20:16:58 +00001243 Py_DECREF(value);
Guido van Rossum78a1ed31997-05-22 22:35:04 +00001244 /* If an error happened here, don't show it.
1245 XXX This is wrong, but too many callers rely on this behavior. */
1246 if (err != 0)
1247 PyErr_Clear();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001248}
1249
Guido van Rossum82598051997-03-05 00:20:32 +00001250PyObject *
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001251PyRun_StringFlags(const char *str, int start, PyObject *globals,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001252 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001253{
Neal Norwitze92fba02006-03-04 18:52:26 +00001254 PyObject *ret = NULL;
Neal Norwitzd12bd012006-07-21 07:59:47 +00001255 mod_ty mod;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001256 PyArena *arena = PyArena_New();
Neal Norwitzd12bd012006-07-21 07:59:47 +00001257 if (arena == NULL)
1258 return NULL;
1259
1260 mod = PyParser_ASTFromString(str, "<string>", start, flags, arena);
Neal Norwitze92fba02006-03-04 18:52:26 +00001261 if (mod != NULL)
1262 ret = run_mod(mod, "<string>", globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001263 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001264 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001265}
1266
1267PyObject *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001268PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001269 PyObject *locals, int closeit, PyCompilerFlags *flags)
1270{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001271 PyObject *ret;
Neal Norwitzd12bd012006-07-21 07:59:47 +00001272 mod_ty mod;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001273 PyArena *arena = PyArena_New();
Neal Norwitzd12bd012006-07-21 07:59:47 +00001274 if (arena == NULL)
1275 return NULL;
1276
1277 mod = PyParser_ASTFromFile(fp, filename, start, 0, 0,
1278 flags, NULL, arena);
Georg Brandl098cd692007-03-06 12:17:50 +00001279 if (closeit)
1280 fclose(fp);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001281 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001282 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001283 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001284 }
Neal Norwitze92fba02006-03-04 18:52:26 +00001285 ret = run_mod(mod, filename, globals, locals, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001286 PyArena_Free(arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001287 return ret;
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001288}
1289
Guido van Rossum82598051997-03-05 00:20:32 +00001290static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001291run_mod(mod_ty mod, const char *filename, PyObject *globals, PyObject *locals,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001292 PyCompilerFlags *flags, PyArena *arena)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001293{
Guido van Rossum82598051997-03-05 00:20:32 +00001294 PyCodeObject *co;
1295 PyObject *v;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001296 co = PyAST_Compile(mod, filename, flags, arena);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001297 if (co == NULL)
1298 return NULL;
Guido van Rossum82598051997-03-05 00:20:32 +00001299 v = PyEval_EvalCode(co, globals, locals);
1300 Py_DECREF(co);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001301 return v;
1302}
1303
Guido van Rossum82598051997-03-05 00:20:32 +00001304static PyObject *
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001305run_pyc_file(FILE *fp, const char *filename, PyObject *globals,
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001306 PyObject *locals, PyCompilerFlags *flags)
Guido van Rossumfdef2711994-09-14 13:31:04 +00001307{
Guido van Rossum82598051997-03-05 00:20:32 +00001308 PyCodeObject *co;
1309 PyObject *v;
Guido van Rossumfdef2711994-09-14 13:31:04 +00001310 long magic;
Fred Drakee8de31c2000-08-31 05:38:39 +00001311 long PyImport_GetMagicNumber(void);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001312
Guido van Rossum82598051997-03-05 00:20:32 +00001313 magic = PyMarshal_ReadLongFromFile(fp);
1314 if (magic != PyImport_GetMagicNumber()) {
1315 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001316 "Bad magic number in .pyc file");
1317 return NULL;
1318 }
Guido van Rossum82598051997-03-05 00:20:32 +00001319 (void) PyMarshal_ReadLongFromFile(fp);
Tim Petersd9b9ac82001-01-28 00:27:39 +00001320 v = PyMarshal_ReadLastObjectFromFile(fp);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001321 fclose(fp);
Guido van Rossum82598051997-03-05 00:20:32 +00001322 if (v == NULL || !PyCode_Check(v)) {
1323 Py_XDECREF(v);
1324 PyErr_SetString(PyExc_RuntimeError,
Guido van Rossumfdef2711994-09-14 13:31:04 +00001325 "Bad code object in .pyc file");
1326 return NULL;
1327 }
Guido van Rossum82598051997-03-05 00:20:32 +00001328 co = (PyCodeObject *)v;
1329 v = PyEval_EvalCode(co, globals, locals);
Jeremy Hyltonb857ba22001-08-10 21:41:33 +00001330 if (v && flags)
1331 flags->cf_flags |= (co->co_flags & PyCF_MASK);
Guido van Rossum82598051997-03-05 00:20:32 +00001332 Py_DECREF(co);
Guido van Rossumfdef2711994-09-14 13:31:04 +00001333 return v;
1334}
1335
Guido van Rossum82598051997-03-05 00:20:32 +00001336PyObject *
Tim Petersd08e3822003-04-17 15:24:21 +00001337Py_CompileStringFlags(const char *str, const char *filename, int start,
Jeremy Hyltonbc320242001-03-22 02:47:58 +00001338 PyCompilerFlags *flags)
1339{
Guido van Rossum82598051997-03-05 00:20:32 +00001340 PyCodeObject *co;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001341 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001342 PyArena *arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001343 if (arena == NULL)
1344 return NULL;
1345
1346 mod = PyParser_ASTFromString(str, filename, start, flags, arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001347 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001348 PyArena_Free(arena);
Guido van Rossum5b722181993-03-30 17:46:03 +00001349 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001350 }
Martin v. Löwis2b366e42006-02-26 22:12:35 +00001351 if (flags && (flags->cf_flags & PyCF_ONLY_AST)) {
Martin v. Löwisbd260da2006-02-26 19:42:26 +00001352 PyObject *result = PyAST_mod2obj(mod);
1353 PyArena_Free(arena);
1354 return result;
1355 }
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001356 co = PyAST_Compile(mod, filename, flags, arena);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001357 PyArena_Free(arena);
Guido van Rossum82598051997-03-05 00:20:32 +00001358 return (PyObject *)co;
Guido van Rossum5b722181993-03-30 17:46:03 +00001359}
1360
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001361struct symtable *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001362Py_SymtableString(const char *str, const char *filename, int start)
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001363{
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001364 struct symtable *st;
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001365 mod_ty mod;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001366 PyArena *arena = PyArena_New();
Neal Norwitzb59d08c2006-07-22 16:20:49 +00001367 if (arena == NULL)
1368 return NULL;
1369
1370 mod = PyParser_ASTFromString(str, filename, start, NULL, arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001371 if (mod == NULL) {
Neal Norwitz9589ee22006-03-04 19:01:22 +00001372 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001373 return NULL;
Neal Norwitz9589ee22006-03-04 19:01:22 +00001374 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001375 st = PySymtable_Build(mod, filename, 0);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001376 PyArena_Free(arena);
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001377 return st;
1378}
1379
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001380/* Preferred access to parser is through AST. */
1381mod_ty
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001382PyParser_ASTFromString(const char *s, const char *filename, int start,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001383 PyCompilerFlags *flags, PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001384{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001385 mod_ty mod;
1386 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001387 node *n = PyParser_ParseStringFlagsFilename(s, filename,
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001388 &_PyParser_Grammar, start, &err,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001389 PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001390 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001391 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001392 PyNode_Free(n);
1393 return mod;
1394 }
1395 else {
1396 err_input(&err);
1397 return NULL;
1398 }
1399}
1400
1401mod_ty
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001402PyParser_ASTFromFile(FILE *fp, const char *filename, int start, char *ps1,
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001403 char *ps2, PyCompilerFlags *flags, int *errcode,
Neal Norwitz9589ee22006-03-04 19:01:22 +00001404 PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001405{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001406 mod_ty mod;
1407 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001408 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1409 start, ps1, ps2, &err, PARSER_FLAGS(flags));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001410 if (n) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001411 mod = PyAST_FromNode(n, flags, filename, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001412 PyNode_Free(n);
1413 return mod;
1414 }
1415 else {
1416 err_input(&err);
1417 if (errcode)
1418 *errcode = err.error;
1419 return NULL;
1420 }
1421}
1422
Guido van Rossuma110aa61994-08-29 12:50:44 +00001423/* Simplified interface to parsefile -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001424
Guido van Rossuma110aa61994-08-29 12:50:44 +00001425node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001426PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001427{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001428 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001429 node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
1430 start, NULL, NULL, &err, flags);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001431 if (n == NULL)
1432 err_input(&err);
Tim Peters5e9d6cf2006-05-28 10:41:29 +00001433
Guido van Rossuma110aa61994-08-29 12:50:44 +00001434 return n;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001435}
1436
Guido van Rossuma110aa61994-08-29 12:50:44 +00001437/* Simplified interface to parsestring -- return node or set exception */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001438
Guido van Rossuma110aa61994-08-29 12:50:44 +00001439node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001440PyParser_SimpleParseStringFlags(const char *str, int start, int flags)
Tim Petersfe2127d2001-07-16 05:37:24 +00001441{
Tim Petersfe2127d2001-07-16 05:37:24 +00001442 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001443 node *n = PyParser_ParseStringFlags(str, &_PyParser_Grammar,
1444 start, &err, flags);
Tim Petersfe2127d2001-07-16 05:37:24 +00001445 if (n == NULL)
1446 err_input(&err);
1447 return n;
1448}
1449
1450node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001451PyParser_SimpleParseStringFlagsFilename(const char *str, const char *filename,
Thomas Heller6b17abf2002-07-09 09:23:27 +00001452 int start, int flags)
1453{
Thomas Heller6b17abf2002-07-09 09:23:27 +00001454 perrdetail err;
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001455 node *n = PyParser_ParseStringFlagsFilename(str, filename,
1456 &_PyParser_Grammar, start, &err, flags);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001457 if (n == NULL)
1458 err_input(&err);
1459 return n;
1460}
1461
1462node *
Martin v. Löwis95292d62002-12-11 14:04:59 +00001463PyParser_SimpleParseStringFilename(const char *str, const char *filename, int start)
Thomas Heller6b17abf2002-07-09 09:23:27 +00001464{
Neal Norwitzadb69fc2005-12-17 20:54:49 +00001465 return PyParser_SimpleParseStringFlagsFilename(str, filename, start, 0);
Thomas Heller6b17abf2002-07-09 09:23:27 +00001466}
1467
Guido van Rossum66ebd912003-04-17 16:02:26 +00001468/* May want to move a more generalized form of this to parsetok.c or
1469 even parser modules. */
1470
1471void
1472PyParser_SetError(perrdetail *err)
1473{
1474 err_input(err);
1475}
1476
Guido van Rossuma110aa61994-08-29 12:50:44 +00001477/* Set the error appropriate to the given input error code (see errcode.h) */
1478
1479static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001480err_input(perrdetail *err)
Guido van Rossuma110aa61994-08-29 12:50:44 +00001481{
Fred Drake85f36392000-07-11 17:53:00 +00001482 PyObject *v, *w, *errtype;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001483 PyObject* u = NULL;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001484 char *msg = NULL;
Fred Drake85f36392000-07-11 17:53:00 +00001485 errtype = PyExc_SyntaxError;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001486 switch (err->error) {
1487 case E_SYNTAX:
Fred Drake85f36392000-07-11 17:53:00 +00001488 errtype = PyExc_IndentationError;
1489 if (err->expected == INDENT)
1490 msg = "expected an indented block";
1491 else if (err->token == INDENT)
1492 msg = "unexpected indent";
1493 else if (err->token == DEDENT)
1494 msg = "unexpected unindent";
1495 else {
1496 errtype = PyExc_SyntaxError;
1497 msg = "invalid syntax";
1498 }
Guido van Rossuma110aa61994-08-29 12:50:44 +00001499 break;
1500 case E_TOKEN:
1501 msg = "invalid token";
Guido van Rossuma110aa61994-08-29 12:50:44 +00001502 break;
Skip Montanaro118ec702002-08-15 01:20:16 +00001503 case E_EOFS:
1504 msg = "EOF while scanning triple-quoted string";
1505 break;
1506 case E_EOLS:
1507 msg = "EOL while scanning single-quoted string";
1508 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001509 case E_INTR:
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00001510 if (!PyErr_Occurred())
1511 PyErr_SetNone(PyExc_KeyboardInterrupt);
Guido van Rossuma110aa61994-08-29 12:50:44 +00001512 return;
1513 case E_NOMEM:
Guido van Rossum82598051997-03-05 00:20:32 +00001514 PyErr_NoMemory();
Guido van Rossuma110aa61994-08-29 12:50:44 +00001515 return;
1516 case E_EOF:
1517 msg = "unexpected EOF while parsing";
1518 break;
Fred Drake85f36392000-07-11 17:53:00 +00001519 case E_TABSPACE:
1520 errtype = PyExc_TabError;
Guido van Rossum560e8ad1998-04-10 19:43:42 +00001521 msg = "inconsistent use of tabs and spaces in indentation";
1522 break;
Jeremy Hylton94988062000-06-20 19:10:44 +00001523 case E_OVERFLOW:
1524 msg = "expression too long";
1525 break;
Fred Drake85f36392000-07-11 17:53:00 +00001526 case E_DEDENT:
1527 errtype = PyExc_IndentationError;
1528 msg = "unindent does not match any outer indentation level";
1529 break;
1530 case E_TOODEEP:
1531 errtype = PyExc_IndentationError;
1532 msg = "too many levels of indentation";
1533 break;
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001534 case E_DECODE: {
1535 PyObject *type, *value, *tb;
1536 PyErr_Fetch(&type, &value, &tb);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001537 if (value != NULL) {
Martin v. Löwisd35edda2005-08-24 08:39:24 +00001538 u = PyObject_Str(value);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001539 if (u != NULL) {
1540 msg = PyString_AsString(u);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001541 }
1542 }
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001543 if (msg == NULL)
1544 msg = "unknown decode error";
Neal Norwitzdb83eb32005-12-18 05:29:30 +00001545 Py_XDECREF(type);
1546 Py_XDECREF(value);
Neal Norwitz40d37812005-10-02 01:48:49 +00001547 Py_XDECREF(tb);
Martin v. Löwisc2632a52004-07-21 05:35:02 +00001548 break;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001549 }
Martin v. Löwis4bf108d2005-03-03 11:45:45 +00001550 case E_LINECONT:
1551 msg = "unexpected character after line continuation character";
1552 break;
Guido van Rossuma110aa61994-08-29 12:50:44 +00001553 default:
1554 fprintf(stderr, "error=%d\n", err->error);
1555 msg = "unknown parsing error";
1556 break;
1557 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001558 v = Py_BuildValue("(ziiz)", err->filename,
1559 err->lineno, err->offset, err->text);
Neal Norwitz9589ee22006-03-04 19:01:22 +00001560 if (err->text != NULL) {
Tim Petersc9d78aa2006-03-26 23:27:58 +00001561 PyObject_FREE(err->text);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001562 err->text = NULL;
1563 }
1564 w = NULL;
1565 if (v != NULL)
1566 w = Py_BuildValue("(sO)", msg, v);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001567 Py_XDECREF(u);
Guido van Rossum41318302001-03-23 04:01:07 +00001568 Py_XDECREF(v);
Fred Drake85f36392000-07-11 17:53:00 +00001569 PyErr_SetObject(errtype, w);
Guido van Rossum82598051997-03-05 00:20:32 +00001570 Py_XDECREF(w);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001571}
1572
1573/* Print fatal error message and abort */
1574
1575void
Tim Peters7c321a82002-07-09 02:57:01 +00001576Py_FatalError(const char *msg)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001577{
Guido van Rossum83dd6c31994-09-29 09:38:33 +00001578 fprintf(stderr, "Fatal Python error: %s\n", msg);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001579#ifdef MS_WINDOWS
Guido van Rossum23c94461997-05-22 20:21:30 +00001580 OutputDebugString("Fatal Python error: ");
Guido van Rossuma44823b1995-03-14 15:01:17 +00001581 OutputDebugString(msg);
1582 OutputDebugString("\n");
Guido van Rossum0ba35361998-08-13 13:33:16 +00001583#ifdef _DEBUG
1584 DebugBreak();
Guido van Rossuma44823b1995-03-14 15:01:17 +00001585#endif
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001586#endif /* MS_WINDOWS */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001587 abort();
1588}
1589
1590/* Clean up and exit */
1591
Guido van Rossuma110aa61994-08-29 12:50:44 +00001592#ifdef WITH_THREAD
Guido van Rossum49b56061998-10-01 20:42:43 +00001593#include "pythread.h"
Guido van Rossumf9f2e821992-08-17 08:59:08 +00001594#endif
1595
Guido van Rossum2dcfc961998-10-01 16:01:57 +00001596#define NEXITFUNCS 32
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001597static void (*exitfuncs[NEXITFUNCS])(void);
Guido van Rossum1662dd51994-09-07 14:38:28 +00001598static int nexitfuncs = 0;
1599
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001600int Py_AtExit(void (*func)(void))
Guido van Rossum1662dd51994-09-07 14:38:28 +00001601{
1602 if (nexitfuncs >= NEXITFUNCS)
1603 return -1;
1604 exitfuncs[nexitfuncs++] = func;
1605 return 0;
1606}
1607
Guido van Rossumcc283f51997-08-05 02:22:03 +00001608static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001609call_sys_exitfunc(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001610{
Guido van Rossum82598051997-03-05 00:20:32 +00001611 PyObject *exitfunc = PySys_GetObject("exitfunc");
Guido van Rossum59bff391992-09-03 20:28:00 +00001612
1613 if (exitfunc) {
Fred Drake6a12d8d2001-03-23 17:34:02 +00001614 PyObject *res;
Guido van Rossum82598051997-03-05 00:20:32 +00001615 Py_INCREF(exitfunc);
1616 PySys_SetObject("exitfunc", (PyObject *)NULL);
1617 res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
Guido van Rossum59bff391992-09-03 20:28:00 +00001618 if (res == NULL) {
Ka-Ping Yee26fabb02001-03-23 15:36:41 +00001619 if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
1620 PySys_WriteStderr("Error in sys.exitfunc:\n");
1621 }
Guido van Rossum82598051997-03-05 00:20:32 +00001622 PyErr_Print();
Guido van Rossum59bff391992-09-03 20:28:00 +00001623 }
Guido van Rossum82598051997-03-05 00:20:32 +00001624 Py_DECREF(exitfunc);
Guido van Rossum59bff391992-09-03 20:28:00 +00001625 }
1626
Guido van Rossum0829c751998-02-28 04:31:39 +00001627 if (Py_FlushLine())
1628 PyErr_Clear();
Guido van Rossumcc283f51997-08-05 02:22:03 +00001629}
Guido van Rossum1662dd51994-09-07 14:38:28 +00001630
Guido van Rossumcc283f51997-08-05 02:22:03 +00001631static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001632call_ll_exitfuncs(void)
Guido van Rossumcc283f51997-08-05 02:22:03 +00001633{
Guido van Rossum1662dd51994-09-07 14:38:28 +00001634 while (nexitfuncs > 0)
1635 (*exitfuncs[--nexitfuncs])();
Guido van Rossum25ce5661997-08-02 03:10:38 +00001636
1637 fflush(stdout);
1638 fflush(stderr);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001639}
1640
1641void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001642Py_Exit(int sts)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001643{
Guido van Rossumcc283f51997-08-05 02:22:03 +00001644 Py_Finalize();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001645
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001646 exit(sts);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001647}
1648
Guido van Rossumf1dc5661993-07-05 10:31:29 +00001649static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001650initsigs(void)
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001651{
Guido van Rossuma110aa61994-08-29 12:50:44 +00001652#ifdef SIGPIPE
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001653 PyOS_setsig(SIGPIPE, SIG_IGN);
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001654#endif
Guido van Rossum70d893a2001-08-16 08:21:42 +00001655#ifdef SIGXFZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001656 PyOS_setsig(SIGXFZ, SIG_IGN);
Guido van Rossum70d893a2001-08-16 08:21:42 +00001657#endif
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001658#ifdef SIGXFSZ
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001659 PyOS_setsig(SIGXFSZ, SIG_IGN);
Jeremy Hylton1b0bf9b2002-04-23 20:31:01 +00001660#endif
Guido van Rossum82598051997-03-05 00:20:32 +00001661 PyOS_InitInterrupts(); /* May imply initsignal() */
Guido van Rossuma9e7dc11992-10-18 18:53:57 +00001662}
1663
Guido van Rossum7433b121997-02-14 19:45:36 +00001664
1665/*
1666 * The file descriptor fd is considered ``interactive'' if either
1667 * a) isatty(fd) is TRUE, or
1668 * b) the -i flag was given, and the filename associated with
1669 * the descriptor is NULL or "<stdin>" or "???".
1670 */
1671int
Martin v. Löwis95292d62002-12-11 14:04:59 +00001672Py_FdIsInteractive(FILE *fp, const char *filename)
Guido van Rossum7433b121997-02-14 19:45:36 +00001673{
1674 if (isatty((int)fileno(fp)))
1675 return 1;
1676 if (!Py_InteractiveFlag)
1677 return 0;
1678 return (filename == NULL) ||
1679 (strcmp(filename, "<stdin>") == 0) ||
1680 (strcmp(filename, "???") == 0);
1681}
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001682
1683
Tim Petersd08e3822003-04-17 15:24:21 +00001684#if defined(USE_STACKCHECK)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001685#if defined(WIN32) && defined(_MSC_VER)
1686
1687/* Stack checking for Microsoft C */
1688
1689#include <malloc.h>
1690#include <excpt.h>
1691
Fred Drakee8de31c2000-08-31 05:38:39 +00001692/*
1693 * Return non-zero when we run out of memory on the stack; zero otherwise.
1694 */
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001695int
Fred Drake399739f2000-08-31 05:52:44 +00001696PyOS_CheckStack(void)
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001697{
1698 __try {
Tim Peters92e4dd82002-10-05 01:47:34 +00001699 /* alloca throws a stack overflow exception if there's
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001700 not enough space left on the stack */
Tim Peters92e4dd82002-10-05 01:47:34 +00001701 alloca(PYOS_STACK_MARGIN * sizeof(void*));
Fredrik Lundh2f15b252000-08-27 19:15:31 +00001702 return 0;
1703 } __except (EXCEPTION_EXECUTE_HANDLER) {
1704 /* just ignore all errors */
1705 }
1706 return 1;
1707}
1708
1709#endif /* WIN32 && _MSC_VER */
1710
1711/* Alternate implementations can be added here... */
1712
1713#endif /* USE_STACKCHECK */
Guido van Rossum6f256182000-09-16 16:32:19 +00001714
1715
1716/* Wrappers around sigaction() or signal(). */
1717
1718PyOS_sighandler_t
1719PyOS_getsig(int sig)
1720{
1721#ifdef HAVE_SIGACTION
1722 struct sigaction context;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001723 if (sigaction(sig, NULL, &context) == -1)
1724 return SIG_ERR;
Guido van Rossum6f256182000-09-16 16:32:19 +00001725 return context.sa_handler;
1726#else
1727 PyOS_sighandler_t handler;
Martin v. Löwisb45b3152005-11-28 17:34:23 +00001728/* Special signal handling for the secure CRT in Visual Studio 2005 */
1729#if defined(_MSC_VER) && _MSC_VER >= 1400
1730 switch (sig) {
1731 /* Only these signals are valid */
1732 case SIGINT:
1733 case SIGILL:
1734 case SIGFPE:
1735 case SIGSEGV:
1736 case SIGTERM:
1737 case SIGBREAK:
1738 case SIGABRT:
1739 break;
1740 /* Don't call signal() with other values or it will assert */
1741 default:
1742 return SIG_ERR;
1743 }
1744#endif /* _MSC_VER && _MSC_VER >= 1400 */
Guido van Rossum6f256182000-09-16 16:32:19 +00001745 handler = signal(sig, SIG_IGN);
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001746 if (handler != SIG_ERR)
1747 signal(sig, handler);
Guido van Rossum6f256182000-09-16 16:32:19 +00001748 return handler;
1749#endif
1750}
1751
1752PyOS_sighandler_t
1753PyOS_setsig(int sig, PyOS_sighandler_t handler)
1754{
1755#ifdef HAVE_SIGACTION
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001756 struct sigaction context, ocontext;
Guido van Rossum6f256182000-09-16 16:32:19 +00001757 context.sa_handler = handler;
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001758 sigemptyset(&context.sa_mask);
1759 context.sa_flags = 0;
1760 if (sigaction(sig, &context, &ocontext) == -1)
1761 return SIG_ERR;
1762 return ocontext.sa_handler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001763#else
Anthony Baxter9ceaa722004-10-13 14:48:50 +00001764 PyOS_sighandler_t oldhandler;
1765 oldhandler = signal(sig, handler);
1766#ifdef HAVE_SIGINTERRUPT
1767 siginterrupt(sig, 1);
1768#endif
1769 return oldhandler;
Guido van Rossum6f256182000-09-16 16:32:19 +00001770#endif
1771}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001772
1773/* Deprecated C API functions still provided for binary compatiblity */
1774
1775#undef PyParser_SimpleParseFile
Thomas Heller1b046642006-04-18 18:51:06 +00001776PyAPI_FUNC(node *)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001777PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
1778{
1779 return PyParser_SimpleParseFileFlags(fp, filename, start, 0);
1780}
1781
Thomas Heller1b046642006-04-18 18:51:06 +00001782#undef PyParser_SimpleParseString
1783PyAPI_FUNC(node *)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001784PyParser_SimpleParseString(const char *str, int start)
1785{
1786 return PyParser_SimpleParseStringFlags(str, start, 0);
1787}
Anthony Baxterac6bd462006-04-13 02:06:09 +00001788
Thomas Heller1b046642006-04-18 18:51:06 +00001789#undef PyRun_AnyFile
1790PyAPI_FUNC(int)
1791PyRun_AnyFile(FILE *fp, const char *name)
1792{
1793 return PyRun_AnyFileExFlags(fp, name, 0, NULL);
1794}
1795
1796#undef PyRun_AnyFileEx
1797PyAPI_FUNC(int)
1798PyRun_AnyFileEx(FILE *fp, const char *name, int closeit)
1799{
1800 return PyRun_AnyFileExFlags(fp, name, closeit, NULL);
1801}
1802
1803#undef PyRun_AnyFileFlags
1804PyAPI_FUNC(int)
1805PyRun_AnyFileFlags(FILE *fp, const char *name, PyCompilerFlags *flags)
1806{
1807 return PyRun_AnyFileExFlags(fp, name, 0, flags);
1808}
1809
1810#undef PyRun_File
1811PyAPI_FUNC(PyObject *)
1812PyRun_File(FILE *fp, const char *p, int s, PyObject *g, PyObject *l)
1813{
1814 return PyRun_FileExFlags(fp, p, s, g, l, 0, NULL);
1815}
1816
1817#undef PyRun_FileEx
1818PyAPI_FUNC(PyObject *)
1819PyRun_FileEx(FILE *fp, const char *p, int s, PyObject *g, PyObject *l, int c)
1820{
1821 return PyRun_FileExFlags(fp, p, s, g, l, c, NULL);
1822}
1823
1824#undef PyRun_FileFlags
1825PyAPI_FUNC(PyObject *)
1826PyRun_FileFlags(FILE *fp, const char *p, int s, PyObject *g, PyObject *l,
1827 PyCompilerFlags *flags)
1828{
1829 return PyRun_FileExFlags(fp, p, s, g, l, 0, flags);
1830}
1831
1832#undef PyRun_SimpleFile
1833PyAPI_FUNC(int)
1834PyRun_SimpleFile(FILE *f, const char *p)
1835{
1836 return PyRun_SimpleFileExFlags(f, p, 0, NULL);
1837}
1838
1839#undef PyRun_SimpleFileEx
1840PyAPI_FUNC(int)
1841PyRun_SimpleFileEx(FILE *f, const char *p, int c)
1842{
1843 return PyRun_SimpleFileExFlags(f, p, c, NULL);
1844}
1845
1846
1847#undef PyRun_String
1848PyAPI_FUNC(PyObject *)
1849PyRun_String(const char *str, int s, PyObject *g, PyObject *l)
1850{
1851 return PyRun_StringFlags(str, s, g, l, NULL);
1852}
1853
1854#undef PyRun_SimpleString
1855PyAPI_FUNC(int)
1856PyRun_SimpleString(const char *s)
1857{
1858 return PyRun_SimpleStringFlags(s, NULL);
1859}
1860
1861#undef Py_CompileString
1862PyAPI_FUNC(PyObject *)
1863Py_CompileString(const char *str, const char *p, int s)
1864{
1865 return Py_CompileStringFlags(str, p, s, NULL);
1866}
1867
1868#undef PyRun_InteractiveOne
1869PyAPI_FUNC(int)
1870PyRun_InteractiveOne(FILE *f, const char *p)
1871{
1872 return PyRun_InteractiveOneFlags(f, p, NULL);
1873}
1874
1875#undef PyRun_InteractiveLoop
1876PyAPI_FUNC(int)
1877PyRun_InteractiveLoop(FILE *f, const char *p)
1878{
1879 return PyRun_InteractiveLoopFlags(f, p, NULL);
1880}
1881
Anthony Baxterac6bd462006-04-13 02:06:09 +00001882#ifdef __cplusplus
1883}
1884#endif
1885