blob: 86da6e0e29afd2b1210416fb4b6f36fc66571873 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Interfaces to parse and execute pieces of python code */
3
Fred Drake3cf4d2b2000-07-09 00:55:06 +00004#ifndef Py_PYTHONRUN_H
5#define Py_PYTHONRUN_H
6#ifdef __cplusplus
7extern "C" {
8#endif
Guido van Rossum57d8e3f1997-07-19 19:50:52 +00009
Benjamin Peterson466a7822009-07-02 21:44:01 +000010#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 Petersonffeaa882009-07-02 21:54:36 +000013#define PyCF_MASK_OBSOLETE (CO_NESTED)
Just van Rossum3aaf42c2003-02-10 08:21:10 +000014#define PyCF_SOURCE_IS_UTF8 0x0100
Guido van Rossum4b499dd32003-02-13 22:07:59 +000015#define PyCF_DONT_IMPLY_DEDENT 0x0200
Martin v. Löwisbd260da2006-02-26 19:42:26 +000016#define PyCF_ONLY_AST 0x0400
Benjamin Petersonf5b52242009-03-02 23:31:26 +000017#define PyCF_IGNORE_COOKIE 0x0800
Tim Peterse2c18e92001-08-17 20:47:47 +000018
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000019#ifndef Py_LIMITED_API
Jeremy Hylton9f324e92001-03-01 22:59:14 +000020typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000021 int cf_flags; /* bitmask of CO_xxx flags relevant to future */
Jeremy Hylton9f324e92001-03-01 22:59:14 +000022} PyCompilerFlags;
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000023#endif
Jeremy Hylton9f324e92001-03-01 22:59:14 +000024
Martin v. Löwis790465f2008-04-05 20:41:37 +000025PyAPI_FUNC(void) Py_SetProgramName(wchar_t *);
26PyAPI_FUNC(wchar_t *) Py_GetProgramName(void);
Guido van Rossum66d4b901998-02-06 22:28:05 +000027
Martin v. Löwis790465f2008-04-05 20:41:37 +000028PyAPI_FUNC(void) Py_SetPythonHome(wchar_t *);
29PyAPI_FUNC(wchar_t *) Py_GetPythonHome(void);
Guido van Rossum3f5da241990-12-20 15:06:42 +000030
Mark Hammond91a681d2002-08-12 07:21:58 +000031PyAPI_FUNC(void) Py_Initialize(void);
Martin v. Löwis336e85f2004-08-19 11:31:58 +000032PyAPI_FUNC(void) Py_InitializeEx(int);
Mark Hammond91a681d2002-08-12 07:21:58 +000033PyAPI_FUNC(void) Py_Finalize(void);
34PyAPI_FUNC(int) Py_IsInitialized(void);
35PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void);
36PyAPI_FUNC(void) Py_EndInterpreter(PyThreadState *);
Guido van Rossum3f5da241990-12-20 15:06:42 +000037
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000038#ifndef Py_LIMITED_API
39PyAPI_FUNC(int) PyRun_SimpleStringFlags(const char *, PyCompilerFlags *);
Martin v. Löwis056a69c2006-03-01 16:55:42 +000040PyAPI_FUNC(int) PyRun_AnyFileFlags(FILE *, const char *, PyCompilerFlags *);
Victor Stinner00676d12010-12-27 01:49:31 +000041PyAPI_FUNC(int) PyRun_AnyFileExFlags(
42 FILE *fp,
43 const char *filename, /* decoded from the filesystem encoding */
44 int closeit,
45 PyCompilerFlags *flags);
46PyAPI_FUNC(int) PyRun_SimpleFileExFlags(
47 FILE *fp,
48 const char *filename, /* decoded from the filesystem encoding */
49 int closeit,
50 PyCompilerFlags *flags);
51PyAPI_FUNC(int) PyRun_InteractiveOneFlags(
52 FILE *fp,
53 const char *filename, /* decoded from the filesystem encoding */
54 PyCompilerFlags *flags);
55PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(
56 FILE *fp,
57 const char *filename, /* decoded from the filesystem encoding */
58 PyCompilerFlags *flags);
Guido van Rossum3f5da241990-12-20 15:06:42 +000059
Victor Stinner00676d12010-12-27 01:49:31 +000060PyAPI_FUNC(struct _mod *) PyParser_ASTFromString(
61 const char *s,
62 const char *filename, /* decoded from the filesystem encoding */
63 int start,
64 PyCompilerFlags *flags,
65 PyArena *arena);
66PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile(
67 FILE *fp,
68 const char *filename, /* decoded from the filesystem encoding */
69 const char* enc,
70 int start,
71 char *ps1,
72 char *ps2,
73 PyCompilerFlags *flags,
74 int *errcode,
75 PyArena *arena);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000076#endif
77
78#ifndef PyParser_SimpleParseString
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000079#define PyParser_SimpleParseString(S, B) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 PyParser_SimpleParseStringFlags(S, B, 0)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000081#define PyParser_SimpleParseFile(FP, S, B) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000082 PyParser_SimpleParseFileFlags(FP, S, B, 0)
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000083#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000084PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int,
85 int);
Martin v. Löwis95292d62002-12-11 14:04:59 +000086PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000087 int, int);
Guido van Rossum3f5da241990-12-20 15:06:42 +000088
Martin v. Löwis4d0d4712010-12-03 20:14:31 +000089#ifndef Py_LIMITED_API
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000090PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *,
91 PyObject *, PyCompilerFlags *);
Guido van Rossum5b722181993-03-30 17:46:03 +000092
Victor Stinner00676d12010-12-27 01:49:31 +000093PyAPI_FUNC(PyObject *) PyRun_FileExFlags(
94 FILE *fp,
95 const char *filename, /* decoded from the filesystem encoding */
96 int start,
97 PyObject *globals,
98 PyObject *locals,
99 int closeit,
100 PyCompilerFlags *flags);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000101#endif
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000102
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000103#ifdef Py_LIMITED_API
Martin v. Löwis0d012f22010-12-04 12:00:49 +0000104PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000105#else
Georg Brandl8334fd92010-12-04 10:26:46 +0000106#define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
107#define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
Victor Stinner00676d12010-12-27 01:49:31 +0000108PyAPI_FUNC(PyObject *) Py_CompileStringExFlags(
109 const char *str,
110 const char *filename, /* decoded from the filesystem encoding */
111 int start,
112 PyCompilerFlags *flags,
113 int optimize);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000114#endif
Victor Stinner00676d12010-12-27 01:49:31 +0000115PyAPI_FUNC(struct symtable *) Py_SymtableString(
116 const char *str,
117 const char *filename, /* decoded from the filesystem encoding */
118 int start);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000119
Mark Hammond91a681d2002-08-12 07:21:58 +0000120PyAPI_FUNC(void) PyErr_Print(void);
121PyAPI_FUNC(void) PyErr_PrintEx(int);
122PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *);
Guido van Rossumc6cf1dd1994-09-07 14:35:10 +0000123
Collin Winter670e6922007-03-21 02:57:17 +0000124/* Py_PyAtExit is for the atexit module, Py_AtExit is for low-level
125 * exit functions.
126 */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000127#ifndef Py_LIMITED_API
Collin Winter670e6922007-03-21 02:57:17 +0000128PyAPI_FUNC(void) _Py_PyAtExit(void (*func)(void));
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000129#endif
Mark Hammond91a681d2002-08-12 07:21:58 +0000130PyAPI_FUNC(int) Py_AtExit(void (*func)(void));
Guido van Rossuma3309961993-07-28 09:05:47 +0000131
Mark Hammond91a681d2002-08-12 07:21:58 +0000132PyAPI_FUNC(void) Py_Exit(int);
Fred Drake3cf4d2b2000-07-09 00:55:06 +0000133
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000134/* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL. */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000135#ifndef Py_LIMITED_API
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000136PyAPI_FUNC(void) _Py_RestoreSignals(void);
137
Martin v. Löwis95292d62002-12-11 14:04:59 +0000138PyAPI_FUNC(int) Py_FdIsInteractive(FILE *, const char *);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000139#endif
Guido van Rossum5c4998b1997-02-14 19:51:34 +0000140
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000141/* Bootstrap */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000142PyAPI_FUNC(int) Py_Main(int argc, wchar_t **argv);
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000143
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000144#ifndef Py_LIMITED_API
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000145/* Use macros for a bunch of old variants */
146#define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL)
147#define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL)
148#define PyRun_AnyFileEx(fp, name, closeit) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 PyRun_AnyFileExFlags(fp, name, closeit, NULL)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000150#define PyRun_AnyFileFlags(fp, name, flags) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000151 PyRun_AnyFileExFlags(fp, name, 0, flags)
Mark Hammondf3ddaee2005-10-23 10:53:06 +0000152#define PyRun_SimpleString(s) PyRun_SimpleStringFlags(s, NULL)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000153#define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL)
154#define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
155#define PyRun_InteractiveOne(f, p) PyRun_InteractiveOneFlags(f, p, NULL)
156#define PyRun_InteractiveLoop(f, p) PyRun_InteractiveLoopFlags(f, p, NULL)
157#define PyRun_File(fp, p, s, g, l) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000158 PyRun_FileExFlags(fp, p, s, g, l, 0, NULL)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000159#define PyRun_FileEx(fp, p, s, g, l, c) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000160 PyRun_FileExFlags(fp, p, s, g, l, c, NULL)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000161#define PyRun_FileFlags(fp, p, s, g, l, flags) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 PyRun_FileExFlags(fp, p, s, g, l, 0, flags)
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000163#endif
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000164
Guido van Rossum57d8e3f1997-07-19 19:50:52 +0000165/* In getpath.c */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000166PyAPI_FUNC(wchar_t *) Py_GetProgramFullPath(void);
167PyAPI_FUNC(wchar_t *) Py_GetPrefix(void);
168PyAPI_FUNC(wchar_t *) Py_GetExecPrefix(void);
169PyAPI_FUNC(wchar_t *) Py_GetPath(void);
Kristján Valur Jónsson3b69db22010-09-27 05:32:54 +0000170PyAPI_FUNC(void) Py_SetPath(const wchar_t *);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000171#ifdef MS_WINDOWS
172int _Py_CheckPython3();
173#endif
Guido van Rossum57d8e3f1997-07-19 19:50:52 +0000174
175/* In their own files */
Mark Hammonda2905272002-07-29 13:42:14 +0000176PyAPI_FUNC(const char *) Py_GetVersion(void);
177PyAPI_FUNC(const char *) Py_GetPlatform(void);
178PyAPI_FUNC(const char *) Py_GetCopyright(void);
179PyAPI_FUNC(const char *) Py_GetCompiler(void);
180PyAPI_FUNC(const char *) Py_GetBuildInfo(void);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000181#ifndef Py_LIMITED_API
Martin v. Löwis43b57802006-01-05 23:38:54 +0000182PyAPI_FUNC(const char *) _Py_svnversion(void);
183PyAPI_FUNC(const char *) Py_SubversionRevision(void);
184PyAPI_FUNC(const char *) Py_SubversionShortBranch(void);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000185#endif
Guido van Rossum57d8e3f1997-07-19 19:50:52 +0000186
Guido van Rossum29e46a91997-08-02 02:56:48 +0000187/* Internal -- various one-time initializations */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000188#ifndef Py_LIMITED_API
Mark Hammond91a681d2002-08-12 07:21:58 +0000189PyAPI_FUNC(PyObject *) _PyBuiltin_Init(void);
190PyAPI_FUNC(PyObject *) _PySys_Init(void);
191PyAPI_FUNC(void) _PyImport_Init(void);
Mark Hammonda2905272002-07-29 13:42:14 +0000192PyAPI_FUNC(void) _PyExc_Init(void);
Just van Rossum52e14d62002-12-30 22:08:05 +0000193PyAPI_FUNC(void) _PyImportHooks_Init(void);
Neal Norwitzb2501f42002-12-31 03:42:13 +0000194PyAPI_FUNC(int) _PyFrame_Init(void);
Michael W. Hudsonba283e22005-05-27 15:23:20 +0000195PyAPI_FUNC(void) _PyFloat_Init(void);
Christian Heimes9c4756e2008-05-26 13:22:05 +0000196PyAPI_FUNC(int) PyByteArray_Init(void);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000197#endif
Guido van Rossum29e46a91997-08-02 02:56:48 +0000198
Guido van Rossum8e5e4461997-08-12 14:57:21 +0000199/* Various internal finalizers */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000200#ifndef Py_LIMITED_API
Mark Hammonda2905272002-07-29 13:42:14 +0000201PyAPI_FUNC(void) _PyExc_Fini(void);
202PyAPI_FUNC(void) _PyImport_Fini(void);
203PyAPI_FUNC(void) PyMethod_Fini(void);
204PyAPI_FUNC(void) PyFrame_Fini(void);
205PyAPI_FUNC(void) PyCFunction_Fini(void);
Christian Heimes77c02eb2008-02-09 02:18:51 +0000206PyAPI_FUNC(void) PyDict_Fini(void);
Mark Hammonda2905272002-07-29 13:42:14 +0000207PyAPI_FUNC(void) PyTuple_Fini(void);
Raymond Hettingerfb09f0e2004-10-07 03:58:07 +0000208PyAPI_FUNC(void) PyList_Fini(void);
Raymond Hettingerd7946662005-08-01 21:39:29 +0000209PyAPI_FUNC(void) PySet_Fini(void);
Christian Heimes72b710a2008-05-26 13:28:38 +0000210PyAPI_FUNC(void) PyBytes_Fini(void);
Christian Heimes9c4756e2008-05-26 13:22:05 +0000211PyAPI_FUNC(void) PyByteArray_Fini(void);
Mark Hammonda2905272002-07-29 13:42:14 +0000212PyAPI_FUNC(void) PyFloat_Fini(void);
213PyAPI_FUNC(void) PyOS_FiniInterrupts(void);
Antoine Pitrou696e0352010-08-08 22:18:46 +0000214PyAPI_FUNC(void) _PyGC_Fini(void);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000215#endif
Guido van Rossum8e5e4461997-08-12 14:57:21 +0000216
Guido van Rossum3fb1aea1997-08-12 15:14:22 +0000217/* Stuff with no proper home (yet) */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000218#ifndef Py_LIMITED_API
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000219PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, char *);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000220#endif
Mark Hammond5d546672002-08-12 13:06:35 +0000221PyAPI_DATA(int) (*PyOS_InputHook)(void);
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000222PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000223#ifndef Py_LIMITED_API
Jason Tishler0d2a75c2004-08-09 15:02:30 +0000224PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState;
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000225#endif
Fredrik Lundh2f15b252000-08-27 19:15:31 +0000226
227/* Stack size, in "pointers" (so we get extra safety margins
228 on 64-bit platforms). On a 32-bit platform, this translates
229 to a 8k margin. */
230#define PYOS_STACK_MARGIN 2048
231
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000232#if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) && _MSC_VER >= 1300
Fredrik Lundh2f15b252000-08-27 19:15:31 +0000233/* Enable stack checking under Microsoft C */
234#define USE_STACKCHECK
235#endif
236
Jack Jansen275abb32000-08-07 21:00:42 +0000237#ifdef USE_STACKCHECK
Fredrik Lundh2f15b252000-08-27 19:15:31 +0000238/* Check that we aren't overflowing our stack */
Mark Hammond91a681d2002-08-12 07:21:58 +0000239PyAPI_FUNC(int) PyOS_CheckStack(void);
Jack Jansen275abb32000-08-07 21:00:42 +0000240#endif
Guido van Rossum3fb1aea1997-08-12 15:14:22 +0000241
Guido van Rossumc7247ce2000-09-16 16:31:31 +0000242/* Signals */
243typedef void (*PyOS_sighandler_t)(int);
Mark Hammond91a681d2002-08-12 07:21:58 +0000244PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
245PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
Guido van Rossumc7247ce2000-09-16 16:31:31 +0000246
247
Guido van Rossuma3309961993-07-28 09:05:47 +0000248#ifdef __cplusplus
249}
250#endif
251#endif /* !Py_PYTHONRUN_H */