pystate.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /* Thread and interpreter state structures and their interfaces */
  2. #ifndef Py_PYSTATE_H
  3. #define Py_PYSTATE_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /* State shared between threads */
  8. struct _ts; /* Forward */
  9. struct _is; /* Forward */
  10. #ifdef Py_LIMITED_API
  11. typedef struct _is PyInterpreterState;
  12. #else
  13. typedef struct _is {
  14. struct _is *next;
  15. struct _ts *tstate_head;
  16. PyObject *modules;
  17. PyObject *modules_by_index;
  18. PyObject *sysdict;
  19. PyObject *builtins;
  20. PyObject *importlib;
  21. PyObject *codec_search_path;
  22. PyObject *codec_search_cache;
  23. PyObject *codec_error_registry;
  24. int codecs_initialized;
  25. int fscodec_initialized;
  26. #ifdef HAVE_DLOPEN
  27. int dlopenflags;
  28. #endif
  29. #ifdef WITH_TSC
  30. int tscdump;
  31. #endif
  32. PyObject *builtins_copy;
  33. } PyInterpreterState;
  34. #endif
  35. /* State unique per thread */
  36. struct _frame; /* Avoid including frameobject.h */
  37. #ifndef Py_LIMITED_API
  38. /* Py_tracefunc return -1 when raising an exception, or 0 for success. */
  39. typedef int (*Py_tracefunc)(PyObject *, struct _frame *, int, PyObject *);
  40. /* The following values are used for 'what' for tracefunc functions: */
  41. #define PyTrace_CALL 0
  42. #define PyTrace_EXCEPTION 1
  43. #define PyTrace_LINE 2
  44. #define PyTrace_RETURN 3
  45. #define PyTrace_C_CALL 4
  46. #define PyTrace_C_EXCEPTION 5
  47. #define PyTrace_C_RETURN 6
  48. #endif
  49. #ifdef Py_LIMITED_API
  50. typedef struct _ts PyThreadState;
  51. #else
  52. typedef struct _ts {
  53. /* See Python/ceval.c for comments explaining most fields */
  54. struct _ts *prev;
  55. struct _ts *next;
  56. PyInterpreterState *interp;
  57. struct _frame *frame;
  58. int recursion_depth;
  59. char overflowed; /* The stack has overflowed. Allow 50 more calls
  60. to handle the runtime error. */
  61. char recursion_critical; /* The current calls must not cause
  62. a stack overflow. */
  63. /* 'tracing' keeps track of the execution depth when tracing/profiling.
  64. This is to prevent the actual trace/profile code from being recorded in
  65. the trace/profile. */
  66. int tracing;
  67. int use_tracing;
  68. Py_tracefunc c_profilefunc;
  69. Py_tracefunc c_tracefunc;
  70. PyObject *c_profileobj;
  71. PyObject *c_traceobj;
  72. PyObject *curexc_type;
  73. PyObject *curexc_value;
  74. PyObject *curexc_traceback;
  75. PyObject *exc_type;
  76. PyObject *exc_value;
  77. PyObject *exc_traceback;
  78. PyObject *dict; /* Stores per-thread state */
  79. int gilstate_counter;
  80. PyObject *async_exc; /* Asynchronous exception to raise */
  81. long thread_id; /* Thread id where this tstate was created */
  82. int trash_delete_nesting;
  83. PyObject *trash_delete_later;
  84. /* Called when a thread state is deleted normally, but not when it
  85. * is destroyed after fork().
  86. * Pain: to prevent rare but fatal shutdown errors (issue 18808),
  87. * Thread.join() must wait for the join'ed thread's tstate to be unlinked
  88. * from the tstate chain. That happens at the end of a thread's life,
  89. * in pystate.c.
  90. * The obvious way doesn't quite work: create a lock which the tstate
  91. * unlinking code releases, and have Thread.join() wait to acquire that
  92. * lock. The problem is that we _are_ at the end of the thread's life:
  93. * if the thread holds the last reference to the lock, decref'ing the
  94. * lock will delete the lock, and that may trigger arbitrary Python code
  95. * if there's a weakref, with a callback, to the lock. But by this time
  96. * _PyThreadState_Current is already NULL, so only the simplest of C code
  97. * can be allowed to run (in particular it must not be possible to
  98. * release the GIL).
  99. * So instead of holding the lock directly, the tstate holds a weakref to
  100. * the lock: that's the value of on_delete_data below. Decref'ing a
  101. * weakref is harmless.
  102. * on_delete points to _threadmodule.c's static release_sentinel() function.
  103. * After the tstate is unlinked, release_sentinel is called with the
  104. * weakref-to-lock (on_delete_data) argument, and release_sentinel releases
  105. * the indirectly held lock.
  106. */
  107. void (*on_delete)(void *);
  108. void *on_delete_data;
  109. PyObject *coroutine_wrapper;
  110. int in_coroutine_wrapper;
  111. /* XXX signal handlers should also be here */
  112. } PyThreadState;
  113. #endif
  114. PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_New(void);
  115. PyAPI_FUNC(void) PyInterpreterState_Clear(PyInterpreterState *);
  116. PyAPI_FUNC(void) PyInterpreterState_Delete(PyInterpreterState *);
  117. PyAPI_FUNC(int) _PyState_AddModule(PyObject*, struct PyModuleDef*);
  118. #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
  119. /* New in 3.3 */
  120. PyAPI_FUNC(int) PyState_AddModule(PyObject*, struct PyModuleDef*);
  121. PyAPI_FUNC(int) PyState_RemoveModule(struct PyModuleDef*);
  122. #endif
  123. PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*);
  124. #ifndef Py_LIMITED_API
  125. PyAPI_FUNC(void) _PyState_ClearModules(void);
  126. #endif
  127. PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *);
  128. PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
  129. PyAPI_FUNC(void) _PyThreadState_Init(PyThreadState *);
  130. PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
  131. PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
  132. PyAPI_FUNC(void) _PyThreadState_DeleteExcept(PyThreadState *tstate);
  133. #ifdef WITH_THREAD
  134. PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
  135. PyAPI_FUNC(void) _PyGILState_Reinit(void);
  136. #endif
  137. /* Return the current thread state. The global interpreter lock must be held.
  138. * When the current thread state is NULL, this issues a fatal error (so that
  139. * the caller needn't check for NULL). */
  140. PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);
  141. /* Similar to PyThreadState_Get(), but don't issue a fatal error
  142. * if it is NULL. */
  143. PyAPI_FUNC(PyThreadState *) _PyThreadState_UncheckedGet(void);
  144. PyAPI_FUNC(PyThreadState *) PyThreadState_Swap(PyThreadState *);
  145. PyAPI_FUNC(PyObject *) PyThreadState_GetDict(void);
  146. PyAPI_FUNC(int) PyThreadState_SetAsyncExc(long, PyObject *);
  147. /* Variable and macro for in-line access to current thread state */
  148. /* Assuming the current thread holds the GIL, this is the
  149. PyThreadState for the current thread. */
  150. #ifdef Py_BUILD_CORE
  151. PyAPI_DATA(_Py_atomic_address) _PyThreadState_Current;
  152. # define PyThreadState_GET() \
  153. ((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current))
  154. #else
  155. # define PyThreadState_GET() PyThreadState_Get()
  156. #endif
  157. typedef
  158. enum {PyGILState_LOCKED, PyGILState_UNLOCKED}
  159. PyGILState_STATE;
  160. #ifdef WITH_THREAD
  161. /* Ensure that the current thread is ready to call the Python
  162. C API, regardless of the current state of Python, or of its
  163. thread lock. This may be called as many times as desired
  164. by a thread so long as each call is matched with a call to
  165. PyGILState_Release(). In general, other thread-state APIs may
  166. be used between _Ensure() and _Release() calls, so long as the
  167. thread-state is restored to its previous state before the Release().
  168. For example, normal use of the Py_BEGIN_ALLOW_THREADS/
  169. Py_END_ALLOW_THREADS macros are acceptable.
  170. The return value is an opaque "handle" to the thread state when
  171. PyGILState_Ensure() was called, and must be passed to
  172. PyGILState_Release() to ensure Python is left in the same state. Even
  173. though recursive calls are allowed, these handles can *not* be shared -
  174. each unique call to PyGILState_Ensure must save the handle for its
  175. call to PyGILState_Release.
  176. When the function returns, the current thread will hold the GIL.
  177. Failure is a fatal error.
  178. */
  179. PyAPI_FUNC(PyGILState_STATE) PyGILState_Ensure(void);
  180. /* Release any resources previously acquired. After this call, Python's
  181. state will be the same as it was prior to the corresponding
  182. PyGILState_Ensure() call (but generally this state will be unknown to
  183. the caller, hence the use of the GILState API.)
  184. Every call to PyGILState_Ensure must be matched by a call to
  185. PyGILState_Release on the same thread.
  186. */
  187. PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);
  188. /* Helper/diagnostic function - get the current thread state for
  189. this thread. May return NULL if no GILState API has been used
  190. on the current thread. Note that the main thread always has such a
  191. thread-state, even if no auto-thread-state call has been made
  192. on the main thread.
  193. */
  194. PyAPI_FUNC(PyThreadState *) PyGILState_GetThisThreadState(void);
  195. /* Helper/diagnostic function - return 1 if the current thread
  196. * currently holds the GIL, 0 otherwise
  197. */
  198. #ifndef Py_LIMITED_API
  199. PyAPI_FUNC(int) PyGILState_Check(void);
  200. #endif
  201. #endif /* #ifdef WITH_THREAD */
  202. /* The implementation of sys._current_frames() Returns a dict mapping
  203. thread id to that thread's current frame.
  204. */
  205. #ifndef Py_LIMITED_API
  206. PyAPI_FUNC(PyObject *) _PyThread_CurrentFrames(void);
  207. #endif
  208. /* Routines for advanced debuggers, requested by David Beazley.
  209. Don't use unless you know what you are doing! */
  210. #ifndef Py_LIMITED_API
  211. PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Head(void);
  212. PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_Next(PyInterpreterState *);
  213. PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *);
  214. PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *);
  215. typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);
  216. #endif
  217. /* hook for PyEval_GetFrame(), requested for Psyco */
  218. #ifndef Py_LIMITED_API
  219. PyAPI_DATA(PyThreadFrameGetter) _PyThreadState_GetFrame;
  220. #endif
  221. #ifdef __cplusplus
  222. }
  223. #endif
  224. #endif /* !Py_PYSTATE_H */