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 | |
Benjamin Peterson | 466a782 | 2009-07-02 21:44:01 +0000 | [diff] [blame] | 10 | #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ |
| 11 | CO_FUTURE_WITH_STATEMENT | CO_FUTURE_PRINT_FUNCTION | \ |
| 12 | CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL) |
Benjamin Peterson | ffeaa88 | 2009-07-02 21:54:36 +0000 | [diff] [blame] | 13 | #define PyCF_MASK_OBSOLETE (CO_NESTED) |
Just van Rossum | 3aaf42c | 2003-02-10 08:21:10 +0000 | [diff] [blame] | 14 | #define PyCF_SOURCE_IS_UTF8 0x0100 |
Guido van Rossum | 4b499dd3 | 2003-02-13 22:07:59 +0000 | [diff] [blame] | 15 | #define PyCF_DONT_IMPLY_DEDENT 0x0200 |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 16 | #define PyCF_ONLY_AST 0x0400 |
Benjamin Peterson | f5b5224 | 2009-03-02 23:31:26 +0000 | [diff] [blame] | 17 | #define PyCF_IGNORE_COOKIE 0x0800 |
Tim Peters | e2c18e9 | 2001-08-17 20:47:47 +0000 | [diff] [blame] | 18 | |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 19 | typedef struct { |
Jeremy Hylton | fdd12f6 | 2001-08-10 21:38:04 +0000 | [diff] [blame] | 20 | int cf_flags; /* bitmask of CO_xxx flags relevant to future */ |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 21 | } PyCompilerFlags; |
| 22 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 23 | PyAPI_FUNC(void) Py_SetProgramName(wchar_t *); |
| 24 | PyAPI_FUNC(wchar_t *) Py_GetProgramName(void); |
Guido van Rossum | 66d4b90 | 1998-02-06 22:28:05 +0000 | [diff] [blame] | 25 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 26 | PyAPI_FUNC(void) Py_SetPythonHome(wchar_t *); |
| 27 | PyAPI_FUNC(wchar_t *) Py_GetPythonHome(void); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 28 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 29 | PyAPI_FUNC(void) Py_Initialize(void); |
Martin v. Löwis | 336e85f | 2004-08-19 11:31:58 +0000 | [diff] [blame] | 30 | PyAPI_FUNC(void) Py_InitializeEx(int); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 31 | PyAPI_FUNC(void) Py_Finalize(void); |
| 32 | PyAPI_FUNC(int) Py_IsInitialized(void); |
| 33 | PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void); |
| 34 | PyAPI_FUNC(void) Py_EndInterpreter(PyThreadState *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 35 | |
Martin v. Löwis | 056a69c | 2006-03-01 16:55:42 +0000 | [diff] [blame] | 36 | PyAPI_FUNC(int) PyRun_AnyFileFlags(FILE *, const char *, PyCompilerFlags *); |
| 37 | PyAPI_FUNC(int) PyRun_AnyFileExFlags(FILE *, const char *, int, PyCompilerFlags *); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 38 | PyAPI_FUNC(int) PyRun_SimpleStringFlags(const char *, PyCompilerFlags *); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 39 | PyAPI_FUNC(int) PyRun_SimpleFileExFlags(FILE *, const char *, int, PyCompilerFlags *); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 40 | PyAPI_FUNC(int) PyRun_InteractiveOneFlags(FILE *, const char *, PyCompilerFlags *); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 41 | PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(FILE *, const char *, PyCompilerFlags *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 42 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 43 | PyAPI_FUNC(struct _mod *) PyParser_ASTFromString(const char *, const char *, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 44 | int, PyCompilerFlags *flags, |
| 45 | PyArena *); |
Martin v. Löwis | 85bcc66 | 2007-09-04 09:18:06 +0000 | [diff] [blame] | 46 | PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile(FILE *, const char *, |
| 47 | const char*, int, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 48 | char *, char *, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 49 | PyCompilerFlags *, int *, |
| 50 | PyArena *); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 51 | #define PyParser_SimpleParseString(S, B) \ |
| 52 | PyParser_SimpleParseStringFlags(S, B, 0) |
| 53 | #define PyParser_SimpleParseFile(FP, S, B) \ |
| 54 | PyParser_SimpleParseFileFlags(FP, S, B, 0) |
| 55 | PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int, |
| 56 | int); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 57 | PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *, |
Tim Peters | fe2127d | 2001-07-16 05:37:24 +0000 | [diff] [blame] | 58 | int, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 59 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 60 | PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, |
| 61 | PyObject *, PyCompilerFlags *); |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 62 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 63 | PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int, |
| 64 | PyObject *, PyObject *, int, |
| 65 | PyCompilerFlags *); |
| 66 | |
| 67 | #define Py_CompileString(str, p, s) Py_CompileStringFlags(str, p, s, NULL) |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 68 | PyAPI_FUNC(PyObject *) Py_CompileStringFlags(const char *, const char *, int, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 69 | PyCompilerFlags *); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 70 | PyAPI_FUNC(struct symtable *) Py_SymtableString(const char *, const char *, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 71 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 72 | PyAPI_FUNC(void) PyErr_Print(void); |
| 73 | PyAPI_FUNC(void) PyErr_PrintEx(int); |
| 74 | PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *); |
Guido van Rossum | c6cf1dd | 1994-09-07 14:35:10 +0000 | [diff] [blame] | 75 | |
Collin Winter | 670e692 | 2007-03-21 02:57:17 +0000 | [diff] [blame] | 76 | /* Py_PyAtExit is for the atexit module, Py_AtExit is for low-level |
| 77 | * exit functions. |
| 78 | */ |
| 79 | PyAPI_FUNC(void) _Py_PyAtExit(void (*func)(void)); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 80 | PyAPI_FUNC(int) Py_AtExit(void (*func)(void)); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 81 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 82 | PyAPI_FUNC(void) Py_Exit(int); |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 83 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 84 | /* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL. */ |
| 85 | PyAPI_FUNC(void) _Py_RestoreSignals(void); |
| 86 | |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 87 | PyAPI_FUNC(int) Py_FdIsInteractive(FILE *, const char *); |
Guido van Rossum | 5c4998b | 1997-02-14 19:51:34 +0000 | [diff] [blame] | 88 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 89 | /* Bootstrap */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 90 | PyAPI_FUNC(int) Py_Main(int argc, wchar_t **argv); |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 91 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 92 | /* Use macros for a bunch of old variants */ |
| 93 | #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL) |
| 94 | #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) |
| 95 | #define PyRun_AnyFileEx(fp, name, closeit) \ |
| 96 | PyRun_AnyFileExFlags(fp, name, closeit, NULL) |
| 97 | #define PyRun_AnyFileFlags(fp, name, flags) \ |
| 98 | PyRun_AnyFileExFlags(fp, name, 0, flags) |
Mark Hammond | f3ddaee | 2005-10-23 10:53:06 +0000 | [diff] [blame] | 99 | #define PyRun_SimpleString(s) PyRun_SimpleStringFlags(s, NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 100 | #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) |
| 101 | #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL) |
| 102 | #define PyRun_InteractiveOne(f, p) PyRun_InteractiveOneFlags(f, p, NULL) |
| 103 | #define PyRun_InteractiveLoop(f, p) PyRun_InteractiveLoopFlags(f, p, NULL) |
| 104 | #define PyRun_File(fp, p, s, g, l) \ |
| 105 | PyRun_FileExFlags(fp, p, s, g, l, 0, NULL) |
| 106 | #define PyRun_FileEx(fp, p, s, g, l, c) \ |
| 107 | PyRun_FileExFlags(fp, p, s, g, l, c, NULL) |
| 108 | #define PyRun_FileFlags(fp, p, s, g, l, flags) \ |
| 109 | PyRun_FileExFlags(fp, p, s, g, l, 0, flags) |
| 110 | |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 111 | /* In getpath.c */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 112 | PyAPI_FUNC(wchar_t *) Py_GetProgramFullPath(void); |
| 113 | PyAPI_FUNC(wchar_t *) Py_GetPrefix(void); |
| 114 | PyAPI_FUNC(wchar_t *) Py_GetExecPrefix(void); |
| 115 | PyAPI_FUNC(wchar_t *) Py_GetPath(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 116 | |
| 117 | /* In their own files */ |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 118 | PyAPI_FUNC(const char *) Py_GetVersion(void); |
| 119 | PyAPI_FUNC(const char *) Py_GetPlatform(void); |
| 120 | PyAPI_FUNC(const char *) Py_GetCopyright(void); |
| 121 | PyAPI_FUNC(const char *) Py_GetCompiler(void); |
| 122 | PyAPI_FUNC(const char *) Py_GetBuildInfo(void); |
Martin v. Löwis | 43b5780 | 2006-01-05 23:38:54 +0000 | [diff] [blame] | 123 | PyAPI_FUNC(const char *) _Py_svnversion(void); |
| 124 | PyAPI_FUNC(const char *) Py_SubversionRevision(void); |
| 125 | PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 126 | |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 127 | /* Internal -- various one-time initializations */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 128 | PyAPI_FUNC(PyObject *) _PyBuiltin_Init(void); |
| 129 | PyAPI_FUNC(PyObject *) _PySys_Init(void); |
| 130 | PyAPI_FUNC(void) _PyImport_Init(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 131 | PyAPI_FUNC(void) _PyExc_Init(void); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 132 | PyAPI_FUNC(void) _PyImportHooks_Init(void); |
Neal Norwitz | b2501f4 | 2002-12-31 03:42:13 +0000 | [diff] [blame] | 133 | PyAPI_FUNC(int) _PyFrame_Init(void); |
Michael W. Hudson | ba283e2 | 2005-05-27 15:23:20 +0000 | [diff] [blame] | 134 | PyAPI_FUNC(void) _PyFloat_Init(void); |
Christian Heimes | 9c4756e | 2008-05-26 13:22:05 +0000 | [diff] [blame] | 135 | PyAPI_FUNC(int) PyByteArray_Init(void); |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 136 | |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 137 | /* Various internal finalizers */ |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 138 | PyAPI_FUNC(void) _PyExc_Fini(void); |
| 139 | PyAPI_FUNC(void) _PyImport_Fini(void); |
| 140 | PyAPI_FUNC(void) PyMethod_Fini(void); |
| 141 | PyAPI_FUNC(void) PyFrame_Fini(void); |
| 142 | PyAPI_FUNC(void) PyCFunction_Fini(void); |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 143 | PyAPI_FUNC(void) PyDict_Fini(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 144 | PyAPI_FUNC(void) PyTuple_Fini(void); |
Raymond Hettinger | fb09f0e | 2004-10-07 03:58:07 +0000 | [diff] [blame] | 145 | PyAPI_FUNC(void) PyList_Fini(void); |
Raymond Hettinger | d794666 | 2005-08-01 21:39:29 +0000 | [diff] [blame] | 146 | PyAPI_FUNC(void) PySet_Fini(void); |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 147 | PyAPI_FUNC(void) PyBytes_Fini(void); |
Christian Heimes | 9c4756e | 2008-05-26 13:22:05 +0000 | [diff] [blame] | 148 | PyAPI_FUNC(void) PyByteArray_Fini(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 149 | PyAPI_FUNC(void) PyFloat_Fini(void); |
| 150 | PyAPI_FUNC(void) PyOS_FiniInterrupts(void); |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 151 | |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 152 | /* Stuff with no proper home (yet) */ |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 153 | PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, char *); |
Mark Hammond | 5d54667 | 2002-08-12 13:06:35 +0000 | [diff] [blame] | 154 | PyAPI_DATA(int) (*PyOS_InputHook)(void); |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 155 | PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *); |
Jason Tishler | 0d2a75c | 2004-08-09 15:02:30 +0000 | [diff] [blame] | 156 | PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState; |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 157 | |
| 158 | /* Stack size, in "pointers" (so we get extra safety margins |
| 159 | on 64-bit platforms). On a 32-bit platform, this translates |
| 160 | to a 8k margin. */ |
| 161 | #define PYOS_STACK_MARGIN 2048 |
| 162 | |
Amaury Forgeot d'Arc | 3d17a5c | 2008-06-13 01:09:34 +0000 | [diff] [blame] | 163 | #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) && _MSC_VER >= 1300 |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 164 | /* Enable stack checking under Microsoft C */ |
| 165 | #define USE_STACKCHECK |
| 166 | #endif |
| 167 | |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 168 | #ifdef USE_STACKCHECK |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 169 | /* Check that we aren't overflowing our stack */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 170 | PyAPI_FUNC(int) PyOS_CheckStack(void); |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 171 | #endif |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 172 | |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 173 | /* Signals */ |
| 174 | typedef void (*PyOS_sighandler_t)(int); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 175 | PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int); |
| 176 | PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t); |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 177 | |
| 178 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 179 | #ifdef __cplusplus |
| 180 | } |
| 181 | #endif |
| 182 | #endif /* !Py_PYTHONRUN_H */ |