Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 1 | |
| 2 | /* Thread and interpreter state structures and their interfaces */ |
| 3 | |
| 4 | #include "Python.h" |
| 5 | |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 6 | /* -------------------------------------------------------------------------- |
| 7 | CAUTION |
| 8 | |
| 9 | Always use malloc() and free() directly in this file. A number of these |
| 10 | functions are advertised as safe to call when the GIL isn't held, and in |
| 11 | a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's debugging |
| 12 | obmalloc functions. Those aren't thread-safe (they rely on the GIL to avoid |
| 13 | the expense of doing their own locking). |
| 14 | -------------------------------------------------------------------------- */ |
| 15 | |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 16 | #ifdef HAVE_DLOPEN |
| 17 | #ifdef HAVE_DLFCN_H |
| 18 | #include <dlfcn.h> |
| 19 | #endif |
| 20 | #ifndef RTLD_LAZY |
| 21 | #define RTLD_LAZY 1 |
| 22 | #endif |
| 23 | #endif |
| 24 | |
| 25 | |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 26 | #ifdef WITH_THREAD |
| 27 | #include "pythread.h" |
| 28 | static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */ |
Moshe Zadka | 9fb6af9 | 2000-08-04 21:27:47 +0000 | [diff] [blame] | 29 | #define HEAD_INIT() (void)(head_mutex || (head_mutex = PyThread_allocate_lock())) |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 30 | #define HEAD_LOCK() PyThread_acquire_lock(head_mutex, WAIT_LOCK) |
| 31 | #define HEAD_UNLOCK() PyThread_release_lock(head_mutex) |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 32 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 33 | #ifdef __cplusplus |
| 34 | extern "C" { |
| 35 | #endif |
| 36 | |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 37 | /* The single PyInterpreterState used by this process' |
| 38 | GILState implementation |
| 39 | */ |
| 40 | static PyInterpreterState *autoInterpreterState = NULL; |
| 41 | static int autoTLSkey = 0; |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 42 | #else |
| 43 | #define HEAD_INIT() /* Nothing */ |
| 44 | #define HEAD_LOCK() /* Nothing */ |
| 45 | #define HEAD_UNLOCK() /* Nothing */ |
| 46 | #endif |
| 47 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 48 | static PyInterpreterState *interp_head = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 49 | |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 50 | /* Assuming the current thread holds the GIL, this is the |
| 51 | PyThreadState for the current thread. */ |
| 52 | _Py_atomic_address _PyThreadState_Current = {NULL}; |
Guido van Rossum | 6297a7a | 2003-02-19 15:53:17 +0000 | [diff] [blame] | 53 | PyThreadFrameGetter _PyThreadState_GetFrame = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 54 | |
Michael W. Hudson | ce7da6c | 2005-09-30 08:20:24 +0000 | [diff] [blame] | 55 | #ifdef WITH_THREAD |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 56 | static void _PyGILState_NoteThreadState(PyThreadState* tstate); |
Michael W. Hudson | ce7da6c | 2005-09-30 08:20:24 +0000 | [diff] [blame] | 57 | #endif |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 58 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 59 | |
| 60 | PyInterpreterState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 61 | PyInterpreterState_New(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 62 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 63 | PyInterpreterState *interp = (PyInterpreterState *) |
| 64 | malloc(sizeof(PyInterpreterState)); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 65 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 66 | if (interp != NULL) { |
| 67 | HEAD_INIT(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 68 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 69 | if (head_mutex == NULL) |
| 70 | Py_FatalError("Can't initialize threads for interpreter"); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 71 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 72 | interp->modules = NULL; |
| 73 | interp->modules_reloading = NULL; |
| 74 | interp->modules_by_index = NULL; |
| 75 | interp->sysdict = NULL; |
| 76 | interp->builtins = NULL; |
| 77 | interp->tstate_head = NULL; |
| 78 | interp->codec_search_path = NULL; |
| 79 | interp->codec_search_cache = NULL; |
| 80 | interp->codec_error_registry = NULL; |
| 81 | interp->codecs_initialized = 0; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 82 | #ifdef HAVE_DLOPEN |
| 83 | #ifdef RTLD_NOW |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 84 | interp->dlopenflags = RTLD_NOW; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 85 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | interp->dlopenflags = RTLD_LAZY; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 87 | #endif |
| 88 | #endif |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 89 | #ifdef WITH_TSC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 90 | interp->tscdump = 0; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 91 | #endif |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 92 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 93 | HEAD_LOCK(); |
| 94 | interp->next = interp_head; |
| 95 | interp_head = interp; |
| 96 | HEAD_UNLOCK(); |
| 97 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 98 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | return interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | |
| 103 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 104 | PyInterpreterState_Clear(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 105 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 106 | PyThreadState *p; |
| 107 | HEAD_LOCK(); |
| 108 | for (p = interp->tstate_head; p != NULL; p = p->next) |
| 109 | PyThreadState_Clear(p); |
| 110 | HEAD_UNLOCK(); |
| 111 | Py_CLEAR(interp->codec_search_path); |
| 112 | Py_CLEAR(interp->codec_search_cache); |
| 113 | Py_CLEAR(interp->codec_error_registry); |
| 114 | Py_CLEAR(interp->modules); |
| 115 | Py_CLEAR(interp->modules_by_index); |
| 116 | Py_CLEAR(interp->modules_reloading); |
| 117 | Py_CLEAR(interp->sysdict); |
| 118 | Py_CLEAR(interp->builtins); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | |
| 122 | static void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 123 | zapthreads(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 124 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 125 | PyThreadState *p; |
| 126 | /* No need to lock the mutex here because this should only happen |
| 127 | when the threads are all really dead (XXX famous last words). */ |
| 128 | while ((p = interp->tstate_head) != NULL) { |
| 129 | PyThreadState_Delete(p); |
| 130 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | |
| 134 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 135 | PyInterpreterState_Delete(PyInterpreterState *interp) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 136 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 137 | PyInterpreterState **p; |
| 138 | zapthreads(interp); |
| 139 | HEAD_LOCK(); |
| 140 | for (p = &interp_head; ; p = &(*p)->next) { |
| 141 | if (*p == NULL) |
| 142 | Py_FatalError( |
| 143 | "PyInterpreterState_Delete: invalid interp"); |
| 144 | if (*p == interp) |
| 145 | break; |
| 146 | } |
| 147 | if (interp->tstate_head != NULL) |
| 148 | Py_FatalError("PyInterpreterState_Delete: remaining threads"); |
| 149 | *p = interp->next; |
| 150 | HEAD_UNLOCK(); |
| 151 | free(interp); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 155 | /* Default implementation for _PyThreadState_GetFrame */ |
| 156 | static struct _frame * |
| 157 | threadstate_getframe(PyThreadState *self) |
| 158 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 159 | return self->frame; |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 162 | static PyThreadState * |
| 163 | new_threadstate(PyInterpreterState *interp, int init) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 164 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 165 | PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState)); |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 166 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 167 | if (_PyThreadState_GetFrame == NULL) |
| 168 | _PyThreadState_GetFrame = threadstate_getframe; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 169 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 170 | if (tstate != NULL) { |
| 171 | tstate->interp = interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 172 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 173 | tstate->frame = NULL; |
| 174 | tstate->recursion_depth = 0; |
| 175 | tstate->overflowed = 0; |
| 176 | tstate->recursion_critical = 0; |
| 177 | tstate->tracing = 0; |
| 178 | tstate->use_tracing = 0; |
| 179 | tstate->tick_counter = 0; |
| 180 | tstate->gilstate_counter = 0; |
| 181 | tstate->async_exc = NULL; |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 182 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 183 | tstate->thread_id = PyThread_get_thread_ident(); |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 184 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 185 | tstate->thread_id = 0; |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 186 | #endif |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 187 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 188 | tstate->dict = NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 189 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 190 | tstate->curexc_type = NULL; |
| 191 | tstate->curexc_value = NULL; |
| 192 | tstate->curexc_traceback = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 193 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 194 | tstate->exc_type = NULL; |
| 195 | tstate->exc_value = NULL; |
| 196 | tstate->exc_traceback = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 197 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 198 | tstate->c_profilefunc = NULL; |
| 199 | tstate->c_tracefunc = NULL; |
| 200 | tstate->c_profileobj = NULL; |
| 201 | tstate->c_traceobj = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 202 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | if (init) |
| 204 | _PyThreadState_Init(tstate); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 205 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 206 | HEAD_LOCK(); |
| 207 | tstate->next = interp->tstate_head; |
| 208 | interp->tstate_head = tstate; |
| 209 | HEAD_UNLOCK(); |
| 210 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 211 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 212 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 215 | PyThreadState * |
| 216 | PyThreadState_New(PyInterpreterState *interp) |
| 217 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 218 | return new_threadstate(interp, 1); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | PyThreadState * |
| 222 | _PyThreadState_Prealloc(PyInterpreterState *interp) |
| 223 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 224 | return new_threadstate(interp, 0); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | void |
| 228 | _PyThreadState_Init(PyThreadState *tstate) |
| 229 | { |
| 230 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 231 | _PyGILState_NoteThreadState(tstate); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 232 | #endif |
| 233 | } |
| 234 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 235 | PyObject* |
| 236 | PyState_FindModule(struct PyModuleDef* m) |
| 237 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 238 | Py_ssize_t index = m->m_base.m_index; |
| 239 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 240 | PyObject *res; |
| 241 | if (index == 0) |
| 242 | return NULL; |
| 243 | if (state->modules_by_index == NULL) |
| 244 | return NULL; |
| 245 | if (index > PyList_GET_SIZE(state->modules_by_index)) |
| 246 | return NULL; |
| 247 | res = PyList_GET_ITEM(state->modules_by_index, index); |
| 248 | return res==Py_None ? NULL : res; |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | int |
| 252 | _PyState_AddModule(PyObject* module, struct PyModuleDef* def) |
| 253 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 254 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 255 | if (!def) |
| 256 | return -1; |
| 257 | if (!state->modules_by_index) { |
| 258 | state->modules_by_index = PyList_New(0); |
| 259 | if (!state->modules_by_index) |
| 260 | return -1; |
| 261 | } |
| 262 | while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index) |
| 263 | if (PyList_Append(state->modules_by_index, Py_None) < 0) |
| 264 | return -1; |
| 265 | Py_INCREF(module); |
| 266 | return PyList_SetItem(state->modules_by_index, |
| 267 | def->m_base.m_index, module); |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 268 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 269 | |
| 270 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 271 | PyThreadState_Clear(PyThreadState *tstate) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 272 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 273 | if (Py_VerboseFlag && tstate->frame != NULL) |
| 274 | fprintf(stderr, |
| 275 | "PyThreadState_Clear: warning: thread still has a frame\n"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 276 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 277 | Py_CLEAR(tstate->frame); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 278 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 279 | Py_CLEAR(tstate->dict); |
| 280 | Py_CLEAR(tstate->async_exc); |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 281 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 282 | Py_CLEAR(tstate->curexc_type); |
| 283 | Py_CLEAR(tstate->curexc_value); |
| 284 | Py_CLEAR(tstate->curexc_traceback); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 285 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 286 | Py_CLEAR(tstate->exc_type); |
| 287 | Py_CLEAR(tstate->exc_value); |
| 288 | Py_CLEAR(tstate->exc_traceback); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 289 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 290 | tstate->c_profilefunc = NULL; |
| 291 | tstate->c_tracefunc = NULL; |
| 292 | Py_CLEAR(tstate->c_profileobj); |
| 293 | Py_CLEAR(tstate->c_traceobj); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 297 | /* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */ |
| 298 | static void |
| 299 | tstate_delete_common(PyThreadState *tstate) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 300 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 301 | PyInterpreterState *interp; |
| 302 | PyThreadState **p; |
| 303 | PyThreadState *prev_p = NULL; |
| 304 | if (tstate == NULL) |
| 305 | Py_FatalError("PyThreadState_Delete: NULL tstate"); |
| 306 | interp = tstate->interp; |
| 307 | if (interp == NULL) |
| 308 | Py_FatalError("PyThreadState_Delete: NULL interp"); |
| 309 | HEAD_LOCK(); |
| 310 | for (p = &interp->tstate_head; ; p = &(*p)->next) { |
| 311 | if (*p == NULL) |
| 312 | Py_FatalError( |
| 313 | "PyThreadState_Delete: invalid tstate"); |
| 314 | if (*p == tstate) |
| 315 | break; |
| 316 | /* Sanity check. These states should never happen but if |
| 317 | * they do we must abort. Otherwise we'll end up spinning in |
| 318 | * in a tight loop with the lock held. A similar check is done |
| 319 | * in thread.c find_key(). */ |
| 320 | if (*p == prev_p) |
| 321 | Py_FatalError( |
| 322 | "PyThreadState_Delete: small circular list(!)" |
| 323 | " and tstate not found."); |
| 324 | prev_p = *p; |
| 325 | if ((*p)->next == interp->tstate_head) |
| 326 | Py_FatalError( |
| 327 | "PyThreadState_Delete: circular list(!) and" |
| 328 | " tstate not found."); |
| 329 | } |
| 330 | *p = tstate->next; |
| 331 | HEAD_UNLOCK(); |
| 332 | free(tstate); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 336 | void |
| 337 | PyThreadState_Delete(PyThreadState *tstate) |
| 338 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 339 | if (tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current)) |
| 340 | Py_FatalError("PyThreadState_Delete: tstate is still current"); |
| 341 | tstate_delete_common(tstate); |
Tim Peters | f4e6928 | 2006-02-27 17:15:31 +0000 | [diff] [blame] | 342 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 343 | if (autoTLSkey && PyThread_get_key_value(autoTLSkey) == tstate) |
| 344 | PyThread_delete_key_value(autoTLSkey); |
Tim Peters | f4e6928 | 2006-02-27 17:15:31 +0000 | [diff] [blame] | 345 | #endif /* WITH_THREAD */ |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | |
| 349 | #ifdef WITH_THREAD |
| 350 | void |
| 351 | PyThreadState_DeleteCurrent() |
| 352 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 354 | &_PyThreadState_Current); |
| 355 | if (tstate == NULL) |
| 356 | Py_FatalError( |
| 357 | "PyThreadState_DeleteCurrent: no current tstate"); |
| 358 | _Py_atomic_store_relaxed(&_PyThreadState_Current, NULL); |
| 359 | tstate_delete_common(tstate); |
| 360 | if (autoTLSkey && PyThread_get_key_value(autoTLSkey) == tstate) |
| 361 | PyThread_delete_key_value(autoTLSkey); |
| 362 | PyEval_ReleaseLock(); |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 363 | } |
| 364 | #endif /* WITH_THREAD */ |
| 365 | |
| 366 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 367 | PyThreadState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 368 | PyThreadState_Get(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 369 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 370 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 371 | &_PyThreadState_Current); |
| 372 | if (tstate == NULL) |
| 373 | Py_FatalError("PyThreadState_Get: no current thread"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 374 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 375 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | |
| 379 | PyThreadState * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 380 | PyThreadState_Swap(PyThreadState *newts) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 381 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 382 | PyThreadState *oldts = (PyThreadState*)_Py_atomic_load_relaxed( |
| 383 | &_PyThreadState_Current); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 384 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 385 | _Py_atomic_store_relaxed(&_PyThreadState_Current, newts); |
| 386 | /* It should not be possible for more than one thread state |
| 387 | to be used for a thread. Check this the best we can in debug |
| 388 | builds. |
| 389 | */ |
Martin v. Löwis | 9e29625 | 2003-05-01 05:25:29 +0000 | [diff] [blame] | 390 | #if defined(Py_DEBUG) && defined(WITH_THREAD) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 391 | if (newts) { |
| 392 | /* This can be called from PyEval_RestoreThread(). Similar |
| 393 | to it, we need to ensure errno doesn't change. |
| 394 | */ |
| 395 | int err = errno; |
| 396 | PyThreadState *check = PyGILState_GetThisThreadState(); |
| 397 | if (check && check->interp == newts->interp && check != newts) |
| 398 | Py_FatalError("Invalid thread state for this thread"); |
| 399 | errno = err; |
| 400 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 401 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 402 | return oldts; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 403 | } |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 404 | |
| 405 | /* An extension mechanism to store arbitrary additional per-thread state. |
| 406 | PyThreadState_GetDict() returns a dictionary that can be used to hold such |
| 407 | state; the caller should pick a unique key and store its state there. If |
Guido van Rossum | 0fc8f00 | 2003-04-15 15:12:39 +0000 | [diff] [blame] | 408 | PyThreadState_GetDict() returns NULL, an exception has *not* been raised |
| 409 | and the caller should assume no per-thread state is available. */ |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 410 | |
| 411 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 412 | PyThreadState_GetDict(void) |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 413 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 414 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 415 | &_PyThreadState_Current); |
| 416 | if (tstate == NULL) |
| 417 | return NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 418 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 419 | if (tstate->dict == NULL) { |
| 420 | PyObject *d; |
| 421 | tstate->dict = d = PyDict_New(); |
| 422 | if (d == NULL) |
| 423 | PyErr_Clear(); |
| 424 | } |
| 425 | return tstate->dict; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 426 | } |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 427 | |
| 428 | |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 429 | /* Asynchronously raise an exception in a thread. |
| 430 | Requested by Just van Rossum and Alex Martelli. |
Guido van Rossum | 0f1f63c | 2005-02-08 02:07:57 +0000 | [diff] [blame] | 431 | To prevent naive misuse, you must write your own extension |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 432 | to call this, or use ctypes. Must be called with the GIL held. |
| 433 | Returns the number of tstates modified (normally 1, but 0 if `id` didn't |
| 434 | match any known thread id). Can be called with exc=NULL to clear an |
| 435 | existing async exception. This raises no exceptions. */ |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 436 | |
| 437 | int |
| 438 | PyThreadState_SetAsyncExc(long id, PyObject *exc) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 439 | PyThreadState *tstate = PyThreadState_GET(); |
| 440 | PyInterpreterState *interp = tstate->interp; |
| 441 | PyThreadState *p; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 442 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | /* Although the GIL is held, a few C API functions can be called |
| 444 | * without the GIL held, and in particular some that create and |
| 445 | * destroy thread and interpreter states. Those can mutate the |
| 446 | * list of thread states we're traversing, so to prevent that we lock |
| 447 | * head_mutex for the duration. |
| 448 | */ |
| 449 | HEAD_LOCK(); |
| 450 | for (p = interp->tstate_head; p != NULL; p = p->next) { |
| 451 | if (p->thread_id == id) { |
| 452 | /* Tricky: we need to decref the current value |
| 453 | * (if any) in p->async_exc, but that can in turn |
| 454 | * allow arbitrary Python code to run, including |
| 455 | * perhaps calls to this function. To prevent |
| 456 | * deadlock, we need to release head_mutex before |
| 457 | * the decref. |
| 458 | */ |
| 459 | PyObject *old_exc = p->async_exc; |
| 460 | Py_XINCREF(exc); |
| 461 | p->async_exc = exc; |
| 462 | HEAD_UNLOCK(); |
| 463 | Py_XDECREF(old_exc); |
| 464 | _PyEval_SignalAsyncExc(); |
| 465 | return 1; |
| 466 | } |
| 467 | } |
| 468 | HEAD_UNLOCK(); |
| 469 | return 0; |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 473 | /* Routines for advanced debuggers, requested by David Beazley. |
| 474 | Don't use unless you know what you are doing! */ |
| 475 | |
| 476 | PyInterpreterState * |
| 477 | PyInterpreterState_Head(void) |
| 478 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 479 | return interp_head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | PyInterpreterState * |
| 483 | PyInterpreterState_Next(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 484 | return interp->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | PyThreadState * |
| 488 | PyInterpreterState_ThreadHead(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 489 | return interp->tstate_head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | PyThreadState * |
| 493 | PyThreadState_Next(PyThreadState *tstate) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 494 | return tstate->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 495 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 496 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 497 | /* The implementation of sys._current_frames(). This is intended to be |
| 498 | called with the GIL held, as it will be when called via |
| 499 | sys._current_frames(). It's possible it would work fine even without |
| 500 | the GIL held, but haven't thought enough about that. |
| 501 | */ |
| 502 | PyObject * |
| 503 | _PyThread_CurrentFrames(void) |
| 504 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 505 | PyObject *result; |
| 506 | PyInterpreterState *i; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 507 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 508 | result = PyDict_New(); |
| 509 | if (result == NULL) |
| 510 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 511 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 512 | /* for i in all interpreters: |
| 513 | * for t in all of i's thread states: |
| 514 | * if t's frame isn't NULL, map t's id to its frame |
| 515 | * Because these lists can mutute even when the GIL is held, we |
| 516 | * need to grab head_mutex for the duration. |
| 517 | */ |
| 518 | HEAD_LOCK(); |
| 519 | for (i = interp_head; i != NULL; i = i->next) { |
| 520 | PyThreadState *t; |
| 521 | for (t = i->tstate_head; t != NULL; t = t->next) { |
| 522 | PyObject *id; |
| 523 | int stat; |
| 524 | struct _frame *frame = t->frame; |
| 525 | if (frame == NULL) |
| 526 | continue; |
| 527 | id = PyLong_FromLong(t->thread_id); |
| 528 | if (id == NULL) |
| 529 | goto Fail; |
| 530 | stat = PyDict_SetItem(result, id, (PyObject *)frame); |
| 531 | Py_DECREF(id); |
| 532 | if (stat < 0) |
| 533 | goto Fail; |
| 534 | } |
| 535 | } |
| 536 | HEAD_UNLOCK(); |
| 537 | return result; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 538 | |
| 539 | Fail: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 540 | HEAD_UNLOCK(); |
| 541 | Py_DECREF(result); |
| 542 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 543 | } |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 544 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 545 | /* Python "auto thread state" API. */ |
| 546 | #ifdef WITH_THREAD |
| 547 | |
| 548 | /* Keep this as a static, as it is not reliable! It can only |
| 549 | ever be compared to the state for the *current* thread. |
| 550 | * If not equal, then it doesn't matter that the actual |
| 551 | value may change immediately after comparison, as it can't |
| 552 | possibly change to the current thread's state. |
| 553 | * If equal, then the current thread holds the lock, so the value can't |
| 554 | change until we yield the lock. |
| 555 | */ |
| 556 | static int |
| 557 | PyThreadState_IsCurrent(PyThreadState *tstate) |
| 558 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | /* Must be the tstate for this thread */ |
| 560 | assert(PyGILState_GetThisThreadState()==tstate); |
| 561 | return tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Tim Peters | 4c1f5ec | 2004-10-09 17:25:05 +0000 | [diff] [blame] | 564 | /* Internal initialization/finalization functions called by |
| 565 | Py_Initialize/Py_Finalize |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 566 | */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 567 | void |
| 568 | _PyGILState_Init(PyInterpreterState *i, PyThreadState *t) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 569 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 570 | assert(i && t); /* must init with valid states */ |
| 571 | autoTLSkey = PyThread_create_key(); |
| 572 | autoInterpreterState = i; |
| 573 | assert(PyThread_get_key_value(autoTLSkey) == NULL); |
| 574 | assert(t->gilstate_counter == 0); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 575 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 576 | _PyGILState_NoteThreadState(t); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 577 | } |
| 578 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 579 | void |
| 580 | _PyGILState_Fini(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 581 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 582 | PyThread_delete_key(autoTLSkey); |
| 583 | autoTLSkey = 0; |
| 584 | autoInterpreterState = NULL; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 585 | } |
| 586 | |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 587 | /* When a thread state is created for a thread by some mechanism other than |
| 588 | PyGILState_Ensure, it's important that the GILState machinery knows about |
| 589 | it so it doesn't try to create another thread state for the thread (this is |
| 590 | a better fix for SF bug #1010677 than the first one attempted). |
| 591 | */ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 592 | static void |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 593 | _PyGILState_NoteThreadState(PyThreadState* tstate) |
| 594 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 595 | /* If autoTLSkey is 0, this must be the very first threadstate created |
| 596 | in Py_Initialize(). Don't do anything for now (we'll be back here |
| 597 | when _PyGILState_Init is called). */ |
| 598 | if (!autoTLSkey) |
| 599 | return; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 600 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 601 | /* Stick the thread state for this thread in thread local storage. |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 602 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 603 | The only situation where you can legitimately have more than one |
| 604 | thread state for an OS level thread is when there are multiple |
| 605 | interpreters, when: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 606 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 607 | a) You shouldn't really be using the PyGILState_ APIs anyway, |
| 608 | and: |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 609 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 610 | b) The slightly odd way PyThread_set_key_value works (see |
| 611 | comments by its implementation) means that the first thread |
| 612 | state created for that given OS level thread will "win", |
| 613 | which seems reasonable behaviour. |
| 614 | */ |
| 615 | if (PyThread_set_key_value(autoTLSkey, (void *)tstate) < 0) |
| 616 | Py_FatalError("Couldn't create autoTLSkey mapping"); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 617 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 618 | /* PyGILState_Release must not try to delete this thread state. */ |
| 619 | tstate->gilstate_counter = 1; |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 622 | /* The public functions */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 623 | PyThreadState * |
| 624 | PyGILState_GetThisThreadState(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 625 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 626 | if (autoInterpreterState == NULL || autoTLSkey == 0) |
| 627 | return NULL; |
| 628 | return (PyThreadState *)PyThread_get_key_value(autoTLSkey); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 629 | } |
| 630 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 631 | PyGILState_STATE |
| 632 | PyGILState_Ensure(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 633 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 634 | int current; |
| 635 | PyThreadState *tcur; |
| 636 | /* Note that we do not auto-init Python here - apart from |
| 637 | potential races with 2 threads auto-initializing, pep-311 |
| 638 | spells out other issues. Embedders are expected to have |
| 639 | called Py_Initialize() and usually PyEval_InitThreads(). |
| 640 | */ |
| 641 | assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */ |
| 642 | tcur = (PyThreadState *)PyThread_get_key_value(autoTLSkey); |
| 643 | if (tcur == NULL) { |
| 644 | /* Create a new thread state for this thread */ |
| 645 | tcur = PyThreadState_New(autoInterpreterState); |
| 646 | if (tcur == NULL) |
| 647 | Py_FatalError("Couldn't create thread-state for new thread"); |
| 648 | /* This is our thread state! We'll need to delete it in the |
| 649 | matching call to PyGILState_Release(). */ |
| 650 | tcur->gilstate_counter = 0; |
| 651 | current = 0; /* new thread state is never current */ |
| 652 | } |
| 653 | else |
| 654 | current = PyThreadState_IsCurrent(tcur); |
| 655 | if (current == 0) |
| 656 | PyEval_RestoreThread(tcur); |
| 657 | /* Update our counter in the thread-state - no need for locks: |
| 658 | - tcur will remain valid as we hold the GIL. |
| 659 | - the counter is safe as we are the only thread "allowed" |
| 660 | to modify this value |
| 661 | */ |
| 662 | ++tcur->gilstate_counter; |
| 663 | return current ? PyGILState_LOCKED : PyGILState_UNLOCKED; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 664 | } |
| 665 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 666 | void |
| 667 | PyGILState_Release(PyGILState_STATE oldstate) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 668 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 669 | PyThreadState *tcur = (PyThreadState *)PyThread_get_key_value( |
| 670 | autoTLSkey); |
| 671 | if (tcur == NULL) |
| 672 | Py_FatalError("auto-releasing thread-state, " |
| 673 | "but no thread-state for this thread"); |
| 674 | /* We must hold the GIL and have our thread state current */ |
| 675 | /* XXX - remove the check - the assert should be fine, |
| 676 | but while this is very new (April 2003), the extra check |
| 677 | by release-only users can't hurt. |
| 678 | */ |
| 679 | if (! PyThreadState_IsCurrent(tcur)) |
| 680 | Py_FatalError("This thread state must be current when releasing"); |
| 681 | assert(PyThreadState_IsCurrent(tcur)); |
| 682 | --tcur->gilstate_counter; |
| 683 | assert(tcur->gilstate_counter >= 0); /* illegal counter value */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 684 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 685 | /* If we're going to destroy this thread-state, we must |
| 686 | * clear it while the GIL is held, as destructors may run. |
| 687 | */ |
| 688 | if (tcur->gilstate_counter == 0) { |
| 689 | /* can't have been locked when we created it */ |
| 690 | assert(oldstate == PyGILState_UNLOCKED); |
| 691 | PyThreadState_Clear(tcur); |
| 692 | /* Delete the thread-state. Note this releases the GIL too! |
| 693 | * It's vital that the GIL be held here, to avoid shutdown |
| 694 | * races; see bugs 225673 and 1061968 (that nasty bug has a |
| 695 | * habit of coming back). |
| 696 | */ |
| 697 | PyThreadState_DeleteCurrent(); |
| 698 | } |
| 699 | /* Release the lock if necessary */ |
| 700 | else if (oldstate == PyGILState_UNLOCKED) |
| 701 | PyEval_SaveThread(); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 702 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 703 | |
| 704 | #ifdef __cplusplus |
| 705 | } |
| 706 | #endif |
| 707 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 708 | #endif /* WITH_THREAD */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 709 | |
| 710 | |