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 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 10 | DL_IMPORT(void) Py_SetProgramName(char *); |
| 11 | DL_IMPORT(char *) Py_GetProgramName(void); |
Guido van Rossum | 66d4b90 | 1998-02-06 22:28:05 +0000 | [diff] [blame] | 12 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 13 | DL_IMPORT(void) Py_SetPythonHome(char *); |
| 14 | DL_IMPORT(char *) Py_GetPythonHome(void); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 15 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 16 | DL_IMPORT(void) Py_Initialize(void); |
| 17 | DL_IMPORT(void) Py_Finalize(void); |
| 18 | DL_IMPORT(int) Py_IsInitialized(void); |
| 19 | DL_IMPORT(PyThreadState *) Py_NewInterpreter(void); |
| 20 | DL_IMPORT(void) Py_EndInterpreter(PyThreadState *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 21 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 22 | DL_IMPORT(int) PyRun_AnyFile(FILE *, char *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 23 | DL_IMPORT(int) PyRun_AnyFileEx(FILE *, char *, int); |
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(int) PyRun_SimpleString(char *); |
| 26 | DL_IMPORT(int) PyRun_SimpleFile(FILE *, char *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 27 | DL_IMPORT(int) PyRun_SimpleFileEx(FILE *, char *, int); |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 28 | DL_IMPORT(int) PyRun_InteractiveOne(FILE *, char *); |
| 29 | DL_IMPORT(int) PyRun_InteractiveLoop(FILE *, char *); |
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(struct _node *) PyParser_SimpleParseString(char *, int); |
| 32 | DL_IMPORT(struct _node *) PyParser_SimpleParseFile(FILE *, char *, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 33 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 34 | DL_IMPORT(PyObject *) PyRun_String(char *, int, PyObject *, PyObject *); |
| 35 | DL_IMPORT(PyObject *) PyRun_File(FILE *, char *, int, PyObject *, PyObject *); |
Guido van Rossum | 0df002c | 2000-08-27 19:21:52 +0000 | [diff] [blame] | 36 | DL_IMPORT(PyObject *) PyRun_FileEx(FILE *, char *, int, |
| 37 | PyObject *, PyObject *, int); |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 38 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 39 | DL_IMPORT(PyObject *) Py_CompileString(char *, char *, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 40 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 41 | DL_IMPORT(void) PyErr_Print(void); |
| 42 | DL_IMPORT(void) PyErr_PrintEx(int); |
Guido van Rossum | c6cf1dd | 1994-09-07 14:35:10 +0000 | [diff] [blame] | 43 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 44 | DL_IMPORT(int) Py_AtExit(void (*func)(void)); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 45 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 46 | DL_IMPORT(void) Py_Exit(int); |
| 47 | |
| 48 | DL_IMPORT(int) Py_FdIsInteractive(FILE *, char *); |
Guido van Rossum | 5c4998b | 1997-02-14 19:51:34 +0000 | [diff] [blame] | 49 | |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 50 | /* In getpath.c */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 51 | DL_IMPORT(char *) Py_GetProgramFullPath(void); |
| 52 | DL_IMPORT(char *) Py_GetPrefix(void); |
| 53 | DL_IMPORT(char *) Py_GetExecPrefix(void); |
| 54 | DL_IMPORT(char *) Py_GetPath(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 55 | |
| 56 | /* In their own files */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 57 | DL_IMPORT(const char *) Py_GetVersion(void); |
| 58 | DL_IMPORT(const char *) Py_GetPlatform(void); |
| 59 | DL_IMPORT(const char *) Py_GetCopyright(void); |
| 60 | DL_IMPORT(const char *) Py_GetCompiler(void); |
| 61 | DL_IMPORT(const char *) Py_GetBuildInfo(void); |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 62 | |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 63 | /* Internal -- various one-time initializations */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 64 | DL_IMPORT(PyObject *) _PyBuiltin_Init(void); |
| 65 | DL_IMPORT(PyObject *) _PySys_Init(void); |
| 66 | DL_IMPORT(void) _PyImport_Init(void); |
| 67 | DL_IMPORT(void) init_exceptions(void); |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 68 | |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 69 | /* Various internal finalizers */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 70 | DL_IMPORT(void) fini_exceptions(void); |
| 71 | DL_IMPORT(void) _PyImport_Fini(void); |
| 72 | DL_IMPORT(void) PyMethod_Fini(void); |
| 73 | DL_IMPORT(void) PyFrame_Fini(void); |
| 74 | DL_IMPORT(void) PyCFunction_Fini(void); |
| 75 | DL_IMPORT(void) PyTuple_Fini(void); |
| 76 | DL_IMPORT(void) PyString_Fini(void); |
| 77 | DL_IMPORT(void) PyInt_Fini(void); |
| 78 | DL_IMPORT(void) PyFloat_Fini(void); |
| 79 | DL_IMPORT(void) PyOS_FiniInterrupts(void); |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 80 | |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 81 | /* Stuff with no proper home (yet) */ |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 82 | DL_IMPORT(char *) PyOS_Readline(char *); |
| 83 | extern DL_IMPORT(int) (*PyOS_InputHook)(void); |
| 84 | extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *); |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 85 | |
| 86 | /* Stack size, in "pointers" (so we get extra safety margins |
| 87 | on 64-bit platforms). On a 32-bit platform, this translates |
| 88 | to a 8k margin. */ |
| 89 | #define PYOS_STACK_MARGIN 2048 |
| 90 | |
Trent Mick | 0a7af40 | 2000-10-11 17:18:11 +0000 | [diff] [blame] | 91 | #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 92 | /* Enable stack checking under Microsoft C */ |
| 93 | #define USE_STACKCHECK |
| 94 | #endif |
| 95 | |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 96 | #ifdef USE_STACKCHECK |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 97 | /* Check that we aren't overflowing our stack */ |
| 98 | DL_IMPORT(int) PyOS_CheckStack(void); |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 99 | #endif |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 100 | |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 101 | /* Signals */ |
| 102 | typedef void (*PyOS_sighandler_t)(int); |
| 103 | DL_IMPORT(PyOS_sighandler_t) PyOS_getsig(int); |
| 104 | DL_IMPORT(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t); |
| 105 | |
| 106 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 107 | #ifdef __cplusplus |
| 108 | } |
| 109 | #endif |
| 110 | #endif /* !Py_PYTHONRUN_H */ |