Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Interfaces to parse and execute pieces of python code */ |
| 3 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 4 | #ifndef Py_PYTHONRUN_H |
| 5 | #define Py_PYTHONRUN_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 9 | |
Tim Peters | 5ba5866 | 2001-07-16 02:29:45 +0000 | [diff] [blame] | 10 | /* These flags are named after the __future__ statements that introduced |
| 11 | them. May not remain true for later additions, so fiddle this comment |
| 12 | accordingly then. */ |
| 13 | #define PyCF_NESTED_SCOPES (0x00000001UL) |
| 14 | #define PyCF_GENERATORS (0x00000002UL) |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 15 | typedef struct { |
Tim Peters | 5ba5866 | 2001-07-16 02:29:45 +0000 | [diff] [blame] | 16 | unsigned long cf_flags; /* bitmask of PyCF_xxx flags */ |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 17 | } PyCompilerFlags; |
| 18 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 19 | DL_IMPORT(void) Py_SetProgramName(char *); |
| 20 | DL_IMPORT(char *) Py_GetProgramName(void); |
Guido van Rossum | 66d4b90 | 1998-02-06 22:28:05 +0000 | [diff] [blame] | 21 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 22 | DL_IMPORT(void) Py_SetPythonHome(char *); |
| 23 | DL_IMPORT(char *) Py_GetPythonHome(void); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 24 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 25 | DL_IMPORT(void) Py_Initialize(void); |
| 26 | DL_IMPORT(void) Py_Finalize(void); |
| 27 | DL_IMPORT(int) Py_IsInitialized(void); |
| 28 | DL_IMPORT(PyThreadState *) Py_NewInterpreter(void); |
| 29 | DL_IMPORT(void) Py_EndInterpreter(PyThreadState *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 30 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 31 | DL_IMPORT(int) PyRun_AnyFile(FILE *, char *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 32 | DL_IMPORT(int) PyRun_AnyFileEx(FILE *, char *, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 33 | |
Jeremy Hylton | bc32024 | 2001-03-22 02:47:58 +0000 | [diff] [blame] | 34 | DL_IMPORT(int) PyRun_AnyFileFlags(FILE *, char *, PyCompilerFlags *); |
| 35 | DL_IMPORT(int) PyRun_AnyFileExFlags(FILE *, char *, int, PyCompilerFlags *); |
| 36 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 37 | DL_IMPORT(int) PyRun_SimpleString(char *); |
| 38 | DL_IMPORT(int) PyRun_SimpleFile(FILE *, char *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 39 | DL_IMPORT(int) PyRun_SimpleFileEx(FILE *, char *, int); |
Jeremy Hylton | bc32024 | 2001-03-22 02:47:58 +0000 | [diff] [blame] | 40 | DL_IMPORT(int) PyRun_SimpleFileExFlags(FILE *, char *, int, PyCompilerFlags *); |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 41 | DL_IMPORT(int) PyRun_InteractiveOne(FILE *, char *); |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 42 | DL_IMPORT(int) PyRun_InteractiveOneFlags(FILE *, char *, PyCompilerFlags *); |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 43 | DL_IMPORT(int) PyRun_InteractiveLoop(FILE *, char *); |
Jeremy Hylton | bc32024 | 2001-03-22 02:47:58 +0000 | [diff] [blame] | 44 | DL_IMPORT(int) PyRun_InteractiveLoopFlags(FILE *, char *, PyCompilerFlags *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 45 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 46 | DL_IMPORT(struct _node *) PyParser_SimpleParseString(char *, int); |
| 47 | DL_IMPORT(struct _node *) PyParser_SimpleParseFile(FILE *, char *, int); |
Tim Peters | fe2127d | 2001-07-16 05:37:24 +0000 | [diff] [blame] | 48 | DL_IMPORT(struct _node *) PyParser_SimpleParseStringFlags(char *, int, int); |
| 49 | DL_IMPORT(struct _node *) PyParser_SimpleParseFileFlags(FILE *, char *, |
| 50 | int, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 51 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 52 | DL_IMPORT(PyObject *) PyRun_String(char *, int, PyObject *, PyObject *); |
| 53 | DL_IMPORT(PyObject *) PyRun_File(FILE *, char *, int, PyObject *, PyObject *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 54 | DL_IMPORT(PyObject *) PyRun_FileEx(FILE *, char *, int, |
| 55 | PyObject *, PyObject *, int); |
Jeremy Hylton | bc32024 | 2001-03-22 02:47:58 +0000 | [diff] [blame] | 56 | DL_IMPORT(PyObject *) PyRun_StringFlags(char *, int, PyObject *, PyObject *, |
| 57 | PyCompilerFlags *); |
| 58 | DL_IMPORT(PyObject *) PyRun_FileFlags(FILE *, char *, int, PyObject *, |
| 59 | PyObject *, PyCompilerFlags *); |
| 60 | DL_IMPORT(PyObject *) PyRun_FileExFlags(FILE *, char *, int, PyObject *, |
| 61 | PyObject *, int, PyCompilerFlags *); |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 62 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 63 | DL_IMPORT(PyObject *) Py_CompileString(char *, char *, int); |
Jeremy Hylton | bc32024 | 2001-03-22 02:47:58 +0000 | [diff] [blame] | 64 | DL_IMPORT(PyObject *) Py_CompileStringFlags(char *, char *, int, |
| 65 | PyCompilerFlags *); |
Jeremy Hylton | 4b38da6 | 2001-02-02 18:19:15 +0000 | [diff] [blame] | 66 | DL_IMPORT(struct symtable *) Py_SymtableString(char *, char *, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 67 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 68 | DL_IMPORT(void) PyErr_Print(void); |
| 69 | DL_IMPORT(void) PyErr_PrintEx(int); |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 70 | DL_IMPORT(void) PyErr_Display(PyObject *, PyObject *, PyObject *); |
Guido van Rossum | c6cf1dd | 1994-09-07 14:35:10 +0000 | [diff] [blame] | 71 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 72 | DL_IMPORT(int) Py_AtExit(void (*func)(void)); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 73 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 74 | DL_IMPORT(void) Py_Exit(int); |
| 75 | |
| 76 | DL_IMPORT(int) Py_FdIsInteractive(FILE *, char *); |
Guido van Rossum | 5c4998b | 1997-02-14 19:51:34 +0000 | [diff] [blame] | 77 | |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 78 | /* In getpath.c */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 79 | DL_IMPORT(char *) Py_GetProgramFullPath(void); |
| 80 | DL_IMPORT(char *) Py_GetPrefix(void); |
| 81 | DL_IMPORT(char *) Py_GetExecPrefix(void); |
| 82 | DL_IMPORT(char *) Py_GetPath(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 83 | |
| 84 | /* In their own files */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 85 | DL_IMPORT(const char *) Py_GetVersion(void); |
| 86 | DL_IMPORT(const char *) Py_GetPlatform(void); |
| 87 | DL_IMPORT(const char *) Py_GetCopyright(void); |
| 88 | DL_IMPORT(const char *) Py_GetCompiler(void); |
| 89 | DL_IMPORT(const char *) Py_GetBuildInfo(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 90 | |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 91 | /* Internal -- various one-time initializations */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 92 | DL_IMPORT(PyObject *) _PyBuiltin_Init(void); |
| 93 | DL_IMPORT(PyObject *) _PySys_Init(void); |
| 94 | DL_IMPORT(void) _PyImport_Init(void); |
| 95 | DL_IMPORT(void) init_exceptions(void); |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 96 | |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 97 | /* Various internal finalizers */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 98 | DL_IMPORT(void) fini_exceptions(void); |
| 99 | DL_IMPORT(void) _PyImport_Fini(void); |
| 100 | DL_IMPORT(void) PyMethod_Fini(void); |
| 101 | DL_IMPORT(void) PyFrame_Fini(void); |
| 102 | DL_IMPORT(void) PyCFunction_Fini(void); |
| 103 | DL_IMPORT(void) PyTuple_Fini(void); |
| 104 | DL_IMPORT(void) PyString_Fini(void); |
| 105 | DL_IMPORT(void) PyInt_Fini(void); |
| 106 | DL_IMPORT(void) PyFloat_Fini(void); |
| 107 | DL_IMPORT(void) PyOS_FiniInterrupts(void); |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 108 | |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 109 | /* Stuff with no proper home (yet) */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 110 | DL_IMPORT(char *) PyOS_Readline(char *); |
| 111 | extern DL_IMPORT(int) (*PyOS_InputHook)(void); |
| 112 | extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *); |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 113 | |
| 114 | /* Stack size, in "pointers" (so we get extra safety margins |
| 115 | on 64-bit platforms). On a 32-bit platform, this translates |
| 116 | to a 8k margin. */ |
| 117 | #define PYOS_STACK_MARGIN 2048 |
| 118 | |
Trent Mick | 0a7af40 | 2000-10-11 17:18:11 +0000 | [diff] [blame] | 119 | #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 120 | /* Enable stack checking under Microsoft C */ |
| 121 | #define USE_STACKCHECK |
| 122 | #endif |
| 123 | |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 124 | #ifdef USE_STACKCHECK |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 125 | /* Check that we aren't overflowing our stack */ |
| 126 | DL_IMPORT(int) PyOS_CheckStack(void); |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 127 | #endif |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 128 | |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 129 | /* Signals */ |
| 130 | typedef void (*PyOS_sighandler_t)(int); |
| 131 | DL_IMPORT(PyOS_sighandler_t) PyOS_getsig(int); |
| 132 | DL_IMPORT(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t); |
| 133 | |
| 134 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 135 | #ifdef __cplusplus |
| 136 | } |
| 137 | #endif |
| 138 | #endif /* !Py_PYTHONRUN_H */ |