Jeremy Hylton | 92bb6e7 | 2002-08-14 19:25:42 +0000 | [diff] [blame] | 1 | """Thread module emulating a subset of Java's threading model.""" |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 2 | |
Fred Drake | a872595 | 2002-12-30 23:32:50 +0000 | [diff] [blame] | 3 | import sys as _sys |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 4 | import _thread |
Fred Drake | a872595 | 2002-12-30 23:32:50 +0000 | [diff] [blame] | 5 | |
Victor Stinner | ec89539 | 2012-04-29 02:41:27 +0200 | [diff] [blame] | 6 | try: |
| 7 | from time import monotonic as _time |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 8 | except ImportError: |
Victor Stinner | ec89539 | 2012-04-29 02:41:27 +0200 | [diff] [blame] | 9 | from time import time as _time |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 10 | from traceback import format_exc as _format_exc |
Antoine Pitrou | c081c0c | 2011-07-15 22:12:24 +0200 | [diff] [blame] | 11 | from _weakrefset import WeakSet |
Raymond Hettinger | 3030728 | 2013-03-20 19:28:19 -0700 | [diff] [blame] | 12 | from itertools import islice as _islice |
Raymond Hettinger | ec4b174 | 2013-03-10 17:57:28 -0700 | [diff] [blame] | 13 | try: |
Raymond Hettinger | ec4b174 | 2013-03-10 17:57:28 -0700 | [diff] [blame] | 14 | from _collections import deque as _deque |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 15 | except ImportError: |
Raymond Hettinger | ec4b174 | 2013-03-10 17:57:28 -0700 | [diff] [blame] | 16 | from collections import deque as _deque |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 17 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 18 | # Note regarding PEP 8 compliant names |
| 19 | # This threading model was originally inspired by Java, and inherited |
| 20 | # the convention of camelCase function and method names from that |
Ezio Melotti | 30b9d5d | 2013-08-17 15:50:46 +0300 | [diff] [blame] | 21 | # language. Those original names are not in any imminent danger of |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 22 | # being deprecated (even for Py3k),so this module provides them as an |
| 23 | # alias for the PEP 8 compliant names |
| 24 | # Note that using the new PEP 8 compliant names facilitates substitution |
| 25 | # with the multiprocessing module, which doesn't provide the old |
| 26 | # Java inspired names. |
| 27 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 28 | __all__ = ['active_count', 'Condition', 'current_thread', 'enumerate', 'Event', |
Raymond Hettinger | 5cee47f | 2011-01-11 19:59:46 +0000 | [diff] [blame] | 29 | 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Barrier', |
Benjamin Peterson | 7761b95 | 2011-08-02 13:05:47 -0500 | [diff] [blame] | 30 | 'Timer', 'ThreadError', 'setprofile', 'settrace', 'local', 'stack_size'] |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 31 | |
Raymond Hettinger | 5cee47f | 2011-01-11 19:59:46 +0000 | [diff] [blame] | 32 | # Rename some stuff so "from threading import *" is safe |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 33 | _start_new_thread = _thread.start_new_thread |
| 34 | _allocate_lock = _thread.allocate_lock |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 35 | _set_sentinel = _thread._set_sentinel |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 36 | get_ident = _thread.get_ident |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 37 | ThreadError = _thread.error |
Antoine Pitrou | 434736a | 2009-11-10 18:46:01 +0000 | [diff] [blame] | 38 | try: |
| 39 | _CRLock = _thread.RLock |
| 40 | except AttributeError: |
| 41 | _CRLock = None |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 42 | TIMEOUT_MAX = _thread.TIMEOUT_MAX |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 43 | del _thread |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 45 | |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 46 | # Support for profile and trace hooks |
| 47 | |
| 48 | _profile_hook = None |
| 49 | _trace_hook = None |
| 50 | |
| 51 | def setprofile(func): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 52 | """Set a profile function for all threads started from the threading module. |
| 53 | |
| 54 | The func will be passed to sys.setprofile() for each thread, before its |
| 55 | run() method is called. |
| 56 | |
| 57 | """ |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 58 | global _profile_hook |
| 59 | _profile_hook = func |
Tim Peters | d1b108b | 2003-06-29 17:24:17 +0000 | [diff] [blame] | 60 | |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 61 | def settrace(func): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 62 | """Set a trace function for all threads started from the threading module. |
| 63 | |
| 64 | The func will be passed to sys.settrace() for each thread, before its run() |
| 65 | method is called. |
| 66 | |
| 67 | """ |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 68 | global _trace_hook |
| 69 | _trace_hook = func |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 70 | |
| 71 | # Synchronization classes |
| 72 | |
| 73 | Lock = _allocate_lock |
| 74 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 75 | def RLock(*args, **kwargs): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 76 | """Factory function that returns a new reentrant lock. |
| 77 | |
| 78 | A reentrant lock must be released by the thread that acquired it. Once a |
| 79 | thread has acquired a reentrant lock, the same thread may acquire it again |
| 80 | without blocking; the thread must release it once for each time it has |
| 81 | acquired it. |
| 82 | |
| 83 | """ |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 84 | if _CRLock is None: |
| 85 | return _PyRLock(*args, **kwargs) |
Antoine Pitrou | 434736a | 2009-11-10 18:46:01 +0000 | [diff] [blame] | 86 | return _CRLock(*args, **kwargs) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 87 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 88 | class _RLock: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 89 | """This class implements reentrant lock objects. |
| 90 | |
| 91 | A reentrant lock must be released by the thread that acquired it. Once a |
| 92 | thread has acquired a reentrant lock, the same thread may acquire it |
| 93 | again without blocking; the thread must release it once for each time it |
| 94 | has acquired it. |
| 95 | |
| 96 | """ |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 97 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 98 | def __init__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 99 | self._block = _allocate_lock() |
| 100 | self._owner = None |
| 101 | self._count = 0 |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 102 | |
| 103 | def __repr__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 104 | owner = self._owner |
Antoine Pitrou | b087268 | 2009-11-09 16:08:16 +0000 | [diff] [blame] | 105 | try: |
| 106 | owner = _active[owner].name |
| 107 | except KeyError: |
| 108 | pass |
Raymond Hettinger | 62f4dad | 2014-05-25 18:22:35 -0700 | [diff] [blame] | 109 | return "<%s %s.%s object owner=%r count=%d at %s>" % ( |
| 110 | "locked" if self._block.locked() else "unlocked", |
| 111 | self.__class__.__module__, |
| 112 | self.__class__.__qualname__, |
| 113 | owner, |
| 114 | self._count, |
| 115 | hex(id(self)) |
| 116 | ) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 117 | |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 118 | def acquire(self, blocking=True, timeout=-1): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 119 | """Acquire a lock, blocking or non-blocking. |
| 120 | |
| 121 | When invoked without arguments: if this thread already owns the lock, |
| 122 | increment the recursion level by one, and return immediately. Otherwise, |
| 123 | if another thread owns the lock, block until the lock is unlocked. Once |
| 124 | the lock is unlocked (not owned by any thread), then grab ownership, set |
| 125 | the recursion level to one, and return. If more than one thread is |
| 126 | blocked waiting until the lock is unlocked, only one at a time will be |
| 127 | able to grab ownership of the lock. There is no return value in this |
| 128 | case. |
| 129 | |
| 130 | When invoked with the blocking argument set to true, do the same thing |
| 131 | as when called without arguments, and return true. |
| 132 | |
| 133 | When invoked with the blocking argument set to false, do not block. If a |
| 134 | call without an argument would block, return false immediately; |
| 135 | otherwise, do the same thing as when called without arguments, and |
| 136 | return true. |
| 137 | |
| 138 | When invoked with the floating-point timeout argument set to a positive |
| 139 | value, block for at most the number of seconds specified by timeout |
| 140 | and as long as the lock cannot be acquired. Return true if the lock has |
| 141 | been acquired, false if the timeout has elapsed. |
| 142 | |
| 143 | """ |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 144 | me = get_ident() |
Antoine Pitrou | b087268 | 2009-11-09 16:08:16 +0000 | [diff] [blame] | 145 | if self._owner == me: |
Raymond Hettinger | 720da57 | 2013-03-10 15:13:35 -0700 | [diff] [blame] | 146 | self._count += 1 |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 147 | return 1 |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 148 | rc = self._block.acquire(blocking, timeout) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 149 | if rc: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 150 | self._owner = me |
| 151 | self._count = 1 |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 152 | return rc |
| 153 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 154 | __enter__ = acquire |
| 155 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 156 | def release(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 157 | """Release a lock, decrementing the recursion level. |
| 158 | |
| 159 | If after the decrement it is zero, reset the lock to unlocked (not owned |
| 160 | by any thread), and if any other threads are blocked waiting for the |
| 161 | lock to become unlocked, allow exactly one of them to proceed. If after |
| 162 | the decrement the recursion level is still nonzero, the lock remains |
| 163 | locked and owned by the calling thread. |
| 164 | |
| 165 | Only call this method when the calling thread owns the lock. A |
| 166 | RuntimeError is raised if this method is called when the lock is |
| 167 | unlocked. |
| 168 | |
| 169 | There is no return value. |
| 170 | |
| 171 | """ |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 172 | if self._owner != get_ident(): |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 173 | raise RuntimeError("cannot release un-acquired lock") |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 174 | self._count = count = self._count - 1 |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 175 | if not count: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 176 | self._owner = None |
| 177 | self._block.release() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 178 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 179 | def __exit__(self, t, v, tb): |
| 180 | self.release() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 181 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 182 | # Internal methods used by condition variables |
| 183 | |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 184 | def _acquire_restore(self, state): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 185 | self._block.acquire() |
| 186 | self._count, self._owner = state |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 187 | |
| 188 | def _release_save(self): |
Victor Stinner | c2824d4 | 2011-04-24 23:41:33 +0200 | [diff] [blame] | 189 | if self._count == 0: |
| 190 | raise RuntimeError("cannot release un-acquired lock") |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 191 | count = self._count |
| 192 | self._count = 0 |
| 193 | owner = self._owner |
| 194 | self._owner = None |
| 195 | self._block.release() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 196 | return (count, owner) |
| 197 | |
| 198 | def _is_owned(self): |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 199 | return self._owner == get_ident() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 200 | |
Antoine Pitrou | 434736a | 2009-11-10 18:46:01 +0000 | [diff] [blame] | 201 | _PyRLock = _RLock |
| 202 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 203 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 204 | class Condition: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 205 | """Class that implements a condition variable. |
| 206 | |
| 207 | A condition variable allows one or more threads to wait until they are |
| 208 | notified by another thread. |
| 209 | |
| 210 | If the lock argument is given and not None, it must be a Lock or RLock |
| 211 | object, and it is used as the underlying lock. Otherwise, a new RLock object |
| 212 | is created and used as the underlying lock. |
| 213 | |
| 214 | """ |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 215 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 216 | def __init__(self, lock=None): |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 217 | if lock is None: |
| 218 | lock = RLock() |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 219 | self._lock = lock |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 220 | # Export the lock's acquire() and release() methods |
| 221 | self.acquire = lock.acquire |
| 222 | self.release = lock.release |
| 223 | # If the lock defines _release_save() and/or _acquire_restore(), |
| 224 | # these override the default implementations (which just call |
| 225 | # release() and acquire() on the lock). Ditto for _is_owned(). |
| 226 | try: |
| 227 | self._release_save = lock._release_save |
| 228 | except AttributeError: |
| 229 | pass |
| 230 | try: |
| 231 | self._acquire_restore = lock._acquire_restore |
| 232 | except AttributeError: |
| 233 | pass |
| 234 | try: |
| 235 | self._is_owned = lock._is_owned |
| 236 | except AttributeError: |
| 237 | pass |
Raymond Hettinger | ec4b174 | 2013-03-10 17:57:28 -0700 | [diff] [blame] | 238 | self._waiters = _deque() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 239 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 240 | def __enter__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 241 | return self._lock.__enter__() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 242 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 243 | def __exit__(self, *args): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 244 | return self._lock.__exit__(*args) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 245 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 246 | def __repr__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 247 | return "<Condition(%s, %d)>" % (self._lock, len(self._waiters)) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 248 | |
| 249 | def _release_save(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 250 | self._lock.release() # No state to save |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 251 | |
| 252 | def _acquire_restore(self, x): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 253 | self._lock.acquire() # Ignore saved state |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 254 | |
| 255 | def _is_owned(self): |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 256 | # Return True if lock is owned by current_thread. |
Jeremy Hylton | af7fde7 | 2002-08-14 17:43:59 +0000 | [diff] [blame] | 257 | # This method is called only if __lock doesn't have _is_owned(). |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 258 | if self._lock.acquire(0): |
| 259 | self._lock.release() |
Tim Peters | bc0e910 | 2002-04-04 22:55:58 +0000 | [diff] [blame] | 260 | return False |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 261 | else: |
Tim Peters | bc0e910 | 2002-04-04 22:55:58 +0000 | [diff] [blame] | 262 | return True |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 263 | |
| 264 | def wait(self, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 265 | """Wait until notified or until a timeout occurs. |
| 266 | |
| 267 | If the calling thread has not acquired the lock when this method is |
| 268 | called, a RuntimeError is raised. |
| 269 | |
| 270 | This method releases the underlying lock, and then blocks until it is |
| 271 | awakened by a notify() or notify_all() call for the same condition |
| 272 | variable in another thread, or until the optional timeout occurs. Once |
| 273 | awakened or timed out, it re-acquires the lock and returns. |
| 274 | |
| 275 | When the timeout argument is present and not None, it should be a |
| 276 | floating point number specifying a timeout for the operation in seconds |
| 277 | (or fractions thereof). |
| 278 | |
| 279 | When the underlying lock is an RLock, it is not released using its |
| 280 | release() method, since this may not actually unlock the lock when it |
| 281 | was acquired multiple times recursively. Instead, an internal interface |
| 282 | of the RLock class is used, which really unlocks it even when it has |
| 283 | been recursively acquired several times. Another internal interface is |
| 284 | then used to restore the recursion level when the lock is reacquired. |
| 285 | |
| 286 | """ |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 287 | if not self._is_owned(): |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 288 | raise RuntimeError("cannot wait on un-acquired lock") |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 289 | waiter = _allocate_lock() |
| 290 | waiter.acquire() |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 291 | self._waiters.append(waiter) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 292 | saved_state = self._release_save() |
Tim Peters | c951bf9 | 2001-04-02 20:15:57 +0000 | [diff] [blame] | 293 | try: # restore state no matter what (e.g., KeyboardInterrupt) |
| 294 | if timeout is None: |
| 295 | waiter.acquire() |
Georg Brandl | b9a4391 | 2010-10-28 09:03:20 +0000 | [diff] [blame] | 296 | gotit = True |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 297 | else: |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 298 | if timeout > 0: |
| 299 | gotit = waiter.acquire(True, timeout) |
| 300 | else: |
| 301 | gotit = waiter.acquire(False) |
Tim Peters | c951bf9 | 2001-04-02 20:15:57 +0000 | [diff] [blame] | 302 | if not gotit: |
Tim Peters | c951bf9 | 2001-04-02 20:15:57 +0000 | [diff] [blame] | 303 | try: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 304 | self._waiters.remove(waiter) |
Tim Peters | c951bf9 | 2001-04-02 20:15:57 +0000 | [diff] [blame] | 305 | except ValueError: |
| 306 | pass |
Georg Brandl | b9a4391 | 2010-10-28 09:03:20 +0000 | [diff] [blame] | 307 | return gotit |
Tim Peters | c951bf9 | 2001-04-02 20:15:57 +0000 | [diff] [blame] | 308 | finally: |
| 309 | self._acquire_restore(saved_state) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 310 | |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 311 | def wait_for(self, predicate, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 312 | """Wait until a condition evaluates to True. |
| 313 | |
| 314 | predicate should be a callable which result will be interpreted as a |
| 315 | boolean value. A timeout may be provided giving the maximum time to |
| 316 | wait. |
| 317 | |
| 318 | """ |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 319 | endtime = None |
| 320 | waittime = timeout |
| 321 | result = predicate() |
| 322 | while not result: |
| 323 | if waittime is not None: |
| 324 | if endtime is None: |
| 325 | endtime = _time() + waittime |
| 326 | else: |
| 327 | waittime = endtime - _time() |
| 328 | if waittime <= 0: |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 329 | break |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 330 | self.wait(waittime) |
| 331 | result = predicate() |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 332 | return result |
| 333 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 334 | def notify(self, n=1): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 335 | """Wake up one or more threads waiting on this condition, if any. |
| 336 | |
| 337 | If the calling thread has not acquired the lock when this method is |
| 338 | called, a RuntimeError is raised. |
| 339 | |
| 340 | This method wakes up at most n of the threads waiting for the condition |
| 341 | variable; it is a no-op if no threads are waiting. |
| 342 | |
| 343 | """ |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 344 | if not self._is_owned(): |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 345 | raise RuntimeError("cannot notify on un-acquired lock") |
Raymond Hettinger | b65e579 | 2013-03-10 20:34:16 -0700 | [diff] [blame] | 346 | all_waiters = self._waiters |
| 347 | waiters_to_notify = _deque(_islice(all_waiters, n)) |
| 348 | if not waiters_to_notify: |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 349 | return |
Raymond Hettinger | b65e579 | 2013-03-10 20:34:16 -0700 | [diff] [blame] | 350 | for waiter in waiters_to_notify: |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 351 | waiter.release() |
| 352 | try: |
Raymond Hettinger | b65e579 | 2013-03-10 20:34:16 -0700 | [diff] [blame] | 353 | all_waiters.remove(waiter) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 354 | except ValueError: |
| 355 | pass |
| 356 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 357 | def notify_all(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 358 | """Wake up all threads waiting on this condition. |
| 359 | |
| 360 | If the calling thread has not acquired the lock when this method |
| 361 | is called, a RuntimeError is raised. |
| 362 | |
| 363 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 364 | self.notify(len(self._waiters)) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 365 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 366 | notifyAll = notify_all |
| 367 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 368 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 369 | class Semaphore: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 370 | """This class implements semaphore objects. |
| 371 | |
| 372 | Semaphores manage a counter representing the number of release() calls minus |
| 373 | the number of acquire() calls, plus an initial value. The acquire() method |
| 374 | blocks if necessary until it can return without making the counter |
| 375 | negative. If not given, value defaults to 1. |
| 376 | |
| 377 | """ |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 378 | |
Andrew M. Kuchling | 39d3bfc | 2000-02-29 00:10:24 +0000 | [diff] [blame] | 379 | # After Tim Peters' semaphore class, but not quite the same (no maximum) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 380 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 381 | def __init__(self, value=1): |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 382 | if value < 0: |
| 383 | raise ValueError("semaphore initial value must be >= 0") |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 384 | self._cond = Condition(Lock()) |
| 385 | self._value = value |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 386 | |
Antoine Pitrou | 0454af9 | 2010-04-17 23:51:58 +0000 | [diff] [blame] | 387 | def acquire(self, blocking=True, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 388 | """Acquire a semaphore, decrementing the internal counter by one. |
| 389 | |
| 390 | When invoked without arguments: if the internal counter is larger than |
| 391 | zero on entry, decrement it by one and return immediately. If it is zero |
| 392 | on entry, block, waiting until some other thread has called release() to |
| 393 | make it larger than zero. This is done with proper interlocking so that |
| 394 | if multiple acquire() calls are blocked, release() will wake exactly one |
| 395 | of them up. The implementation may pick one at random, so the order in |
| 396 | which blocked threads are awakened should not be relied on. There is no |
| 397 | return value in this case. |
| 398 | |
| 399 | When invoked with blocking set to true, do the same thing as when called |
| 400 | without arguments, and return true. |
| 401 | |
| 402 | When invoked with blocking set to false, do not block. If a call without |
| 403 | an argument would block, return false immediately; otherwise, do the |
| 404 | same thing as when called without arguments, and return true. |
| 405 | |
| 406 | When invoked with a timeout other than None, it will block for at |
| 407 | most timeout seconds. If acquire does not complete successfully in |
| 408 | that interval, return false. Return true otherwise. |
| 409 | |
| 410 | """ |
Antoine Pitrou | 0454af9 | 2010-04-17 23:51:58 +0000 | [diff] [blame] | 411 | if not blocking and timeout is not None: |
| 412 | raise ValueError("can't specify timeout for non-blocking acquire") |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 413 | rc = False |
Antoine Pitrou | 0454af9 | 2010-04-17 23:51:58 +0000 | [diff] [blame] | 414 | endtime = None |
Serhiy Storchaka | 81a5855 | 2013-04-22 22:51:43 +0300 | [diff] [blame] | 415 | with self._cond: |
| 416 | while self._value == 0: |
| 417 | if not blocking: |
| 418 | break |
| 419 | if timeout is not None: |
| 420 | if endtime is None: |
| 421 | endtime = _time() + timeout |
| 422 | else: |
| 423 | timeout = endtime - _time() |
| 424 | if timeout <= 0: |
| 425 | break |
| 426 | self._cond.wait(timeout) |
| 427 | else: |
Serhiy Storchaka | b00b596 | 2013-04-22 22:54:16 +0300 | [diff] [blame] | 428 | self._value -= 1 |
Serhiy Storchaka | 81a5855 | 2013-04-22 22:51:43 +0300 | [diff] [blame] | 429 | rc = True |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 430 | return rc |
| 431 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 432 | __enter__ = acquire |
| 433 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 434 | def release(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 435 | """Release a semaphore, incrementing the internal counter by one. |
| 436 | |
| 437 | When the counter is zero on entry and another thread is waiting for it |
| 438 | to become larger than zero again, wake up that thread. |
| 439 | |
| 440 | """ |
Serhiy Storchaka | 81a5855 | 2013-04-22 22:51:43 +0300 | [diff] [blame] | 441 | with self._cond: |
Serhiy Storchaka | b00b596 | 2013-04-22 22:54:16 +0300 | [diff] [blame] | 442 | self._value += 1 |
Serhiy Storchaka | 81a5855 | 2013-04-22 22:51:43 +0300 | [diff] [blame] | 443 | self._cond.notify() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 444 | |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 445 | def __exit__(self, t, v, tb): |
| 446 | self.release() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 447 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 448 | |
Éric Araujo | 0cdd445 | 2011-07-28 00:28:28 +0200 | [diff] [blame] | 449 | class BoundedSemaphore(Semaphore): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 450 | """Implements a bounded semaphore. |
| 451 | |
| 452 | A bounded semaphore checks to make sure its current value doesn't exceed its |
| 453 | initial value. If it does, ValueError is raised. In most situations |
| 454 | semaphores are used to guard resources with limited capacity. |
| 455 | |
| 456 | If the semaphore is released too many times it's a sign of a bug. If not |
| 457 | given, value defaults to 1. |
| 458 | |
| 459 | Like regular semaphores, bounded semaphores manage a counter representing |
| 460 | the number of release() calls minus the number of acquire() calls, plus an |
| 461 | initial value. The acquire() method blocks if necessary until it can return |
| 462 | without making the counter negative. If not given, value defaults to 1. |
| 463 | |
| 464 | """ |
| 465 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 466 | def __init__(self, value=1): |
| 467 | Semaphore.__init__(self, value) |
Skip Montanaro | e428bb7 | 2001-08-20 20:27:58 +0000 | [diff] [blame] | 468 | self._initial_value = value |
| 469 | |
| 470 | def release(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 471 | """Release a semaphore, incrementing the internal counter by one. |
| 472 | |
| 473 | When the counter is zero on entry and another thread is waiting for it |
| 474 | to become larger than zero again, wake up that thread. |
| 475 | |
| 476 | If the number of releases exceeds the number of acquires, |
| 477 | raise a ValueError. |
| 478 | |
| 479 | """ |
Tim Peters | 7634e1c | 2013-10-08 20:55:51 -0500 | [diff] [blame] | 480 | with self._cond: |
| 481 | if self._value >= self._initial_value: |
| 482 | raise ValueError("Semaphore released too many times") |
| 483 | self._value += 1 |
| 484 | self._cond.notify() |
Skip Montanaro | e428bb7 | 2001-08-20 20:27:58 +0000 | [diff] [blame] | 485 | |
| 486 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 487 | class Event: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 488 | """Class implementing event objects. |
| 489 | |
| 490 | Events manage a flag that can be set to true with the set() method and reset |
| 491 | to false with the clear() method. The wait() method blocks until the flag is |
| 492 | true. The flag is initially false. |
| 493 | |
| 494 | """ |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 495 | |
| 496 | # After Tim Peters' event class (without is_posted()) |
| 497 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 498 | def __init__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 499 | self._cond = Condition(Lock()) |
| 500 | self._flag = False |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 501 | |
Gregory P. Smith | 9bd4a24 | 2011-01-04 18:33:38 +0000 | [diff] [blame] | 502 | def _reset_internal_locks(self): |
| 503 | # private! called by Thread._reset_internal_locks by _after_fork() |
| 504 | self._cond.__init__() |
| 505 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 506 | def is_set(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 507 | """Return true if and only if the internal flag is true.""" |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 508 | return self._flag |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 509 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 510 | isSet = is_set |
Benjamin Peterson | f0923f5 | 2008-08-18 22:10:13 +0000 | [diff] [blame] | 511 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 512 | def set(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 513 | """Set the internal flag to true. |
| 514 | |
| 515 | All threads waiting for it to become true are awakened. Threads |
| 516 | that call wait() once the flag is true will not block at all. |
| 517 | |
| 518 | """ |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 519 | self._cond.acquire() |
| 520 | try: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 521 | self._flag = True |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 522 | self._cond.notify_all() |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 523 | finally: |
| 524 | self._cond.release() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 525 | |
| 526 | def clear(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 527 | """Reset the internal flag to false. |
| 528 | |
| 529 | Subsequently, threads calling wait() will block until set() is called to |
| 530 | set the internal flag to true again. |
| 531 | |
| 532 | """ |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 533 | self._cond.acquire() |
| 534 | try: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 535 | self._flag = False |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 536 | finally: |
| 537 | self._cond.release() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 538 | |
| 539 | def wait(self, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 540 | """Block until the internal flag is true. |
| 541 | |
| 542 | If the internal flag is true on entry, return immediately. Otherwise, |
| 543 | block until another thread calls set() to set the flag to true, or until |
| 544 | the optional timeout occurs. |
| 545 | |
| 546 | When the timeout argument is present and not None, it should be a |
| 547 | floating point number specifying a timeout for the operation in seconds |
| 548 | (or fractions thereof). |
| 549 | |
| 550 | This method returns the internal flag on exit, so it will always return |
| 551 | True except if a timeout is given and the operation times out. |
| 552 | |
| 553 | """ |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 554 | self._cond.acquire() |
| 555 | try: |
Charles-François Natali | ded0348 | 2012-01-07 18:24:56 +0100 | [diff] [blame] | 556 | signaled = self._flag |
| 557 | if not signaled: |
| 558 | signaled = self._cond.wait(timeout) |
| 559 | return signaled |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 560 | finally: |
| 561 | self._cond.release() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 562 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 563 | |
| 564 | # A barrier class. Inspired in part by the pthread_barrier_* api and |
| 565 | # the CyclicBarrier class from Java. See |
| 566 | # http://sourceware.org/pthreads-win32/manual/pthread_barrier_init.html and |
| 567 | # http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ |
| 568 | # CyclicBarrier.html |
| 569 | # for information. |
| 570 | # We maintain two main states, 'filling' and 'draining' enabling the barrier |
| 571 | # to be cyclic. Threads are not allowed into it until it has fully drained |
| 572 | # since the previous cycle. In addition, a 'resetting' state exists which is |
| 573 | # similar to 'draining' except that threads leave with a BrokenBarrierError, |
Ezio Melotti | e130a52 | 2011-10-19 10:58:56 +0300 | [diff] [blame] | 574 | # and a 'broken' state in which all threads get the exception. |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 575 | class Barrier: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 576 | """Implements a Barrier. |
| 577 | |
| 578 | Useful for synchronizing a fixed number of threads at known synchronization |
| 579 | points. Threads block on 'wait()' and are simultaneously once they have all |
| 580 | made that call. |
| 581 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 582 | """ |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 583 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 584 | def __init__(self, parties, action=None, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 585 | """Create a barrier, initialised to 'parties' threads. |
| 586 | |
| 587 | 'action' is a callable which, when supplied, will be called by one of |
| 588 | the threads after they have all entered the barrier and just prior to |
| 589 | releasing them all. If a 'timeout' is provided, it is uses as the |
| 590 | default for all subsequent 'wait()' calls. |
| 591 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 592 | """ |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 593 | self._cond = Condition(Lock()) |
| 594 | self._action = action |
| 595 | self._timeout = timeout |
| 596 | self._parties = parties |
| 597 | self._state = 0 #0 filling, 1, draining, -1 resetting, -2 broken |
| 598 | self._count = 0 |
| 599 | |
| 600 | def wait(self, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 601 | """Wait for the barrier. |
| 602 | |
| 603 | When the specified number of threads have started waiting, they are all |
| 604 | simultaneously awoken. If an 'action' was provided for the barrier, one |
| 605 | of the threads will have executed that callback prior to returning. |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 606 | Returns an individual index number from 0 to 'parties-1'. |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 607 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 608 | """ |
| 609 | if timeout is None: |
| 610 | timeout = self._timeout |
| 611 | with self._cond: |
| 612 | self._enter() # Block while the barrier drains. |
| 613 | index = self._count |
| 614 | self._count += 1 |
| 615 | try: |
| 616 | if index + 1 == self._parties: |
| 617 | # We release the barrier |
| 618 | self._release() |
| 619 | else: |
| 620 | # We wait until someone releases us |
| 621 | self._wait(timeout) |
| 622 | return index |
| 623 | finally: |
| 624 | self._count -= 1 |
| 625 | # Wake up any threads waiting for barrier to drain. |
| 626 | self._exit() |
| 627 | |
| 628 | # Block until the barrier is ready for us, or raise an exception |
| 629 | # if it is broken. |
| 630 | def _enter(self): |
| 631 | while self._state in (-1, 1): |
| 632 | # It is draining or resetting, wait until done |
| 633 | self._cond.wait() |
| 634 | #see if the barrier is in a broken state |
| 635 | if self._state < 0: |
| 636 | raise BrokenBarrierError |
| 637 | assert self._state == 0 |
| 638 | |
| 639 | # Optionally run the 'action' and release the threads waiting |
| 640 | # in the barrier. |
| 641 | def _release(self): |
| 642 | try: |
| 643 | if self._action: |
| 644 | self._action() |
| 645 | # enter draining state |
| 646 | self._state = 1 |
| 647 | self._cond.notify_all() |
| 648 | except: |
| 649 | #an exception during the _action handler. Break and reraise |
| 650 | self._break() |
| 651 | raise |
| 652 | |
| 653 | # Wait in the barrier until we are relased. Raise an exception |
| 654 | # if the barrier is reset or broken. |
| 655 | def _wait(self, timeout): |
Kristján Valur Jónsson | 6331520 | 2010-11-18 12:46:39 +0000 | [diff] [blame] | 656 | if not self._cond.wait_for(lambda : self._state != 0, timeout): |
| 657 | #timed out. Break the barrier |
| 658 | self._break() |
| 659 | raise BrokenBarrierError |
| 660 | if self._state < 0: |
| 661 | raise BrokenBarrierError |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 662 | assert self._state == 1 |
| 663 | |
| 664 | # If we are the last thread to exit the barrier, signal any threads |
| 665 | # waiting for the barrier to drain. |
| 666 | def _exit(self): |
| 667 | if self._count == 0: |
| 668 | if self._state in (-1, 1): |
| 669 | #resetting or draining |
| 670 | self._state = 0 |
| 671 | self._cond.notify_all() |
| 672 | |
| 673 | def reset(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 674 | """Reset the barrier to the initial state. |
| 675 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 676 | Any threads currently waiting will get the BrokenBarrier exception |
| 677 | raised. |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 678 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 679 | """ |
| 680 | with self._cond: |
| 681 | if self._count > 0: |
| 682 | if self._state == 0: |
| 683 | #reset the barrier, waking up threads |
| 684 | self._state = -1 |
| 685 | elif self._state == -2: |
| 686 | #was broken, set it to reset state |
| 687 | #which clears when the last thread exits |
| 688 | self._state = -1 |
| 689 | else: |
| 690 | self._state = 0 |
| 691 | self._cond.notify_all() |
| 692 | |
| 693 | def abort(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 694 | """Place the barrier into a 'broken' state. |
| 695 | |
| 696 | Useful in case of error. Any currently waiting threads and threads |
| 697 | attempting to 'wait()' will have BrokenBarrierError raised. |
| 698 | |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 699 | """ |
| 700 | with self._cond: |
| 701 | self._break() |
| 702 | |
| 703 | def _break(self): |
| 704 | # An internal error was detected. The barrier is set to |
| 705 | # a broken state all parties awakened. |
| 706 | self._state = -2 |
| 707 | self._cond.notify_all() |
| 708 | |
| 709 | @property |
| 710 | def parties(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 711 | """Return the number of threads required to trip the barrier.""" |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 712 | return self._parties |
| 713 | |
| 714 | @property |
| 715 | def n_waiting(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 716 | """Return the number of threads currently waiting at the barrier.""" |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 717 | # We don't need synchronization here since this is an ephemeral result |
| 718 | # anyway. It returns the correct value in the steady state. |
| 719 | if self._state == 0: |
| 720 | return self._count |
| 721 | return 0 |
| 722 | |
| 723 | @property |
| 724 | def broken(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 725 | """Return True if the barrier is in a broken state.""" |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 726 | return self._state == -2 |
| 727 | |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 728 | # exception raised by the Barrier class |
| 729 | class BrokenBarrierError(RuntimeError): |
| 730 | pass |
Kristján Valur Jónsson | 3be0003 | 2010-10-28 09:43:10 +0000 | [diff] [blame] | 731 | |
| 732 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 733 | # Helper to generate new thread names |
| 734 | _counter = 0 |
| 735 | def _newname(template="Thread-%d"): |
| 736 | global _counter |
Raymond Hettinger | 720da57 | 2013-03-10 15:13:35 -0700 | [diff] [blame] | 737 | _counter += 1 |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 738 | return template % _counter |
| 739 | |
| 740 | # Active thread administration |
| 741 | _active_limbo_lock = _allocate_lock() |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 742 | _active = {} # maps thread id to Thread object |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 743 | _limbo = {} |
Antoine Pitrou | c081c0c | 2011-07-15 22:12:24 +0200 | [diff] [blame] | 744 | _dangling = WeakSet() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 745 | |
| 746 | # Main class for threads |
| 747 | |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 748 | class Thread: |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 749 | """A class that represents a thread of control. |
| 750 | |
| 751 | This class can be safely subclassed in a limited fashion. There are two ways |
| 752 | to specify the activity: by passing a callable object to the constructor, or |
| 753 | by overriding the run() method in a subclass. |
| 754 | |
| 755 | """ |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 756 | |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 757 | __initialized = False |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 758 | # Need to store a reference to sys.exc_info for printing |
| 759 | # out exceptions when a thread tries to use a global var. during interp. |
| 760 | # shutdown and thus raises an exception about trying to perform some |
| 761 | # operation on/with a NoneType |
| 762 | __exc_info = _sys.exc_info |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 763 | # Keep sys.exc_clear too to clear the exception just before |
| 764 | # allowing .join() to return. |
| 765 | #XXX __exc_clear = _sys.exc_clear |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 766 | |
| 767 | def __init__(self, group=None, target=None, name=None, |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 768 | args=(), kwargs=None, *, daemon=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 769 | """This constructor should always be called with keyword arguments. Arguments are: |
| 770 | |
| 771 | *group* should be None; reserved for future extension when a ThreadGroup |
| 772 | class is implemented. |
| 773 | |
| 774 | *target* is the callable object to be invoked by the run() |
| 775 | method. Defaults to None, meaning nothing is called. |
| 776 | |
| 777 | *name* is the thread name. By default, a unique name is constructed of |
| 778 | the form "Thread-N" where N is a small decimal number. |
| 779 | |
| 780 | *args* is the argument tuple for the target invocation. Defaults to (). |
| 781 | |
| 782 | *kwargs* is a dictionary of keyword arguments for the target |
| 783 | invocation. Defaults to {}. |
| 784 | |
| 785 | If a subclass overrides the constructor, it must make sure to invoke |
| 786 | the base class constructor (Thread.__init__()) before doing anything |
| 787 | else to the thread. |
| 788 | |
| 789 | """ |
Guido van Rossum | 5a43e1a | 1998-06-09 19:04:26 +0000 | [diff] [blame] | 790 | assert group is None, "group argument must be None for now" |
Georg Brandl | a4a8b82 | 2005-07-15 09:13:21 +0000 | [diff] [blame] | 791 | if kwargs is None: |
| 792 | kwargs = {} |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 793 | self._target = target |
| 794 | self._name = str(name or _newname()) |
| 795 | self._args = args |
| 796 | self._kwargs = kwargs |
Antoine Pitrou | 0bd4deb | 2011-02-25 22:07:43 +0000 | [diff] [blame] | 797 | if daemon is not None: |
| 798 | self._daemonic = daemon |
| 799 | else: |
| 800 | self._daemonic = current_thread().daemon |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 801 | self._ident = None |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 802 | self._tstate_lock = None |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 803 | self._started = Event() |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 804 | self._is_stopped = False |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 805 | self._initialized = True |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 806 | # sys.stderr is not stored in the class like |
| 807 | # sys.exc_info since it can be changed between instances |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 808 | self._stderr = _sys.stderr |
Antoine Pitrou | 5da7e79 | 2013-09-08 13:19:06 +0200 | [diff] [blame] | 809 | # For debugging and _after_fork() |
Antoine Pitrou | c081c0c | 2011-07-15 22:12:24 +0200 | [diff] [blame] | 810 | _dangling.add(self) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 811 | |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 812 | def _reset_internal_locks(self, is_alive): |
Gregory P. Smith | 9bd4a24 | 2011-01-04 18:33:38 +0000 | [diff] [blame] | 813 | # private! Called by _after_fork() to reset our internal locks as |
| 814 | # they may be in an invalid state leading to a deadlock or crash. |
Gregory P. Smith | 9bd4a24 | 2011-01-04 18:33:38 +0000 | [diff] [blame] | 815 | self._started._reset_internal_locks() |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 816 | if is_alive: |
| 817 | self._set_tstate_lock() |
| 818 | else: |
| 819 | # The thread isn't alive after fork: it doesn't have a tstate |
| 820 | # anymore. |
Tim Peters | b5e9ac9 | 2013-09-09 14:41:50 -0500 | [diff] [blame] | 821 | self._is_stopped = True |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 822 | self._tstate_lock = None |
Gregory P. Smith | 9bd4a24 | 2011-01-04 18:33:38 +0000 | [diff] [blame] | 823 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 824 | def __repr__(self): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 825 | assert self._initialized, "Thread.__init__() was not called" |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 826 | status = "initial" |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 827 | if self._started.is_set(): |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 828 | status = "started" |
Tim Peters | 72460fa | 2013-09-09 18:48:24 -0500 | [diff] [blame] | 829 | self.is_alive() # easy way to get ._is_stopped set when appropriate |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 830 | if self._is_stopped: |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 831 | status = "stopped" |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 832 | if self._daemonic: |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 833 | status += " daemon" |
| 834 | if self._ident is not None: |
| 835 | status += " %s" % self._ident |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 836 | return "<%s(%s, %s)>" % (self.__class__.__name__, self._name, status) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 837 | |
| 838 | def start(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 839 | """Start the thread's activity. |
| 840 | |
| 841 | It must be called at most once per thread object. It arranges for the |
| 842 | object's run() method to be invoked in a separate thread of control. |
| 843 | |
| 844 | This method will raise a RuntimeError if called more than once on the |
| 845 | same thread object. |
| 846 | |
| 847 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 848 | if not self._initialized: |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 849 | raise RuntimeError("thread.__init__() not called") |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 850 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 851 | if self._started.is_set(): |
Senthil Kumaran | fdd4d0f | 2010-04-06 03:30:18 +0000 | [diff] [blame] | 852 | raise RuntimeError("threads can only be started once") |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 853 | with _active_limbo_lock: |
| 854 | _limbo[self] = self |
Gregory P. Smith | 3fdd964 | 2010-02-28 18:57:46 +0000 | [diff] [blame] | 855 | try: |
| 856 | _start_new_thread(self._bootstrap, ()) |
| 857 | except Exception: |
| 858 | with _active_limbo_lock: |
| 859 | del _limbo[self] |
| 860 | raise |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 861 | self._started.wait() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 862 | |
| 863 | def run(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 864 | """Method representing the thread's activity. |
| 865 | |
| 866 | You may override this method in a subclass. The standard run() method |
| 867 | invokes the callable object passed to the object's constructor as the |
| 868 | target argument, if any, with sequential and keyword arguments taken |
| 869 | from the args and kwargs arguments, respectively. |
| 870 | |
| 871 | """ |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 872 | try: |
| 873 | if self._target: |
| 874 | self._target(*self._args, **self._kwargs) |
| 875 | finally: |
| 876 | # Avoid a refcycle if the thread is running a function with |
| 877 | # an argument that has a member that points to the thread. |
| 878 | del self._target, self._args, self._kwargs |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 879 | |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 880 | def _bootstrap(self): |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 881 | # Wrapper around the real bootstrap code that ignores |
| 882 | # exceptions during interpreter cleanup. Those typically |
| 883 | # happen when a daemon thread wakes up at an unfortunate |
| 884 | # moment, finds the world around it destroyed, and raises some |
| 885 | # random exception *** while trying to report the exception in |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 886 | # _bootstrap_inner() below ***. Those random exceptions |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 887 | # don't help anybody, and they confuse users, so we suppress |
| 888 | # them. We suppress them only when it appears that the world |
| 889 | # indeed has already been destroyed, so that exceptions in |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 890 | # _bootstrap_inner() during normal business hours are properly |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 891 | # reported. Also, we only suppress them for daemonic threads; |
| 892 | # if a non-daemonic encounters this, something else is wrong. |
| 893 | try: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 894 | self._bootstrap_inner() |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 895 | except: |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 896 | if self._daemonic and _sys is None: |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 897 | return |
| 898 | raise |
| 899 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 900 | def _set_ident(self): |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 901 | self._ident = get_ident() |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 902 | |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 903 | def _set_tstate_lock(self): |
| 904 | """ |
| 905 | Set a lock object which will be released by the interpreter when |
| 906 | the underlying thread state (see pystate.h) gets deleted. |
| 907 | """ |
| 908 | self._tstate_lock = _set_sentinel() |
| 909 | self._tstate_lock.acquire() |
| 910 | |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 911 | def _bootstrap_inner(self): |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 912 | try: |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 913 | self._set_ident() |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 914 | self._set_tstate_lock() |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 915 | self._started.set() |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 916 | with _active_limbo_lock: |
| 917 | _active[self._ident] = self |
| 918 | del _limbo[self] |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 919 | |
| 920 | if _trace_hook: |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 921 | _sys.settrace(_trace_hook) |
| 922 | if _profile_hook: |
Jeremy Hylton | bfccb35 | 2003-06-29 16:58:41 +0000 | [diff] [blame] | 923 | _sys.setprofile(_profile_hook) |
Tim Peters | d1b108b | 2003-06-29 17:24:17 +0000 | [diff] [blame] | 924 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 925 | try: |
| 926 | self.run() |
| 927 | except SystemExit: |
Victor Stinner | 135b6d8 | 2012-03-03 01:32:57 +0100 | [diff] [blame] | 928 | pass |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 929 | except: |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 930 | # If sys.stderr is no more (most likely from interpreter |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 931 | # shutdown) use self._stderr. Otherwise still use sys (as in |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 932 | # _sys) in case sys.stderr was redefined since the creation of |
| 933 | # self. |
| 934 | if _sys: |
| 935 | _sys.stderr.write("Exception in thread %s:\n%s\n" % |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 936 | (self.name, _format_exc())) |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 937 | else: |
| 938 | # Do the best job possible w/o a huge amt. of code to |
| 939 | # approximate a traceback (code ideas from |
| 940 | # Lib/traceback.py) |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 941 | exc_type, exc_value, exc_tb = self._exc_info() |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 942 | try: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 943 | print(( |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 944 | "Exception in thread " + self.name + |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 945 | " (most likely raised during interpreter shutdown):"), file=self._stderr) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 946 | print(( |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 947 | "Traceback (most recent call last):"), file=self._stderr) |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 948 | while exc_tb: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 949 | print(( |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 950 | ' File "%s", line %s, in %s' % |
| 951 | (exc_tb.tb_frame.f_code.co_filename, |
| 952 | exc_tb.tb_lineno, |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 953 | exc_tb.tb_frame.f_code.co_name)), file=self._stderr) |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 954 | exc_tb = exc_tb.tb_next |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 955 | print(("%s: %s" % (exc_type, exc_value)), file=self._stderr) |
Brett Cannon | cc4e935 | 2004-07-03 03:52:35 +0000 | [diff] [blame] | 956 | # Make sure that exc_tb gets deleted since it is a memory |
| 957 | # hog; deleting everything else is just for thoroughness |
| 958 | finally: |
| 959 | del exc_type, exc_value, exc_tb |
Christian Heimes | bbe741d | 2008-03-28 10:53:29 +0000 | [diff] [blame] | 960 | finally: |
| 961 | # Prevent a race in |
| 962 | # test_threading.test_no_refcycle_through_target when |
| 963 | # the exception keeps the target alive past when we |
| 964 | # assert that it's dead. |
| 965 | #XXX self.__exc_clear() |
| 966 | pass |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 967 | finally: |
Christian Heimes | 1af737c | 2008-01-23 08:24:23 +0000 | [diff] [blame] | 968 | with _active_limbo_lock: |
Christian Heimes | 1af737c | 2008-01-23 08:24:23 +0000 | [diff] [blame] | 969 | try: |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 970 | # We don't call self._delete() because it also |
Christian Heimes | 1af737c | 2008-01-23 08:24:23 +0000 | [diff] [blame] | 971 | # grabs _active_limbo_lock. |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 972 | del _active[get_ident()] |
Christian Heimes | 1af737c | 2008-01-23 08:24:23 +0000 | [diff] [blame] | 973 | except: |
| 974 | pass |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 975 | |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 976 | def _stop(self): |
Tim Peters | b5e9ac9 | 2013-09-09 14:41:50 -0500 | [diff] [blame] | 977 | # After calling ._stop(), .is_alive() returns False and .join() returns |
| 978 | # immediately. ._tstate_lock must be released before calling ._stop(). |
| 979 | # |
| 980 | # Normal case: C code at the end of the thread's life |
| 981 | # (release_sentinel in _threadmodule.c) releases ._tstate_lock, and |
| 982 | # that's detected by our ._wait_for_tstate_lock(), called by .join() |
| 983 | # and .is_alive(). Any number of threads _may_ call ._stop() |
| 984 | # simultaneously (for example, if multiple threads are blocked in |
| 985 | # .join() calls), and they're not serialized. That's harmless - |
| 986 | # they'll just make redundant rebindings of ._is_stopped and |
| 987 | # ._tstate_lock. Obscure: we rebind ._tstate_lock last so that the |
| 988 | # "assert self._is_stopped" in ._wait_for_tstate_lock() always works |
| 989 | # (the assert is executed only if ._tstate_lock is None). |
| 990 | # |
| 991 | # Special case: _main_thread releases ._tstate_lock via this |
| 992 | # module's _shutdown() function. |
| 993 | lock = self._tstate_lock |
| 994 | if lock is not None: |
| 995 | assert not lock.locked() |
Tim Peters | 7875523 | 2013-09-09 13:47:16 -0500 | [diff] [blame] | 996 | self._is_stopped = True |
| 997 | self._tstate_lock = None |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 998 | |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 999 | def _delete(self): |
Tim Peters | 2142993 | 2004-07-21 03:36:52 +0000 | [diff] [blame] | 1000 | "Remove current thread from the dict of currently running threads." |
Brett Cannon | 8b3d92a | 2004-07-21 02:21:58 +0000 | [diff] [blame] | 1001 | |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1002 | # Notes about running with _dummy_thread: |
Tim Peters | 2142993 | 2004-07-21 03:36:52 +0000 | [diff] [blame] | 1003 | # |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1004 | # Must take care to not raise an exception if _dummy_thread is being |
Tim Peters | 2142993 | 2004-07-21 03:36:52 +0000 | [diff] [blame] | 1005 | # used (and thus this module is being used as an instance of |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1006 | # dummy_threading). _dummy_thread.get_ident() always returns -1 since |
| 1007 | # there is only one thread if _dummy_thread is being used. Thus |
Tim Peters | 2142993 | 2004-07-21 03:36:52 +0000 | [diff] [blame] | 1008 | # len(_active) is always <= 1 here, and any Thread instance created |
| 1009 | # overwrites the (if any) thread currently registered in _active. |
| 1010 | # |
| 1011 | # An instance of _MainThread is always created by 'threading'. This |
| 1012 | # gets overwritten the instant an instance of Thread is created; both |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1013 | # threads return -1 from _dummy_thread.get_ident() and thus have the |
Tim Peters | 2142993 | 2004-07-21 03:36:52 +0000 | [diff] [blame] | 1014 | # same key in the dict. So when the _MainThread instance created by |
| 1015 | # 'threading' tries to clean itself up when atexit calls this method |
| 1016 | # it gets a KeyError if another Thread instance was created. |
| 1017 | # |
| 1018 | # This all means that KeyError from trying to delete something from |
| 1019 | # _active if dummy_threading is being used is a red herring. But |
| 1020 | # since it isn't if dummy_threading is *not* being used then don't |
| 1021 | # hide the exception. |
Brett Cannon | 8b3d92a | 2004-07-21 02:21:58 +0000 | [diff] [blame] | 1022 | |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 1023 | try: |
Neal Norwitz | f5c7c2e | 2008-04-05 04:47:45 +0000 | [diff] [blame] | 1024 | with _active_limbo_lock: |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 1025 | del _active[get_ident()] |
Neal Norwitz | f5c7c2e | 2008-04-05 04:47:45 +0000 | [diff] [blame] | 1026 | # There must not be any python code between the previous line |
| 1027 | # and after the lock is released. Otherwise a tracing function |
| 1028 | # could try to acquire the lock again in the same thread, (in |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1029 | # current_thread()), and would block. |
Neal Norwitz | f5c7c2e | 2008-04-05 04:47:45 +0000 | [diff] [blame] | 1030 | except KeyError: |
| 1031 | if 'dummy_threading' not in _sys.modules: |
| 1032 | raise |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1033 | |
| 1034 | def join(self, timeout=None): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1035 | """Wait until the thread terminates. |
| 1036 | |
| 1037 | This blocks the calling thread until the thread whose join() method is |
| 1038 | called terminates -- either normally or through an unhandled exception |
| 1039 | or until the optional timeout occurs. |
| 1040 | |
| 1041 | When the timeout argument is present and not None, it should be a |
| 1042 | floating point number specifying a timeout for the operation in seconds |
| 1043 | (or fractions thereof). As join() always returns None, you must call |
| 1044 | isAlive() after join() to decide whether a timeout happened -- if the |
| 1045 | thread is still alive, the join() call timed out. |
| 1046 | |
| 1047 | When the timeout argument is not present or None, the operation will |
| 1048 | block until the thread terminates. |
| 1049 | |
| 1050 | A thread can be join()ed many times. |
| 1051 | |
| 1052 | join() raises a RuntimeError if an attempt is made to join the current |
| 1053 | thread as that would cause a deadlock. It is also an error to join() a |
| 1054 | thread before it has been started and attempts to do so raises the same |
| 1055 | exception. |
| 1056 | |
| 1057 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1058 | if not self._initialized: |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1059 | raise RuntimeError("Thread.__init__() not called") |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1060 | if not self._started.is_set(): |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1061 | raise RuntimeError("cannot join thread before it is started") |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1062 | if self is current_thread(): |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1063 | raise RuntimeError("cannot join current thread") |
Tim Peters | e5bb0bf | 2013-10-25 20:46:51 -0500 | [diff] [blame] | 1064 | |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1065 | if timeout is None: |
| 1066 | self._wait_for_tstate_lock() |
Tim Peters | 7bad39f | 2013-10-25 22:33:52 -0500 | [diff] [blame] | 1067 | else: |
| 1068 | # the behavior of a negative timeout isn't documented, but |
Tim Peters | a577f1e | 2013-10-26 11:56:16 -0500 | [diff] [blame] | 1069 | # historically .join(timeout=x) for x<0 has acted as if timeout=0 |
Tim Peters | 7bad39f | 2013-10-25 22:33:52 -0500 | [diff] [blame] | 1070 | self._wait_for_tstate_lock(timeout=max(timeout, 0)) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1071 | |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1072 | def _wait_for_tstate_lock(self, block=True, timeout=-1): |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1073 | # Issue #18808: wait for the thread state to be gone. |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1074 | # At the end of the thread's life, after all knowledge of the thread |
| 1075 | # is removed from C data structures, C code releases our _tstate_lock. |
| 1076 | # This method passes its arguments to _tstate_lock.aquire(). |
| 1077 | # If the lock is acquired, the C code is done, and self._stop() is |
| 1078 | # called. That sets ._is_stopped to True, and ._tstate_lock to None. |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1079 | lock = self._tstate_lock |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1080 | if lock is None: # already determined that the C code is done |
| 1081 | assert self._is_stopped |
| 1082 | elif lock.acquire(block, timeout): |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1083 | lock.release() |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1084 | self._stop() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1085 | |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 1086 | @property |
| 1087 | def name(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1088 | """A string used for identification purposes only. |
| 1089 | |
| 1090 | It has no semantics. Multiple threads may be given the same name. The |
| 1091 | initial name is set by the constructor. |
| 1092 | |
| 1093 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1094 | assert self._initialized, "Thread.__init__() not called" |
| 1095 | return self._name |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1096 | |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 1097 | @name.setter |
| 1098 | def name(self, name): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1099 | assert self._initialized, "Thread.__init__() not called" |
| 1100 | self._name = str(name) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1101 | |
Benjamin Peterson | 773c17b | 2008-08-18 16:45:31 +0000 | [diff] [blame] | 1102 | @property |
| 1103 | def ident(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1104 | """Thread identifier of this thread or None if it has not been started. |
| 1105 | |
| 1106 | This is a nonzero integer. See the thread.get_ident() function. Thread |
| 1107 | identifiers may be recycled when a thread exits and another thread is |
| 1108 | created. The identifier is available even after the thread has exited. |
| 1109 | |
| 1110 | """ |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 1111 | assert self._initialized, "Thread.__init__() not called" |
| 1112 | return self._ident |
| 1113 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1114 | def is_alive(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1115 | """Return whether the thread is alive. |
| 1116 | |
| 1117 | This method returns True just before the run() method starts until just |
| 1118 | after the run() method terminates. The module function enumerate() |
| 1119 | returns a list of all alive threads. |
| 1120 | |
| 1121 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1122 | assert self._initialized, "Thread.__init__() not called" |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1123 | if self._is_stopped or not self._started.is_set(): |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1124 | return False |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1125 | self._wait_for_tstate_lock(False) |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1126 | return not self._is_stopped |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 1127 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 1128 | isAlive = is_alive |
Benjamin Peterson | f0923f5 | 2008-08-18 22:10:13 +0000 | [diff] [blame] | 1129 | |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 1130 | @property |
| 1131 | def daemon(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1132 | """A boolean value indicating whether this thread is a daemon thread. |
| 1133 | |
| 1134 | This must be set before start() is called, otherwise RuntimeError is |
| 1135 | raised. Its initial value is inherited from the creating thread; the |
| 1136 | main thread is not a daemon thread and therefore all threads created in |
| 1137 | the main thread default to daemon = False. |
| 1138 | |
| 1139 | The entire Python program exits when no alive non-daemon threads are |
| 1140 | left. |
| 1141 | |
| 1142 | """ |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1143 | assert self._initialized, "Thread.__init__() not called" |
| 1144 | return self._daemonic |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1145 | |
Benjamin Peterson | fdbea96 | 2008-08-18 17:33:47 +0000 | [diff] [blame] | 1146 | @daemon.setter |
| 1147 | def daemon(self, daemonic): |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1148 | if not self._initialized: |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1149 | raise RuntimeError("Thread.__init__() not called") |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1150 | if self._started.is_set(): |
Antoine Pitrou | 1095907 | 2014-03-17 18:22:41 +0100 | [diff] [blame] | 1151 | raise RuntimeError("cannot set daemon status of active thread") |
Guido van Rossum | d064899 | 2007-08-20 19:25:41 +0000 | [diff] [blame] | 1152 | self._daemonic = daemonic |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1153 | |
Benjamin Peterson | 6640d72 | 2008-08-18 18:16:46 +0000 | [diff] [blame] | 1154 | def isDaemon(self): |
| 1155 | return self.daemon |
| 1156 | |
| 1157 | def setDaemon(self, daemonic): |
| 1158 | self.daemon = daemonic |
| 1159 | |
| 1160 | def getName(self): |
| 1161 | return self.name |
| 1162 | |
| 1163 | def setName(self, name): |
| 1164 | self.name = name |
| 1165 | |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1166 | # The timer class was contributed by Itamar Shtull-Trauring |
| 1167 | |
Éric Araujo | 0cdd445 | 2011-07-28 00:28:28 +0200 | [diff] [blame] | 1168 | class Timer(Thread): |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1169 | """Call a function after a specified number of seconds: |
Tim Peters | b64bec3 | 2001-09-18 02:26:39 +0000 | [diff] [blame] | 1170 | |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1171 | t = Timer(30.0, f, args=None, kwargs=None) |
| 1172 | t.start() |
| 1173 | t.cancel() # stop the timer's action if it's still waiting |
| 1174 | |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1175 | """ |
Tim Peters | b64bec3 | 2001-09-18 02:26:39 +0000 | [diff] [blame] | 1176 | |
R David Murray | 19aeb43 | 2013-03-30 17:19:38 -0400 | [diff] [blame] | 1177 | def __init__(self, interval, function, args=None, kwargs=None): |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1178 | Thread.__init__(self) |
| 1179 | self.interval = interval |
| 1180 | self.function = function |
R David Murray | 19aeb43 | 2013-03-30 17:19:38 -0400 | [diff] [blame] | 1181 | self.args = args if args is not None else [] |
| 1182 | self.kwargs = kwargs if kwargs is not None else {} |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1183 | self.finished = Event() |
Tim Peters | b64bec3 | 2001-09-18 02:26:39 +0000 | [diff] [blame] | 1184 | |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1185 | def cancel(self): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1186 | """Stop the timer if it hasn't finished yet.""" |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1187 | self.finished.set() |
Tim Peters | b64bec3 | 2001-09-18 02:26:39 +0000 | [diff] [blame] | 1188 | |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1189 | def run(self): |
| 1190 | self.finished.wait(self.interval) |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1191 | if not self.finished.is_set(): |
Martin v. Löwis | 44f8696 | 2001-09-05 13:44:54 +0000 | [diff] [blame] | 1192 | self.function(*self.args, **self.kwargs) |
| 1193 | self.finished.set() |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1194 | |
| 1195 | # Special thread class to represent the main thread |
| 1196 | # This is garbage collected through an exit handler |
| 1197 | |
| 1198 | class _MainThread(Thread): |
| 1199 | |
| 1200 | def __init__(self): |
Antoine Pitrou | 0bd4deb | 2011-02-25 22:07:43 +0000 | [diff] [blame] | 1201 | Thread.__init__(self, name="MainThread", daemon=False) |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1202 | self._set_tstate_lock() |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 1203 | self._started.set() |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 1204 | self._set_ident() |
| 1205 | with _active_limbo_lock: |
| 1206 | _active[self._ident] = self |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1207 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1208 | |
| 1209 | # Dummy thread class to represent threads not started here. |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 1210 | # These aren't garbage collected when they die, nor can they be waited for. |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1211 | # If they invoke anything in threading.py that calls current_thread(), they |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 1212 | # leave an entry in the _active dict forever after. |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1213 | # Their purpose is to return *something* from current_thread(). |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1214 | # They are marked as daemon threads so we won't wait for them |
| 1215 | # when we exit (conform previous semantics). |
| 1216 | |
| 1217 | class _DummyThread(Thread): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 1218 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1219 | def __init__(self): |
Antoine Pitrou | 0bd4deb | 2011-02-25 22:07:43 +0000 | [diff] [blame] | 1220 | Thread.__init__(self, name=_newname("Dummy-%d"), daemon=True) |
Tim Peters | 711906e | 2005-01-08 07:30:42 +0000 | [diff] [blame] | 1221 | |
Christian Heimes | 9e7f1d2 | 2008-02-28 12:27:11 +0000 | [diff] [blame] | 1222 | self._started.set() |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 1223 | self._set_ident() |
| 1224 | with _active_limbo_lock: |
| 1225 | _active[self._ident] = self |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1226 | |
Antoine Pitrou | 8e6e0fd | 2012-04-19 23:55:01 +0200 | [diff] [blame] | 1227 | def _stop(self): |
| 1228 | pass |
| 1229 | |
Neal Norwitz | 45bec8c | 2002-02-19 03:01:36 +0000 | [diff] [blame] | 1230 | def join(self, timeout=None): |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 1231 | assert False, "cannot join a dummy thread" |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1232 | |
| 1233 | |
| 1234 | # Global API functions |
| 1235 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1236 | def current_thread(): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1237 | """Return the current Thread object, corresponding to the caller's thread of control. |
| 1238 | |
| 1239 | If the caller's thread of control was not created through the threading |
| 1240 | module, a dummy thread object with limited functionality is returned. |
| 1241 | |
| 1242 | """ |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1243 | try: |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 1244 | return _active[get_ident()] |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1245 | except KeyError: |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1246 | return _DummyThread() |
| 1247 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 1248 | currentThread = current_thread |
Benjamin Peterson | f0923f5 | 2008-08-18 22:10:13 +0000 | [diff] [blame] | 1249 | |
Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 1250 | def active_count(): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1251 | """Return the number of Thread objects currently alive. |
| 1252 | |
| 1253 | The returned count is equal to the length of the list returned by |
| 1254 | enumerate(). |
| 1255 | |
| 1256 | """ |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 1257 | with _active_limbo_lock: |
| 1258 | return len(_active) + len(_limbo) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1259 | |
Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 1260 | activeCount = active_count |
Benjamin Peterson | f0923f5 | 2008-08-18 22:10:13 +0000 | [diff] [blame] | 1261 | |
Antoine Pitrou | bdec11f | 2009-11-05 13:49:14 +0000 | [diff] [blame] | 1262 | def _enumerate(): |
| 1263 | # Same as enumerate(), but without the lock. Internal use only. |
| 1264 | return list(_active.values()) + list(_limbo.values()) |
| 1265 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1266 | def enumerate(): |
Georg Brandl | c30b59f | 2013-10-13 10:43:59 +0200 | [diff] [blame] | 1267 | """Return a list of all Thread objects currently alive. |
| 1268 | |
| 1269 | The list includes daemonic threads, dummy thread objects created by |
| 1270 | current_thread(), and the main thread. It excludes terminated threads and |
| 1271 | threads that have not yet been started. |
| 1272 | |
| 1273 | """ |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 1274 | with _active_limbo_lock: |
| 1275 | return list(_active.values()) + list(_limbo.values()) |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1276 | |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1277 | from _thread import stack_size |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1278 | |
Thomas Wouters | 902d6eb | 2007-01-09 23:18:33 +0000 | [diff] [blame] | 1279 | # Create the main thread object, |
| 1280 | # and make it available for the interpreter |
| 1281 | # (Py_Main) as threading._shutdown. |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1282 | |
Andrew Svetlov | 58b5c5a | 2013-09-04 07:01:07 +0300 | [diff] [blame] | 1283 | _main_thread = _MainThread() |
| 1284 | |
| 1285 | def _shutdown(): |
Tim Peters | c363a23 | 2013-09-08 18:44:40 -0500 | [diff] [blame] | 1286 | # Obscure: other threads may be waiting to join _main_thread. That's |
| 1287 | # dubious, but some code does it. We can't wait for C code to release |
| 1288 | # the main thread's tstate_lock - that won't happen until the interpreter |
| 1289 | # is nearly dead. So we release it here. Note that just calling _stop() |
| 1290 | # isn't enough: other threads may already be waiting on _tstate_lock. |
Tim Peters | b5e9ac9 | 2013-09-09 14:41:50 -0500 | [diff] [blame] | 1291 | tlock = _main_thread._tstate_lock |
| 1292 | # The main thread isn't finished yet, so its thread state lock can't have |
| 1293 | # been released. |
| 1294 | assert tlock is not None |
| 1295 | assert tlock.locked() |
| 1296 | tlock.release() |
Andrew Svetlov | 58b5c5a | 2013-09-04 07:01:07 +0300 | [diff] [blame] | 1297 | _main_thread._stop() |
| 1298 | t = _pickSomeNonDaemonThread() |
| 1299 | while t: |
| 1300 | t.join() |
| 1301 | t = _pickSomeNonDaemonThread() |
| 1302 | _main_thread._delete() |
| 1303 | |
| 1304 | def _pickSomeNonDaemonThread(): |
| 1305 | for t in enumerate(): |
| 1306 | if not t.daemon and t.is_alive(): |
| 1307 | return t |
| 1308 | return None |
| 1309 | |
| 1310 | def main_thread(): |
Andrew Svetlov | b1dd557 | 2013-09-04 10:33:11 +0300 | [diff] [blame] | 1311 | """Return the main thread object. |
| 1312 | |
| 1313 | In normal conditions, the main thread is the thread from which the |
| 1314 | Python interpreter was started. |
| 1315 | """ |
Andrew Svetlov | 58b5c5a | 2013-09-04 07:01:07 +0300 | [diff] [blame] | 1316 | return _main_thread |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1317 | |
Jim Fulton | d15dc06 | 2004-07-14 19:11:50 +0000 | [diff] [blame] | 1318 | # get thread-local implementation, either from the thread |
| 1319 | # module, or from the python fallback |
| 1320 | |
| 1321 | try: |
Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 1322 | from _thread import _local as local |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 1323 | except ImportError: |
Jim Fulton | d15dc06 | 2004-07-14 19:11:50 +0000 | [diff] [blame] | 1324 | from _threading_local import local |
| 1325 | |
Guido van Rossum | 7f5013a | 1998-04-09 22:01:42 +0000 | [diff] [blame] | 1326 | |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1327 | def _after_fork(): |
| 1328 | # This function is called by Python/ceval.c:PyEval_ReInitThreads which |
| 1329 | # is called from PyOS_AfterFork. Here we cleanup threading module state |
| 1330 | # that should not exist after a fork. |
| 1331 | |
| 1332 | # Reset _active_limbo_lock, in case we forked while the lock was held |
| 1333 | # by another (non-forked) thread. http://bugs.python.org/issue874900 |
Andrew Svetlov | 58b5c5a | 2013-09-04 07:01:07 +0300 | [diff] [blame] | 1334 | global _active_limbo_lock, _main_thread |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1335 | _active_limbo_lock = _allocate_lock() |
| 1336 | |
| 1337 | # fork() only copied the current thread; clear references to others. |
| 1338 | new_active = {} |
| 1339 | current = current_thread() |
Andrew Svetlov | 58b5c5a | 2013-09-04 07:01:07 +0300 | [diff] [blame] | 1340 | _main_thread = current |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1341 | with _active_limbo_lock: |
Antoine Pitrou | 5da7e79 | 2013-09-08 13:19:06 +0200 | [diff] [blame] | 1342 | # Dangling thread instances must still have their locks reset, |
| 1343 | # because someone may join() them. |
| 1344 | threads = set(_enumerate()) |
| 1345 | threads.update(_dangling) |
| 1346 | for thread in threads: |
Charles-François Natali | b055bf6 | 2011-12-18 18:45:16 +0100 | [diff] [blame] | 1347 | # Any lock/condition variable may be currently locked or in an |
| 1348 | # invalid state, so we reinitialize them. |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1349 | if thread is current: |
Antoine Pitrou | 5fe291f | 2008-09-06 23:00:03 +0000 | [diff] [blame] | 1350 | # There is only one active thread. We reset the ident to |
| 1351 | # its new value since it can have changed. |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1352 | thread._reset_internal_locks(True) |
Victor Stinner | 2a12974 | 2011-05-30 23:02:52 +0200 | [diff] [blame] | 1353 | ident = get_ident() |
Antoine Pitrou | 5fe291f | 2008-09-06 23:00:03 +0000 | [diff] [blame] | 1354 | thread._ident = ident |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1355 | new_active[ident] = thread |
| 1356 | else: |
| 1357 | # All the others are already stopped. |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 1358 | thread._reset_internal_locks(False) |
Charles-François Natali | b055bf6 | 2011-12-18 18:45:16 +0100 | [diff] [blame] | 1359 | thread._stop() |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 1360 | |
| 1361 | _limbo.clear() |
| 1362 | _active.clear() |
| 1363 | _active.update(new_active) |
| 1364 | assert len(_active) == 1 |