pythonrun.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /* Interfaces to parse and execute pieces of python code */
  2. #ifndef Py_PYTHONRUN_H
  3. #define Py_PYTHONRUN_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \
  8. CO_FUTURE_WITH_STATEMENT | CO_FUTURE_PRINT_FUNCTION | \
  9. CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL | \
  10. CO_FUTURE_GENERATOR_STOP)
  11. #define PyCF_MASK_OBSOLETE (CO_NESTED)
  12. #define PyCF_SOURCE_IS_UTF8 0x0100
  13. #define PyCF_DONT_IMPLY_DEDENT 0x0200
  14. #define PyCF_ONLY_AST 0x0400
  15. #define PyCF_IGNORE_COOKIE 0x0800
  16. #ifndef Py_LIMITED_API
  17. typedef struct {
  18. int cf_flags; /* bitmask of CO_xxx flags relevant to future */
  19. } PyCompilerFlags;
  20. #endif
  21. PyAPI_FUNC(const char *) Py_GetArch(void);
  22. PyAPI_FUNC(const char *) Py_GetLib(void);
  23. #ifndef Py_LIMITED_API
  24. PyAPI_FUNC(int) PyRun_SimpleStringFlags(const char *, PyCompilerFlags *);
  25. PyAPI_FUNC(int) PyRun_AnyFileFlags(FILE *, const char *, PyCompilerFlags *);
  26. PyAPI_FUNC(int) PyRun_AnyFileExFlags(
  27. FILE *fp,
  28. const char *filename, /* decoded from the filesystem encoding */
  29. int closeit,
  30. PyCompilerFlags *flags);
  31. PyAPI_FUNC(int) PyRun_SimpleFileExFlags(
  32. FILE *fp,
  33. const char *filename, /* decoded from the filesystem encoding */
  34. int closeit,
  35. PyCompilerFlags *flags);
  36. PyAPI_FUNC(int) PyRun_InteractiveOneFlags(
  37. FILE *fp,
  38. const char *filename, /* decoded from the filesystem encoding */
  39. PyCompilerFlags *flags);
  40. PyAPI_FUNC(int) PyRun_InteractiveOneObject(
  41. FILE *fp,
  42. PyObject *filename,
  43. PyCompilerFlags *flags);
  44. PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(
  45. FILE *fp,
  46. const char *filename, /* decoded from the filesystem encoding */
  47. PyCompilerFlags *flags);
  48. PyAPI_FUNC(struct _mod *) PyParser_ASTFromString(
  49. const char *s,
  50. const char *filename, /* decoded from the filesystem encoding */
  51. int start,
  52. PyCompilerFlags *flags,
  53. PyArena *arena);
  54. PyAPI_FUNC(struct _mod *) PyParser_ASTFromStringObject(
  55. const char *s,
  56. PyObject *filename,
  57. int start,
  58. PyCompilerFlags *flags,
  59. PyArena *arena);
  60. PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile(
  61. FILE *fp,
  62. const char *filename, /* decoded from the filesystem encoding */
  63. const char* enc,
  64. int start,
  65. char *ps1,
  66. char *ps2,
  67. PyCompilerFlags *flags,
  68. int *errcode,
  69. PyArena *arena);
  70. PyAPI_FUNC(struct _mod *) PyParser_ASTFromFileObject(
  71. FILE *fp,
  72. PyObject *filename,
  73. const char* enc,
  74. int start,
  75. char *ps1,
  76. char *ps2,
  77. PyCompilerFlags *flags,
  78. int *errcode,
  79. PyArena *arena);
  80. #endif
  81. #ifndef PyParser_SimpleParseString
  82. #define PyParser_SimpleParseString(S, B) \
  83. PyParser_SimpleParseStringFlags(S, B, 0)
  84. #define PyParser_SimpleParseFile(FP, S, B) \
  85. PyParser_SimpleParseFileFlags(FP, S, B, 0)
  86. #endif
  87. PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int,
  88. int);
  89. PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlagsFilename(const char *,
  90. const char *,
  91. int, int);
  92. PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *,
  93. int, int);
  94. #ifndef Py_LIMITED_API
  95. PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *,
  96. PyObject *, PyCompilerFlags *);
  97. PyAPI_FUNC(PyObject *) PyRun_FileExFlags(
  98. FILE *fp,
  99. const char *filename, /* decoded from the filesystem encoding */
  100. int start,
  101. PyObject *globals,
  102. PyObject *locals,
  103. int closeit,
  104. PyCompilerFlags *flags);
  105. #endif
  106. #ifdef Py_LIMITED_API
  107. PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
  108. #else
  109. #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
  110. #define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
  111. PyAPI_FUNC(PyObject *) Py_CompileStringExFlags(
  112. const char *str,
  113. const char *filename, /* decoded from the filesystem encoding */
  114. int start,
  115. PyCompilerFlags *flags,
  116. int optimize);
  117. PyAPI_FUNC(PyObject *) Py_CompileStringObject(
  118. const char *str,
  119. PyObject *filename, int start,
  120. PyCompilerFlags *flags,
  121. int optimize);
  122. #endif
  123. PyAPI_FUNC(struct symtable *) Py_SymtableString(
  124. const char *str,
  125. const char *filename, /* decoded from the filesystem encoding */
  126. int start);
  127. #ifndef Py_LIMITED_API
  128. PyAPI_FUNC(struct symtable *) Py_SymtableStringObject(
  129. const char *str,
  130. PyObject *filename,
  131. int start);
  132. #endif
  133. PyAPI_FUNC(void) PyErr_Print(void);
  134. PyAPI_FUNC(void) PyErr_PrintEx(int);
  135. PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *);
  136. #ifndef Py_LIMITED_API
  137. /* Use macros for a bunch of old variants */
  138. #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL)
  139. #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL)
  140. #define PyRun_AnyFileEx(fp, name, closeit) \
  141. PyRun_AnyFileExFlags(fp, name, closeit, NULL)
  142. #define PyRun_AnyFileFlags(fp, name, flags) \
  143. PyRun_AnyFileExFlags(fp, name, 0, flags)
  144. #define PyRun_SimpleString(s) PyRun_SimpleStringFlags(s, NULL)
  145. #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL)
  146. #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
  147. #define PyRun_InteractiveOne(f, p) PyRun_InteractiveOneFlags(f, p, NULL)
  148. #define PyRun_InteractiveLoop(f, p) PyRun_InteractiveLoopFlags(f, p, NULL)
  149. #define PyRun_File(fp, p, s, g, l) \
  150. PyRun_FileExFlags(fp, p, s, g, l, 0, NULL)
  151. #define PyRun_FileEx(fp, p, s, g, l, c) \
  152. PyRun_FileExFlags(fp, p, s, g, l, c, NULL)
  153. #define PyRun_FileFlags(fp, p, s, g, l, flags) \
  154. PyRun_FileExFlags(fp, p, s, g, l, 0, flags)
  155. #endif
  156. /* Stuff with no proper home (yet) */
  157. #ifndef Py_LIMITED_API
  158. PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, const char *);
  159. #endif
  160. PyAPI_DATA(int) (*PyOS_InputHook)(void);
  161. PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
  162. #ifndef Py_LIMITED_API
  163. PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState;
  164. #endif
  165. /* Stack size, in "pointers" (so we get extra safety margins
  166. on 64-bit platforms). On a 32-bit platform, this translates
  167. to an 8k margin. */
  168. #define PYOS_STACK_MARGIN 2048
  169. #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) && _MSC_VER >= 1300
  170. /* Enable stack checking under Microsoft C */
  171. #define USE_STACKCHECK
  172. #endif
  173. #ifdef USE_STACKCHECK
  174. /* Check that we aren't overflowing our stack */
  175. PyAPI_FUNC(int) PyOS_CheckStack(void);
  176. #endif
  177. #ifdef __cplusplus
  178. }
  179. #endif
  180. #endif /* !Py_PYTHONRUN_H */