blob: 2657a1fc68d1f9395793aacaebc05af8bfc43a35 [file] [log] [blame]
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001
2/* Thread module */
3/* Interface to Sjoerd's portable C thread library */
4
Barry Warsawd0c10421996-12-17 00:05:22 +00005#include "Python.h"
Eric Snow2ebc5ce2017-09-07 23:51:28 -06006#include "internal/pystate.h"
Benjamin Petersonbec4d572009-10-10 01:16:07 +00007#include "structmember.h" /* offsetof */
Guido van Rossum49b56061998-10-01 20:42:43 +00008#include "pythread.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +00009
Barry Warsawd0c10421996-12-17 00:05:22 +000010static PyObject *ThreadError;
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +000011static PyObject *str_dict;
Guido van Rossum1984f1e1992-08-04 12:41:02 +000012
Victor Stinnerbd303c12013-11-07 23:07:29 +010013_Py_IDENTIFIER(stderr);
14
Guido van Rossum1984f1e1992-08-04 12:41:02 +000015/* Lock objects */
16
17typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000018 PyObject_HEAD
19 PyThread_type_lock lock_lock;
20 PyObject *in_weakreflist;
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +000021 char locked; /* for sanity checking */
Guido van Rossum1984f1e1992-08-04 12:41:02 +000022} lockobject;
23
Guido van Rossum1984f1e1992-08-04 12:41:02 +000024static void
Peter Schneider-Kamp3707efe2000-07-10 10:03:58 +000025lock_dealloc(lockobject *self)
Guido van Rossum1984f1e1992-08-04 12:41:02 +000026{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000027 if (self->in_weakreflist != NULL)
28 PyObject_ClearWeakRefs((PyObject *) self);
29 if (self->lock_lock != NULL) {
30 /* Unlock the lock so it's safe to free it */
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +000031 if (self->locked)
32 PyThread_release_lock(self->lock_lock);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000033 PyThread_free_lock(self->lock_lock);
34 }
35 PyObject_Del(self);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000036}
37
Antoine Pitrou810023d2010-12-15 22:59:16 +000038/* Helper to acquire an interruptible lock with a timeout. If the lock acquire
39 * is interrupted, signal handlers are run, and if they raise an exception,
40 * PY_LOCK_INTR is returned. Otherwise, PY_LOCK_ACQUIRED or PY_LOCK_FAILURE
Raymond Hettinger15f44ab2016-08-30 10:47:49 -070041 * are returned, depending on whether the lock can be acquired within the
Antoine Pitrou810023d2010-12-15 22:59:16 +000042 * timeout.
43 */
44static PyLockStatus
Victor Stinnerf5faad22015-03-28 03:52:05 +010045acquire_timed(PyThread_type_lock lock, _PyTime_t timeout)
Antoine Pitrou810023d2010-12-15 22:59:16 +000046{
47 PyLockStatus r;
Victor Stinnerf5faad22015-03-28 03:52:05 +010048 _PyTime_t endtime = 0;
49 _PyTime_t microseconds;
Antoine Pitrou810023d2010-12-15 22:59:16 +000050
Victor Stinnerf5faad22015-03-28 03:52:05 +010051 if (timeout > 0)
52 endtime = _PyTime_GetMonotonicClock() + timeout;
Antoine Pitrou810023d2010-12-15 22:59:16 +000053
54 do {
Victor Stinner869e1772015-03-30 03:49:14 +020055 microseconds = _PyTime_AsMicroseconds(timeout, _PyTime_ROUND_CEILING);
Victor Stinnerf5faad22015-03-28 03:52:05 +010056
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +000057 /* first a simple non-blocking try without releasing the GIL */
58 r = PyThread_acquire_lock_timed(lock, 0, 0);
59 if (r == PY_LOCK_FAILURE && microseconds != 0) {
60 Py_BEGIN_ALLOW_THREADS
61 r = PyThread_acquire_lock_timed(lock, microseconds, 1);
62 Py_END_ALLOW_THREADS
Victor Stinner357f5152013-11-05 15:10:19 +010063 }
Antoine Pitrou810023d2010-12-15 22:59:16 +000064
65 if (r == PY_LOCK_INTR) {
66 /* Run signal handlers if we were interrupted. Propagate
67 * exceptions from signal handlers, such as KeyboardInterrupt, by
68 * passing up PY_LOCK_INTR. */
69 if (Py_MakePendingCalls() < 0) {
70 return PY_LOCK_INTR;
71 }
72
73 /* If we're using a timeout, recompute the timeout after processing
74 * signals, since those can take time. */
Victor Stinnerf5faad22015-03-28 03:52:05 +010075 if (timeout > 0) {
76 timeout = endtime - _PyTime_GetMonotonicClock();
Antoine Pitrou810023d2010-12-15 22:59:16 +000077
78 /* Check for negative values, since those mean block forever.
79 */
Victor Stinner6aa446c2015-03-30 21:33:51 +020080 if (timeout < 0) {
Antoine Pitrou810023d2010-12-15 22:59:16 +000081 r = PY_LOCK_FAILURE;
82 }
83 }
84 }
85 } while (r == PY_LOCK_INTR); /* Retry if we were interrupted. */
86
87 return r;
88}
89
Victor Stinnerf5faad22015-03-28 03:52:05 +010090static int
91lock_acquire_parse_args(PyObject *args, PyObject *kwds,
92 _PyTime_t *timeout)
Guido van Rossum1984f1e1992-08-04 12:41:02 +000093{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000094 char *kwlist[] = {"blocking", "timeout", NULL};
95 int blocking = 1;
Victor Stinnerf5faad22015-03-28 03:52:05 +010096 PyObject *timeout_obj = NULL;
Victor Stinner13019fd2015-04-03 13:10:54 +020097 const _PyTime_t unset_timeout = _PyTime_FromSeconds(-1);
Guido van Rossum1984f1e1992-08-04 12:41:02 +000098
Victor Stinnerf5faad22015-03-28 03:52:05 +010099 *timeout = unset_timeout ;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000100
Victor Stinnerf5faad22015-03-28 03:52:05 +0100101 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|iO:acquire", kwlist,
102 &blocking, &timeout_obj))
103 return -1;
104
105 if (timeout_obj
Victor Stinner869e1772015-03-30 03:49:14 +0200106 && _PyTime_FromSecondsObject(timeout,
107 timeout_obj, _PyTime_ROUND_CEILING) < 0)
Victor Stinnerf5faad22015-03-28 03:52:05 +0100108 return -1;
109
110 if (!blocking && *timeout != unset_timeout ) {
111 PyErr_SetString(PyExc_ValueError,
112 "can't specify a timeout for a non-blocking call");
113 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 }
Victor Stinnerf5faad22015-03-28 03:52:05 +0100115 if (*timeout < 0 && *timeout != unset_timeout) {
116 PyErr_SetString(PyExc_ValueError,
117 "timeout value must be positive");
118 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000119 }
120 if (!blocking)
Victor Stinnerf5faad22015-03-28 03:52:05 +0100121 *timeout = 0;
122 else if (*timeout != unset_timeout) {
123 _PyTime_t microseconds;
124
Victor Stinner869e1772015-03-30 03:49:14 +0200125 microseconds = _PyTime_AsMicroseconds(*timeout, _PyTime_ROUND_CEILING);
Victor Stinnerf5faad22015-03-28 03:52:05 +0100126 if (microseconds >= PY_TIMEOUT_MAX) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000127 PyErr_SetString(PyExc_OverflowError,
128 "timeout value is too large");
Victor Stinnerf5faad22015-03-28 03:52:05 +0100129 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 }
Victor Stinnerf5faad22015-03-28 03:52:05 +0100132 return 0;
133}
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000134
Victor Stinnerf5faad22015-03-28 03:52:05 +0100135static PyObject *
136lock_PyThread_acquire_lock(lockobject *self, PyObject *args, PyObject *kwds)
137{
138 _PyTime_t timeout;
139 PyLockStatus r;
140
141 if (lock_acquire_parse_args(args, kwds, &timeout) < 0)
142 return NULL;
143
144 r = acquire_timed(self->lock_lock, timeout);
Antoine Pitrou810023d2010-12-15 22:59:16 +0000145 if (r == PY_LOCK_INTR) {
146 return NULL;
147 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +0000149 if (r == PY_LOCK_ACQUIRED)
150 self->locked = 1;
Antoine Pitrou810023d2010-12-15 22:59:16 +0000151 return PyBool_FromLong(r == PY_LOCK_ACQUIRED);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000152}
153
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000154PyDoc_STRVAR(acquire_doc,
Berker Peksag720e6552016-05-02 12:25:35 +0300155"acquire(blocking=True, timeout=-1) -> bool\n\
Guido van Rossumf6694362006-03-10 02:28:35 +0000156(acquire_lock() is an obsolete synonym)\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000157\n\
158Lock the lock. Without argument, this blocks if the lock is already\n\
159locked (even by the same thread), waiting for another thread to release\n\
R David Murray95b71102013-02-04 10:15:58 -0500160the lock, and return True once the lock is acquired.\n\
Guido van Rossum8fdc75b2002-04-07 06:32:21 +0000161With an argument, this will only block if the argument is true,\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000162and the return value reflects whether the lock is acquired.\n\
Antoine Pitrou810023d2010-12-15 22:59:16 +0000163The blocking operation is interruptible.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000164
Barry Warsawd0c10421996-12-17 00:05:22 +0000165static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +0000166lock_PyThread_release_lock(lockobject *self)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000167{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000168 /* Sanity check: the lock must be locked */
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +0000169 if (!self->locked) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 PyErr_SetString(ThreadError, "release unlocked lock");
171 return NULL;
172 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 PyThread_release_lock(self->lock_lock);
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +0000175 self->locked = 0;
Serhiy Storchaka228b12e2017-01-23 09:47:21 +0200176 Py_RETURN_NONE;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000177}
178
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000179PyDoc_STRVAR(release_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000180"release()\n\
Guido van Rossumf6694362006-03-10 02:28:35 +0000181(release_lock() is an obsolete synonym)\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000182\n\
183Release the lock, allowing another thread that is blocked waiting for\n\
184the lock to acquire the lock. The lock must be in the locked state,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000185but it needn't be locked by the same thread that unlocks it.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000186
Barry Warsawd0c10421996-12-17 00:05:22 +0000187static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +0000188lock_locked_lock(lockobject *self)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000189{
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +0000190 return PyBool_FromLong((long)self->locked);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000191}
192
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000193PyDoc_STRVAR(locked_doc,
Guido van Rossum8fdc75b2002-04-07 06:32:21 +0000194"locked() -> bool\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000195(locked_lock() is an obsolete synonym)\n\
196\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000197Return whether the lock is in the locked state.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +0000198
Raymond Hettinger62f4dad2014-05-25 18:22:35 -0700199static PyObject *
200lock_repr(lockobject *self)
201{
202 return PyUnicode_FromFormat("<%s %s object at %p>",
203 self->locked ? "locked" : "unlocked", Py_TYPE(self)->tp_name, self);
204}
205
Barry Warsawd0c10421996-12-17 00:05:22 +0000206static PyMethodDef lock_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000207 {"acquire_lock", (PyCFunction)lock_PyThread_acquire_lock,
208 METH_VARARGS | METH_KEYWORDS, acquire_doc},
209 {"acquire", (PyCFunction)lock_PyThread_acquire_lock,
210 METH_VARARGS | METH_KEYWORDS, acquire_doc},
211 {"release_lock", (PyCFunction)lock_PyThread_release_lock,
212 METH_NOARGS, release_doc},
213 {"release", (PyCFunction)lock_PyThread_release_lock,
214 METH_NOARGS, release_doc},
215 {"locked_lock", (PyCFunction)lock_locked_lock,
216 METH_NOARGS, locked_doc},
217 {"locked", (PyCFunction)lock_locked_lock,
218 METH_NOARGS, locked_doc},
219 {"__enter__", (PyCFunction)lock_PyThread_acquire_lock,
220 METH_VARARGS | METH_KEYWORDS, acquire_doc},
221 {"__exit__", (PyCFunction)lock_PyThread_release_lock,
222 METH_VARARGS, release_doc},
223 {NULL, NULL} /* sentinel */
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000224};
225
Barry Warsawd0c10421996-12-17 00:05:22 +0000226static PyTypeObject Locktype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 PyVarObject_HEAD_INIT(&PyType_Type, 0)
228 "_thread.lock", /*tp_name*/
229 sizeof(lockobject), /*tp_size*/
230 0, /*tp_itemsize*/
231 /* methods */
232 (destructor)lock_dealloc, /*tp_dealloc*/
233 0, /*tp_print*/
234 0, /*tp_getattr*/
235 0, /*tp_setattr*/
236 0, /*tp_reserved*/
Raymond Hettinger62f4dad2014-05-25 18:22:35 -0700237 (reprfunc)lock_repr, /*tp_repr*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000238 0, /*tp_as_number*/
239 0, /*tp_as_sequence*/
240 0, /*tp_as_mapping*/
241 0, /*tp_hash*/
242 0, /*tp_call*/
243 0, /*tp_str*/
244 0, /*tp_getattro*/
245 0, /*tp_setattro*/
246 0, /*tp_as_buffer*/
247 Py_TPFLAGS_DEFAULT, /*tp_flags*/
248 0, /*tp_doc*/
249 0, /*tp_traverse*/
250 0, /*tp_clear*/
251 0, /*tp_richcompare*/
252 offsetof(lockobject, in_weakreflist), /*tp_weaklistoffset*/
253 0, /*tp_iter*/
254 0, /*tp_iternext*/
255 lock_methods, /*tp_methods*/
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000256};
257
Antoine Pitrou434736a2009-11-10 18:46:01 +0000258/* Recursive lock objects */
259
260typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000261 PyObject_HEAD
262 PyThread_type_lock rlock_lock;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200263 unsigned long rlock_owner;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000264 unsigned long rlock_count;
265 PyObject *in_weakreflist;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000266} rlockobject;
267
268static void
269rlock_dealloc(rlockobject *self)
270{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000271 if (self->in_weakreflist != NULL)
272 PyObject_ClearWeakRefs((PyObject *) self);
Victor Stinner357f5152013-11-05 15:10:19 +0100273 /* self->rlock_lock can be NULL if PyThread_allocate_lock() failed
274 in rlock_new() */
275 if (self->rlock_lock != NULL) {
276 /* Unlock the lock so it's safe to free it */
277 if (self->rlock_count > 0)
278 PyThread_release_lock(self->rlock_lock);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000279
Victor Stinner357f5152013-11-05 15:10:19 +0100280 PyThread_free_lock(self->rlock_lock);
281 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000282 Py_TYPE(self)->tp_free(self);
Antoine Pitrou434736a2009-11-10 18:46:01 +0000283}
284
285static PyObject *
286rlock_acquire(rlockobject *self, PyObject *args, PyObject *kwds)
287{
Victor Stinnerf5faad22015-03-28 03:52:05 +0100288 _PyTime_t timeout;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200289 unsigned long tid;
Antoine Pitrou810023d2010-12-15 22:59:16 +0000290 PyLockStatus r = PY_LOCK_ACQUIRED;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000291
Victor Stinnerf5faad22015-03-28 03:52:05 +0100292 if (lock_acquire_parse_args(args, kwds, &timeout) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000293 return NULL;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000294
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 tid = PyThread_get_thread_ident();
296 if (self->rlock_count > 0 && tid == self->rlock_owner) {
297 unsigned long count = self->rlock_count + 1;
298 if (count <= self->rlock_count) {
299 PyErr_SetString(PyExc_OverflowError,
300 "Internal lock count overflowed");
301 return NULL;
302 }
303 self->rlock_count = count;
304 Py_RETURN_TRUE;
305 }
Victor Stinnerf5faad22015-03-28 03:52:05 +0100306 r = acquire_timed(self->rlock_lock, timeout);
Antoine Pitrou810023d2010-12-15 22:59:16 +0000307 if (r == PY_LOCK_ACQUIRED) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000308 assert(self->rlock_count == 0);
309 self->rlock_owner = tid;
310 self->rlock_count = 1;
311 }
Antoine Pitrou810023d2010-12-15 22:59:16 +0000312 else if (r == PY_LOCK_INTR) {
313 return NULL;
314 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315
Antoine Pitrou810023d2010-12-15 22:59:16 +0000316 return PyBool_FromLong(r == PY_LOCK_ACQUIRED);
Antoine Pitrou434736a2009-11-10 18:46:01 +0000317}
318
319PyDoc_STRVAR(rlock_acquire_doc,
320"acquire(blocking=True) -> bool\n\
321\n\
322Lock the lock. `blocking` indicates whether we should wait\n\
323for the lock to be available or not. If `blocking` is False\n\
324and another thread holds the lock, the method will return False\n\
325immediately. If `blocking` is True and another thread holds\n\
326the lock, the method will wait for the lock to be released,\n\
327take it and then return True.\n\
Antoine Pitrou810023d2010-12-15 22:59:16 +0000328(note: the blocking operation is interruptible.)\n\
Antoine Pitrou434736a2009-11-10 18:46:01 +0000329\n\
330In all other cases, the method will return True immediately.\n\
331Precisely, if the current thread already holds the lock, its\n\
332internal counter is simply incremented. If nobody holds the lock,\n\
333the lock is taken and its internal counter initialized to 1.");
334
335static PyObject *
336rlock_release(rlockobject *self)
337{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200338 unsigned long tid = PyThread_get_thread_ident();
Antoine Pitrou434736a2009-11-10 18:46:01 +0000339
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000340 if (self->rlock_count == 0 || self->rlock_owner != tid) {
341 PyErr_SetString(PyExc_RuntimeError,
342 "cannot release un-acquired lock");
343 return NULL;
344 }
345 if (--self->rlock_count == 0) {
346 self->rlock_owner = 0;
347 PyThread_release_lock(self->rlock_lock);
348 }
349 Py_RETURN_NONE;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000350}
351
352PyDoc_STRVAR(rlock_release_doc,
353"release()\n\
354\n\
355Release the lock, allowing another thread that is blocked waiting for\n\
356the lock to acquire the lock. The lock must be in the locked state,\n\
357and must be locked by the same thread that unlocks it; otherwise a\n\
358`RuntimeError` is raised.\n\
359\n\
360Do note that if the lock was acquire()d several times in a row by the\n\
361current thread, release() needs to be called as many times for the lock\n\
362to be available for other threads.");
363
364static PyObject *
Victor Stinnere8794522014-01-02 12:47:24 +0100365rlock_acquire_restore(rlockobject *self, PyObject *args)
Antoine Pitrou434736a2009-11-10 18:46:01 +0000366{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200367 unsigned long owner;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000368 unsigned long count;
369 int r = 1;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000370
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200371 if (!PyArg_ParseTuple(args, "(kk):_acquire_restore", &count, &owner))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000372 return NULL;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000373
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 if (!PyThread_acquire_lock(self->rlock_lock, 0)) {
375 Py_BEGIN_ALLOW_THREADS
376 r = PyThread_acquire_lock(self->rlock_lock, 1);
377 Py_END_ALLOW_THREADS
378 }
379 if (!r) {
380 PyErr_SetString(ThreadError, "couldn't acquire lock");
381 return NULL;
382 }
383 assert(self->rlock_count == 0);
384 self->rlock_owner = owner;
385 self->rlock_count = count;
386 Py_RETURN_NONE;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000387}
388
389PyDoc_STRVAR(rlock_acquire_restore_doc,
390"_acquire_restore(state) -> None\n\
391\n\
392For internal use by `threading.Condition`.");
393
394static PyObject *
395rlock_release_save(rlockobject *self)
396{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200397 unsigned long owner;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000398 unsigned long count;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000399
Victor Stinnerc2824d42011-04-24 23:41:33 +0200400 if (self->rlock_count == 0) {
401 PyErr_SetString(PyExc_RuntimeError,
402 "cannot release un-acquired lock");
403 return NULL;
404 }
405
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000406 owner = self->rlock_owner;
407 count = self->rlock_count;
408 self->rlock_count = 0;
409 self->rlock_owner = 0;
410 PyThread_release_lock(self->rlock_lock);
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200411 return Py_BuildValue("kk", count, owner);
Antoine Pitrou434736a2009-11-10 18:46:01 +0000412}
413
414PyDoc_STRVAR(rlock_release_save_doc,
415"_release_save() -> tuple\n\
416\n\
417For internal use by `threading.Condition`.");
418
419
420static PyObject *
421rlock_is_owned(rlockobject *self)
422{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200423 unsigned long tid = PyThread_get_thread_ident();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424
425 if (self->rlock_count > 0 && self->rlock_owner == tid) {
426 Py_RETURN_TRUE;
427 }
428 Py_RETURN_FALSE;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000429}
430
431PyDoc_STRVAR(rlock_is_owned_doc,
432"_is_owned() -> bool\n\
433\n\
434For internal use by `threading.Condition`.");
435
436static PyObject *
437rlock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
438{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000439 rlockobject *self;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000440
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 self = (rlockobject *) type->tp_alloc(type, 0);
442 if (self != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000443 self->in_weakreflist = NULL;
444 self->rlock_owner = 0;
445 self->rlock_count = 0;
Victor Stinner357f5152013-11-05 15:10:19 +0100446
447 self->rlock_lock = PyThread_allocate_lock();
448 if (self->rlock_lock == NULL) {
449 Py_DECREF(self);
450 PyErr_SetString(ThreadError, "can't allocate lock");
451 return NULL;
452 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000453 }
Antoine Pitrou434736a2009-11-10 18:46:01 +0000454
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000455 return (PyObject *) self;
Antoine Pitrou434736a2009-11-10 18:46:01 +0000456}
457
458static PyObject *
459rlock_repr(rlockobject *self)
460{
Raymond Hettinger62f4dad2014-05-25 18:22:35 -0700461 return PyUnicode_FromFormat("<%s %s object owner=%ld count=%lu at %p>",
462 self->rlock_count ? "locked" : "unlocked",
463 Py_TYPE(self)->tp_name, self->rlock_owner,
464 self->rlock_count, self);
Antoine Pitrou434736a2009-11-10 18:46:01 +0000465}
466
467
468static PyMethodDef rlock_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 {"acquire", (PyCFunction)rlock_acquire,
470 METH_VARARGS | METH_KEYWORDS, rlock_acquire_doc},
471 {"release", (PyCFunction)rlock_release,
472 METH_NOARGS, rlock_release_doc},
473 {"_is_owned", (PyCFunction)rlock_is_owned,
474 METH_NOARGS, rlock_is_owned_doc},
475 {"_acquire_restore", (PyCFunction)rlock_acquire_restore,
Victor Stinnere8794522014-01-02 12:47:24 +0100476 METH_VARARGS, rlock_acquire_restore_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 {"_release_save", (PyCFunction)rlock_release_save,
478 METH_NOARGS, rlock_release_save_doc},
479 {"__enter__", (PyCFunction)rlock_acquire,
480 METH_VARARGS | METH_KEYWORDS, rlock_acquire_doc},
481 {"__exit__", (PyCFunction)rlock_release,
482 METH_VARARGS, rlock_release_doc},
483 {NULL, NULL} /* sentinel */
Antoine Pitrou434736a2009-11-10 18:46:01 +0000484};
485
486
487static PyTypeObject RLocktype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000488 PyVarObject_HEAD_INIT(&PyType_Type, 0)
489 "_thread.RLock", /*tp_name*/
490 sizeof(rlockobject), /*tp_size*/
491 0, /*tp_itemsize*/
492 /* methods */
493 (destructor)rlock_dealloc, /*tp_dealloc*/
494 0, /*tp_print*/
495 0, /*tp_getattr*/
496 0, /*tp_setattr*/
497 0, /*tp_reserved*/
498 (reprfunc)rlock_repr, /*tp_repr*/
499 0, /*tp_as_number*/
500 0, /*tp_as_sequence*/
501 0, /*tp_as_mapping*/
502 0, /*tp_hash*/
503 0, /*tp_call*/
504 0, /*tp_str*/
505 0, /*tp_getattro*/
506 0, /*tp_setattro*/
507 0, /*tp_as_buffer*/
508 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
509 0, /*tp_doc*/
510 0, /*tp_traverse*/
511 0, /*tp_clear*/
512 0, /*tp_richcompare*/
513 offsetof(rlockobject, in_weakreflist), /*tp_weaklistoffset*/
514 0, /*tp_iter*/
515 0, /*tp_iternext*/
516 rlock_methods, /*tp_methods*/
517 0, /* tp_members */
518 0, /* tp_getset */
519 0, /* tp_base */
520 0, /* tp_dict */
521 0, /* tp_descr_get */
522 0, /* tp_descr_set */
523 0, /* tp_dictoffset */
524 0, /* tp_init */
525 PyType_GenericAlloc, /* tp_alloc */
526 rlock_new /* tp_new */
Antoine Pitrou434736a2009-11-10 18:46:01 +0000527};
528
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000529static lockobject *
530newlockobject(void)
531{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000532 lockobject *self;
533 self = PyObject_New(lockobject, &Locktype);
534 if (self == NULL)
535 return NULL;
536 self->lock_lock = PyThread_allocate_lock();
Kristjan Valur Jonsson69cf9132012-06-22 18:40:02 +0000537 self->locked = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 self->in_weakreflist = NULL;
539 if (self->lock_lock == NULL) {
540 Py_DECREF(self);
541 PyErr_SetString(ThreadError, "can't allocate lock");
542 return NULL;
543 }
544 return self;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000545}
546
Jim Fultond15dc062004-07-14 19:11:50 +0000547/* Thread-local objects */
548
549#include "structmember.h"
550
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000551/* Quick overview:
552
553 We need to be able to reclaim reference cycles as soon as possible
554 (both when a thread is being terminated, or a thread-local object
555 becomes unreachable from user data). Constraints:
556 - it must not be possible for thread-state dicts to be involved in
557 reference cycles (otherwise the cyclic GC will refuse to consider
558 objects referenced from a reachable thread-state dict, even though
559 local_dealloc would clear them)
560 - the death of a thread-state dict must still imply destruction of the
561 corresponding local dicts in all thread-local objects.
562
563 Our implementation uses small "localdummy" objects in order to break
564 the reference chain. These trivial objects are hashable (using the
565 default scheme of identity hashing) and weakrefable.
566 Each thread-state holds a separate localdummy for each local object
567 (as a /strong reference/),
568 and each thread-local object holds a dict mapping /weak references/
569 of localdummies to local dicts.
570
571 Therefore:
572 - only the thread-state dict holds a strong reference to the dummies
573 - only the thread-local object holds a strong reference to the local dicts
574 - only outside objects (application- or library-level) hold strong
575 references to the thread-local objects
576 - as soon as a thread-state dict is destroyed, the weakref callbacks of all
577 dummies attached to that thread are called, and destroy the corresponding
578 local dicts from thread-local objects
579 - as soon as a thread-local object is destroyed, its local dicts are
580 destroyed and its dummies are manually removed from all thread states
581 - the GC can do its work correctly when a thread-local object is dangling,
582 without any interference from the thread-state dicts
583
584 As an additional optimization, each localdummy holds a borrowed reference
585 to the corresponding localdict. This borrowed reference is only used
586 by the thread-local object which has created the localdummy, which should
587 guarantee that the localdict still exists when accessed.
588*/
589
590typedef struct {
591 PyObject_HEAD
592 PyObject *localdict; /* Borrowed reference! */
593 PyObject *weakreflist; /* List of weak references to self */
594} localdummyobject;
595
596static void
597localdummy_dealloc(localdummyobject *self)
598{
599 if (self->weakreflist != NULL)
600 PyObject_ClearWeakRefs((PyObject *) self);
601 Py_TYPE(self)->tp_free((PyObject*)self);
602}
603
604static PyTypeObject localdummytype = {
605 PyVarObject_HEAD_INIT(NULL, 0)
606 /* tp_name */ "_thread._localdummy",
607 /* tp_basicsize */ sizeof(localdummyobject),
608 /* tp_itemsize */ 0,
609 /* tp_dealloc */ (destructor)localdummy_dealloc,
610 /* tp_print */ 0,
611 /* tp_getattr */ 0,
612 /* tp_setattr */ 0,
613 /* tp_reserved */ 0,
614 /* tp_repr */ 0,
615 /* tp_as_number */ 0,
616 /* tp_as_sequence */ 0,
617 /* tp_as_mapping */ 0,
618 /* tp_hash */ 0,
619 /* tp_call */ 0,
620 /* tp_str */ 0,
621 /* tp_getattro */ 0,
622 /* tp_setattro */ 0,
623 /* tp_as_buffer */ 0,
624 /* tp_flags */ Py_TPFLAGS_DEFAULT,
625 /* tp_doc */ "Thread-local dummy",
626 /* tp_traverse */ 0,
627 /* tp_clear */ 0,
628 /* tp_richcompare */ 0,
629 /* tp_weaklistoffset */ offsetof(localdummyobject, weakreflist)
630};
631
632
Jim Fultond15dc062004-07-14 19:11:50 +0000633typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 PyObject_HEAD
635 PyObject *key;
636 PyObject *args;
637 PyObject *kw;
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000638 PyObject *weakreflist; /* List of weak references to self */
639 /* A {localdummy weakref -> localdict} dict */
640 PyObject *dummies;
641 /* The callback for weakrefs to localdummies */
642 PyObject *wr_callback;
Jim Fultond15dc062004-07-14 19:11:50 +0000643} localobject;
644
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000645/* Forward declaration */
646static PyObject *_ldict(localobject *self);
647static PyObject *_localdummy_destroyed(PyObject *meth_self, PyObject *dummyweakref);
648
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000649/* Create and register the dummy for the current thread.
650 Returns a borrowed reference of the corresponding local dict */
651static PyObject *
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000652_local_create_dummy(localobject *self)
653{
654 PyObject *tdict, *ldict = NULL, *wr = NULL;
655 localdummyobject *dummy = NULL;
656 int r;
657
658 tdict = PyThreadState_GetDict();
659 if (tdict == NULL) {
660 PyErr_SetString(PyExc_SystemError,
661 "Couldn't get thread-state dictionary");
662 goto err;
663 }
664
665 ldict = PyDict_New();
666 if (ldict == NULL)
667 goto err;
668 dummy = (localdummyobject *) localdummytype.tp_alloc(&localdummytype, 0);
669 if (dummy == NULL)
670 goto err;
671 dummy->localdict = ldict;
672 wr = PyWeakref_NewRef((PyObject *) dummy, self->wr_callback);
673 if (wr == NULL)
674 goto err;
675
676 /* As a side-effect, this will cache the weakref's hash before the
677 dummy gets deleted */
678 r = PyDict_SetItem(self->dummies, wr, ldict);
679 if (r < 0)
680 goto err;
681 Py_CLEAR(wr);
682 r = PyDict_SetItem(tdict, self->key, (PyObject *) dummy);
683 if (r < 0)
684 goto err;
685 Py_CLEAR(dummy);
686
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000687 Py_DECREF(ldict);
688 return ldict;
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000689
690err:
691 Py_XDECREF(ldict);
692 Py_XDECREF(wr);
693 Py_XDECREF(dummy);
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000694 return NULL;
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000695}
696
Jim Fultond15dc062004-07-14 19:11:50 +0000697static PyObject *
698local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
699{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000700 localobject *self;
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000701 PyObject *wr;
702 static PyMethodDef wr_callback_def = {
703 "_localdummy_destroyed", (PyCFunction) _localdummy_destroyed, METH_O
704 };
Jim Fultond15dc062004-07-14 19:11:50 +0000705
Serhiy Storchakafa494fd2015-05-30 17:45:22 +0300706 if (type->tp_init == PyBaseObject_Type.tp_init) {
707 int rc = 0;
708 if (args != NULL)
709 rc = PyObject_IsTrue(args);
710 if (rc == 0 && kw != NULL)
711 rc = PyObject_IsTrue(kw);
712 if (rc != 0) {
713 if (rc > 0)
714 PyErr_SetString(PyExc_TypeError,
715 "Initialization arguments are not supported");
716 return NULL;
717 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 }
Jim Fultond15dc062004-07-14 19:11:50 +0000719
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000720 self = (localobject *)type->tp_alloc(type, 0);
721 if (self == NULL)
722 return NULL;
Jim Fultond15dc062004-07-14 19:11:50 +0000723
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000724 Py_XINCREF(args);
725 self->args = args;
726 Py_XINCREF(kw);
727 self->kw = kw;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000728 self->key = PyUnicode_FromFormat("thread.local.%p", self);
729 if (self->key == NULL)
730 goto err;
Jim Fultond15dc062004-07-14 19:11:50 +0000731
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000732 self->dummies = PyDict_New();
733 if (self->dummies == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 goto err;
Jim Fultond15dc062004-07-14 19:11:50 +0000735
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000736 /* We use a weak reference to self in the callback closure
737 in order to avoid spurious reference cycles */
738 wr = PyWeakref_NewRef((PyObject *) self, NULL);
739 if (wr == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000740 goto err;
Andrew Svetlov3ba3a3e2012-12-25 13:32:35 +0200741 self->wr_callback = PyCFunction_NewEx(&wr_callback_def, wr, NULL);
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000742 Py_DECREF(wr);
743 if (self->wr_callback == NULL)
744 goto err;
Jim Fultond15dc062004-07-14 19:11:50 +0000745
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000746 if (_local_create_dummy(self) == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000747 goto err;
Jim Fultond15dc062004-07-14 19:11:50 +0000748
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000749 return (PyObject *)self;
Michael W. Hudson2368b3c2005-06-15 12:48:40 +0000750
751 err:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000752 Py_DECREF(self);
753 return NULL;
Jim Fultond15dc062004-07-14 19:11:50 +0000754}
755
756static int
757local_traverse(localobject *self, visitproc visit, void *arg)
758{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000759 Py_VISIT(self->args);
760 Py_VISIT(self->kw);
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000761 Py_VISIT(self->dummies);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000762 return 0;
Jim Fultond15dc062004-07-14 19:11:50 +0000763}
764
765static int
766local_clear(localobject *self)
767{
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000768 PyThreadState *tstate;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000769 Py_CLEAR(self->args);
770 Py_CLEAR(self->kw);
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000771 Py_CLEAR(self->dummies);
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000772 Py_CLEAR(self->wr_callback);
773 /* Remove all strong references to dummies from the thread states */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000774 if (self->key
775 && (tstate = PyThreadState_Get())
776 && tstate->interp) {
777 for(tstate = PyInterpreterState_ThreadHead(tstate->interp);
778 tstate;
779 tstate = PyThreadState_Next(tstate))
780 if (tstate->dict &&
781 PyDict_GetItem(tstate->dict, self->key))
782 PyDict_DelItem(tstate->dict, self->key);
783 }
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000784 return 0;
785}
Jim Fultond15dc062004-07-14 19:11:50 +0000786
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000787static void
788local_dealloc(localobject *self)
789{
790 /* Weakrefs must be invalidated right now, otherwise they can be used
791 from code called below, which is very dangerous since Py_REFCNT(self) == 0 */
792 if (self->weakreflist != NULL)
793 PyObject_ClearWeakRefs((PyObject *) self);
794
795 PyObject_GC_UnTrack(self);
796
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000797 local_clear(self);
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000798 Py_XDECREF(self->key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000799 Py_TYPE(self)->tp_free((PyObject*)self);
Jim Fultond15dc062004-07-14 19:11:50 +0000800}
801
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000802/* Returns a borrowed reference to the local dict, creating it if necessary */
Jim Fultond15dc062004-07-14 19:11:50 +0000803static PyObject *
804_ldict(localobject *self)
805{
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000806 PyObject *tdict, *ldict, *dummy;
Jim Fultond15dc062004-07-14 19:11:50 +0000807
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000808 tdict = PyThreadState_GetDict();
809 if (tdict == NULL) {
810 PyErr_SetString(PyExc_SystemError,
811 "Couldn't get thread-state dictionary");
812 return NULL;
813 }
Jim Fultond15dc062004-07-14 19:11:50 +0000814
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000815 dummy = PyDict_GetItem(tdict, self->key);
816 if (dummy == NULL) {
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000817 ldict = _local_create_dummy(self);
818 if (ldict == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000819 return NULL;
Jim Fultond15dc062004-07-14 19:11:50 +0000820
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000821 if (Py_TYPE(self)->tp_init != PyBaseObject_Type.tp_init &&
822 Py_TYPE(self)->tp_init((PyObject*)self,
823 self->args, self->kw) < 0) {
824 /* we need to get rid of ldict from thread so
825 we create a new one the next time we do an attr
Ezio Melotti42da6632011-03-15 05:18:48 +0200826 access */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000827 PyDict_DelItem(tdict, self->key);
828 return NULL;
829 }
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000830 }
831 else {
832 assert(Py_TYPE(dummy) == &localdummytype);
833 ldict = ((localdummyobject *) dummy)->localdict;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000834 }
Jim Fultond15dc062004-07-14 19:11:50 +0000835
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000836 return ldict;
Jim Fultond15dc062004-07-14 19:11:50 +0000837}
838
Jim Fultond15dc062004-07-14 19:11:50 +0000839static int
840local_setattro(localobject *self, PyObject *name, PyObject *v)
841{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000842 PyObject *ldict;
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000843 int r;
Jim Fultond15dc062004-07-14 19:11:50 +0000844
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000845 ldict = _ldict(self);
846 if (ldict == NULL)
847 return -1;
848
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000849 r = PyObject_RichCompareBool(name, str_dict, Py_EQ);
850 if (r == 1) {
851 PyErr_Format(PyExc_AttributeError,
852 "'%.50s' object attribute '%U' is read-only",
853 Py_TYPE(self)->tp_name, name);
854 return -1;
855 }
856 if (r == -1)
857 return -1;
Jim Fultond15dc062004-07-14 19:11:50 +0000858
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000859 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict);
Jim Fultond15dc062004-07-14 19:11:50 +0000860}
861
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000862static PyObject *local_getattro(localobject *, PyObject *);
863
Jim Fultond15dc062004-07-14 19:11:50 +0000864static PyTypeObject localtype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000865 PyVarObject_HEAD_INIT(NULL, 0)
866 /* tp_name */ "_thread._local",
867 /* tp_basicsize */ sizeof(localobject),
868 /* tp_itemsize */ 0,
869 /* tp_dealloc */ (destructor)local_dealloc,
870 /* tp_print */ 0,
871 /* tp_getattr */ 0,
872 /* tp_setattr */ 0,
873 /* tp_reserved */ 0,
874 /* tp_repr */ 0,
875 /* tp_as_number */ 0,
876 /* tp_as_sequence */ 0,
877 /* tp_as_mapping */ 0,
878 /* tp_hash */ 0,
879 /* tp_call */ 0,
880 /* tp_str */ 0,
881 /* tp_getattro */ (getattrofunc)local_getattro,
882 /* tp_setattro */ (setattrofunc)local_setattro,
883 /* tp_as_buffer */ 0,
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000884 /* tp_flags */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
885 | Py_TPFLAGS_HAVE_GC,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000886 /* tp_doc */ "Thread-local data",
887 /* tp_traverse */ (traverseproc)local_traverse,
888 /* tp_clear */ (inquiry)local_clear,
889 /* tp_richcompare */ 0,
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000890 /* tp_weaklistoffset */ offsetof(localobject, weakreflist),
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000891 /* tp_iter */ 0,
892 /* tp_iternext */ 0,
893 /* tp_methods */ 0,
894 /* tp_members */ 0,
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000895 /* tp_getset */ 0,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000896 /* tp_base */ 0,
897 /* tp_dict */ 0, /* internal use */
898 /* tp_descr_get */ 0,
899 /* tp_descr_set */ 0,
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000900 /* tp_dictoffset */ 0,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000901 /* tp_init */ 0,
902 /* tp_alloc */ 0,
903 /* tp_new */ local_new,
904 /* tp_free */ 0, /* Low-level free-mem routine */
905 /* tp_is_gc */ 0, /* For PyObject_IS_GC */
Jim Fultond15dc062004-07-14 19:11:50 +0000906};
907
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000908static PyObject *
909local_getattro(localobject *self, PyObject *name)
910{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000911 PyObject *ldict, *value;
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000912 int r;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000913
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000914 ldict = _ldict(self);
915 if (ldict == NULL)
916 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000917
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000918 r = PyObject_RichCompareBool(name, str_dict, Py_EQ);
919 if (r == 1) {
920 Py_INCREF(ldict);
921 return ldict;
922 }
923 if (r == -1)
924 return NULL;
925
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000926 if (Py_TYPE(self) != &localtype)
927 /* use generic lookup for subtypes */
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000928 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000929
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000930 /* Optimization: just look in dict ourselves */
931 value = PyDict_GetItem(ldict, name);
932 if (value == NULL)
933 /* Fall back on generic to get __class__ and __dict__ */
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +0000934 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000935
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000936 Py_INCREF(value);
937 return value;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000938}
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000939
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000940/* Called when a dummy is destroyed. */
941static PyObject *
942_localdummy_destroyed(PyObject *localweakref, PyObject *dummyweakref)
943{
944 PyObject *obj;
945 localobject *self;
946 assert(PyWeakref_CheckRef(localweakref));
947 obj = PyWeakref_GET_OBJECT(localweakref);
948 if (obj == Py_None)
949 Py_RETURN_NONE;
950 Py_INCREF(obj);
951 assert(PyObject_TypeCheck(obj, &localtype));
952 /* If the thread-local object is still alive and not being cleared,
953 remove the corresponding local dict */
954 self = (localobject *) obj;
955 if (self->dummies != NULL) {
956 PyObject *ldict;
957 ldict = PyDict_GetItem(self->dummies, dummyweakref);
958 if (ldict != NULL) {
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +0000959 PyDict_DelItem(self->dummies, dummyweakref);
960 }
961 if (PyErr_Occurred())
962 PyErr_WriteUnraisable(obj);
963 }
964 Py_DECREF(obj);
965 Py_RETURN_NONE;
966}
967
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000968/* Module functions */
969
Guido van Rossuma027efa1997-05-05 20:56:21 +0000970struct bootstate {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000971 PyInterpreterState *interp;
972 PyObject *func;
973 PyObject *args;
974 PyObject *keyw;
975 PyThreadState *tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000976};
977
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000978static void
Peter Schneider-Kamp3707efe2000-07-10 10:03:58 +0000979t_bootstrap(void *boot_raw)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000980{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000981 struct bootstate *boot = (struct bootstate *) boot_raw;
982 PyThreadState *tstate;
983 PyObject *res;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000984
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000985 tstate = boot->tstate;
986 tstate->thread_id = PyThread_get_thread_ident();
987 _PyThreadState_Init(tstate);
988 PyEval_AcquireThread(tstate);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600989 tstate->interp->num_threads++;
INADA Naoki72dccde2017-02-16 09:26:01 +0900990 res = PyObject_Call(boot->func, boot->args, boot->keyw);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000991 if (res == NULL) {
992 if (PyErr_ExceptionMatches(PyExc_SystemExit))
993 PyErr_Clear();
994 else {
995 PyObject *file;
Benjamin Petersone9000962012-04-02 11:15:17 -0400996 PyObject *exc, *value, *tb;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000997 PySys_WriteStderr(
998 "Unhandled exception in thread started by ");
Benjamin Petersone9000962012-04-02 11:15:17 -0400999 PyErr_Fetch(&exc, &value, &tb);
Victor Stinnerbd303c12013-11-07 23:07:29 +01001000 file = _PySys_GetObjectId(&PyId_stderr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001001 if (file != NULL && file != Py_None)
1002 PyFile_WriteObject(boot->func, file, 0);
1003 else
1004 PyObject_Print(boot->func, stderr, 0);
1005 PySys_WriteStderr("\n");
Benjamin Petersone9000962012-04-02 11:15:17 -04001006 PyErr_Restore(exc, value, tb);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001007 PyErr_PrintEx(0);
1008 }
1009 }
1010 else
1011 Py_DECREF(res);
1012 Py_DECREF(boot->func);
1013 Py_DECREF(boot->args);
1014 Py_XDECREF(boot->keyw);
1015 PyMem_DEL(boot_raw);
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001016 tstate->interp->num_threads--;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001017 PyThreadState_Clear(tstate);
1018 PyThreadState_DeleteCurrent();
1019 PyThread_exit_thread();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001020}
1021
Barry Warsawd0c10421996-12-17 00:05:22 +00001022static PyObject *
Peter Schneider-Kamp3707efe2000-07-10 10:03:58 +00001023thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001024{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001025 PyObject *func, *args, *keyw = NULL;
1026 struct bootstate *boot;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001027 unsigned long ident;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001028
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001029 if (!PyArg_UnpackTuple(fargs, "start_new_thread", 2, 3,
1030 &func, &args, &keyw))
1031 return NULL;
1032 if (!PyCallable_Check(func)) {
1033 PyErr_SetString(PyExc_TypeError,
1034 "first arg must be callable");
1035 return NULL;
1036 }
1037 if (!PyTuple_Check(args)) {
1038 PyErr_SetString(PyExc_TypeError,
1039 "2nd arg must be a tuple");
1040 return NULL;
1041 }
1042 if (keyw != NULL && !PyDict_Check(keyw)) {
1043 PyErr_SetString(PyExc_TypeError,
1044 "optional 3rd arg must be a dictionary");
1045 return NULL;
1046 }
1047 boot = PyMem_NEW(struct bootstate, 1);
1048 if (boot == NULL)
1049 return PyErr_NoMemory();
1050 boot->interp = PyThreadState_GET()->interp;
1051 boot->func = func;
1052 boot->args = args;
1053 boot->keyw = keyw;
1054 boot->tstate = _PyThreadState_Prealloc(boot->interp);
1055 if (boot->tstate == NULL) {
1056 PyMem_DEL(boot);
1057 return PyErr_NoMemory();
1058 }
1059 Py_INCREF(func);
1060 Py_INCREF(args);
1061 Py_XINCREF(keyw);
1062 PyEval_InitThreads(); /* Start the interpreter's thread-awareness */
1063 ident = PyThread_start_new_thread(t_bootstrap, (void*) boot);
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001064 if (ident == PYTHREAD_INVALID_THREAD_ID) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001065 PyErr_SetString(ThreadError, "can't start new thread");
1066 Py_DECREF(func);
1067 Py_DECREF(args);
1068 Py_XDECREF(keyw);
1069 PyThreadState_Clear(boot->tstate);
1070 PyMem_DEL(boot);
1071 return NULL;
1072 }
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001073 return PyLong_FromUnsignedLong(ident);
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001074}
1075
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001076PyDoc_STRVAR(start_new_doc,
Andrew M. Kuchling38300c62001-10-05 12:24:15 +00001077"start_new_thread(function, args[, kwargs])\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001078(start_new() is an obsolete synonym)\n\
1079\n\
Guido van Rossum3c288632001-10-16 21:13:49 +00001080Start a new thread and return its identifier. The thread will call the\n\
1081function with positional arguments from the tuple args and keyword arguments\n\
1082taken from the optional dictionary kwargs. The thread exits when the\n\
1083function returns; the return value is ignored. The thread will also exit\n\
1084when the function raises an unhandled exception; a stack trace will be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001085printed unless the exception is SystemExit.\n");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001086
Barry Warsawd0c10421996-12-17 00:05:22 +00001087static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +00001088thread_PyThread_exit_thread(PyObject *self)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001089{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001090 PyErr_SetNone(PyExc_SystemExit);
1091 return NULL;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001092}
1093
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001094PyDoc_STRVAR(exit_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001095"exit()\n\
Éric Araujo9bcf8bf2011-05-31 14:08:26 +02001096(exit_thread() is an obsolete synonym)\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001097\n\
1098This is synonymous to ``raise SystemExit''. It will cause the current\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001099thread to exit silently unless the exception is caught.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001100
Kurt B. Kaisera11e8462003-06-13 21:59:45 +00001101static PyObject *
Kurt B. Kaisera1ad5f62003-06-16 18:51:28 +00001102thread_PyThread_interrupt_main(PyObject * self)
Kurt B. Kaisera11e8462003-06-13 21:59:45 +00001103{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001104 PyErr_SetInterrupt();
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001105 Py_RETURN_NONE;
Kurt B. Kaisera11e8462003-06-13 21:59:45 +00001106}
1107
1108PyDoc_STRVAR(interrupt_doc,
1109"interrupt_main()\n\
1110\n\
1111Raise a KeyboardInterrupt in the main thread.\n\
Kurt B. Kaisera1ad5f62003-06-16 18:51:28 +00001112A subthread can use this function to interrupt the main thread."
Kurt B. Kaisera11e8462003-06-13 21:59:45 +00001113);
1114
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001115static lockobject *newlockobject(void);
1116
Barry Warsawd0c10421996-12-17 00:05:22 +00001117static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +00001118thread_PyThread_allocate_lock(PyObject *self)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001119{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001120 return (PyObject *) newlockobject();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001121}
1122
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001123PyDoc_STRVAR(allocate_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001124"allocate_lock() -> lock object\n\
1125(allocate() is an obsolete synonym)\n\
1126\n\
Berker Peksag720e6552016-05-02 12:25:35 +03001127Create a new lock object. See help(type(threading.Lock())) for\n\
1128information about locks.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001129
Barry Warsawd0c10421996-12-17 00:05:22 +00001130static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +00001131thread_get_ident(PyObject *self)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001132{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001133 unsigned long ident = PyThread_get_thread_ident();
1134 if (ident == PYTHREAD_INVALID_THREAD_ID) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001135 PyErr_SetString(ThreadError, "no current thread ident");
1136 return NULL;
1137 }
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001138 return PyLong_FromUnsignedLong(ident);
Guido van Rossumb6775db1994-08-01 11:34:53 +00001139}
1140
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001141PyDoc_STRVAR(get_ident_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001142"get_ident() -> integer\n\
1143\n\
1144Return a non-zero integer that uniquely identifies the current thread\n\
1145amongst other threads that exist simultaneously.\n\
1146This may be used to identify per-thread resources.\n\
1147Even though on some platforms threads identities may appear to be\n\
1148allocated consecutive numbers starting at 1, this behavior should not\n\
1149be relied upon, and the number should be seen purely as a magic cookie.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001150A thread's identity may be reused for another thread after it exits.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001151
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001152static PyObject *
Antoine Pitrou65c9c642009-10-30 17:25:12 +00001153thread__count(PyObject *self)
1154{
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001155 PyThreadState *tstate = PyThreadState_Get();
1156 return PyLong_FromLong(tstate->interp->num_threads);
Antoine Pitrou65c9c642009-10-30 17:25:12 +00001157}
1158
1159PyDoc_STRVAR(_count_doc,
1160"_count() -> integer\n\
1161\n\
Antoine Pitrou9257f5e2009-10-30 22:23:02 +00001162\
1163Return the number of currently running Python threads, excluding \n\
1164the main thread. The returned number comprises all threads created\n\
1165through `start_new_thread()` as well as `threading.Thread`, and not\n\
1166yet finished.\n\
1167\n\
1168This function is meant for internal and specialized purposes only.\n\
1169In most applications `threading.enumerate()` should be used instead.");
Antoine Pitrou65c9c642009-10-30 17:25:12 +00001170
Antoine Pitrou7b476992013-09-07 23:38:37 +02001171static void
1172release_sentinel(void *wr)
1173{
1174 /* Tricky: this function is called when the current thread state
1175 is being deleted. Therefore, only simple C code can safely
1176 execute here. */
1177 PyObject *obj = PyWeakref_GET_OBJECT(wr);
1178 lockobject *lock;
1179 if (obj != Py_None) {
1180 assert(Py_TYPE(obj) == &Locktype);
1181 lock = (lockobject *) obj;
1182 if (lock->locked) {
1183 PyThread_release_lock(lock->lock_lock);
1184 lock->locked = 0;
1185 }
1186 }
1187 /* Deallocating a weakref with a NULL callback only calls
1188 PyObject_GC_Del(), which can't call any Python code. */
1189 Py_DECREF(wr);
1190}
1191
1192static PyObject *
1193thread__set_sentinel(PyObject *self)
1194{
1195 PyObject *wr;
1196 PyThreadState *tstate = PyThreadState_Get();
1197 lockobject *lock;
1198
1199 if (tstate->on_delete_data != NULL) {
1200 /* We must support the re-creation of the lock from a
1201 fork()ed child. */
1202 assert(tstate->on_delete == &release_sentinel);
1203 wr = (PyObject *) tstate->on_delete_data;
1204 tstate->on_delete = NULL;
1205 tstate->on_delete_data = NULL;
1206 Py_DECREF(wr);
1207 }
1208 lock = newlockobject();
1209 if (lock == NULL)
1210 return NULL;
1211 /* The lock is owned by whoever called _set_sentinel(), but the weakref
1212 hangs to the thread state. */
1213 wr = PyWeakref_NewRef((PyObject *) lock, NULL);
1214 if (wr == NULL) {
1215 Py_DECREF(lock);
1216 return NULL;
1217 }
1218 tstate->on_delete_data = (void *) wr;
1219 tstate->on_delete = &release_sentinel;
1220 return (PyObject *) lock;
1221}
1222
1223PyDoc_STRVAR(_set_sentinel_doc,
1224"_set_sentinel() -> lock\n\
1225\n\
1226Set a sentinel lock that will be released when the current thread\n\
1227state is finalized (after it is untied from the interpreter).\n\
1228\n\
1229This is a private API for the threading module.");
1230
Antoine Pitrou65c9c642009-10-30 17:25:12 +00001231static PyObject *
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001232thread_stack_size(PyObject *self, PyObject *args)
1233{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001234 size_t old_size;
1235 Py_ssize_t new_size = 0;
1236 int rc;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001237
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001238 if (!PyArg_ParseTuple(args, "|n:stack_size", &new_size))
1239 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001240
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001241 if (new_size < 0) {
1242 PyErr_SetString(PyExc_ValueError,
1243 "size must be 0 or a positive value");
1244 return NULL;
1245 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001246
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001247 old_size = PyThread_get_stacksize();
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001248
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001249 rc = PyThread_set_stacksize((size_t) new_size);
1250 if (rc == -1) {
1251 PyErr_Format(PyExc_ValueError,
1252 "size not valid: %zd bytes",
1253 new_size);
1254 return NULL;
1255 }
1256 if (rc == -2) {
1257 PyErr_SetString(ThreadError,
1258 "setting stack size not supported");
1259 return NULL;
1260 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001262 return PyLong_FromSsize_t((Py_ssize_t) old_size);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001263}
1264
1265PyDoc_STRVAR(stack_size_doc,
1266"stack_size([size]) -> size\n\
1267\n\
1268Return the thread stack size used when creating new threads. The\n\
1269optional size argument specifies the stack size (in bytes) to be used\n\
1270for subsequently created threads, and must be 0 (use platform or\n\
1271configured default) or a positive integer value of at least 32,768 (32k).\n\
1272If changing the thread stack size is unsupported, a ThreadError\n\
1273exception is raised. If the specified size is invalid, a ValueError\n\
1274exception is raised, and the stack size is unmodified. 32k bytes\n\
1275 currently the minimum supported stack size value to guarantee\n\
1276sufficient stack space for the interpreter itself.\n\
1277\n\
1278Note that some platforms may have particular restrictions on values for\n\
1279the stack size, such as requiring a minimum stack size larger than 32kB or\n\
1280requiring allocation in multiples of the system memory page size\n\
1281- platform documentation should be referred to for more information\n\
1282(4kB pages are common; using multiples of 4096 for the stack size is\n\
1283the suggested approach in the absence of more specific information).");
1284
Barry Warsawd0c10421996-12-17 00:05:22 +00001285static PyMethodDef thread_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001286 {"start_new_thread", (PyCFunction)thread_PyThread_start_new_thread,
Victor Stinner754851f2011-04-19 23:58:51 +02001287 METH_VARARGS, start_new_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001288 {"start_new", (PyCFunction)thread_PyThread_start_new_thread,
Victor Stinner754851f2011-04-19 23:58:51 +02001289 METH_VARARGS, start_new_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001290 {"allocate_lock", (PyCFunction)thread_PyThread_allocate_lock,
1291 METH_NOARGS, allocate_doc},
1292 {"allocate", (PyCFunction)thread_PyThread_allocate_lock,
1293 METH_NOARGS, allocate_doc},
1294 {"exit_thread", (PyCFunction)thread_PyThread_exit_thread,
1295 METH_NOARGS, exit_doc},
1296 {"exit", (PyCFunction)thread_PyThread_exit_thread,
1297 METH_NOARGS, exit_doc},
1298 {"interrupt_main", (PyCFunction)thread_PyThread_interrupt_main,
1299 METH_NOARGS, interrupt_doc},
1300 {"get_ident", (PyCFunction)thread_get_ident,
1301 METH_NOARGS, get_ident_doc},
1302 {"_count", (PyCFunction)thread__count,
1303 METH_NOARGS, _count_doc},
1304 {"stack_size", (PyCFunction)thread_stack_size,
Victor Stinner754851f2011-04-19 23:58:51 +02001305 METH_VARARGS, stack_size_doc},
Antoine Pitrou7b476992013-09-07 23:38:37 +02001306 {"_set_sentinel", (PyCFunction)thread__set_sentinel,
1307 METH_NOARGS, _set_sentinel_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001308 {NULL, NULL} /* sentinel */
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001309};
1310
1311
1312/* Initialization function */
1313
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001314PyDoc_STRVAR(thread_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001315"This module provides primitive operations to write multi-threaded programs.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001316The 'threading' module provides a more convenient interface.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001317
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001318PyDoc_STRVAR(lock_doc,
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001319"A lock object is a synchronization primitive. To create a lock,\n\
Berker Peksag720e6552016-05-02 12:25:35 +03001320call threading.Lock(). Methods are:\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001321\n\
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001322acquire() -- lock the lock, possibly blocking until it can be obtained\n\
1323release() -- unlock of the lock\n\
1324locked() -- test whether the lock is currently locked\n\
1325\n\
1326A lock is not owned by the thread that locked it; another thread may\n\
1327unlock it. A thread attempting to lock a lock that it has already locked\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001328will block until another thread unlocks it. Deadlocks may ensue.");
Guido van Rossum75e9fc31998-06-27 18:21:06 +00001329
Martin v. Löwis1a214512008-06-11 05:26:20 +00001330static struct PyModuleDef threadmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001331 PyModuleDef_HEAD_INIT,
1332 "_thread",
1333 thread_doc,
1334 -1,
1335 thread_methods,
1336 NULL,
1337 NULL,
1338 NULL,
1339 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001340};
1341
1342
Mark Hammondfe51c6d2002-08-02 02:27:13 +00001343PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001344PyInit__thread(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001345{
Victor Stinnerf5faad22015-03-28 03:52:05 +01001346 PyObject *m, *d, *v;
1347 double time_max;
1348 double timeout_max;
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001349 PyThreadState *tstate = PyThreadState_Get();
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001351 /* Initialize types: */
Antoine Pitrou5af4f4b2010-08-09 22:38:19 +00001352 if (PyType_Ready(&localdummytype) < 0)
1353 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001354 if (PyType_Ready(&localtype) < 0)
1355 return NULL;
1356 if (PyType_Ready(&Locktype) < 0)
1357 return NULL;
1358 if (PyType_Ready(&RLocktype) < 0)
1359 return NULL;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001360
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001361 /* Create the module and add the functions */
1362 m = PyModule_Create(&threadmodule);
1363 if (m == NULL)
1364 return NULL;
Antoine Pitrou7c3e5772010-04-14 15:44:10 +00001365
Victor Stinnerf5faad22015-03-28 03:52:05 +01001366 timeout_max = PY_TIMEOUT_MAX / 1000000;
1367 time_max = floor(_PyTime_AsSecondsDouble(_PyTime_MAX));
1368 timeout_max = Py_MIN(timeout_max, time_max);
1369
1370 v = PyFloat_FromDouble(timeout_max);
1371 if (!v)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001372 return NULL;
Victor Stinnerf5faad22015-03-28 03:52:05 +01001373 if (PyModule_AddObject(m, "TIMEOUT_MAX", v) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001374 return NULL;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001375
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001376 /* Add a symbolic constant */
1377 d = PyModule_GetDict(m);
Antoine Pitroufcf81fd2011-02-28 22:03:34 +00001378 ThreadError = PyExc_RuntimeError;
1379 Py_INCREF(ThreadError);
Victor Stinner754851f2011-04-19 23:58:51 +02001380
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001381 PyDict_SetItemString(d, "error", ThreadError);
1382 Locktype.tp_doc = lock_doc;
1383 Py_INCREF(&Locktype);
1384 PyDict_SetItemString(d, "LockType", (PyObject *)&Locktype);
Antoine Pitrou434736a2009-11-10 18:46:01 +00001385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001386 Py_INCREF(&RLocktype);
1387 if (PyModule_AddObject(m, "RLock", (PyObject *)&RLocktype) < 0)
1388 return NULL;
Jim Fultond15dc062004-07-14 19:11:50 +00001389
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001390 Py_INCREF(&localtype);
1391 if (PyModule_AddObject(m, "_local", (PyObject *)&localtype) < 0)
1392 return NULL;
Antoine Pitrou65c9c642009-10-30 17:25:12 +00001393
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001394 tstate->interp->num_threads = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001395
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001396 str_dict = PyUnicode_InternFromString("__dict__");
1397 if (str_dict == NULL)
1398 return NULL;
1399
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001400 /* Initialize the C thread library */
1401 PyThread_init_thread();
1402 return m;
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001403}