2017-09-07 23:51:28 -06:00
|
|
|
#ifndef Py_INTERNAL_PYSTATE_H
|
|
|
|
#define Py_INTERNAL_PYSTATE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 23:02:26 +02:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
2018-11-01 01:51:40 +01:00
|
|
|
#endif
|
|
|
|
|
2022-04-06 13:58:07 +02:00
|
|
|
#include "pycore_runtime.h" /* PyRuntimeState */
|
2017-09-07 23:51:28 -06:00
|
|
|
|
|
|
|
|
2020-03-20 13:38:58 +01:00
|
|
|
/* Check if the current thread is the main thread.
|
|
|
|
Use _Py_IsMainInterpreter() to check if it's the main interpreter. */
|
|
|
|
static inline int
|
|
|
|
_Py_IsMainThread(void)
|
|
|
|
{
|
|
|
|
unsigned long thread = PyThread_get_thread_ident();
|
|
|
|
return (thread == _PyRuntime.main_thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-07 18:56:06 -07:00
|
|
|
static inline PyInterpreterState *
|
|
|
|
_PyInterpreterState_Main(void)
|
|
|
|
{
|
|
|
|
return _PyRuntime.interpreters.main;
|
|
|
|
}
|
|
|
|
|
2020-03-20 13:38:58 +01:00
|
|
|
static inline int
|
2021-02-19 13:33:31 +01:00
|
|
|
_Py_IsMainInterpreter(PyInterpreterState *interp)
|
2020-03-20 13:38:58 +01:00
|
|
|
{
|
2021-12-07 18:56:06 -07:00
|
|
|
return (interp == _PyInterpreterState_Main());
|
2020-03-20 13:38:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-27 10:00:32 -06:00
|
|
|
static inline const PyConfig *
|
|
|
|
_Py_GetMainConfig(void)
|
|
|
|
{
|
2021-12-07 18:56:06 -07:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_Main();
|
2021-09-27 10:00:32 -06:00
|
|
|
if (interp == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return _PyInterpreterState_GetConfig(interp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-20 13:38:58 +01:00
|
|
|
/* Only handle signals on the main thread of the main interpreter. */
|
|
|
|
static inline int
|
2020-04-08 23:35:05 +02:00
|
|
|
_Py_ThreadCanHandleSignals(PyInterpreterState *interp)
|
2020-03-20 13:38:58 +01:00
|
|
|
{
|
2021-12-07 18:56:06 -07:00
|
|
|
return (_Py_IsMainThread() && _Py_IsMainInterpreter(interp));
|
2020-03-20 13:38:58 +01:00
|
|
|
}
|
2019-11-20 17:34:39 +01:00
|
|
|
|
2017-09-07 23:51:28 -06:00
|
|
|
|
2020-03-20 14:50:35 +01:00
|
|
|
/* Only execute pending calls on the main thread. */
|
|
|
|
static inline int
|
|
|
|
_Py_ThreadCanHandlePendingCalls(void)
|
|
|
|
{
|
|
|
|
return _Py_IsMainThread();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-01 01:51:40 +01:00
|
|
|
/* Variable and macro for in-line access to current thread
|
|
|
|
and interpreter state */
|
|
|
|
|
2020-05-05 19:56:48 +02:00
|
|
|
static inline PyThreadState*
|
|
|
|
_PyRuntimeState_GetThreadState(_PyRuntimeState *runtime)
|
|
|
|
{
|
2023-01-19 16:04:14 -07:00
|
|
|
return (PyThreadState*)_Py_atomic_load_relaxed(&runtime->tstate_current);
|
2020-03-07 00:24:23 +01:00
|
|
|
}
|
2019-05-10 23:39:09 +02:00
|
|
|
|
2018-11-01 01:51:40 +01:00
|
|
|
/* Get the current Python thread state.
|
|
|
|
|
2023-01-19 16:04:14 -07:00
|
|
|
Efficient macro reading directly the 'tstate_current' atomic
|
2018-11-01 01:51:40 +01:00
|
|
|
variable. The macro is unsafe: it does not check for error and it can
|
|
|
|
return NULL.
|
|
|
|
|
|
|
|
The caller must hold the GIL.
|
|
|
|
|
2021-10-13 14:09:13 +02:00
|
|
|
See also PyThreadState_Get() and _PyThreadState_UncheckedGet(). */
|
2020-05-05 19:56:48 +02:00
|
|
|
static inline PyThreadState*
|
|
|
|
_PyThreadState_GET(void)
|
|
|
|
{
|
2020-04-08 23:35:05 +02:00
|
|
|
return _PyRuntimeState_GetThreadState(&_PyRuntime);
|
|
|
|
}
|
2018-11-01 01:51:40 +01:00
|
|
|
|
2020-06-01 16:02:40 +02:00
|
|
|
static inline void
|
|
|
|
_Py_EnsureFuncTstateNotNULL(const char *func, PyThreadState *tstate)
|
|
|
|
{
|
|
|
|
if (tstate == NULL) {
|
2022-08-24 14:21:01 +01:00
|
|
|
_Py_FatalErrorFunc(func,
|
|
|
|
"the function must be called with the GIL held, "
|
|
|
|
"after Python initialization and before Python finalization, "
|
|
|
|
"but the GIL is released (the current Python thread state is NULL)");
|
2020-06-01 16:02:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call Py_FatalError() if tstate is NULL
|
|
|
|
#define _Py_EnsureTstateNotNULL(tstate) \
|
2022-06-20 16:04:52 +02:00
|
|
|
_Py_EnsureFuncTstateNotNULL(__func__, (tstate))
|
2020-06-01 16:02:40 +02:00
|
|
|
|
|
|
|
|
2018-11-01 01:51:40 +01:00
|
|
|
/* Get the current interpreter state.
|
|
|
|
|
|
|
|
The macro is unsafe: it does not check for error and it can return NULL.
|
|
|
|
|
|
|
|
The caller must hold the GIL.
|
|
|
|
|
|
|
|
See also _PyInterpreterState_Get()
|
|
|
|
and _PyGILState_GetInterpreterStateUnsafe(). */
|
2020-04-14 15:14:01 +02:00
|
|
|
static inline PyInterpreterState* _PyInterpreterState_GET(void) {
|
2020-04-08 23:35:05 +02:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2020-06-01 16:02:40 +02:00
|
|
|
#ifdef Py_DEBUG
|
|
|
|
_Py_EnsureTstateNotNULL(tstate);
|
|
|
|
#endif
|
2020-04-08 23:35:05 +02:00
|
|
|
return tstate->interp;
|
|
|
|
}
|
2018-11-01 01:51:40 +01:00
|
|
|
|
|
|
|
|
2021-10-15 16:06:30 +02:00
|
|
|
// PyThreadState functions
|
2017-09-07 23:51:28 -06:00
|
|
|
|
2023-01-30 12:07:48 -07:00
|
|
|
PyAPI_FUNC(PyThreadState *) _PyThreadState_New(PyInterpreterState *interp);
|
2023-01-19 16:04:14 -07:00
|
|
|
PyAPI_FUNC(void) _PyThreadState_Bind(PyThreadState *tstate);
|
2021-12-07 17:26:29 -07:00
|
|
|
// We keep this around exclusively for stable ABI compatibility.
|
2019-06-04 03:15:09 +02:00
|
|
|
PyAPI_FUNC(void) _PyThreadState_Init(
|
|
|
|
PyThreadState *tstate);
|
2023-01-30 12:07:48 -07:00
|
|
|
PyAPI_FUNC(void) _PyThreadState_DeleteExcept(PyThreadState *tstate);
|
2019-05-10 23:39:09 +02:00
|
|
|
|
2021-10-15 16:06:30 +02:00
|
|
|
|
|
|
|
static inline void
|
2022-03-15 17:06:21 +00:00
|
|
|
_PyThreadState_UpdateTracingState(PyThreadState *tstate)
|
2021-10-15 16:06:30 +02:00
|
|
|
{
|
2022-07-28 10:17:22 +01:00
|
|
|
bool use_tracing =
|
|
|
|
(tstate->tracing == 0) &&
|
|
|
|
(tstate->c_tracefunc != NULL || tstate->c_profilefunc != NULL);
|
2021-10-15 16:06:30 +02:00
|
|
|
tstate->cframe->use_tracing = (use_tracing ? 255 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Other */
|
|
|
|
|
2019-05-10 23:39:09 +02:00
|
|
|
PyAPI_FUNC(PyThreadState *) _PyThreadState_Swap(
|
2023-01-19 16:04:14 -07:00
|
|
|
_PyRuntimeState *runtime,
|
2019-05-10 23:39:09 +02:00
|
|
|
PyThreadState *newts);
|
2019-04-24 16:47:40 +02:00
|
|
|
|
2019-05-27 16:39:22 +02:00
|
|
|
PyAPI_FUNC(PyStatus) _PyInterpreterState_Enable(_PyRuntimeState *runtime);
|
2019-04-24 17:14:33 +02:00
|
|
|
|
2020-06-02 15:51:37 +02:00
|
|
|
#ifdef HAVE_FORK
|
|
|
|
extern PyStatus _PyInterpreterState_DeleteExceptMain(_PyRuntimeState *runtime);
|
|
|
|
extern void _PySignal_AfterFork(void);
|
|
|
|
#endif
|
2017-09-07 23:51:28 -06:00
|
|
|
|
2019-11-22 18:52:27 +01:00
|
|
|
|
2020-06-03 14:39:59 +02:00
|
|
|
PyAPI_FUNC(int) _PyOS_InterruptOccurred(PyThreadState *tstate);
|
|
|
|
|
2023-01-15 20:39:26 +05:30
|
|
|
#define HEAD_LOCK(runtime) \
|
|
|
|
PyThread_acquire_lock((runtime)->interpreters.mutex, WAIT_LOCK)
|
|
|
|
#define HEAD_UNLOCK(runtime) \
|
|
|
|
PyThread_release_lock((runtime)->interpreters.mutex)
|
|
|
|
|
|
|
|
|
2017-09-07 23:51:28 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_PYSTATE_H */
|