blob: b99d0e935366f5388198c2ff44f1113032887b9b [file] [log] [blame]
Jeremy Hylton92bb6e72002-08-14 19:25:42 +00001"""Thread module emulating a subset of Java's threading model."""
Guido van Rossum7f5013a1998-04-09 22:01:42 +00002
Fred Drakea8725952002-12-30 23:32:50 +00003import sys as _sys
Georg Brandl2067bfd2008-05-25 13:05:15 +00004import _thread
Fred Drakea8725952002-12-30 23:32:50 +00005
Victor Stinnerec895392012-04-29 02:41:27 +02006from time import sleep as _sleep
7try:
8 from time import monotonic as _time
Brett Cannoncd171c82013-07-04 17:43:24 -04009except ImportError:
Victor Stinnerec895392012-04-29 02:41:27 +020010 from time import time as _time
Neil Schemenauerf607fc52003-11-05 23:03:00 +000011from traceback import format_exc as _format_exc
Antoine Pitrouc081c0c2011-07-15 22:12:24 +020012from _weakrefset import WeakSet
Raymond Hettinger30307282013-03-20 19:28:19 -070013from itertools import islice as _islice
Raymond Hettingerec4b1742013-03-10 17:57:28 -070014try:
Raymond Hettingerec4b1742013-03-10 17:57:28 -070015 from _collections import deque as _deque
Brett Cannoncd171c82013-07-04 17:43:24 -040016except ImportError:
Raymond Hettingerec4b1742013-03-10 17:57:28 -070017 from collections import deque as _deque
Guido van Rossum7f5013a1998-04-09 22:01:42 +000018
Benjamin Petersonb3085c92008-09-01 23:09:31 +000019# Note regarding PEP 8 compliant names
20# This threading model was originally inspired by Java, and inherited
21# the convention of camelCase function and method names from that
Ezio Melotti30b9d5d2013-08-17 15:50:46 +030022# language. Those original names are not in any imminent danger of
Benjamin Petersonb3085c92008-09-01 23:09:31 +000023# being deprecated (even for Py3k),so this module provides them as an
24# alias for the PEP 8 compliant names
25# Note that using the new PEP 8 compliant names facilitates substitution
26# with the multiprocessing module, which doesn't provide the old
27# Java inspired names.
28
Benjamin Peterson672b8032008-06-11 19:14:14 +000029__all__ = ['active_count', 'Condition', 'current_thread', 'enumerate', 'Event',
Raymond Hettinger5cee47f2011-01-11 19:59:46 +000030 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Barrier',
Benjamin Peterson7761b952011-08-02 13:05:47 -050031 'Timer', 'ThreadError', 'setprofile', 'settrace', 'local', 'stack_size']
Guido van Rossum7f5013a1998-04-09 22:01:42 +000032
Raymond Hettinger5cee47f2011-01-11 19:59:46 +000033# Rename some stuff so "from threading import *" is safe
Georg Brandl2067bfd2008-05-25 13:05:15 +000034_start_new_thread = _thread.start_new_thread
35_allocate_lock = _thread.allocate_lock
Antoine Pitrou7b476992013-09-07 23:38:37 +020036_set_sentinel = _thread._set_sentinel
Victor Stinner2a129742011-05-30 23:02:52 +020037get_ident = _thread.get_ident
Georg Brandl2067bfd2008-05-25 13:05:15 +000038ThreadError = _thread.error
Antoine Pitrou434736a2009-11-10 18:46:01 +000039try:
40 _CRLock = _thread.RLock
41except AttributeError:
42 _CRLock = None
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000043TIMEOUT_MAX = _thread.TIMEOUT_MAX
Georg Brandl2067bfd2008-05-25 13:05:15 +000044del _thread
Guido van Rossum7f5013a1998-04-09 22:01:42 +000045
Guido van Rossum7f5013a1998-04-09 22:01:42 +000046
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000047# Support for profile and trace hooks
48
49_profile_hook = None
50_trace_hook = None
51
52def setprofile(func):
53 global _profile_hook
54 _profile_hook = func
Tim Petersd1b108b2003-06-29 17:24:17 +000055
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000056def settrace(func):
57 global _trace_hook
58 _trace_hook = func
Guido van Rossum7f5013a1998-04-09 22:01:42 +000059
60# Synchronization classes
61
62Lock = _allocate_lock
63
Victor Stinner135b6d82012-03-03 01:32:57 +010064def RLock(*args, **kwargs):
65 if _CRLock is None:
66 return _PyRLock(*args, **kwargs)
Antoine Pitrou434736a2009-11-10 18:46:01 +000067 return _CRLock(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000068
Victor Stinner135b6d82012-03-03 01:32:57 +010069class _RLock:
Tim Petersb90f89a2001-01-15 03:26:36 +000070
Victor Stinner135b6d82012-03-03 01:32:57 +010071 def __init__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +000072 self._block = _allocate_lock()
73 self._owner = None
74 self._count = 0
Guido van Rossum7f5013a1998-04-09 22:01:42 +000075
76 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +000077 owner = self._owner
Antoine Pitroub0872682009-11-09 16:08:16 +000078 try:
79 owner = _active[owner].name
80 except KeyError:
81 pass
82 return "<%s owner=%r count=%d>" % (
83 self.__class__.__name__, owner, self._count)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000084
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000085 def acquire(self, blocking=True, timeout=-1):
Victor Stinner2a129742011-05-30 23:02:52 +020086 me = get_ident()
Antoine Pitroub0872682009-11-09 16:08:16 +000087 if self._owner == me:
Raymond Hettinger720da572013-03-10 15:13:35 -070088 self._count += 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +000089 return 1
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000090 rc = self._block.acquire(blocking, timeout)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000091 if rc:
Guido van Rossumd0648992007-08-20 19:25:41 +000092 self._owner = me
93 self._count = 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +000094 return rc
95
Guido van Rossum1a5e21e2006-02-28 21:57:43 +000096 __enter__ = acquire
97
Guido van Rossum7f5013a1998-04-09 22:01:42 +000098 def release(self):
Victor Stinner2a129742011-05-30 23:02:52 +020099 if self._owner != get_ident():
Georg Brandl495f7b52009-10-27 15:28:25 +0000100 raise RuntimeError("cannot release un-acquired lock")
Guido van Rossumd0648992007-08-20 19:25:41 +0000101 self._count = count = self._count - 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000102 if not count:
Guido van Rossumd0648992007-08-20 19:25:41 +0000103 self._owner = None
104 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000105
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000106 def __exit__(self, t, v, tb):
107 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000108
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000109 # Internal methods used by condition variables
110
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000111 def _acquire_restore(self, state):
Guido van Rossumd0648992007-08-20 19:25:41 +0000112 self._block.acquire()
113 self._count, self._owner = state
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000114
115 def _release_save(self):
Victor Stinnerc2824d42011-04-24 23:41:33 +0200116 if self._count == 0:
117 raise RuntimeError("cannot release un-acquired lock")
Guido van Rossumd0648992007-08-20 19:25:41 +0000118 count = self._count
119 self._count = 0
120 owner = self._owner
121 self._owner = None
122 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000123 return (count, owner)
124
125 def _is_owned(self):
Victor Stinner2a129742011-05-30 23:02:52 +0200126 return self._owner == get_ident()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000127
Antoine Pitrou434736a2009-11-10 18:46:01 +0000128_PyRLock = _RLock
129
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000130
Victor Stinner135b6d82012-03-03 01:32:57 +0100131class Condition:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000132
Victor Stinner135b6d82012-03-03 01:32:57 +0100133 def __init__(self, lock=None):
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000134 if lock is None:
135 lock = RLock()
Guido van Rossumd0648992007-08-20 19:25:41 +0000136 self._lock = lock
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000137 # Export the lock's acquire() and release() methods
138 self.acquire = lock.acquire
139 self.release = lock.release
140 # If the lock defines _release_save() and/or _acquire_restore(),
141 # these override the default implementations (which just call
142 # release() and acquire() on the lock). Ditto for _is_owned().
143 try:
144 self._release_save = lock._release_save
145 except AttributeError:
146 pass
147 try:
148 self._acquire_restore = lock._acquire_restore
149 except AttributeError:
150 pass
151 try:
152 self._is_owned = lock._is_owned
153 except AttributeError:
154 pass
Raymond Hettingerec4b1742013-03-10 17:57:28 -0700155 self._waiters = _deque()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000156
Thomas Wouters477c8d52006-05-27 19:21:47 +0000157 def __enter__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000158 return self._lock.__enter__()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000159
Thomas Wouters477c8d52006-05-27 19:21:47 +0000160 def __exit__(self, *args):
Guido van Rossumd0648992007-08-20 19:25:41 +0000161 return self._lock.__exit__(*args)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000162
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000163 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000164 return "<Condition(%s, %d)>" % (self._lock, len(self._waiters))
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000165
166 def _release_save(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000167 self._lock.release() # No state to save
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000168
169 def _acquire_restore(self, x):
Guido van Rossumd0648992007-08-20 19:25:41 +0000170 self._lock.acquire() # Ignore saved state
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000171
172 def _is_owned(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000173 # Return True if lock is owned by current_thread.
Jeremy Hyltonaf7fde72002-08-14 17:43:59 +0000174 # This method is called only if __lock doesn't have _is_owned().
Guido van Rossumd0648992007-08-20 19:25:41 +0000175 if self._lock.acquire(0):
176 self._lock.release()
Tim Petersbc0e9102002-04-04 22:55:58 +0000177 return False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000178 else:
Tim Petersbc0e9102002-04-04 22:55:58 +0000179 return True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000180
181 def wait(self, timeout=None):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000182 if not self._is_owned():
Georg Brandl495f7b52009-10-27 15:28:25 +0000183 raise RuntimeError("cannot wait on un-acquired lock")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000184 waiter = _allocate_lock()
185 waiter.acquire()
Guido van Rossumd0648992007-08-20 19:25:41 +0000186 self._waiters.append(waiter)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000187 saved_state = self._release_save()
Tim Petersc951bf92001-04-02 20:15:57 +0000188 try: # restore state no matter what (e.g., KeyboardInterrupt)
189 if timeout is None:
190 waiter.acquire()
Georg Brandlb9a43912010-10-28 09:03:20 +0000191 gotit = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000192 else:
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000193 if timeout > 0:
194 gotit = waiter.acquire(True, timeout)
195 else:
196 gotit = waiter.acquire(False)
Tim Petersc951bf92001-04-02 20:15:57 +0000197 if not gotit:
Tim Petersc951bf92001-04-02 20:15:57 +0000198 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000199 self._waiters.remove(waiter)
Tim Petersc951bf92001-04-02 20:15:57 +0000200 except ValueError:
201 pass
Georg Brandlb9a43912010-10-28 09:03:20 +0000202 return gotit
Tim Petersc951bf92001-04-02 20:15:57 +0000203 finally:
204 self._acquire_restore(saved_state)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000205
Kristján Valur Jónsson63315202010-11-18 12:46:39 +0000206 def wait_for(self, predicate, timeout=None):
207 endtime = None
208 waittime = timeout
209 result = predicate()
210 while not result:
211 if waittime is not None:
212 if endtime is None:
213 endtime = _time() + waittime
214 else:
215 waittime = endtime - _time()
216 if waittime <= 0:
Kristján Valur Jónsson63315202010-11-18 12:46:39 +0000217 break
Kristján Valur Jónsson63315202010-11-18 12:46:39 +0000218 self.wait(waittime)
219 result = predicate()
Kristján Valur Jónsson63315202010-11-18 12:46:39 +0000220 return result
221
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000222 def notify(self, n=1):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000223 if not self._is_owned():
Georg Brandl495f7b52009-10-27 15:28:25 +0000224 raise RuntimeError("cannot notify on un-acquired lock")
Raymond Hettingerb65e5792013-03-10 20:34:16 -0700225 all_waiters = self._waiters
226 waiters_to_notify = _deque(_islice(all_waiters, n))
227 if not waiters_to_notify:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000228 return
Raymond Hettingerb65e5792013-03-10 20:34:16 -0700229 for waiter in waiters_to_notify:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000230 waiter.release()
231 try:
Raymond Hettingerb65e5792013-03-10 20:34:16 -0700232 all_waiters.remove(waiter)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000233 except ValueError:
234 pass
235
Benjamin Peterson672b8032008-06-11 19:14:14 +0000236 def notify_all(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000237 self.notify(len(self._waiters))
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000238
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000239 notifyAll = notify_all
240
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000241
Victor Stinner135b6d82012-03-03 01:32:57 +0100242class Semaphore:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000243
Andrew M. Kuchling39d3bfc2000-02-29 00:10:24 +0000244 # After Tim Peters' semaphore class, but not quite the same (no maximum)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000245
Victor Stinner135b6d82012-03-03 01:32:57 +0100246 def __init__(self, value=1):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000247 if value < 0:
248 raise ValueError("semaphore initial value must be >= 0")
Guido van Rossumd0648992007-08-20 19:25:41 +0000249 self._cond = Condition(Lock())
250 self._value = value
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000251
Antoine Pitrou0454af92010-04-17 23:51:58 +0000252 def acquire(self, blocking=True, timeout=None):
253 if not blocking and timeout is not None:
254 raise ValueError("can't specify timeout for non-blocking acquire")
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000255 rc = False
Antoine Pitrou0454af92010-04-17 23:51:58 +0000256 endtime = None
Serhiy Storchaka81a58552013-04-22 22:51:43 +0300257 with self._cond:
258 while self._value == 0:
259 if not blocking:
260 break
261 if timeout is not None:
262 if endtime is None:
263 endtime = _time() + timeout
264 else:
265 timeout = endtime - _time()
266 if timeout <= 0:
267 break
268 self._cond.wait(timeout)
269 else:
Serhiy Storchakab00b5962013-04-22 22:54:16 +0300270 self._value -= 1
Serhiy Storchaka81a58552013-04-22 22:51:43 +0300271 rc = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000272 return rc
273
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000274 __enter__ = acquire
275
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000276 def release(self):
Serhiy Storchaka81a58552013-04-22 22:51:43 +0300277 with self._cond:
Serhiy Storchakab00b5962013-04-22 22:54:16 +0300278 self._value += 1
Serhiy Storchaka81a58552013-04-22 22:51:43 +0300279 self._cond.notify()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000280
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000281 def __exit__(self, t, v, tb):
282 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000283
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000284
Éric Araujo0cdd4452011-07-28 00:28:28 +0200285class BoundedSemaphore(Semaphore):
Skip Montanaroe428bb72001-08-20 20:27:58 +0000286 """Semaphore that checks that # releases is <= # acquires"""
Victor Stinner135b6d82012-03-03 01:32:57 +0100287 def __init__(self, value=1):
288 Semaphore.__init__(self, value)
Skip Montanaroe428bb72001-08-20 20:27:58 +0000289 self._initial_value = value
290
291 def release(self):
Tim Peters7634e1c2013-10-08 20:55:51 -0500292 with self._cond:
293 if self._value >= self._initial_value:
294 raise ValueError("Semaphore released too many times")
295 self._value += 1
296 self._cond.notify()
Skip Montanaroe428bb72001-08-20 20:27:58 +0000297
298
Victor Stinner135b6d82012-03-03 01:32:57 +0100299class Event:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000300
301 # After Tim Peters' event class (without is_posted())
302
Victor Stinner135b6d82012-03-03 01:32:57 +0100303 def __init__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000304 self._cond = Condition(Lock())
305 self._flag = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000306
Gregory P. Smith9bd4a242011-01-04 18:33:38 +0000307 def _reset_internal_locks(self):
308 # private! called by Thread._reset_internal_locks by _after_fork()
309 self._cond.__init__()
310
Benjamin Peterson672b8032008-06-11 19:14:14 +0000311 def is_set(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000312 return self._flag
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000313
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000314 isSet = is_set
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000315
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000316 def set(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000317 self._cond.acquire()
318 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000319 self._flag = True
Benjamin Peterson672b8032008-06-11 19:14:14 +0000320 self._cond.notify_all()
Christian Heimes969fe572008-01-25 11:23:10 +0000321 finally:
322 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000323
324 def clear(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000325 self._cond.acquire()
326 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000327 self._flag = False
Christian Heimes969fe572008-01-25 11:23:10 +0000328 finally:
329 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000330
331 def wait(self, timeout=None):
Christian Heimes969fe572008-01-25 11:23:10 +0000332 self._cond.acquire()
333 try:
Charles-François Natalided03482012-01-07 18:24:56 +0100334 signaled = self._flag
335 if not signaled:
336 signaled = self._cond.wait(timeout)
337 return signaled
Christian Heimes969fe572008-01-25 11:23:10 +0000338 finally:
339 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000340
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +0000341
342# A barrier class. Inspired in part by the pthread_barrier_* api and
343# the CyclicBarrier class from Java. See
344# http://sourceware.org/pthreads-win32/manual/pthread_barrier_init.html and
345# http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/
346# CyclicBarrier.html
347# for information.
348# We maintain two main states, 'filling' and 'draining' enabling the barrier
349# to be cyclic. Threads are not allowed into it until it has fully drained
350# since the previous cycle. In addition, a 'resetting' state exists which is
351# similar to 'draining' except that threads leave with a BrokenBarrierError,
Ezio Melottie130a522011-10-19 10:58:56 +0300352# and a 'broken' state in which all threads get the exception.
Victor Stinner135b6d82012-03-03 01:32:57 +0100353class Barrier:
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +0000354 """
355 Barrier. Useful for synchronizing a fixed number of threads
356 at known synchronization points. Threads block on 'wait()' and are
357 simultaneously once they have all made that call.
358 """
Victor Stinner135b6d82012-03-03 01:32:57 +0100359 def __init__(self, parties, action=None, timeout=None):
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +0000360 """
361 Create a barrier, initialised to 'parties' threads.
362 'action' is a callable which, when supplied, will be called
363 by one of the threads after they have all entered the
364 barrier and just prior to releasing them all.
365 If a 'timeout' is provided, it is uses as the default for
366 all subsequent 'wait()' calls.
367 """
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +0000368 self._cond = Condition(Lock())
369 self._action = action
370 self._timeout = timeout
371 self._parties = parties
372 self._state = 0 #0 filling, 1, draining, -1 resetting, -2 broken
373 self._count = 0
374
375 def wait(self, timeout=None):
376 """
377 Wait for the barrier. When the specified number of threads have
378 started waiting, they are all simultaneously awoken. If an 'action'
379 was provided for the barrier, one of the threads will have executed
380 that callback prior to returning.
381 Returns an individual index number from 0 to 'parties-1'.
382 """
383 if timeout is None:
384 timeout = self._timeout
385 with self._cond:
386 self._enter() # Block while the barrier drains.
387 index = self._count
388 self._count += 1
389 try:
390 if index + 1 == self._parties:
391 # We release the barrier
392 self._release()
393 else:
394 # We wait until someone releases us
395 self._wait(timeout)
396 return index
397 finally:
398 self._count -= 1
399 # Wake up any threads waiting for barrier to drain.
400 self._exit()
401
402 # Block until the barrier is ready for us, or raise an exception
403 # if it is broken.
404 def _enter(self):
405 while self._state in (-1, 1):
406 # It is draining or resetting, wait until done
407 self._cond.wait()
408 #see if the barrier is in a broken state
409 if self._state < 0:
410 raise BrokenBarrierError
411 assert self._state == 0
412
413 # Optionally run the 'action' and release the threads waiting
414 # in the barrier.
415 def _release(self):
416 try:
417 if self._action:
418 self._action()
419 # enter draining state
420 self._state = 1
421 self._cond.notify_all()
422 except:
423 #an exception during the _action handler. Break and reraise
424 self._break()
425 raise
426
427 # Wait in the barrier until we are relased. Raise an exception
428 # if the barrier is reset or broken.
429 def _wait(self, timeout):
Kristján Valur Jónsson63315202010-11-18 12:46:39 +0000430 if not self._cond.wait_for(lambda : self._state != 0, timeout):
431 #timed out. Break the barrier
432 self._break()
433 raise BrokenBarrierError
434 if self._state < 0:
435 raise BrokenBarrierError
Kristján Valur Jónsson3be00032010-10-28 09:43:10 +0000436 assert self._state == 1
437
438 # If we are the last thread to exit the barrier, signal any threads
439 # waiting for the barrier to drain.
440 def _exit(self):
441 if self._count == 0:
442 if self._state in (-1, 1):
443 #resetting or draining
444 self._state = 0
445 self._cond.notify_all()
446
447 def reset(self):
448 """
449 Reset the barrier to the initial state.
450 Any threads currently waiting will get the BrokenBarrier exception
451 raised.
452 """
453 with self._cond:
454 if self._count > 0:
455 if self._state == 0:
456 #reset the barrier, waking up threads
457 self._state = -1
458 elif self._state == -2:
459 #was broken, set it to reset state
460 #which clears when the last thread exits
461 self._state = -1
462 else:
463 self._state = 0
464 self._cond.notify_all()
465
466 def abort(self):
467 """
468 Place the barrier into a 'broken' state.
469 Useful in case of error. Any currently waiting threads and
470 threads attempting to 'wait()' will have BrokenBarrierError
471 raised.
472 """
473 with self._cond:
474 self._break()
475
476 def _break(self):
477 # An internal error was detected. The barrier is set to
478 # a broken state all parties awakened.
479 self._state = -2
480 self._cond.notify_all()
481
482 @property
483 def parties(self):
484 """
485 Return the number of threads required to trip the barrier.
486 """
487 return self._parties
488
489 @property
490 def n_waiting(self):
491 """
492 Return the number of threads that are currently waiting at the barrier.
493 """
494 # We don't need synchronization here since this is an ephemeral result
495 # anyway. It returns the correct value in the steady state.
496 if self._state == 0:
497 return self._count
498 return 0
499
500 @property
501 def broken(self):
502 """
503 Return True if the barrier is in a broken state
504 """
505 return self._state == -2
506
507#exception raised by the Barrier class
508class BrokenBarrierError(RuntimeError): pass
509
510
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000511# Helper to generate new thread names
512_counter = 0
513def _newname(template="Thread-%d"):
514 global _counter
Raymond Hettinger720da572013-03-10 15:13:35 -0700515 _counter += 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000516 return template % _counter
517
518# Active thread administration
519_active_limbo_lock = _allocate_lock()
Tim Peters711906e2005-01-08 07:30:42 +0000520_active = {} # maps thread id to Thread object
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000521_limbo = {}
Antoine Pitrouc081c0c2011-07-15 22:12:24 +0200522_dangling = WeakSet()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000523
524# Main class for threads
525
Victor Stinner135b6d82012-03-03 01:32:57 +0100526class Thread:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000527
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000528 __initialized = False
Brett Cannoncc4e9352004-07-03 03:52:35 +0000529 # Need to store a reference to sys.exc_info for printing
530 # out exceptions when a thread tries to use a global var. during interp.
531 # shutdown and thus raises an exception about trying to perform some
532 # operation on/with a NoneType
533 __exc_info = _sys.exc_info
Christian Heimesbbe741d2008-03-28 10:53:29 +0000534 # Keep sys.exc_clear too to clear the exception just before
535 # allowing .join() to return.
536 #XXX __exc_clear = _sys.exc_clear
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000537
538 def __init__(self, group=None, target=None, name=None,
Victor Stinner135b6d82012-03-03 01:32:57 +0100539 args=(), kwargs=None, *, daemon=None):
Guido van Rossum5a43e1a1998-06-09 19:04:26 +0000540 assert group is None, "group argument must be None for now"
Georg Brandla4a8b822005-07-15 09:13:21 +0000541 if kwargs is None:
542 kwargs = {}
Guido van Rossumd0648992007-08-20 19:25:41 +0000543 self._target = target
544 self._name = str(name or _newname())
545 self._args = args
546 self._kwargs = kwargs
Antoine Pitrou0bd4deb2011-02-25 22:07:43 +0000547 if daemon is not None:
548 self._daemonic = daemon
549 else:
550 self._daemonic = current_thread().daemon
Georg Brandl0c77a822008-06-10 16:37:50 +0000551 self._ident = None
Antoine Pitrou7b476992013-09-07 23:38:37 +0200552 self._tstate_lock = None
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000553 self._started = Event()
Tim Petersc363a232013-09-08 18:44:40 -0500554 self._is_stopped = False
Guido van Rossumd0648992007-08-20 19:25:41 +0000555 self._initialized = True
Brett Cannoncc4e9352004-07-03 03:52:35 +0000556 # sys.stderr is not stored in the class like
557 # sys.exc_info since it can be changed between instances
Guido van Rossumd0648992007-08-20 19:25:41 +0000558 self._stderr = _sys.stderr
Antoine Pitrou5da7e792013-09-08 13:19:06 +0200559 # For debugging and _after_fork()
Antoine Pitrouc081c0c2011-07-15 22:12:24 +0200560 _dangling.add(self)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000561
Antoine Pitrou7b476992013-09-07 23:38:37 +0200562 def _reset_internal_locks(self, is_alive):
Gregory P. Smith9bd4a242011-01-04 18:33:38 +0000563 # private! Called by _after_fork() to reset our internal locks as
564 # they may be in an invalid state leading to a deadlock or crash.
Gregory P. Smith9bd4a242011-01-04 18:33:38 +0000565 self._started._reset_internal_locks()
Antoine Pitrou7b476992013-09-07 23:38:37 +0200566 if is_alive:
567 self._set_tstate_lock()
568 else:
569 # The thread isn't alive after fork: it doesn't have a tstate
570 # anymore.
Tim Petersb5e9ac92013-09-09 14:41:50 -0500571 self._is_stopped = True
Antoine Pitrou7b476992013-09-07 23:38:37 +0200572 self._tstate_lock = None
Gregory P. Smith9bd4a242011-01-04 18:33:38 +0000573
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000574 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000575 assert self._initialized, "Thread.__init__() was not called"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000576 status = "initial"
Benjamin Peterson672b8032008-06-11 19:14:14 +0000577 if self._started.is_set():
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000578 status = "started"
Tim Peters72460fa2013-09-09 18:48:24 -0500579 self.is_alive() # easy way to get ._is_stopped set when appropriate
Tim Petersc363a232013-09-08 18:44:40 -0500580 if self._is_stopped:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000581 status = "stopped"
Guido van Rossumd0648992007-08-20 19:25:41 +0000582 if self._daemonic:
Georg Brandl0c77a822008-06-10 16:37:50 +0000583 status += " daemon"
584 if self._ident is not None:
585 status += " %s" % self._ident
Guido van Rossumd0648992007-08-20 19:25:41 +0000586 return "<%s(%s, %s)>" % (self.__class__.__name__, self._name, status)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000587
588 def start(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000589 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000590 raise RuntimeError("thread.__init__() not called")
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000591
Benjamin Peterson672b8032008-06-11 19:14:14 +0000592 if self._started.is_set():
Senthil Kumaranfdd4d0f2010-04-06 03:30:18 +0000593 raise RuntimeError("threads can only be started once")
Benjamin Petersond23f8222009-04-05 19:13:16 +0000594 with _active_limbo_lock:
595 _limbo[self] = self
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000596 try:
597 _start_new_thread(self._bootstrap, ())
598 except Exception:
599 with _active_limbo_lock:
600 del _limbo[self]
601 raise
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000602 self._started.wait()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000603
604 def run(self):
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000605 try:
606 if self._target:
607 self._target(*self._args, **self._kwargs)
608 finally:
609 # Avoid a refcycle if the thread is running a function with
610 # an argument that has a member that points to the thread.
611 del self._target, self._args, self._kwargs
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000612
Guido van Rossumd0648992007-08-20 19:25:41 +0000613 def _bootstrap(self):
Guido van Rossum61e21b52007-08-20 19:06:03 +0000614 # Wrapper around the real bootstrap code that ignores
615 # exceptions during interpreter cleanup. Those typically
616 # happen when a daemon thread wakes up at an unfortunate
617 # moment, finds the world around it destroyed, and raises some
618 # random exception *** while trying to report the exception in
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000619 # _bootstrap_inner() below ***. Those random exceptions
Guido van Rossum61e21b52007-08-20 19:06:03 +0000620 # don't help anybody, and they confuse users, so we suppress
621 # them. We suppress them only when it appears that the world
622 # indeed has already been destroyed, so that exceptions in
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000623 # _bootstrap_inner() during normal business hours are properly
Guido van Rossum61e21b52007-08-20 19:06:03 +0000624 # reported. Also, we only suppress them for daemonic threads;
625 # if a non-daemonic encounters this, something else is wrong.
626 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000627 self._bootstrap_inner()
Guido van Rossum61e21b52007-08-20 19:06:03 +0000628 except:
Guido van Rossumd0648992007-08-20 19:25:41 +0000629 if self._daemonic and _sys is None:
Guido van Rossum61e21b52007-08-20 19:06:03 +0000630 return
631 raise
632
Benjamin Petersond23f8222009-04-05 19:13:16 +0000633 def _set_ident(self):
Victor Stinner2a129742011-05-30 23:02:52 +0200634 self._ident = get_ident()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000635
Antoine Pitrou7b476992013-09-07 23:38:37 +0200636 def _set_tstate_lock(self):
637 """
638 Set a lock object which will be released by the interpreter when
639 the underlying thread state (see pystate.h) gets deleted.
640 """
641 self._tstate_lock = _set_sentinel()
642 self._tstate_lock.acquire()
643
Guido van Rossumd0648992007-08-20 19:25:41 +0000644 def _bootstrap_inner(self):
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000645 try:
Benjamin Petersond23f8222009-04-05 19:13:16 +0000646 self._set_ident()
Antoine Pitrou7b476992013-09-07 23:38:37 +0200647 self._set_tstate_lock()
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000648 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000649 with _active_limbo_lock:
650 _active[self._ident] = self
651 del _limbo[self]
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000652
653 if _trace_hook:
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000654 _sys.settrace(_trace_hook)
655 if _profile_hook:
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000656 _sys.setprofile(_profile_hook)
Tim Petersd1b108b2003-06-29 17:24:17 +0000657
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000658 try:
659 self.run()
660 except SystemExit:
Victor Stinner135b6d82012-03-03 01:32:57 +0100661 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000662 except:
Brett Cannoncc4e9352004-07-03 03:52:35 +0000663 # If sys.stderr is no more (most likely from interpreter
Guido van Rossumd0648992007-08-20 19:25:41 +0000664 # shutdown) use self._stderr. Otherwise still use sys (as in
Brett Cannoncc4e9352004-07-03 03:52:35 +0000665 # _sys) in case sys.stderr was redefined since the creation of
666 # self.
667 if _sys:
668 _sys.stderr.write("Exception in thread %s:\n%s\n" %
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000669 (self.name, _format_exc()))
Brett Cannoncc4e9352004-07-03 03:52:35 +0000670 else:
671 # Do the best job possible w/o a huge amt. of code to
672 # approximate a traceback (code ideas from
673 # Lib/traceback.py)
Guido van Rossumd0648992007-08-20 19:25:41 +0000674 exc_type, exc_value, exc_tb = self._exc_info()
Brett Cannoncc4e9352004-07-03 03:52:35 +0000675 try:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000676 print((
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000677 "Exception in thread " + self.name +
Guido van Rossumd0648992007-08-20 19:25:41 +0000678 " (most likely raised during interpreter shutdown):"), file=self._stderr)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000679 print((
Guido van Rossumd0648992007-08-20 19:25:41 +0000680 "Traceback (most recent call last):"), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000681 while exc_tb:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000682 print((
Brett Cannoncc4e9352004-07-03 03:52:35 +0000683 ' File "%s", line %s, in %s' %
684 (exc_tb.tb_frame.f_code.co_filename,
685 exc_tb.tb_lineno,
Guido van Rossumd0648992007-08-20 19:25:41 +0000686 exc_tb.tb_frame.f_code.co_name)), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000687 exc_tb = exc_tb.tb_next
Guido van Rossumd0648992007-08-20 19:25:41 +0000688 print(("%s: %s" % (exc_type, exc_value)), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000689 # Make sure that exc_tb gets deleted since it is a memory
690 # hog; deleting everything else is just for thoroughness
691 finally:
692 del exc_type, exc_value, exc_tb
Christian Heimesbbe741d2008-03-28 10:53:29 +0000693 finally:
694 # Prevent a race in
695 # test_threading.test_no_refcycle_through_target when
696 # the exception keeps the target alive past when we
697 # assert that it's dead.
698 #XXX self.__exc_clear()
699 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000700 finally:
Christian Heimes1af737c2008-01-23 08:24:23 +0000701 with _active_limbo_lock:
Christian Heimes1af737c2008-01-23 08:24:23 +0000702 try:
Georg Brandl0c77a822008-06-10 16:37:50 +0000703 # We don't call self._delete() because it also
Christian Heimes1af737c2008-01-23 08:24:23 +0000704 # grabs _active_limbo_lock.
Victor Stinner2a129742011-05-30 23:02:52 +0200705 del _active[get_ident()]
Christian Heimes1af737c2008-01-23 08:24:23 +0000706 except:
707 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000708
Guido van Rossumd0648992007-08-20 19:25:41 +0000709 def _stop(self):
Tim Petersb5e9ac92013-09-09 14:41:50 -0500710 # After calling ._stop(), .is_alive() returns False and .join() returns
711 # immediately. ._tstate_lock must be released before calling ._stop().
712 #
713 # Normal case: C code at the end of the thread's life
714 # (release_sentinel in _threadmodule.c) releases ._tstate_lock, and
715 # that's detected by our ._wait_for_tstate_lock(), called by .join()
716 # and .is_alive(). Any number of threads _may_ call ._stop()
717 # simultaneously (for example, if multiple threads are blocked in
718 # .join() calls), and they're not serialized. That's harmless -
719 # they'll just make redundant rebindings of ._is_stopped and
720 # ._tstate_lock. Obscure: we rebind ._tstate_lock last so that the
721 # "assert self._is_stopped" in ._wait_for_tstate_lock() always works
722 # (the assert is executed only if ._tstate_lock is None).
723 #
724 # Special case: _main_thread releases ._tstate_lock via this
725 # module's _shutdown() function.
726 lock = self._tstate_lock
727 if lock is not None:
728 assert not lock.locked()
Tim Peters78755232013-09-09 13:47:16 -0500729 self._is_stopped = True
730 self._tstate_lock = None
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000731
Guido van Rossumd0648992007-08-20 19:25:41 +0000732 def _delete(self):
Tim Peters21429932004-07-21 03:36:52 +0000733 "Remove current thread from the dict of currently running threads."
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000734
Georg Brandl2067bfd2008-05-25 13:05:15 +0000735 # Notes about running with _dummy_thread:
Tim Peters21429932004-07-21 03:36:52 +0000736 #
Georg Brandl2067bfd2008-05-25 13:05:15 +0000737 # Must take care to not raise an exception if _dummy_thread is being
Tim Peters21429932004-07-21 03:36:52 +0000738 # used (and thus this module is being used as an instance of
Georg Brandl2067bfd2008-05-25 13:05:15 +0000739 # dummy_threading). _dummy_thread.get_ident() always returns -1 since
740 # there is only one thread if _dummy_thread is being used. Thus
Tim Peters21429932004-07-21 03:36:52 +0000741 # len(_active) is always <= 1 here, and any Thread instance created
742 # overwrites the (if any) thread currently registered in _active.
743 #
744 # An instance of _MainThread is always created by 'threading'. This
745 # gets overwritten the instant an instance of Thread is created; both
Georg Brandl2067bfd2008-05-25 13:05:15 +0000746 # threads return -1 from _dummy_thread.get_ident() and thus have the
Tim Peters21429932004-07-21 03:36:52 +0000747 # same key in the dict. So when the _MainThread instance created by
748 # 'threading' tries to clean itself up when atexit calls this method
749 # it gets a KeyError if another Thread instance was created.
750 #
751 # This all means that KeyError from trying to delete something from
752 # _active if dummy_threading is being used is a red herring. But
753 # since it isn't if dummy_threading is *not* being used then don't
754 # hide the exception.
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000755
Christian Heimes969fe572008-01-25 11:23:10 +0000756 try:
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000757 with _active_limbo_lock:
Victor Stinner2a129742011-05-30 23:02:52 +0200758 del _active[get_ident()]
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000759 # There must not be any python code between the previous line
760 # and after the lock is released. Otherwise a tracing function
761 # could try to acquire the lock again in the same thread, (in
Benjamin Peterson672b8032008-06-11 19:14:14 +0000762 # current_thread()), and would block.
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000763 except KeyError:
764 if 'dummy_threading' not in _sys.modules:
765 raise
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000766
767 def join(self, timeout=None):
Guido van Rossumd0648992007-08-20 19:25:41 +0000768 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000769 raise RuntimeError("Thread.__init__() not called")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000770 if not self._started.is_set():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000771 raise RuntimeError("cannot join thread before it is started")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000772 if self is current_thread():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000773 raise RuntimeError("cannot join current thread")
Tim Petersc363a232013-09-08 18:44:40 -0500774 if timeout is None:
775 self._wait_for_tstate_lock()
776 else:
777 self._wait_for_tstate_lock(timeout=timeout)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000778
Tim Petersc363a232013-09-08 18:44:40 -0500779 def _wait_for_tstate_lock(self, block=True, timeout=-1):
Antoine Pitrou7b476992013-09-07 23:38:37 +0200780 # Issue #18808: wait for the thread state to be gone.
Tim Petersc363a232013-09-08 18:44:40 -0500781 # At the end of the thread's life, after all knowledge of the thread
782 # is removed from C data structures, C code releases our _tstate_lock.
783 # This method passes its arguments to _tstate_lock.aquire().
784 # If the lock is acquired, the C code is done, and self._stop() is
785 # called. That sets ._is_stopped to True, and ._tstate_lock to None.
Antoine Pitrou7b476992013-09-07 23:38:37 +0200786 lock = self._tstate_lock
Tim Petersc363a232013-09-08 18:44:40 -0500787 if lock is None: # already determined that the C code is done
788 assert self._is_stopped
789 elif lock.acquire(block, timeout):
Antoine Pitrou7b476992013-09-07 23:38:37 +0200790 lock.release()
Tim Petersc363a232013-09-08 18:44:40 -0500791 self._stop()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000792
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000793 @property
794 def name(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000795 assert self._initialized, "Thread.__init__() not called"
796 return self._name
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000797
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000798 @name.setter
799 def name(self, name):
Guido van Rossumd0648992007-08-20 19:25:41 +0000800 assert self._initialized, "Thread.__init__() not called"
801 self._name = str(name)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000802
Benjamin Peterson773c17b2008-08-18 16:45:31 +0000803 @property
804 def ident(self):
Georg Brandl0c77a822008-06-10 16:37:50 +0000805 assert self._initialized, "Thread.__init__() not called"
806 return self._ident
807
Benjamin Peterson672b8032008-06-11 19:14:14 +0000808 def is_alive(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000809 assert self._initialized, "Thread.__init__() not called"
Tim Petersc363a232013-09-08 18:44:40 -0500810 if self._is_stopped or not self._started.is_set():
Antoine Pitrou7b476992013-09-07 23:38:37 +0200811 return False
Antoine Pitrou7b476992013-09-07 23:38:37 +0200812 self._wait_for_tstate_lock(False)
Tim Petersc363a232013-09-08 18:44:40 -0500813 return not self._is_stopped
Tim Petersb90f89a2001-01-15 03:26:36 +0000814
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000815 isAlive = is_alive
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000816
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000817 @property
818 def daemon(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000819 assert self._initialized, "Thread.__init__() not called"
820 return self._daemonic
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000821
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000822 @daemon.setter
823 def daemon(self, daemonic):
Guido van Rossumd0648992007-08-20 19:25:41 +0000824 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000825 raise RuntimeError("Thread.__init__() not called")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000826 if self._started.is_set():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000827 raise RuntimeError("cannot set daemon status of active thread");
Guido van Rossumd0648992007-08-20 19:25:41 +0000828 self._daemonic = daemonic
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000829
Benjamin Peterson6640d722008-08-18 18:16:46 +0000830 def isDaemon(self):
831 return self.daemon
832
833 def setDaemon(self, daemonic):
834 self.daemon = daemonic
835
836 def getName(self):
837 return self.name
838
839 def setName(self, name):
840 self.name = name
841
Martin v. Löwis44f86962001-09-05 13:44:54 +0000842# The timer class was contributed by Itamar Shtull-Trauring
843
Éric Araujo0cdd4452011-07-28 00:28:28 +0200844class Timer(Thread):
Martin v. Löwis44f86962001-09-05 13:44:54 +0000845 """Call a function after a specified number of seconds:
Tim Petersb64bec32001-09-18 02:26:39 +0000846
R David Murray19aeb432013-03-30 17:19:38 -0400847 t = Timer(30.0, f, args=None, kwargs=None)
Martin v. Löwis44f86962001-09-05 13:44:54 +0000848 t.start()
849 t.cancel() # stop the timer's action if it's still waiting
850 """
Tim Petersb64bec32001-09-18 02:26:39 +0000851
R David Murray19aeb432013-03-30 17:19:38 -0400852 def __init__(self, interval, function, args=None, kwargs=None):
Martin v. Löwis44f86962001-09-05 13:44:54 +0000853 Thread.__init__(self)
854 self.interval = interval
855 self.function = function
R David Murray19aeb432013-03-30 17:19:38 -0400856 self.args = args if args is not None else []
857 self.kwargs = kwargs if kwargs is not None else {}
Martin v. Löwis44f86962001-09-05 13:44:54 +0000858 self.finished = Event()
Tim Petersb64bec32001-09-18 02:26:39 +0000859
Martin v. Löwis44f86962001-09-05 13:44:54 +0000860 def cancel(self):
861 """Stop the timer if it hasn't finished yet"""
862 self.finished.set()
Tim Petersb64bec32001-09-18 02:26:39 +0000863
Martin v. Löwis44f86962001-09-05 13:44:54 +0000864 def run(self):
865 self.finished.wait(self.interval)
Benjamin Peterson672b8032008-06-11 19:14:14 +0000866 if not self.finished.is_set():
Martin v. Löwis44f86962001-09-05 13:44:54 +0000867 self.function(*self.args, **self.kwargs)
868 self.finished.set()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000869
870# Special thread class to represent the main thread
871# This is garbage collected through an exit handler
872
873class _MainThread(Thread):
874
875 def __init__(self):
Antoine Pitrou0bd4deb2011-02-25 22:07:43 +0000876 Thread.__init__(self, name="MainThread", daemon=False)
Tim Petersc363a232013-09-08 18:44:40 -0500877 self._set_tstate_lock()
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000878 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000879 self._set_ident()
880 with _active_limbo_lock:
881 _active[self._ident] = self
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000882
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000883
884# Dummy thread class to represent threads not started here.
Tim Peters711906e2005-01-08 07:30:42 +0000885# These aren't garbage collected when they die, nor can they be waited for.
Benjamin Peterson672b8032008-06-11 19:14:14 +0000886# If they invoke anything in threading.py that calls current_thread(), they
Tim Peters711906e2005-01-08 07:30:42 +0000887# leave an entry in the _active dict forever after.
Benjamin Peterson672b8032008-06-11 19:14:14 +0000888# Their purpose is to return *something* from current_thread().
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000889# They are marked as daemon threads so we won't wait for them
890# when we exit (conform previous semantics).
891
892class _DummyThread(Thread):
Tim Petersb90f89a2001-01-15 03:26:36 +0000893
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000894 def __init__(self):
Antoine Pitrou0bd4deb2011-02-25 22:07:43 +0000895 Thread.__init__(self, name=_newname("Dummy-%d"), daemon=True)
Tim Peters711906e2005-01-08 07:30:42 +0000896
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000897 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000898 self._set_ident()
899 with _active_limbo_lock:
900 _active[self._ident] = self
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000901
Antoine Pitrou8e6e0fd2012-04-19 23:55:01 +0200902 def _stop(self):
903 pass
904
Neal Norwitz45bec8c2002-02-19 03:01:36 +0000905 def join(self, timeout=None):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000906 assert False, "cannot join a dummy thread"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000907
908
909# Global API functions
910
Benjamin Peterson672b8032008-06-11 19:14:14 +0000911def current_thread():
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000912 try:
Victor Stinner2a129742011-05-30 23:02:52 +0200913 return _active[get_ident()]
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000914 except KeyError:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000915 return _DummyThread()
916
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000917currentThread = current_thread
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000918
Benjamin Peterson672b8032008-06-11 19:14:14 +0000919def active_count():
Benjamin Petersond23f8222009-04-05 19:13:16 +0000920 with _active_limbo_lock:
921 return len(_active) + len(_limbo)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000922
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000923activeCount = active_count
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000924
Antoine Pitroubdec11f2009-11-05 13:49:14 +0000925def _enumerate():
926 # Same as enumerate(), but without the lock. Internal use only.
927 return list(_active.values()) + list(_limbo.values())
928
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000929def enumerate():
Benjamin Petersond23f8222009-04-05 19:13:16 +0000930 with _active_limbo_lock:
931 return list(_active.values()) + list(_limbo.values())
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000932
Georg Brandl2067bfd2008-05-25 13:05:15 +0000933from _thread import stack_size
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000934
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000935# Create the main thread object,
936# and make it available for the interpreter
937# (Py_Main) as threading._shutdown.
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000938
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300939_main_thread = _MainThread()
940
941def _shutdown():
Tim Petersc363a232013-09-08 18:44:40 -0500942 # Obscure: other threads may be waiting to join _main_thread. That's
943 # dubious, but some code does it. We can't wait for C code to release
944 # the main thread's tstate_lock - that won't happen until the interpreter
945 # is nearly dead. So we release it here. Note that just calling _stop()
946 # isn't enough: other threads may already be waiting on _tstate_lock.
Tim Petersb5e9ac92013-09-09 14:41:50 -0500947 tlock = _main_thread._tstate_lock
948 # The main thread isn't finished yet, so its thread state lock can't have
949 # been released.
950 assert tlock is not None
951 assert tlock.locked()
952 tlock.release()
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300953 _main_thread._stop()
954 t = _pickSomeNonDaemonThread()
955 while t:
956 t.join()
957 t = _pickSomeNonDaemonThread()
958 _main_thread._delete()
959
960def _pickSomeNonDaemonThread():
961 for t in enumerate():
962 if not t.daemon and t.is_alive():
963 return t
964 return None
965
966def main_thread():
Andrew Svetlovb1dd5572013-09-04 10:33:11 +0300967 """Return the main thread object.
968
969 In normal conditions, the main thread is the thread from which the
970 Python interpreter was started.
971 """
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300972 return _main_thread
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000973
Jim Fultond15dc062004-07-14 19:11:50 +0000974# get thread-local implementation, either from the thread
975# module, or from the python fallback
976
977try:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000978 from _thread import _local as local
Brett Cannoncd171c82013-07-04 17:43:24 -0400979except ImportError:
Jim Fultond15dc062004-07-14 19:11:50 +0000980 from _threading_local import local
981
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000982
Jesse Nollera8513972008-07-17 16:49:17 +0000983def _after_fork():
984 # This function is called by Python/ceval.c:PyEval_ReInitThreads which
985 # is called from PyOS_AfterFork. Here we cleanup threading module state
986 # that should not exist after a fork.
987
988 # Reset _active_limbo_lock, in case we forked while the lock was held
989 # by another (non-forked) thread. http://bugs.python.org/issue874900
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300990 global _active_limbo_lock, _main_thread
Jesse Nollera8513972008-07-17 16:49:17 +0000991 _active_limbo_lock = _allocate_lock()
992
993 # fork() only copied the current thread; clear references to others.
994 new_active = {}
995 current = current_thread()
Andrew Svetlov58b5c5a2013-09-04 07:01:07 +0300996 _main_thread = current
Jesse Nollera8513972008-07-17 16:49:17 +0000997 with _active_limbo_lock:
Antoine Pitrou5da7e792013-09-08 13:19:06 +0200998 # Dangling thread instances must still have their locks reset,
999 # because someone may join() them.
1000 threads = set(_enumerate())
1001 threads.update(_dangling)
1002 for thread in threads:
Charles-François Natalib055bf62011-12-18 18:45:16 +01001003 # Any lock/condition variable may be currently locked or in an
1004 # invalid state, so we reinitialize them.
Jesse Nollera8513972008-07-17 16:49:17 +00001005 if thread is current:
Antoine Pitrou5fe291f2008-09-06 23:00:03 +00001006 # There is only one active thread. We reset the ident to
1007 # its new value since it can have changed.
Antoine Pitrou7b476992013-09-07 23:38:37 +02001008 thread._reset_internal_locks(True)
Victor Stinner2a129742011-05-30 23:02:52 +02001009 ident = get_ident()
Antoine Pitrou5fe291f2008-09-06 23:00:03 +00001010 thread._ident = ident
Jesse Nollera8513972008-07-17 16:49:17 +00001011 new_active[ident] = thread
1012 else:
1013 # All the others are already stopped.
Antoine Pitrou7b476992013-09-07 23:38:37 +02001014 thread._reset_internal_locks(False)
Charles-François Natalib055bf62011-12-18 18:45:16 +01001015 thread._stop()
Jesse Nollera8513972008-07-17 16:49:17 +00001016
1017 _limbo.clear()
1018 _active.clear()
1019 _active.update(new_active)
1020 assert len(_active) == 1