1992-08-04 12:41:02 +00:00
|
|
|
|
|
|
|
/* Python interpreter top-level routines, including init/exit */
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
#include "Python.h"
|
1992-08-04 12:41:02 +00:00
|
|
|
|
|
|
|
#include "grammar.h"
|
|
|
|
#include "node.h"
|
2000-07-11 17:53:00 +00:00
|
|
|
#include "token.h"
|
1992-08-04 12:41:02 +00:00
|
|
|
#include "parsetok.h"
|
|
|
|
#include "errcode.h"
|
|
|
|
#include "compile.h"
|
2001-02-02 18:19:15 +00:00
|
|
|
#include "symtable.h"
|
1992-08-05 19:58:53 +00:00
|
|
|
#include "eval.h"
|
1994-09-14 13:31:04 +00:00
|
|
|
#include "marshal.h"
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1996-12-05 23:27:02 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
#ifdef HAVE_SIGNAL_H
|
1992-10-18 18:53:57 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
|
1996-09-11 23:12:24 +00:00
|
|
|
#ifdef MS_WIN32
|
1995-03-14 15:01:17 +00:00
|
|
|
#undef BYTE
|
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
2000-07-11 21:59:16 +00:00
|
|
|
#ifdef macintosh
|
|
|
|
#include "macglue.h"
|
|
|
|
#endif
|
2000-07-22 18:47:25 +00:00
|
|
|
extern char *Py_GetPath(void);
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
extern grammar _PyParser_Grammar; /* From graminit.c */
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1993-11-01 16:28:59 +00:00
|
|
|
/* Forward */
|
2000-07-09 03:09:57 +00:00
|
|
|
static void initmain(void);
|
|
|
|
static void initsite(void);
|
2001-03-01 22:59:14 +00:00
|
|
|
static PyObject *run_err_node(node *, char *, PyObject *, PyObject *,
|
|
|
|
PyCompilerFlags *);
|
|
|
|
static PyObject *run_node(node *, char *, PyObject *, PyObject *,
|
|
|
|
PyCompilerFlags *);
|
2001-03-22 02:47:58 +00:00
|
|
|
static PyObject *run_pyc_file(FILE *, char *, PyObject *, PyObject *,
|
|
|
|
PyCompilerFlags *);
|
2000-07-09 03:09:57 +00:00
|
|
|
static void err_input(perrdetail *);
|
|
|
|
static void initsigs(void);
|
|
|
|
static void call_sys_exitfunc(void);
|
|
|
|
static void call_ll_exitfuncs(void);
|
1997-03-05 00:20:32 +00:00
|
|
|
|
2000-01-20 22:32:56 +00:00
|
|
|
#ifdef Py_TRACE_REFS
|
|
|
|
int _Py_AskYesNo(char *prompt);
|
|
|
|
#endif
|
|
|
|
|
2000-07-22 18:47:25 +00:00
|
|
|
extern void _PyUnicode_Init(void);
|
|
|
|
extern void _PyUnicode_Fini(void);
|
|
|
|
extern void _PyCodecRegistry_Init(void);
|
|
|
|
extern void _PyCodecRegistry_Fini(void);
|
2000-03-10 23:03:54 +00:00
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
int Py_DebugFlag; /* Needed by parser.c */
|
|
|
|
int Py_VerboseFlag; /* Needed by import.c */
|
1997-02-14 19:45:36 +00:00
|
|
|
int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
|
1997-08-29 22:32:42 +00:00
|
|
|
int Py_NoSiteFlag; /* Suppress 'import site' */
|
2000-05-02 19:18:59 +00:00
|
|
|
int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
|
1998-02-06 22:27:24 +00:00
|
|
|
int Py_FrozenFlag; /* Needed by getpath.c */
|
2000-05-01 17:55:15 +00:00
|
|
|
int Py_UnicodeFlag = 0; /* Needed by compile.c */
|
2001-07-23 16:30:27 +00:00
|
|
|
int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
static int initialized = 0;
|
|
|
|
|
2000-07-16 12:04:32 +00:00
|
|
|
/* API to access the initialized flag -- useful for esoteric use */
|
1997-08-22 04:20:13 +00:00
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_IsInitialized(void)
|
1997-08-22 04:20:13 +00:00
|
|
|
{
|
|
|
|
return initialized;
|
|
|
|
}
|
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
/* Global initializations. Can be undone by Py_Finalize(). Don't
|
|
|
|
call this twice without an intervening Py_Finalize() call. When
|
|
|
|
initializations fail, a fatal error is issued and the function does
|
|
|
|
not return. On return, the first thread and interpreter state have
|
|
|
|
been created.
|
|
|
|
|
|
|
|
Locking: you must hold the interpreter lock while calling this.
|
|
|
|
(If the lock has not yet been initialized, that's equivalent to
|
|
|
|
having the lock, but you cannot use multiple threads.)
|
|
|
|
|
|
|
|
*/
|
1992-08-04 12:41:02 +00:00
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_Initialize(void)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-08-02 03:10:38 +00:00
|
|
|
PyInterpreterState *interp;
|
|
|
|
PyThreadState *tstate;
|
|
|
|
PyObject *bimod, *sysmod;
|
|
|
|
char *p;
|
2001-08-16 08:21:42 +00:00
|
|
|
extern void _Py_ReadyTypes(void);
|
1997-08-02 03:10:38 +00:00
|
|
|
|
1997-08-29 22:32:42 +00:00
|
|
|
if (initialized)
|
1997-08-20 22:40:18 +00:00
|
|
|
return;
|
1997-08-29 22:32:42 +00:00
|
|
|
initialized = 1;
|
1992-08-04 12:41:02 +00:00
|
|
|
|
2001-07-23 16:30:27 +00:00
|
|
|
if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
|
2000-08-25 21:00:46 +00:00
|
|
|
Py_DebugFlag = Py_DebugFlag ? Py_DebugFlag : 1;
|
2001-07-23 16:30:27 +00:00
|
|
|
if ((p = Py_GETENV("PYTHONVERBOSE")) && *p != '\0')
|
2000-08-25 21:00:46 +00:00
|
|
|
Py_VerboseFlag = Py_VerboseFlag ? Py_VerboseFlag : 1;
|
2001-07-23 16:30:27 +00:00
|
|
|
if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
|
2000-08-25 21:00:46 +00:00
|
|
|
Py_OptimizeFlag = Py_OptimizeFlag ? Py_OptimizeFlag : 1;
|
1997-08-02 03:10:38 +00:00
|
|
|
|
|
|
|
interp = PyInterpreterState_New();
|
|
|
|
if (interp == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make first interpreter");
|
|
|
|
|
|
|
|
tstate = PyThreadState_New(interp);
|
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make first thread");
|
|
|
|
(void) PyThreadState_Swap(tstate);
|
1992-08-04 12:41:02 +00:00
|
|
|
|
2001-08-16 08:21:42 +00:00
|
|
|
_Py_ReadyTypes();
|
2001-08-07 17:24:28 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
interp->modules = PyDict_New();
|
|
|
|
if (interp->modules == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make modules dictionary");
|
|
|
|
|
2000-03-10 23:03:54 +00:00
|
|
|
/* Init codec registry */
|
|
|
|
_PyCodecRegistry_Init();
|
|
|
|
|
2001-08-17 18:39:25 +00:00
|
|
|
#ifdef Py_USING_UNICODE
|
2000-03-10 23:03:54 +00:00
|
|
|
/* Init Unicode implementation; relies on the codec registry */
|
|
|
|
_PyUnicode_Init();
|
2001-08-17 18:39:25 +00:00
|
|
|
#endif
|
2000-03-10 23:03:54 +00:00
|
|
|
|
2000-05-25 23:09:49 +00:00
|
|
|
bimod = _PyBuiltin_Init();
|
1997-08-02 03:10:38 +00:00
|
|
|
if (bimod == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize __builtin__");
|
1997-11-04 19:36:18 +00:00
|
|
|
interp->builtins = PyModule_GetDict(bimod);
|
|
|
|
Py_INCREF(interp->builtins);
|
1997-08-02 03:10:38 +00:00
|
|
|
|
|
|
|
sysmod = _PySys_Init();
|
|
|
|
if (sysmod == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize sys");
|
|
|
|
interp->sysdict = PyModule_GetDict(sysmod);
|
|
|
|
Py_INCREF(interp->sysdict);
|
|
|
|
_PyImport_FixupExtension("sys", "sys");
|
1997-03-05 00:20:32 +00:00
|
|
|
PySys_SetPath(Py_GetPath());
|
1997-08-02 03:10:38 +00:00
|
|
|
PyDict_SetItemString(interp->sysdict, "modules",
|
|
|
|
interp->modules);
|
|
|
|
|
1999-07-08 17:26:56 +00:00
|
|
|
_PyImport_Init();
|
|
|
|
|
2000-05-25 23:09:49 +00:00
|
|
|
/* initialize builtin exceptions */
|
2001-08-02 04:15:00 +00:00
|
|
|
_PyExc_Init();
|
2001-08-13 23:04:56 +00:00
|
|
|
_PyImport_FixupExtension("exceptions", "exceptions");
|
2000-05-25 23:09:49 +00:00
|
|
|
|
1997-08-29 22:07:17 +00:00
|
|
|
/* phase 2 of builtins */
|
1997-09-18 16:42:02 +00:00
|
|
|
_PyImport_FixupExtension("__builtin__", "__builtin__");
|
1997-08-29 22:07:17 +00:00
|
|
|
|
1992-10-18 18:53:57 +00:00
|
|
|
initsigs(); /* Signal handling stuff, including initintr() */
|
1995-01-09 17:53:26 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
initmain(); /* Module __main__ */
|
1997-08-29 22:32:42 +00:00
|
|
|
if (!Py_NoSiteFlag)
|
|
|
|
initsite(); /* Module site */
|
1995-01-09 17:53:26 +00:00
|
|
|
}
|
|
|
|
|
1998-12-15 16:12:00 +00:00
|
|
|
#ifdef COUNT_ALLOCS
|
2000-07-09 03:09:57 +00:00
|
|
|
extern void dump_counts(void);
|
1998-12-15 16:12:00 +00:00
|
|
|
#endif
|
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
/* Undo the effect of Py_Initialize().
|
|
|
|
|
|
|
|
Beware: if multiple interpreter and/or thread states exist, these
|
|
|
|
are not wiped out; only the current thread and interpreter state
|
|
|
|
are deleted. But since everything else is deleted, those other
|
|
|
|
interpreter and thread states should no longer be used.
|
|
|
|
|
|
|
|
(XXX We should do better, e.g. wipe out all interpreters and
|
|
|
|
threads.)
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
1997-05-05 20:56:21 +00:00
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_Finalize(void)
|
1997-05-05 20:56:21 +00:00
|
|
|
{
|
1997-08-02 03:10:38 +00:00
|
|
|
PyInterpreterState *interp;
|
1997-05-05 20:56:21 +00:00
|
|
|
PyThreadState *tstate;
|
1997-08-02 03:10:38 +00:00
|
|
|
|
1997-08-29 22:32:42 +00:00
|
|
|
if (!initialized)
|
1997-08-20 22:40:18 +00:00
|
|
|
return;
|
1997-08-02 03:10:38 +00:00
|
|
|
|
2001-01-21 03:40:37 +00:00
|
|
|
/* The interpreter is still entirely intact at this point, and the
|
|
|
|
* exit funcs may be relying on that. In particular, if some thread
|
|
|
|
* or exit func is still waiting to do an import, the import machinery
|
|
|
|
* expects Py_IsInitialized() to return true. So don't say the
|
|
|
|
* interpreter is uninitialized until after the exit funcs have run.
|
|
|
|
* Note that Threading.py uses an exit func to do a join on all the
|
|
|
|
* threads created thru it, so this also protects pending imports in
|
|
|
|
* the threads created via Threading.
|
|
|
|
*/
|
1998-01-19 22:00:38 +00:00
|
|
|
call_sys_exitfunc();
|
2001-01-21 03:40:37 +00:00
|
|
|
initialized = 0;
|
1998-01-19 22:00:38 +00:00
|
|
|
|
1997-11-03 21:58:47 +00:00
|
|
|
/* Get current thread state and interpreter pointer */
|
1997-08-02 03:10:38 +00:00
|
|
|
tstate = PyThreadState_Get();
|
|
|
|
interp = tstate->interp;
|
|
|
|
|
1997-11-03 21:58:47 +00:00
|
|
|
/* Disable signal handling */
|
|
|
|
PyOS_FiniInterrupts();
|
|
|
|
|
2001-08-17 18:39:25 +00:00
|
|
|
#ifdef Py_USING_UNICODE
|
2000-03-10 23:03:54 +00:00
|
|
|
/* Cleanup Unicode implementation */
|
|
|
|
_PyUnicode_Fini();
|
2001-08-17 18:39:25 +00:00
|
|
|
#endif
|
2000-03-10 23:03:54 +00:00
|
|
|
|
|
|
|
/* Cleanup Codec registry */
|
|
|
|
_PyCodecRegistry_Fini();
|
|
|
|
|
1997-11-03 21:58:47 +00:00
|
|
|
/* Destroy all modules */
|
1997-08-02 03:10:38 +00:00
|
|
|
PyImport_Cleanup();
|
1997-11-03 21:58:47 +00:00
|
|
|
|
1997-12-08 23:43:45 +00:00
|
|
|
/* Destroy the database used by _PyImport_{Fixup,Find}Extension */
|
|
|
|
_PyImport_Fini();
|
|
|
|
|
|
|
|
/* Debugging stuff */
|
|
|
|
#ifdef COUNT_ALLOCS
|
|
|
|
dump_counts();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef Py_REF_DEBUG
|
|
|
|
fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef Py_TRACE_REFS
|
2001-08-09 16:37:16 +00:00
|
|
|
if (Py_GETENV("PYTHONDUMPREFS")) {
|
1997-12-08 23:43:45 +00:00
|
|
|
_Py_PrintReferences(stderr);
|
|
|
|
}
|
|
|
|
#endif /* Py_TRACE_REFS */
|
|
|
|
|
1997-08-29 22:07:17 +00:00
|
|
|
/* Now we decref the exception classes. After this point nothing
|
|
|
|
can raise an exception. That's okay, because each Fini() method
|
|
|
|
below has been checked to make sure no exceptions are ever
|
|
|
|
raised.
|
|
|
|
*/
|
2001-08-02 04:15:00 +00:00
|
|
|
_PyExc_Fini();
|
2000-05-25 23:09:49 +00:00
|
|
|
|
|
|
|
/* Delete current thread */
|
|
|
|
PyInterpreterState_Clear(interp);
|
|
|
|
PyThreadState_Swap(NULL);
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
|
1997-08-05 02:22:03 +00:00
|
|
|
PyMethod_Fini();
|
|
|
|
PyFrame_Fini();
|
|
|
|
PyCFunction_Fini();
|
|
|
|
PyTuple_Fini();
|
1997-08-02 03:10:38 +00:00
|
|
|
PyString_Fini();
|
1997-08-05 02:22:03 +00:00
|
|
|
PyInt_Fini();
|
|
|
|
PyFloat_Fini();
|
|
|
|
|
|
|
|
/* XXX Still allocated:
|
|
|
|
- various static ad-hoc pointers to interned strings
|
|
|
|
- int and float free list blocks
|
|
|
|
- whatever various modules and libraries allocate
|
|
|
|
*/
|
1997-08-02 03:10:38 +00:00
|
|
|
|
|
|
|
PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
|
1997-08-05 02:22:03 +00:00
|
|
|
|
|
|
|
call_ll_exitfuncs();
|
|
|
|
|
|
|
|
#ifdef Py_TRACE_REFS
|
|
|
|
_Py_ResetReferences();
|
|
|
|
#endif /* Py_TRACE_REFS */
|
1997-08-02 03:10:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and initialize a new interpreter and thread, and return the
|
|
|
|
new thread. This requires that Py_Initialize() has been called
|
|
|
|
first.
|
|
|
|
|
|
|
|
Unsuccessful initialization yields a NULL pointer. Note that *no*
|
|
|
|
exception information is available even in this case -- the
|
|
|
|
exception information is held in the thread, and there is no
|
|
|
|
thread.
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
PyThreadState *
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_NewInterpreter(void)
|
1997-08-02 03:10:38 +00:00
|
|
|
{
|
1997-05-05 20:56:21 +00:00
|
|
|
PyInterpreterState *interp;
|
1997-08-02 03:10:38 +00:00
|
|
|
PyThreadState *tstate, *save_tstate;
|
|
|
|
PyObject *bimod, *sysmod;
|
1997-07-19 19:17:22 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
if (!initialized)
|
|
|
|
Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
|
1997-07-19 19:17:22 +00:00
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
interp = PyInterpreterState_New();
|
|
|
|
if (interp == NULL)
|
1997-08-02 03:10:38 +00:00
|
|
|
return NULL;
|
1997-07-19 19:17:22 +00:00
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
tstate = PyThreadState_New(interp);
|
1997-08-02 03:10:38 +00:00
|
|
|
if (tstate == NULL) {
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-05 20:56:21 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
save_tstate = PyThreadState_Swap(tstate);
|
1997-05-05 20:56:21 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
/* XXX The following is lax in error checking */
|
|
|
|
|
|
|
|
interp->modules = PyDict_New();
|
|
|
|
|
|
|
|
bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
|
|
|
|
if (bimod != NULL) {
|
1997-11-04 19:36:18 +00:00
|
|
|
interp->builtins = PyModule_GetDict(bimod);
|
|
|
|
Py_INCREF(interp->builtins);
|
1997-08-02 03:10:38 +00:00
|
|
|
}
|
|
|
|
sysmod = _PyImport_FindExtension("sys", "sys");
|
|
|
|
if (bimod != NULL && sysmod != NULL) {
|
|
|
|
interp->sysdict = PyModule_GetDict(sysmod);
|
|
|
|
Py_INCREF(interp->sysdict);
|
|
|
|
PySys_SetPath(Py_GetPath());
|
|
|
|
PyDict_SetItemString(interp->sysdict, "modules",
|
|
|
|
interp->modules);
|
|
|
|
initmain();
|
1997-08-29 22:32:42 +00:00
|
|
|
if (!Py_NoSiteFlag)
|
|
|
|
initsite();
|
1997-08-02 03:10:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!PyErr_Occurred())
|
|
|
|
return tstate;
|
|
|
|
|
|
|
|
/* Oops, it didn't work. Undo it all. */
|
|
|
|
|
|
|
|
PyErr_Print();
|
|
|
|
PyThreadState_Clear(tstate);
|
|
|
|
PyThreadState_Swap(save_tstate);
|
|
|
|
PyThreadState_Delete(tstate);
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete an interpreter and its last thread. This requires that the
|
|
|
|
given thread state is current, that the thread has no remaining
|
|
|
|
frames, and that it is its interpreter's only remaining thread.
|
|
|
|
It is a fatal error to violate these constraints.
|
|
|
|
|
|
|
|
(Py_Finalize() doesn't have these constraints -- it zaps
|
|
|
|
everything, regardless.)
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_EndInterpreter(PyThreadState *tstate)
|
1997-08-02 03:10:38 +00:00
|
|
|
{
|
|
|
|
PyInterpreterState *interp = tstate->interp;
|
|
|
|
|
|
|
|
if (tstate != PyThreadState_Get())
|
|
|
|
Py_FatalError("Py_EndInterpreter: thread is not current");
|
|
|
|
if (tstate->frame != NULL)
|
|
|
|
Py_FatalError("Py_EndInterpreter: thread still has a frame");
|
|
|
|
if (tstate != interp->tstate_head || tstate->next != NULL)
|
|
|
|
Py_FatalError("Py_EndInterpreter: not the last thread");
|
|
|
|
|
|
|
|
PyImport_Cleanup();
|
|
|
|
PyInterpreterState_Clear(interp);
|
|
|
|
PyThreadState_Swap(NULL);
|
|
|
|
PyInterpreterState_Delete(interp);
|
1997-07-19 19:17:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *progname = "python";
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_SetProgramName(char *pn)
|
1997-07-19 19:17:22 +00:00
|
|
|
{
|
|
|
|
if (pn && *pn)
|
|
|
|
progname = pn;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_GetProgramName(void)
|
1997-07-19 19:17:22 +00:00
|
|
|
{
|
|
|
|
return progname;
|
1997-05-05 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
1998-02-06 22:27:24 +00:00
|
|
|
static char *default_home = NULL;
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_SetPythonHome(char *home)
|
1998-02-06 22:27:24 +00:00
|
|
|
{
|
|
|
|
default_home = home;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_GetPythonHome(void)
|
1998-02-06 22:27:24 +00:00
|
|
|
{
|
|
|
|
char *home = default_home;
|
2001-07-23 16:30:27 +00:00
|
|
|
if (home == NULL && !Py_IgnoreEnvironmentFlag)
|
|
|
|
home = Py_GETENV("PYTHONHOME");
|
1998-02-06 22:27:24 +00:00
|
|
|
return home;
|
|
|
|
}
|
|
|
|
|
1995-01-09 17:53:26 +00:00
|
|
|
/* Create __main__ module */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
initmain(void)
|
1995-01-09 17:53:26 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *m, *d;
|
|
|
|
m = PyImport_AddModule("__main__");
|
1995-01-09 17:53:26 +00:00
|
|
|
if (m == NULL)
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_FatalError("can't create __main__ module");
|
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
if (PyDict_GetItemString(d, "__builtins__") == NULL) {
|
1997-11-19 16:15:37 +00:00
|
|
|
PyObject *bimod = PyImport_ImportModule("__builtin__");
|
|
|
|
if (bimod == NULL ||
|
|
|
|
PyDict_SetItemString(d, "__builtins__", bimod) != 0)
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_FatalError("can't add __builtins__ to __main__");
|
1999-01-29 21:30:22 +00:00
|
|
|
Py_DECREF(bimod);
|
1995-01-09 17:53:26 +00:00
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
1997-08-29 22:32:42 +00:00
|
|
|
/* Import the site module (not into __main__ though) */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
initsite(void)
|
1997-08-29 22:32:42 +00:00
|
|
|
{
|
|
|
|
PyObject *m, *f;
|
|
|
|
m = PyImport_ImportModule("site");
|
|
|
|
if (m == NULL) {
|
|
|
|
f = PySys_GetObject("stderr");
|
|
|
|
if (Py_VerboseFlag) {
|
|
|
|
PyFile_WriteString(
|
|
|
|
"'import site' failed; traceback:\n", f);
|
|
|
|
PyErr_Print();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyFile_WriteString(
|
|
|
|
"'import site' failed; use -v for traceback\n", f);
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_DECREF(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-08-04 12:41:02 +00:00
|
|
|
/* Parse input from a file and execute it */
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_AnyFile(FILE *fp, char *filename)
|
2000-08-27 19:21:52 +00:00
|
|
|
{
|
2001-03-22 02:47:58 +00:00
|
|
|
return PyRun_AnyFileExFlags(fp, filename, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_AnyFileFlags(FILE *fp, char *filename, PyCompilerFlags *flags)
|
|
|
|
{
|
|
|
|
return PyRun_AnyFileExFlags(fp, filename, 0, flags);
|
2000-08-27 19:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_AnyFileEx(FILE *fp, char *filename, int closeit)
|
2001-03-22 02:47:58 +00:00
|
|
|
{
|
|
|
|
return PyRun_AnyFileExFlags(fp, filename, closeit, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_AnyFileExFlags(FILE *fp, char *filename, int closeit,
|
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
|
|
|
if (filename == NULL)
|
|
|
|
filename = "???";
|
2000-08-27 19:21:52 +00:00
|
|
|
if (Py_FdIsInteractive(fp, filename)) {
|
2001-03-22 02:47:58 +00:00
|
|
|
int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
|
2000-08-27 19:21:52 +00:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
|
|
|
return err;
|
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
else
|
2001-03-22 02:47:58 +00:00
|
|
|
return PyRun_SimpleFileExFlags(fp, filename, closeit, flags);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_InteractiveLoop(FILE *fp, char *filename)
|
2001-03-22 02:47:58 +00:00
|
|
|
{
|
|
|
|
return PyRun_InteractiveLoopFlags(fp, filename, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_InteractiveLoopFlags(FILE *fp, char *filename, PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *v;
|
1992-08-04 12:41:02 +00:00
|
|
|
int ret;
|
2001-03-22 02:47:58 +00:00
|
|
|
PyCompilerFlags local_flags;
|
2001-03-01 22:59:14 +00:00
|
|
|
|
2001-03-22 02:47:58 +00:00
|
|
|
if (flags == NULL) {
|
|
|
|
flags = &local_flags;
|
2001-07-16 02:29:45 +00:00
|
|
|
local_flags.cf_flags = 0;
|
2001-03-22 02:47:58 +00:00
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
v = PySys_GetObject("ps1");
|
1992-08-04 12:41:02 +00:00
|
|
|
if (v == NULL) {
|
1997-03-05 00:20:32 +00:00
|
|
|
PySys_SetObject("ps1", v = PyString_FromString(">>> "));
|
|
|
|
Py_XDECREF(v);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
v = PySys_GetObject("ps2");
|
1992-08-04 12:41:02 +00:00
|
|
|
if (v == NULL) {
|
1997-03-05 00:20:32 +00:00
|
|
|
PySys_SetObject("ps2", v = PyString_FromString("... "));
|
|
|
|
Py_XDECREF(v);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
for (;;) {
|
2001-03-22 02:47:58 +00:00
|
|
|
ret = PyRun_InteractiveOneFlags(fp, filename, flags);
|
1996-05-22 16:35:33 +00:00
|
|
|
#ifdef Py_REF_DEBUG
|
1995-03-29 16:57:48 +00:00
|
|
|
fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
|
1992-08-04 12:41:02 +00:00
|
|
|
#endif
|
|
|
|
if (ret == E_EOF)
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
if (ret == E_NOMEM)
|
|
|
|
return -1;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_InteractiveOne(FILE *fp, char *filename)
|
2001-03-01 22:59:14 +00:00
|
|
|
{
|
|
|
|
return PyRun_InteractiveOneFlags(fp, filename, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_InteractiveOneFlags(FILE *fp, char *filename, PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *m, *d, *v, *w;
|
1992-08-04 12:41:02 +00:00
|
|
|
node *n;
|
1994-08-29 12:50:44 +00:00
|
|
|
perrdetail err;
|
1997-11-25 20:58:13 +00:00
|
|
|
char *ps1 = "", *ps2 = "";
|
2001-07-16 05:37:24 +00:00
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
v = PySys_GetObject("ps1");
|
1997-11-25 20:58:13 +00:00
|
|
|
if (v != NULL) {
|
|
|
|
v = PyObject_Str(v);
|
|
|
|
if (v == NULL)
|
|
|
|
PyErr_Clear();
|
|
|
|
else if (PyString_Check(v))
|
|
|
|
ps1 = PyString_AsString(v);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
1997-11-25 20:58:13 +00:00
|
|
|
w = PySys_GetObject("ps2");
|
|
|
|
if (w != NULL) {
|
|
|
|
w = PyObject_Str(w);
|
|
|
|
if (w == NULL)
|
|
|
|
PyErr_Clear();
|
|
|
|
else if (PyString_Check(w))
|
|
|
|
ps2 = PyString_AsString(w);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
2001-07-16 05:37:24 +00:00
|
|
|
n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
|
|
|
|
Py_single_input, ps1, ps2, &err,
|
|
|
|
(flags &&
|
2001-08-10 21:41:33 +00:00
|
|
|
flags->cf_flags & CO_GENERATOR_ALLOWED) ?
|
2001-07-16 05:37:24 +00:00
|
|
|
PyPARSE_YIELD_IS_KEYWORD : 0);
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
1994-08-29 12:50:44 +00:00
|
|
|
if (n == NULL) {
|
|
|
|
if (err.error == E_EOF) {
|
|
|
|
if (err.text)
|
2000-05-03 23:44:39 +00:00
|
|
|
PyMem_DEL(err.text);
|
1994-08-29 12:50:44 +00:00
|
|
|
return E_EOF;
|
|
|
|
}
|
|
|
|
err_input(&err);
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Print();
|
1994-08-29 12:50:44 +00:00
|
|
|
return err.error;
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
m = PyImport_AddModule("__main__");
|
1992-08-04 12:41:02 +00:00
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
1997-03-05 00:20:32 +00:00
|
|
|
d = PyModule_GetDict(m);
|
2001-03-01 22:59:14 +00:00
|
|
|
v = run_node(n, filename, d, d, flags);
|
1992-08-04 12:41:02 +00:00
|
|
|
if (v == NULL) {
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Print();
|
1992-08-04 12:41:02 +00:00
|
|
|
return -1;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_DECREF(v);
|
1997-05-22 22:35:04 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1992-08-04 12:41:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_SimpleFile(FILE *fp, char *filename)
|
2000-08-27 19:21:52 +00:00
|
|
|
{
|
|
|
|
return PyRun_SimpleFileEx(fp, filename, 0);
|
|
|
|
}
|
|
|
|
|
2001-01-04 20:30:56 +00:00
|
|
|
/* Check whether a file maybe a pyc file: Look at the extension,
|
|
|
|
the file type, and, if we may close it, at the first few bytes. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
maybe_pyc_file(FILE *fp, char* filename, char* ext, int closeit)
|
|
|
|
{
|
|
|
|
if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#ifdef macintosh
|
|
|
|
/* On a mac, we also assume a pyc file for types 'PYC ' and 'APPL' */
|
|
|
|
if (PyMac_getfiletype(filename) == 'PYC '
|
|
|
|
|| PyMac_getfiletype(filename) == 'APPL')
|
|
|
|
return 1;
|
|
|
|
#endif /* macintosh */
|
|
|
|
|
|
|
|
/* Only look into the file if we are allowed to close it, since
|
|
|
|
it then should also be seekable. */
|
|
|
|
if (closeit) {
|
|
|
|
/* Read only two bytes of the magic. If the file was opened in
|
|
|
|
text mode, the bytes 3 and 4 of the magic (\r\n) might not
|
|
|
|
be read as they are on disk. */
|
|
|
|
unsigned int halfmagic = PyImport_GetMagicNumber() & 0xFFFF;
|
|
|
|
unsigned char buf[2];
|
2001-02-11 04:35:39 +00:00
|
|
|
/* Mess: In case of -x, the stream is NOT at its start now,
|
|
|
|
and ungetc() was used to push back the first newline,
|
2001-02-17 22:02:34 +00:00
|
|
|
which makes the current stream position formally undefined,
|
|
|
|
and a x-platform nightmare.
|
|
|
|
Unfortunately, we have no direct way to know whether -x
|
|
|
|
was specified. So we use a terrible hack: if the current
|
|
|
|
stream position is not 0, we assume -x was specified, and
|
|
|
|
give up. Bug 132850 on SourceForge spells out the
|
|
|
|
hopelessness of trying anything else (fseek and ftell
|
|
|
|
don't work predictably x-platform for text-mode files).
|
2001-02-11 04:35:39 +00:00
|
|
|
*/
|
|
|
|
int ispyc = 0;
|
2001-02-17 22:02:34 +00:00
|
|
|
if (ftell(fp) == 0) {
|
|
|
|
if (fread(buf, 1, 2, fp) == 2 &&
|
|
|
|
((unsigned int)buf[1]<<8 | buf[0]) == halfmagic)
|
|
|
|
ispyc = 1;
|
|
|
|
rewind(fp);
|
|
|
|
}
|
2001-02-11 04:35:39 +00:00
|
|
|
return ispyc;
|
2001-01-04 20:30:56 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-08-27 19:21:52 +00:00
|
|
|
int
|
|
|
|
PyRun_SimpleFileEx(FILE *fp, char *filename, int closeit)
|
2001-03-22 02:47:58 +00:00
|
|
|
{
|
|
|
|
return PyRun_SimpleFileExFlags(fp, filename, closeit, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyRun_SimpleFileExFlags(FILE *fp, char *filename, int closeit,
|
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *m, *d, *v;
|
1994-09-14 13:31:04 +00:00
|
|
|
char *ext;
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
m = PyImport_AddModule("__main__");
|
1992-08-04 12:41:02 +00:00
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
1997-03-05 00:20:32 +00:00
|
|
|
d = PyModule_GetDict(m);
|
1994-09-14 13:31:04 +00:00
|
|
|
ext = filename + strlen(filename) - 4;
|
2001-01-04 20:30:56 +00:00
|
|
|
if (maybe_pyc_file(fp, filename, ext, closeit)) {
|
1994-09-14 13:31:04 +00:00
|
|
|
/* Try to run a pyc file. First, re-open in binary */
|
2000-08-27 19:21:52 +00:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
1994-09-14 13:31:04 +00:00
|
|
|
if( (fp = fopen(filename, "rb")) == NULL ) {
|
|
|
|
fprintf(stderr, "python: Can't reopen .pyc file\n");
|
|
|
|
return -1;
|
|
|
|
}
|
1997-04-02 05:28:38 +00:00
|
|
|
/* Turn on optimization if a .pyo file is given */
|
|
|
|
if (strcmp(ext, ".pyo") == 0)
|
|
|
|
Py_OptimizeFlag = 1;
|
2001-03-22 02:47:58 +00:00
|
|
|
v = run_pyc_file(fp, filename, d, d, flags);
|
1994-09-14 13:31:04 +00:00
|
|
|
} else {
|
2001-03-22 02:47:58 +00:00
|
|
|
v = PyRun_FileExFlags(fp, filename, Py_file_input, d, d,
|
|
|
|
closeit, flags);
|
1994-09-14 13:31:04 +00:00
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
if (v == NULL) {
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Print();
|
1992-08-04 12:41:02 +00:00
|
|
|
return -1;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_DECREF(v);
|
1997-05-22 22:35:04 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1992-08-04 12:41:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_SimpleString(char *command)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *m, *d, *v;
|
|
|
|
m = PyImport_AddModule("__main__");
|
1992-08-04 12:41:02 +00:00
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
1997-03-05 00:20:32 +00:00
|
|
|
d = PyModule_GetDict(m);
|
1997-05-07 17:46:13 +00:00
|
|
|
v = PyRun_String(command, Py_file_input, d, d);
|
1992-08-04 12:41:02 +00:00
|
|
|
if (v == NULL) {
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Print();
|
1992-08-04 12:41:02 +00:00
|
|
|
return -1;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_DECREF(v);
|
1997-05-22 22:35:04 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1992-08-04 12:41:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-08-29 22:07:17 +00:00
|
|
|
static int
|
2000-07-22 18:47:25 +00:00
|
|
|
parse_syntax_error(PyObject *err, PyObject **message, char **filename,
|
|
|
|
int *lineno, int *offset, char **text)
|
1997-08-29 22:07:17 +00:00
|
|
|
{
|
|
|
|
long hold;
|
|
|
|
PyObject *v;
|
|
|
|
|
|
|
|
/* old style errors */
|
|
|
|
if (PyTuple_Check(err))
|
|
|
|
return PyArg_Parse(err, "(O(ziiz))", message, filename,
|
|
|
|
lineno, offset, text);
|
|
|
|
|
|
|
|
/* new style errors. `err' is an instance */
|
|
|
|
|
|
|
|
if (! (v = PyObject_GetAttrString(err, "msg")))
|
|
|
|
goto finally;
|
|
|
|
*message = v;
|
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "filename")))
|
|
|
|
goto finally;
|
|
|
|
if (v == Py_None)
|
|
|
|
*filename = NULL;
|
|
|
|
else if (! (*filename = PyString_AsString(v)))
|
|
|
|
goto finally;
|
|
|
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "lineno")))
|
|
|
|
goto finally;
|
|
|
|
hold = PyInt_AsLong(v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
if (hold < 0 && PyErr_Occurred())
|
|
|
|
goto finally;
|
|
|
|
*lineno = (int)hold;
|
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "offset")))
|
|
|
|
goto finally;
|
2001-02-28 07:07:43 +00:00
|
|
|
if (v == Py_None) {
|
|
|
|
*offset = -1;
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
} else {
|
|
|
|
hold = PyInt_AsLong(v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
if (hold < 0 && PyErr_Occurred())
|
|
|
|
goto finally;
|
|
|
|
*offset = (int)hold;
|
|
|
|
}
|
1997-08-29 22:07:17 +00:00
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "text")))
|
|
|
|
goto finally;
|
|
|
|
if (v == Py_None)
|
|
|
|
*text = NULL;
|
|
|
|
else if (! (*text = PyString_AsString(v)))
|
|
|
|
goto finally;
|
|
|
|
Py_DECREF(v);
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
finally:
|
|
|
|
Py_XDECREF(v);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1992-08-04 12:41:02 +00:00
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyErr_Print(void)
|
1998-02-06 22:27:24 +00:00
|
|
|
{
|
|
|
|
PyErr_PrintEx(1);
|
|
|
|
}
|
|
|
|
|
2001-02-28 07:07:43 +00:00
|
|
|
static void
|
|
|
|
print_error_text(PyObject *f, int offset, char *text)
|
|
|
|
{
|
|
|
|
char *nl;
|
|
|
|
if (offset >= 0) {
|
|
|
|
if (offset > 0 && offset == (int)strlen(text))
|
|
|
|
offset--;
|
|
|
|
for (;;) {
|
|
|
|
nl = strchr(text, '\n');
|
|
|
|
if (nl == NULL || nl-text >= offset)
|
|
|
|
break;
|
|
|
|
offset -= (nl+1-text);
|
|
|
|
text = nl+1;
|
|
|
|
}
|
|
|
|
while (*text == ' ' || *text == '\t') {
|
|
|
|
text++;
|
|
|
|
offset--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
PyFile_WriteString(text, f);
|
|
|
|
if (*text == '\0' || text[strlen(text)-1] != '\n')
|
|
|
|
PyFile_WriteString("\n", f);
|
|
|
|
if (offset == -1)
|
|
|
|
return;
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
offset--;
|
|
|
|
while (offset > 0) {
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
offset--;
|
|
|
|
}
|
|
|
|
PyFile_WriteString("^\n", f);
|
|
|
|
}
|
|
|
|
|
2001-03-23 17:54:43 +00:00
|
|
|
static void
|
|
|
|
handle_system_exit(void)
|
2001-03-23 15:36:41 +00:00
|
|
|
{
|
2001-03-23 17:54:43 +00:00
|
|
|
PyObject *exception, *value, *tb;
|
|
|
|
PyErr_Fetch(&exception, &value, &tb);
|
2001-03-23 15:36:41 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
|
|
|
fflush(stdout);
|
|
|
|
if (value == NULL || value == Py_None)
|
|
|
|
Py_Exit(0);
|
|
|
|
if (PyInstance_Check(value)) {
|
|
|
|
/* The error code should be in the `code' attribute. */
|
|
|
|
PyObject *code = PyObject_GetAttrString(value, "code");
|
|
|
|
if (code) {
|
|
|
|
Py_DECREF(value);
|
|
|
|
value = code;
|
|
|
|
if (value == Py_None)
|
|
|
|
Py_Exit(0);
|
|
|
|
}
|
|
|
|
/* If we failed to dig out the 'code' attribute,
|
|
|
|
just let the else clause below print the error. */
|
|
|
|
}
|
|
|
|
if (PyInt_Check(value))
|
|
|
|
Py_Exit((int)PyInt_AsLong(value));
|
|
|
|
else {
|
|
|
|
PyObject_Print(value, stderr, Py_PRINT_RAW);
|
|
|
|
PySys_WriteStderr("\n");
|
|
|
|
Py_Exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-02-06 22:27:24 +00:00
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyErr_PrintEx(int set_sys_last_vars)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
2001-03-23 02:46:52 +00:00
|
|
|
PyObject *exception, *v, *tb, *hook;
|
2001-03-23 17:54:43 +00:00
|
|
|
|
|
|
|
if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
handle_system_exit();
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Fetch(&exception, &v, &tb);
|
1997-08-29 22:07:17 +00:00
|
|
|
PyErr_NormalizeException(&exception, &v, &tb);
|
1995-01-02 19:04:15 +00:00
|
|
|
if (exception == NULL)
|
1997-05-23 00:19:20 +00:00
|
|
|
return;
|
1998-02-06 22:27:24 +00:00
|
|
|
if (set_sys_last_vars) {
|
|
|
|
PySys_SetObject("last_type", exception);
|
|
|
|
PySys_SetObject("last_value", v);
|
|
|
|
PySys_SetObject("last_traceback", tb);
|
|
|
|
}
|
2001-03-23 02:46:52 +00:00
|
|
|
hook = PySys_GetObject("excepthook");
|
|
|
|
if (hook) {
|
|
|
|
PyObject *args = Py_BuildValue("(OOO)",
|
|
|
|
exception, v ? v : Py_None, tb ? tb : Py_None);
|
|
|
|
PyObject *result = PyEval_CallObject(hook, args);
|
|
|
|
if (result == NULL) {
|
|
|
|
PyObject *exception2, *v2, *tb2;
|
2001-03-23 17:54:43 +00:00
|
|
|
if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
handle_system_exit();
|
|
|
|
}
|
2001-03-23 02:46:52 +00:00
|
|
|
PyErr_Fetch(&exception2, &v2, &tb2);
|
|
|
|
PyErr_NormalizeException(&exception2, &v2, &tb2);
|
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
|
|
|
fflush(stdout);
|
|
|
|
PySys_WriteStderr("Error in sys.excepthook:\n");
|
|
|
|
PyErr_Display(exception2, v2, tb2);
|
|
|
|
PySys_WriteStderr("\nOriginal exception was:\n");
|
|
|
|
PyErr_Display(exception, v, tb);
|
|
|
|
}
|
|
|
|
Py_XDECREF(result);
|
|
|
|
Py_XDECREF(args);
|
|
|
|
} else {
|
|
|
|
PySys_WriteStderr("sys.excepthook is missing\n");
|
|
|
|
PyErr_Display(exception, v, tb);
|
|
|
|
}
|
|
|
|
Py_XDECREF(exception);
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(tb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
PyObject *v = value;
|
|
|
|
PyObject *f = PySys_GetObject("stderr");
|
1992-09-25 21:59:05 +00:00
|
|
|
if (f == NULL)
|
|
|
|
fprintf(stderr, "lost sys.stderr\n");
|
|
|
|
else {
|
1998-02-28 04:31:39 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1997-05-22 22:35:04 +00:00
|
|
|
fflush(stdout);
|
2001-03-23 02:46:52 +00:00
|
|
|
if (tb && tb != Py_None)
|
|
|
|
err = PyTraceBack_Print(tb, f);
|
1997-08-26 18:09:48 +00:00
|
|
|
if (err == 0 &&
|
|
|
|
PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError))
|
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *message;
|
1994-08-29 12:50:44 +00:00
|
|
|
char *filename, *text;
|
|
|
|
int lineno, offset;
|
1997-08-29 22:07:17 +00:00
|
|
|
if (!parse_syntax_error(v, &message, &filename,
|
|
|
|
&lineno, &offset, &text))
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Clear();
|
1994-08-29 12:50:44 +00:00
|
|
|
else {
|
|
|
|
char buf[10];
|
1997-03-05 00:20:32 +00:00
|
|
|
PyFile_WriteString(" File \"", f);
|
1994-08-29 12:50:44 +00:00
|
|
|
if (filename == NULL)
|
1997-03-05 00:20:32 +00:00
|
|
|
PyFile_WriteString("<string>", f);
|
1994-08-29 12:50:44 +00:00
|
|
|
else
|
1997-03-05 00:20:32 +00:00
|
|
|
PyFile_WriteString(filename, f);
|
|
|
|
PyFile_WriteString("\", line ", f);
|
1994-08-29 12:50:44 +00:00
|
|
|
sprintf(buf, "%d", lineno);
|
1997-03-05 00:20:32 +00:00
|
|
|
PyFile_WriteString(buf, f);
|
|
|
|
PyFile_WriteString("\n", f);
|
2001-02-28 07:07:43 +00:00
|
|
|
if (text != NULL)
|
|
|
|
print_error_text(f, offset, text);
|
1994-08-29 12:50:44 +00:00
|
|
|
v = message;
|
1997-05-22 22:35:04 +00:00
|
|
|
/* Can't be bothered to check all those
|
|
|
|
PyFile_WriteString() calls */
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
err = -1;
|
1994-08-29 12:50:44 +00:00
|
|
|
}
|
|
|
|
}
|
1997-05-22 22:35:04 +00:00
|
|
|
if (err) {
|
|
|
|
/* Don't do anything else */
|
|
|
|
}
|
|
|
|
else if (PyClass_Check(exception)) {
|
1997-09-16 21:42:03 +00:00
|
|
|
PyClassObject* exc = (PyClassObject*)exception;
|
|
|
|
PyObject* className = exc->cl_name;
|
|
|
|
PyObject* moduleName =
|
|
|
|
PyDict_GetItemString(exc->cl_dict, "__module__");
|
|
|
|
|
|
|
|
if (moduleName == NULL)
|
1997-05-22 22:35:04 +00:00
|
|
|
err = PyFile_WriteString("<unknown>", f);
|
1997-09-16 21:42:03 +00:00
|
|
|
else {
|
|
|
|
char* modstr = PyString_AsString(moduleName);
|
|
|
|
if (modstr && strcmp(modstr, "exceptions"))
|
|
|
|
{
|
|
|
|
err = PyFile_WriteString(modstr, f);
|
|
|
|
err += PyFile_WriteString(".", f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (err == 0) {
|
|
|
|
if (className == NULL)
|
|
|
|
err = PyFile_WriteString("<unknown>", f);
|
|
|
|
else
|
|
|
|
err = PyFile_WriteObject(className, f,
|
|
|
|
Py_PRINT_RAW);
|
|
|
|
}
|
1995-02-07 15:30:45 +00:00
|
|
|
}
|
1997-05-22 22:35:04 +00:00
|
|
|
else
|
|
|
|
err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
|
|
|
|
if (err == 0) {
|
|
|
|
if (v != NULL && v != Py_None) {
|
1997-08-29 22:07:17 +00:00
|
|
|
PyObject *s = PyObject_Str(v);
|
|
|
|
/* only print colon if the str() of the
|
|
|
|
object is not the empty string
|
|
|
|
*/
|
1997-09-05 19:11:53 +00:00
|
|
|
if (s == NULL)
|
|
|
|
err = -1;
|
|
|
|
else if (!PyString_Check(s) ||
|
|
|
|
PyString_GET_SIZE(s) != 0)
|
1997-08-29 22:07:17 +00:00
|
|
|
err = PyFile_WriteString(": ", f);
|
1997-05-22 22:35:04 +00:00
|
|
|
if (err == 0)
|
1997-09-05 19:11:53 +00:00
|
|
|
err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
|
|
|
|
Py_XDECREF(s);
|
1997-05-22 22:35:04 +00:00
|
|
|
}
|
1992-09-25 21:59:05 +00:00
|
|
|
}
|
1997-05-22 22:35:04 +00:00
|
|
|
if (err == 0)
|
|
|
|
err = PyFile_WriteString("\n", f);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
1997-05-22 22:35:04 +00:00
|
|
|
/* If an error happened here, don't show it.
|
|
|
|
XXX This is wrong, but too many callers rely on this behavior. */
|
|
|
|
if (err != 0)
|
|
|
|
PyErr_Clear();
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_String(char *str, int start, PyObject *globals, PyObject *locals)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
return run_err_node(PyParser_SimpleParseString(str, start),
|
2001-03-01 22:59:14 +00:00
|
|
|
"<string>", globals, locals, NULL);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyRun_File(FILE *fp, char *filename, int start, PyObject *globals,
|
|
|
|
PyObject *locals)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
2000-08-27 20:18:17 +00:00
|
|
|
return PyRun_FileEx(fp, filename, start, globals, locals, 0);
|
2000-08-27 19:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyRun_FileEx(FILE *fp, char *filename, int start, PyObject *globals,
|
2001-03-22 02:47:58 +00:00
|
|
|
PyObject *locals, int closeit)
|
2000-08-27 19:21:52 +00:00
|
|
|
{
|
|
|
|
node *n = PyParser_SimpleParseFile(fp, filename, start);
|
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
2001-03-01 22:59:14 +00:00
|
|
|
return run_err_node(n, filename, globals, locals, NULL);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
2001-03-22 02:47:58 +00:00
|
|
|
PyObject *
|
|
|
|
PyRun_StringFlags(char *str, int start, PyObject *globals, PyObject *locals,
|
|
|
|
PyCompilerFlags *flags)
|
|
|
|
{
|
2001-07-16 16:51:33 +00:00
|
|
|
return run_err_node(PyParser_SimpleParseStringFlags(
|
2001-08-10 21:41:33 +00:00
|
|
|
str, start,
|
|
|
|
(flags && flags->cf_flags & CO_GENERATOR_ALLOWED) ?
|
2001-07-16 16:51:33 +00:00
|
|
|
PyPARSE_YIELD_IS_KEYWORD : 0),
|
2001-03-22 02:47:58 +00:00
|
|
|
"<string>", globals, locals, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyRun_FileFlags(FILE *fp, char *filename, int start, PyObject *globals,
|
|
|
|
PyObject *locals, PyCompilerFlags *flags)
|
|
|
|
{
|
|
|
|
return PyRun_FileExFlags(fp, filename, start, globals, locals, 0,
|
|
|
|
flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyRun_FileExFlags(FILE *fp, char *filename, int start, PyObject *globals,
|
|
|
|
PyObject *locals, int closeit, PyCompilerFlags *flags)
|
|
|
|
{
|
2001-07-16 05:37:24 +00:00
|
|
|
node *n = PyParser_SimpleParseFileFlags(fp, filename, start,
|
2001-08-10 21:41:33 +00:00
|
|
|
(flags && flags->cf_flags & CO_GENERATOR_ALLOWED) ?
|
2001-07-16 05:37:24 +00:00
|
|
|
PyPARSE_YIELD_IS_KEYWORD : 0);
|
2001-03-22 02:47:58 +00:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
|
|
|
return run_err_node(n, filename, globals, locals, flags);
|
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
static PyObject *
|
2001-03-01 22:59:14 +00:00
|
|
|
run_err_node(node *n, char *filename, PyObject *globals, PyObject *locals,
|
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1994-08-29 12:50:44 +00:00
|
|
|
if (n == NULL)
|
|
|
|
return NULL;
|
2001-03-01 22:59:14 +00:00
|
|
|
return run_node(n, filename, globals, locals, flags);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
static PyObject *
|
2001-03-01 22:59:14 +00:00
|
|
|
run_node(node *n, char *filename, PyObject *globals, PyObject *locals,
|
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyCodeObject *co;
|
|
|
|
PyObject *v;
|
2001-03-01 22:59:14 +00:00
|
|
|
co = PyNode_CompileFlags(n, filename, flags);
|
1997-03-05 00:20:32 +00:00
|
|
|
PyNode_Free(n);
|
1992-08-04 12:41:02 +00:00
|
|
|
if (co == NULL)
|
|
|
|
return NULL;
|
1997-03-05 00:20:32 +00:00
|
|
|
v = PyEval_EvalCode(co, globals, locals);
|
|
|
|
Py_DECREF(co);
|
1992-08-04 12:41:02 +00:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
static PyObject *
|
2001-03-22 02:47:58 +00:00
|
|
|
run_pyc_file(FILE *fp, char *filename, PyObject *globals, PyObject *locals,
|
|
|
|
PyCompilerFlags *flags)
|
1994-09-14 13:31:04 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyCodeObject *co;
|
|
|
|
PyObject *v;
|
1994-09-14 13:31:04 +00:00
|
|
|
long magic;
|
2000-08-31 05:38:39 +00:00
|
|
|
long PyImport_GetMagicNumber(void);
|
1994-09-14 13:31:04 +00:00
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
magic = PyMarshal_ReadLongFromFile(fp);
|
|
|
|
if (magic != PyImport_GetMagicNumber()) {
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
1994-09-14 13:31:04 +00:00
|
|
|
"Bad magic number in .pyc file");
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
(void) PyMarshal_ReadLongFromFile(fp);
|
2001-01-28 00:27:39 +00:00
|
|
|
v = PyMarshal_ReadLastObjectFromFile(fp);
|
1994-09-14 13:31:04 +00:00
|
|
|
fclose(fp);
|
1997-03-05 00:20:32 +00:00
|
|
|
if (v == NULL || !PyCode_Check(v)) {
|
|
|
|
Py_XDECREF(v);
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
1994-09-14 13:31:04 +00:00
|
|
|
"Bad code object in .pyc file");
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
co = (PyCodeObject *)v;
|
|
|
|
v = PyEval_EvalCode(co, globals, locals);
|
2001-08-10 21:41:33 +00:00
|
|
|
if (v && flags)
|
|
|
|
flags->cf_flags |= (co->co_flags & PyCF_MASK);
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_DECREF(co);
|
1994-09-14 13:31:04 +00:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_CompileString(char *str, char *filename, int start)
|
2001-03-22 02:47:58 +00:00
|
|
|
{
|
|
|
|
return Py_CompileStringFlags(str, filename, start, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
Py_CompileStringFlags(char *str, char *filename, int start,
|
|
|
|
PyCompilerFlags *flags)
|
1993-03-30 17:46:03 +00:00
|
|
|
{
|
|
|
|
node *n;
|
1997-03-05 00:20:32 +00:00
|
|
|
PyCodeObject *co;
|
2001-07-16 05:37:24 +00:00
|
|
|
n = PyParser_SimpleParseStringFlags(str, start,
|
2001-08-10 21:41:33 +00:00
|
|
|
(flags && flags->cf_flags & CO_GENERATOR_ALLOWED) ?
|
2001-07-16 05:37:24 +00:00
|
|
|
PyPARSE_YIELD_IS_KEYWORD : 0);
|
1994-08-29 12:50:44 +00:00
|
|
|
if (n == NULL)
|
1993-03-30 17:46:03 +00:00
|
|
|
return NULL;
|
2001-03-26 19:53:38 +00:00
|
|
|
co = PyNode_CompileFlags(n, filename, flags);
|
1997-03-05 00:20:32 +00:00
|
|
|
PyNode_Free(n);
|
|
|
|
return (PyObject *)co;
|
1993-03-30 17:46:03 +00:00
|
|
|
}
|
|
|
|
|
2001-02-02 18:19:15 +00:00
|
|
|
struct symtable *
|
|
|
|
Py_SymtableString(char *str, char *filename, int start)
|
|
|
|
{
|
|
|
|
node *n;
|
|
|
|
struct symtable *st;
|
|
|
|
n = PyParser_SimpleParseString(str, start);
|
|
|
|
if (n == NULL)
|
|
|
|
return NULL;
|
|
|
|
st = PyNode_CompileSymtable(n, filename);
|
|
|
|
PyNode_Free(n);
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
/* Simplified interface to parsefile -- return node or set exception */
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
node *
|
2001-07-16 05:37:24 +00:00
|
|
|
PyParser_SimpleParseFileFlags(FILE *fp, char *filename, int start, int flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1994-08-29 12:50:44 +00:00
|
|
|
node *n;
|
|
|
|
perrdetail err;
|
2001-07-16 05:37:24 +00:00
|
|
|
n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar, start,
|
|
|
|
(char *)0, (char *)0, &err, flags);
|
1994-08-29 12:50:44 +00:00
|
|
|
if (n == NULL)
|
|
|
|
err_input(&err);
|
|
|
|
return n;
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
2001-07-16 05:37:24 +00:00
|
|
|
node *
|
|
|
|
PyParser_SimpleParseFile(FILE *fp, char *filename, int start)
|
|
|
|
{
|
|
|
|
return PyParser_SimpleParseFileFlags(fp, filename, start, 0);
|
|
|
|
}
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
/* Simplified interface to parsestring -- return node or set exception */
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
node *
|
2001-07-16 05:37:24 +00:00
|
|
|
PyParser_SimpleParseStringFlags(char *str, int start, int flags)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1994-08-29 12:50:44 +00:00
|
|
|
node *n;
|
|
|
|
perrdetail err;
|
2001-07-16 05:37:24 +00:00
|
|
|
n = PyParser_ParseStringFlags(str, &_PyParser_Grammar, start, &err,
|
|
|
|
flags);
|
1994-08-29 12:50:44 +00:00
|
|
|
if (n == NULL)
|
|
|
|
err_input(&err);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2001-07-16 05:37:24 +00:00
|
|
|
node *
|
|
|
|
PyParser_SimpleParseString(char *str, int start)
|
|
|
|
{
|
|
|
|
return PyParser_SimpleParseStringFlags(str, start, 0);
|
|
|
|
}
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
/* Set the error appropriate to the given input error code (see errcode.h) */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
err_input(perrdetail *err)
|
1994-08-29 12:50:44 +00:00
|
|
|
{
|
2000-07-11 17:53:00 +00:00
|
|
|
PyObject *v, *w, *errtype;
|
1994-08-29 12:50:44 +00:00
|
|
|
char *msg = NULL;
|
2000-07-11 17:53:00 +00:00
|
|
|
errtype = PyExc_SyntaxError;
|
1997-03-05 00:20:32 +00:00
|
|
|
v = Py_BuildValue("(ziiz)", err->filename,
|
1994-08-29 12:50:44 +00:00
|
|
|
err->lineno, err->offset, err->text);
|
|
|
|
if (err->text != NULL) {
|
2000-05-03 23:44:39 +00:00
|
|
|
PyMem_DEL(err->text);
|
1994-08-29 12:50:44 +00:00
|
|
|
err->text = NULL;
|
|
|
|
}
|
|
|
|
switch (err->error) {
|
|
|
|
case E_SYNTAX:
|
2000-07-11 17:53:00 +00:00
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
if (err->expected == INDENT)
|
|
|
|
msg = "expected an indented block";
|
|
|
|
else if (err->token == INDENT)
|
|
|
|
msg = "unexpected indent";
|
|
|
|
else if (err->token == DEDENT)
|
|
|
|
msg = "unexpected unindent";
|
|
|
|
else {
|
|
|
|
errtype = PyExc_SyntaxError;
|
|
|
|
msg = "invalid syntax";
|
|
|
|
}
|
1994-08-29 12:50:44 +00:00
|
|
|
break;
|
|
|
|
case E_TOKEN:
|
|
|
|
msg = "invalid token";
|
|
|
|
break;
|
|
|
|
case E_INTR:
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_SetNone(PyExc_KeyboardInterrupt);
|
1999-01-27 16:39:40 +00:00
|
|
|
Py_XDECREF(v);
|
1994-08-29 12:50:44 +00:00
|
|
|
return;
|
|
|
|
case E_NOMEM:
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_NoMemory();
|
1999-01-27 16:39:40 +00:00
|
|
|
Py_XDECREF(v);
|
1994-08-29 12:50:44 +00:00
|
|
|
return;
|
|
|
|
case E_EOF:
|
|
|
|
msg = "unexpected EOF while parsing";
|
|
|
|
break;
|
2000-07-11 17:53:00 +00:00
|
|
|
case E_TABSPACE:
|
|
|
|
errtype = PyExc_TabError;
|
1998-04-10 19:43:42 +00:00
|
|
|
msg = "inconsistent use of tabs and spaces in indentation";
|
|
|
|
break;
|
2000-06-20 19:10:44 +00:00
|
|
|
case E_OVERFLOW:
|
|
|
|
msg = "expression too long";
|
|
|
|
break;
|
2000-07-11 17:53:00 +00:00
|
|
|
case E_DEDENT:
|
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
msg = "unindent does not match any outer indentation level";
|
|
|
|
break;
|
|
|
|
case E_TOODEEP:
|
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
msg = "too many levels of indentation";
|
|
|
|
break;
|
1994-08-29 12:50:44 +00:00
|
|
|
default:
|
|
|
|
fprintf(stderr, "error=%d\n", err->error);
|
|
|
|
msg = "unknown parsing error";
|
|
|
|
break;
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
w = Py_BuildValue("(sO)", msg, v);
|
2001-03-23 04:01:07 +00:00
|
|
|
Py_XDECREF(v);
|
2000-07-11 17:53:00 +00:00
|
|
|
PyErr_SetObject(errtype, w);
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_XDECREF(w);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print fatal error message and abort */
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_FatalError(char *msg)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1994-09-29 09:38:33 +00:00
|
|
|
fprintf(stderr, "Fatal Python error: %s\n", msg);
|
1995-01-26 00:40:38 +00:00
|
|
|
#ifdef macintosh
|
|
|
|
for (;;);
|
1995-03-14 15:01:17 +00:00
|
|
|
#endif
|
1996-09-11 23:12:24 +00:00
|
|
|
#ifdef MS_WIN32
|
1997-05-22 20:21:30 +00:00
|
|
|
OutputDebugString("Fatal Python error: ");
|
1995-03-14 15:01:17 +00:00
|
|
|
OutputDebugString(msg);
|
|
|
|
OutputDebugString("\n");
|
1998-08-13 13:33:16 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
DebugBreak();
|
1995-01-26 00:40:38 +00:00
|
|
|
#endif
|
1998-08-13 13:33:16 +00:00
|
|
|
#endif /* MS_WIN32 */
|
1992-08-04 12:41:02 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clean up and exit */
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
#ifdef WITH_THREAD
|
1998-10-01 20:42:43 +00:00
|
|
|
#include "pythread.h"
|
1997-03-05 00:20:32 +00:00
|
|
|
int _PyThread_Started = 0; /* Set by threadmodule.c and maybe others */
|
1992-08-17 08:59:08 +00:00
|
|
|
#endif
|
|
|
|
|
1998-10-01 16:01:57 +00:00
|
|
|
#define NEXITFUNCS 32
|
2000-07-22 18:47:25 +00:00
|
|
|
static void (*exitfuncs[NEXITFUNCS])(void);
|
1994-09-07 14:38:28 +00:00
|
|
|
static int nexitfuncs = 0;
|
|
|
|
|
2000-07-22 18:47:25 +00:00
|
|
|
int Py_AtExit(void (*func)(void))
|
1994-09-07 14:38:28 +00:00
|
|
|
{
|
|
|
|
if (nexitfuncs >= NEXITFUNCS)
|
|
|
|
return -1;
|
|
|
|
exitfuncs[nexitfuncs++] = func;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-08-05 02:22:03 +00:00
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
call_sys_exitfunc(void)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-03-05 00:20:32 +00:00
|
|
|
PyObject *exitfunc = PySys_GetObject("exitfunc");
|
1992-09-03 20:28:00 +00:00
|
|
|
|
|
|
|
if (exitfunc) {
|
2001-03-23 17:34:02 +00:00
|
|
|
PyObject *res;
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_INCREF(exitfunc);
|
|
|
|
PySys_SetObject("exitfunc", (PyObject *)NULL);
|
|
|
|
res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
|
1992-09-03 20:28:00 +00:00
|
|
|
if (res == NULL) {
|
2001-03-23 15:36:41 +00:00
|
|
|
if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
PySys_WriteStderr("Error in sys.exitfunc:\n");
|
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
PyErr_Print();
|
1992-09-03 20:28:00 +00:00
|
|
|
}
|
1997-03-05 00:20:32 +00:00
|
|
|
Py_DECREF(exitfunc);
|
1992-09-03 20:28:00 +00:00
|
|
|
}
|
|
|
|
|
1998-02-28 04:31:39 +00:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1997-08-05 02:22:03 +00:00
|
|
|
}
|
1994-09-07 14:38:28 +00:00
|
|
|
|
1997-08-05 02:22:03 +00:00
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
call_ll_exitfuncs(void)
|
1997-08-05 02:22:03 +00:00
|
|
|
{
|
1994-09-07 14:38:28 +00:00
|
|
|
while (nexitfuncs > 0)
|
|
|
|
(*exitfuncs[--nexitfuncs])();
|
1997-08-02 03:10:38 +00:00
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
1992-10-18 18:53:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_Exit(int sts)
|
1992-10-18 18:53:57 +00:00
|
|
|
{
|
1997-08-05 02:22:03 +00:00
|
|
|
Py_Finalize();
|
1992-08-04 12:41:02 +00:00
|
|
|
|
1995-10-27 13:22:14 +00:00
|
|
|
#ifdef macintosh
|
|
|
|
PyMac_Exit(sts);
|
|
|
|
#else
|
1992-08-04 12:41:02 +00:00
|
|
|
exit(sts);
|
1995-10-27 13:22:14 +00:00
|
|
|
#endif
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
1993-07-05 10:31:29 +00:00
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
initsigs(void)
|
1992-10-18 18:53:57 +00:00
|
|
|
{
|
1994-08-29 12:50:44 +00:00
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
|
|
#ifdef SIGPIPE
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
#endif
|
2001-08-16 08:21:42 +00:00
|
|
|
#ifdef SIGXFZ
|
|
|
|
signal(SIGXFZ, SIG_IGN);
|
|
|
|
#endif
|
1994-08-29 12:50:44 +00:00
|
|
|
#endif /* HAVE_SIGNAL_H */
|
1997-03-05 00:20:32 +00:00
|
|
|
PyOS_InitInterrupts(); /* May imply initsignal() */
|
1992-10-18 18:53:57 +00:00
|
|
|
}
|
|
|
|
|
1996-05-22 16:35:33 +00:00
|
|
|
#ifdef Py_TRACE_REFS
|
1992-08-04 12:41:02 +00:00
|
|
|
/* Ask a yes/no question */
|
|
|
|
|
1992-09-03 20:28:00 +00:00
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
_Py_AskYesNo(char *prompt)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
|
2001-08-02 04:15:00 +00:00
|
|
|
fprintf(stderr, "%s [ny] ", prompt);
|
1992-08-04 12:41:02 +00:00
|
|
|
if (fgets(buf, sizeof buf, stdin) == NULL)
|
|
|
|
return 0;
|
|
|
|
return buf[0] == 'y' || buf[0] == 'Y';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1994-08-29 12:50:44 +00:00
|
|
|
#ifdef MPW
|
1992-08-04 12:41:02 +00:00
|
|
|
|
|
|
|
/* Check for file descriptor connected to interactive device.
|
|
|
|
Pretend that stdin is always interactive, other files never. */
|
|
|
|
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
isatty(int fd)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
|
|
|
return fd == fileno(stdin);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
1997-02-14 19:45:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The file descriptor fd is considered ``interactive'' if either
|
|
|
|
* a) isatty(fd) is TRUE, or
|
|
|
|
* b) the -i flag was given, and the filename associated with
|
|
|
|
* the descriptor is NULL or "<stdin>" or "???".
|
|
|
|
*/
|
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_FdIsInteractive(FILE *fp, char *filename)
|
1997-02-14 19:45:36 +00:00
|
|
|
{
|
|
|
|
if (isatty((int)fileno(fp)))
|
|
|
|
return 1;
|
|
|
|
if (!Py_InteractiveFlag)
|
|
|
|
return 0;
|
|
|
|
return (filename == NULL) ||
|
|
|
|
(strcmp(filename, "<stdin>") == 0) ||
|
|
|
|
(strcmp(filename, "???") == 0);
|
|
|
|
}
|
2000-08-27 19:15:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
#if defined(USE_STACKCHECK)
|
|
|
|
#if defined(WIN32) && defined(_MSC_VER)
|
|
|
|
|
|
|
|
/* Stack checking for Microsoft C */
|
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <excpt.h>
|
|
|
|
|
2000-08-31 05:38:39 +00:00
|
|
|
/*
|
|
|
|
* Return non-zero when we run out of memory on the stack; zero otherwise.
|
|
|
|
*/
|
2000-08-27 19:15:31 +00:00
|
|
|
int
|
2000-08-31 05:52:44 +00:00
|
|
|
PyOS_CheckStack(void)
|
2000-08-27 19:15:31 +00:00
|
|
|
{
|
|
|
|
__try {
|
|
|
|
/* _alloca throws a stack overflow exception if there's
|
|
|
|
not enough space left on the stack */
|
|
|
|
_alloca(PYOS_STACK_MARGIN * sizeof(void*));
|
|
|
|
return 0;
|
|
|
|
} __except (EXCEPTION_EXECUTE_HANDLER) {
|
|
|
|
/* just ignore all errors */
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WIN32 && _MSC_VER */
|
|
|
|
|
|
|
|
/* Alternate implementations can be added here... */
|
|
|
|
|
|
|
|
#endif /* USE_STACKCHECK */
|
2000-09-16 16:32:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Wrappers around sigaction() or signal(). */
|
|
|
|
|
|
|
|
PyOS_sighandler_t
|
|
|
|
PyOS_getsig(int sig)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction context;
|
|
|
|
sigaction(sig, NULL, &context);
|
|
|
|
return context.sa_handler;
|
|
|
|
#else
|
|
|
|
PyOS_sighandler_t handler;
|
|
|
|
handler = signal(sig, SIG_IGN);
|
|
|
|
signal(sig, handler);
|
|
|
|
return handler;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PyOS_sighandler_t
|
|
|
|
PyOS_setsig(int sig, PyOS_sighandler_t handler)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction context;
|
|
|
|
PyOS_sighandler_t oldhandler;
|
|
|
|
sigaction(sig, NULL, &context);
|
|
|
|
oldhandler = context.sa_handler;
|
|
|
|
context.sa_handler = handler;
|
|
|
|
sigaction(sig, &context, NULL);
|
|
|
|
return oldhandler;
|
|
|
|
#else
|
|
|
|
return signal(sig, handler);
|
|
|
|
#endif
|
|
|
|
}
|