blob: b4d07fed250d11156629e52dc0e9494b9a6c72ea [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
Fred Drakea8725952002-12-30 23:32:50 +00006from time import time as _time, sleep as _sleep
Neil Schemenauerf607fc52003-11-05 23:03:00 +00007from traceback import format_exc as _format_exc
Raymond Hettinger756b3f32004-01-29 06:37:52 +00008from collections import deque
Guido van Rossum7f5013a1998-04-09 22:01:42 +00009
Benjamin Petersonb3085c92008-09-01 23:09:31 +000010# Note regarding PEP 8 compliant names
11# This threading model was originally inspired by Java, and inherited
12# the convention of camelCase function and method names from that
13# language. Those originaly names are not in any imminent danger of
14# being deprecated (even for Py3k),so this module provides them as an
15# alias for the PEP 8 compliant names
16# Note that using the new PEP 8 compliant names facilitates substitution
17# with the multiprocessing module, which doesn't provide the old
18# Java inspired names.
19
20
Guido van Rossum7f5013a1998-04-09 22:01:42 +000021# Rename some stuff so "from threading import *" is safe
Benjamin Peterson672b8032008-06-11 19:14:14 +000022__all__ = ['active_count', 'Condition', 'current_thread', 'enumerate', 'Event',
Tim Peters685e6972003-06-29 16:50:06 +000023 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
Thomas Wouters0e3f5912006-08-11 14:57:12 +000024 'Timer', 'setprofile', 'settrace', 'local', 'stack_size']
Guido van Rossum7f5013a1998-04-09 22:01:42 +000025
Georg Brandl2067bfd2008-05-25 13:05:15 +000026_start_new_thread = _thread.start_new_thread
27_allocate_lock = _thread.allocate_lock
28_get_ident = _thread.get_ident
29ThreadError = _thread.error
Antoine Pitrou434736a2009-11-10 18:46:01 +000030try:
31 _CRLock = _thread.RLock
32except AttributeError:
33 _CRLock = None
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000034TIMEOUT_MAX = _thread.TIMEOUT_MAX
Georg Brandl2067bfd2008-05-25 13:05:15 +000035del _thread
Guido van Rossum7f5013a1998-04-09 22:01:42 +000036
Guido van Rossum7f5013a1998-04-09 22:01:42 +000037
Tim Peters59aba122003-07-01 20:01:55 +000038# Debug support (adapted from ihooks.py).
39# All the major classes here derive from _Verbose. We force that to
40# be a new-style class so that all the major classes here are new-style.
41# This helps debugging (type(instance) is more revealing for instances
42# of new-style classes).
Guido van Rossum7f5013a1998-04-09 22:01:42 +000043
Tim Peters0939fac2003-07-01 19:28:44 +000044_VERBOSE = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +000045
46if __debug__:
47
Tim Peters59aba122003-07-01 20:01:55 +000048 class _Verbose(object):
Guido van Rossum7f5013a1998-04-09 22:01:42 +000049
50 def __init__(self, verbose=None):
51 if verbose is None:
52 verbose = _VERBOSE
Guido van Rossumd0648992007-08-20 19:25:41 +000053 self._verbose = verbose
Guido van Rossum7f5013a1998-04-09 22:01:42 +000054
55 def _note(self, format, *args):
Guido van Rossumd0648992007-08-20 19:25:41 +000056 if self._verbose:
Guido van Rossum7f5013a1998-04-09 22:01:42 +000057 format = format % args
58 format = "%s: %s\n" % (
Benjamin Petersonfdbea962008-08-18 17:33:47 +000059 current_thread().name, format)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000060 _sys.stderr.write(format)
61
62else:
63 # Disable this when using "python -O"
Tim Peters59aba122003-07-01 20:01:55 +000064 class _Verbose(object):
Guido van Rossum7f5013a1998-04-09 22:01:42 +000065 def __init__(self, verbose=None):
66 pass
67 def _note(self, *args):
68 pass
69
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000070# Support for profile and trace hooks
71
72_profile_hook = None
73_trace_hook = None
74
75def setprofile(func):
76 global _profile_hook
77 _profile_hook = func
Tim Petersd1b108b2003-06-29 17:24:17 +000078
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000079def settrace(func):
80 global _trace_hook
81 _trace_hook = func
Guido van Rossum7f5013a1998-04-09 22:01:42 +000082
83# Synchronization classes
84
85Lock = _allocate_lock
86
Antoine Pitrou434736a2009-11-10 18:46:01 +000087def RLock(verbose=None, *args, **kwargs):
88 if verbose is None:
89 verbose = _VERBOSE
90 if (__debug__ and verbose) or _CRLock is None:
91 return _PyRLock(verbose, *args, **kwargs)
92 return _CRLock(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000093
94class _RLock(_Verbose):
Tim Petersb90f89a2001-01-15 03:26:36 +000095
Guido van Rossum7f5013a1998-04-09 22:01:42 +000096 def __init__(self, verbose=None):
97 _Verbose.__init__(self, verbose)
Guido van Rossumd0648992007-08-20 19:25:41 +000098 self._block = _allocate_lock()
99 self._owner = None
100 self._count = 0
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000101
102 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000103 owner = self._owner
Antoine Pitroub0872682009-11-09 16:08:16 +0000104 try:
105 owner = _active[owner].name
106 except KeyError:
107 pass
108 return "<%s owner=%r count=%d>" % (
109 self.__class__.__name__, owner, self._count)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000110
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000111 def acquire(self, blocking=True, timeout=-1):
Antoine Pitroub0872682009-11-09 16:08:16 +0000112 me = _get_ident()
113 if self._owner == me:
Guido van Rossumd0648992007-08-20 19:25:41 +0000114 self._count = self._count + 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000115 if __debug__:
116 self._note("%s.acquire(%s): recursive success", self, blocking)
117 return 1
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000118 rc = self._block.acquire(blocking, timeout)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000119 if rc:
Guido van Rossumd0648992007-08-20 19:25:41 +0000120 self._owner = me
121 self._count = 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000122 if __debug__:
Brett Cannon90cece72005-01-27 22:48:30 +0000123 self._note("%s.acquire(%s): initial success", self, blocking)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000124 else:
125 if __debug__:
126 self._note("%s.acquire(%s): failure", self, blocking)
127 return rc
128
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000129 __enter__ = acquire
130
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000131 def release(self):
Antoine Pitroub0872682009-11-09 16:08:16 +0000132 if self._owner != _get_ident():
Georg Brandl495f7b52009-10-27 15:28:25 +0000133 raise RuntimeError("cannot release un-acquired lock")
Guido van Rossumd0648992007-08-20 19:25:41 +0000134 self._count = count = self._count - 1
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000135 if not count:
Guido van Rossumd0648992007-08-20 19:25:41 +0000136 self._owner = None
137 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000138 if __debug__:
139 self._note("%s.release(): final release", self)
140 else:
141 if __debug__:
142 self._note("%s.release(): non-final release", self)
143
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000144 def __exit__(self, t, v, tb):
145 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000146
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000147 # Internal methods used by condition variables
148
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000149 def _acquire_restore(self, state):
Guido van Rossumd0648992007-08-20 19:25:41 +0000150 self._block.acquire()
151 self._count, self._owner = state
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000152 if __debug__:
153 self._note("%s._acquire_restore()", self)
154
155 def _release_save(self):
156 if __debug__:
157 self._note("%s._release_save()", self)
Guido van Rossumd0648992007-08-20 19:25:41 +0000158 count = self._count
159 self._count = 0
160 owner = self._owner
161 self._owner = None
162 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000163 return (count, owner)
164
165 def _is_owned(self):
Antoine Pitroub0872682009-11-09 16:08:16 +0000166 return self._owner == _get_ident()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000167
Antoine Pitrou434736a2009-11-10 18:46:01 +0000168_PyRLock = _RLock
169
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000170
171def Condition(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000172 return _Condition(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000173
174class _Condition(_Verbose):
175
176 def __init__(self, lock=None, verbose=None):
177 _Verbose.__init__(self, verbose)
178 if lock is None:
179 lock = RLock()
Guido van Rossumd0648992007-08-20 19:25:41 +0000180 self._lock = lock
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000181 # Export the lock's acquire() and release() methods
182 self.acquire = lock.acquire
183 self.release = lock.release
184 # If the lock defines _release_save() and/or _acquire_restore(),
185 # these override the default implementations (which just call
186 # release() and acquire() on the lock). Ditto for _is_owned().
187 try:
188 self._release_save = lock._release_save
189 except AttributeError:
190 pass
191 try:
192 self._acquire_restore = lock._acquire_restore
193 except AttributeError:
194 pass
195 try:
196 self._is_owned = lock._is_owned
197 except AttributeError:
198 pass
Guido van Rossumd0648992007-08-20 19:25:41 +0000199 self._waiters = []
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000200
Thomas Wouters477c8d52006-05-27 19:21:47 +0000201 def __enter__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000202 return self._lock.__enter__()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000203
Thomas Wouters477c8d52006-05-27 19:21:47 +0000204 def __exit__(self, *args):
Guido van Rossumd0648992007-08-20 19:25:41 +0000205 return self._lock.__exit__(*args)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000206
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000207 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000208 return "<Condition(%s, %d)>" % (self._lock, len(self._waiters))
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000209
210 def _release_save(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000211 self._lock.release() # No state to save
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000212
213 def _acquire_restore(self, x):
Guido van Rossumd0648992007-08-20 19:25:41 +0000214 self._lock.acquire() # Ignore saved state
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000215
216 def _is_owned(self):
Benjamin Peterson672b8032008-06-11 19:14:14 +0000217 # Return True if lock is owned by current_thread.
Jeremy Hyltonaf7fde72002-08-14 17:43:59 +0000218 # This method is called only if __lock doesn't have _is_owned().
Guido van Rossumd0648992007-08-20 19:25:41 +0000219 if self._lock.acquire(0):
220 self._lock.release()
Tim Petersbc0e9102002-04-04 22:55:58 +0000221 return False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000222 else:
Tim Petersbc0e9102002-04-04 22:55:58 +0000223 return True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000224
225 def wait(self, timeout=None):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000226 if not self._is_owned():
Georg Brandl495f7b52009-10-27 15:28:25 +0000227 raise RuntimeError("cannot wait on un-acquired lock")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000228 waiter = _allocate_lock()
229 waiter.acquire()
Guido van Rossumd0648992007-08-20 19:25:41 +0000230 self._waiters.append(waiter)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000231 saved_state = self._release_save()
Tim Petersc951bf92001-04-02 20:15:57 +0000232 try: # restore state no matter what (e.g., KeyboardInterrupt)
233 if timeout is None:
234 waiter.acquire()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000235 if __debug__:
Tim Petersc951bf92001-04-02 20:15:57 +0000236 self._note("%s.wait(): got it", self)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000237 else:
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000238 if timeout > 0:
239 gotit = waiter.acquire(True, timeout)
240 else:
241 gotit = waiter.acquire(False)
Tim Petersc951bf92001-04-02 20:15:57 +0000242 if not gotit:
243 if __debug__:
244 self._note("%s.wait(%s): timed out", self, timeout)
245 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000246 self._waiters.remove(waiter)
Tim Petersc951bf92001-04-02 20:15:57 +0000247 except ValueError:
248 pass
249 else:
250 if __debug__:
251 self._note("%s.wait(%s): got it", self, timeout)
252 finally:
253 self._acquire_restore(saved_state)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000254
255 def notify(self, n=1):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000256 if not self._is_owned():
Georg Brandl495f7b52009-10-27 15:28:25 +0000257 raise RuntimeError("cannot notify on un-acquired lock")
Guido van Rossumd0648992007-08-20 19:25:41 +0000258 __waiters = self._waiters
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000259 waiters = __waiters[:n]
260 if not waiters:
261 if __debug__:
262 self._note("%s.notify(): no waiters", self)
263 return
264 self._note("%s.notify(): notifying %d waiter%s", self, n,
265 n!=1 and "s" or "")
266 for waiter in waiters:
267 waiter.release()
268 try:
269 __waiters.remove(waiter)
270 except ValueError:
271 pass
272
Benjamin Peterson672b8032008-06-11 19:14:14 +0000273 def notify_all(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000274 self.notify(len(self._waiters))
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000275
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000276 notifyAll = notify_all
277
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000278
279def Semaphore(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000280 return _Semaphore(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000281
282class _Semaphore(_Verbose):
283
Andrew M. Kuchling39d3bfc2000-02-29 00:10:24 +0000284 # After Tim Peters' semaphore class, but not quite the same (no maximum)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000285
286 def __init__(self, value=1, verbose=None):
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000287 if value < 0:
288 raise ValueError("semaphore initial value must be >= 0")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000289 _Verbose.__init__(self, verbose)
Guido van Rossumd0648992007-08-20 19:25:41 +0000290 self._cond = Condition(Lock())
291 self._value = value
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000292
Georg Brandl7b1c4142009-09-16 14:23:20 +0000293 def acquire(self, blocking=True):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000294 rc = False
Guido van Rossumd0648992007-08-20 19:25:41 +0000295 self._cond.acquire()
296 while self._value == 0:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000297 if not blocking:
298 break
Skip Montanarob446fc72001-08-19 04:25:24 +0000299 if __debug__:
300 self._note("%s.acquire(%s): blocked waiting, value=%s",
Guido van Rossumd0648992007-08-20 19:25:41 +0000301 self, blocking, self._value)
302 self._cond.wait()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000303 else:
Guido van Rossumd0648992007-08-20 19:25:41 +0000304 self._value = self._value - 1
Skip Montanarob446fc72001-08-19 04:25:24 +0000305 if __debug__:
Skip Montanaroae8454a2001-08-19 05:53:47 +0000306 self._note("%s.acquire: success, value=%s",
Guido van Rossumd0648992007-08-20 19:25:41 +0000307 self, self._value)
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000308 rc = True
Guido van Rossumd0648992007-08-20 19:25:41 +0000309 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000310 return rc
311
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000312 __enter__ = acquire
313
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000314 def release(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000315 self._cond.acquire()
316 self._value = self._value + 1
Skip Montanarob446fc72001-08-19 04:25:24 +0000317 if __debug__:
Skip Montanaroae8454a2001-08-19 05:53:47 +0000318 self._note("%s.release: success, value=%s",
Guido van Rossumd0648992007-08-20 19:25:41 +0000319 self, self._value)
320 self._cond.notify()
321 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000322
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000323 def __exit__(self, t, v, tb):
324 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000325
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000326
Skip Montanaroe428bb72001-08-20 20:27:58 +0000327def BoundedSemaphore(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000328 return _BoundedSemaphore(*args, **kwargs)
Skip Montanaroe428bb72001-08-20 20:27:58 +0000329
330class _BoundedSemaphore(_Semaphore):
331 """Semaphore that checks that # releases is <= # acquires"""
332 def __init__(self, value=1, verbose=None):
333 _Semaphore.__init__(self, value, verbose)
334 self._initial_value = value
335
336 def release(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000337 if self._value >= self._initial_value:
Collin Winterce36ad82007-08-30 01:19:48 +0000338 raise ValueError("Semaphore released too many times")
Skip Montanaroe428bb72001-08-20 20:27:58 +0000339 return _Semaphore.release(self)
340
341
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000342def Event(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000343 return _Event(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000344
345class _Event(_Verbose):
346
347 # After Tim Peters' event class (without is_posted())
348
349 def __init__(self, verbose=None):
350 _Verbose.__init__(self, verbose)
Guido van Rossumd0648992007-08-20 19:25:41 +0000351 self._cond = Condition(Lock())
352 self._flag = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000353
Benjamin Peterson672b8032008-06-11 19:14:14 +0000354 def is_set(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000355 return self._flag
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000356
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000357 isSet = is_set
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000358
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000359 def set(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000360 self._cond.acquire()
361 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000362 self._flag = True
Benjamin Peterson672b8032008-06-11 19:14:14 +0000363 self._cond.notify_all()
Christian Heimes969fe572008-01-25 11:23:10 +0000364 finally:
365 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000366
367 def clear(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000368 self._cond.acquire()
369 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000370 self._flag = False
Christian Heimes969fe572008-01-25 11:23:10 +0000371 finally:
372 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000373
374 def wait(self, timeout=None):
Christian Heimes969fe572008-01-25 11:23:10 +0000375 self._cond.acquire()
376 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000377 if not self._flag:
378 self._cond.wait(timeout)
Benjamin Petersond23f8222009-04-05 19:13:16 +0000379 return self._flag
Christian Heimes969fe572008-01-25 11:23:10 +0000380 finally:
381 self._cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000382
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000383# Helper to generate new thread names
384_counter = 0
385def _newname(template="Thread-%d"):
386 global _counter
387 _counter = _counter + 1
388 return template % _counter
389
390# Active thread administration
391_active_limbo_lock = _allocate_lock()
Tim Peters711906e2005-01-08 07:30:42 +0000392_active = {} # maps thread id to Thread object
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000393_limbo = {}
394
395
396# Main class for threads
397
398class Thread(_Verbose):
399
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000400 __initialized = False
Brett Cannoncc4e9352004-07-03 03:52:35 +0000401 # Need to store a reference to sys.exc_info for printing
402 # out exceptions when a thread tries to use a global var. during interp.
403 # shutdown and thus raises an exception about trying to perform some
404 # operation on/with a NoneType
405 __exc_info = _sys.exc_info
Christian Heimesbbe741d2008-03-28 10:53:29 +0000406 # Keep sys.exc_clear too to clear the exception just before
407 # allowing .join() to return.
408 #XXX __exc_clear = _sys.exc_clear
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000409
410 def __init__(self, group=None, target=None, name=None,
Georg Brandla4a8b822005-07-15 09:13:21 +0000411 args=(), kwargs=None, verbose=None):
Guido van Rossum5a43e1a1998-06-09 19:04:26 +0000412 assert group is None, "group argument must be None for now"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000413 _Verbose.__init__(self, verbose)
Georg Brandla4a8b822005-07-15 09:13:21 +0000414 if kwargs is None:
415 kwargs = {}
Guido van Rossumd0648992007-08-20 19:25:41 +0000416 self._target = target
417 self._name = str(name or _newname())
418 self._args = args
419 self._kwargs = kwargs
420 self._daemonic = self._set_daemon()
Georg Brandl0c77a822008-06-10 16:37:50 +0000421 self._ident = None
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000422 self._started = Event()
Guido van Rossumd0648992007-08-20 19:25:41 +0000423 self._stopped = False
424 self._block = Condition(Lock())
425 self._initialized = True
Brett Cannoncc4e9352004-07-03 03:52:35 +0000426 # sys.stderr is not stored in the class like
427 # sys.exc_info since it can be changed between instances
Guido van Rossumd0648992007-08-20 19:25:41 +0000428 self._stderr = _sys.stderr
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000429
430 def _set_daemon(self):
431 # Overridden in _MainThread and _DummyThread
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000432 return current_thread().daemon
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000433
434 def __repr__(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000435 assert self._initialized, "Thread.__init__() was not called"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000436 status = "initial"
Benjamin Peterson672b8032008-06-11 19:14:14 +0000437 if self._started.is_set():
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000438 status = "started"
Guido van Rossumd0648992007-08-20 19:25:41 +0000439 if self._stopped:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000440 status = "stopped"
Guido van Rossumd0648992007-08-20 19:25:41 +0000441 if self._daemonic:
Georg Brandl0c77a822008-06-10 16:37:50 +0000442 status += " daemon"
443 if self._ident is not None:
444 status += " %s" % self._ident
Guido van Rossumd0648992007-08-20 19:25:41 +0000445 return "<%s(%s, %s)>" % (self.__class__.__name__, self._name, status)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000446
447 def start(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000448 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000449 raise RuntimeError("thread.__init__() not called")
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000450
Benjamin Peterson672b8032008-06-11 19:14:14 +0000451 if self._started.is_set():
Senthil Kumaranfdd4d0f2010-04-06 03:30:18 +0000452 raise RuntimeError("threads can only be started once")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000453 if __debug__:
454 self._note("%s.start(): starting thread", self)
Benjamin Petersond23f8222009-04-05 19:13:16 +0000455 with _active_limbo_lock:
456 _limbo[self] = self
Gregory P. Smith3fdd9642010-02-28 18:57:46 +0000457 try:
458 _start_new_thread(self._bootstrap, ())
459 except Exception:
460 with _active_limbo_lock:
461 del _limbo[self]
462 raise
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000463 self._started.wait()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000464
465 def run(self):
Christian Heimesd3eb5a152008-02-24 00:38:49 +0000466 try:
467 if self._target:
468 self._target(*self._args, **self._kwargs)
469 finally:
470 # Avoid a refcycle if the thread is running a function with
471 # an argument that has a member that points to the thread.
472 del self._target, self._args, self._kwargs
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000473
Guido van Rossumd0648992007-08-20 19:25:41 +0000474 def _bootstrap(self):
Guido van Rossum61e21b52007-08-20 19:06:03 +0000475 # Wrapper around the real bootstrap code that ignores
476 # exceptions during interpreter cleanup. Those typically
477 # happen when a daemon thread wakes up at an unfortunate
478 # moment, finds the world around it destroyed, and raises some
479 # random exception *** while trying to report the exception in
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000480 # _bootstrap_inner() below ***. Those random exceptions
Guido van Rossum61e21b52007-08-20 19:06:03 +0000481 # don't help anybody, and they confuse users, so we suppress
482 # them. We suppress them only when it appears that the world
483 # indeed has already been destroyed, so that exceptions in
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000484 # _bootstrap_inner() during normal business hours are properly
Guido van Rossum61e21b52007-08-20 19:06:03 +0000485 # reported. Also, we only suppress them for daemonic threads;
486 # if a non-daemonic encounters this, something else is wrong.
487 try:
Guido van Rossumd0648992007-08-20 19:25:41 +0000488 self._bootstrap_inner()
Guido van Rossum61e21b52007-08-20 19:06:03 +0000489 except:
Guido van Rossumd0648992007-08-20 19:25:41 +0000490 if self._daemonic and _sys is None:
Guido van Rossum61e21b52007-08-20 19:06:03 +0000491 return
492 raise
493
Benjamin Petersond23f8222009-04-05 19:13:16 +0000494 def _set_ident(self):
495 self._ident = _get_ident()
496
Guido van Rossumd0648992007-08-20 19:25:41 +0000497 def _bootstrap_inner(self):
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000498 try:
Benjamin Petersond23f8222009-04-05 19:13:16 +0000499 self._set_ident()
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000500 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000501 with _active_limbo_lock:
502 _active[self._ident] = self
503 del _limbo[self]
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000504 if __debug__:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000505 self._note("%s._bootstrap(): thread started", self)
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000506
507 if _trace_hook:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000508 self._note("%s._bootstrap(): registering trace hook", self)
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000509 _sys.settrace(_trace_hook)
510 if _profile_hook:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000511 self._note("%s._bootstrap(): registering profile hook", self)
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000512 _sys.setprofile(_profile_hook)
Tim Petersd1b108b2003-06-29 17:24:17 +0000513
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000514 try:
515 self.run()
516 except SystemExit:
517 if __debug__:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000518 self._note("%s._bootstrap(): raised SystemExit", self)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000519 except:
520 if __debug__:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000521 self._note("%s._bootstrap(): unhandled exception", self)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000522 # If sys.stderr is no more (most likely from interpreter
Guido van Rossumd0648992007-08-20 19:25:41 +0000523 # shutdown) use self._stderr. Otherwise still use sys (as in
Brett Cannoncc4e9352004-07-03 03:52:35 +0000524 # _sys) in case sys.stderr was redefined since the creation of
525 # self.
526 if _sys:
527 _sys.stderr.write("Exception in thread %s:\n%s\n" %
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000528 (self.name, _format_exc()))
Brett Cannoncc4e9352004-07-03 03:52:35 +0000529 else:
530 # Do the best job possible w/o a huge amt. of code to
531 # approximate a traceback (code ideas from
532 # Lib/traceback.py)
Guido van Rossumd0648992007-08-20 19:25:41 +0000533 exc_type, exc_value, exc_tb = self._exc_info()
Brett Cannoncc4e9352004-07-03 03:52:35 +0000534 try:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000535 print((
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000536 "Exception in thread " + self.name +
Guido van Rossumd0648992007-08-20 19:25:41 +0000537 " (most likely raised during interpreter shutdown):"), file=self._stderr)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000538 print((
Guido van Rossumd0648992007-08-20 19:25:41 +0000539 "Traceback (most recent call last):"), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000540 while exc_tb:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000541 print((
Brett Cannoncc4e9352004-07-03 03:52:35 +0000542 ' File "%s", line %s, in %s' %
543 (exc_tb.tb_frame.f_code.co_filename,
544 exc_tb.tb_lineno,
Guido van Rossumd0648992007-08-20 19:25:41 +0000545 exc_tb.tb_frame.f_code.co_name)), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000546 exc_tb = exc_tb.tb_next
Guido van Rossumd0648992007-08-20 19:25:41 +0000547 print(("%s: %s" % (exc_type, exc_value)), file=self._stderr)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000548 # Make sure that exc_tb gets deleted since it is a memory
549 # hog; deleting everything else is just for thoroughness
550 finally:
551 del exc_type, exc_value, exc_tb
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000552 else:
553 if __debug__:
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000554 self._note("%s._bootstrap(): normal return", self)
Christian Heimesbbe741d2008-03-28 10:53:29 +0000555 finally:
556 # Prevent a race in
557 # test_threading.test_no_refcycle_through_target when
558 # the exception keeps the target alive past when we
559 # assert that it's dead.
560 #XXX self.__exc_clear()
561 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000562 finally:
Christian Heimes1af737c2008-01-23 08:24:23 +0000563 with _active_limbo_lock:
564 self._stop()
565 try:
Georg Brandl0c77a822008-06-10 16:37:50 +0000566 # We don't call self._delete() because it also
Christian Heimes1af737c2008-01-23 08:24:23 +0000567 # grabs _active_limbo_lock.
568 del _active[_get_ident()]
569 except:
570 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000571
Guido van Rossumd0648992007-08-20 19:25:41 +0000572 def _stop(self):
Christian Heimes969fe572008-01-25 11:23:10 +0000573 self._block.acquire()
574 self._stopped = True
Benjamin Peterson672b8032008-06-11 19:14:14 +0000575 self._block.notify_all()
Christian Heimes969fe572008-01-25 11:23:10 +0000576 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000577
Guido van Rossumd0648992007-08-20 19:25:41 +0000578 def _delete(self):
Tim Peters21429932004-07-21 03:36:52 +0000579 "Remove current thread from the dict of currently running threads."
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000580
Georg Brandl2067bfd2008-05-25 13:05:15 +0000581 # Notes about running with _dummy_thread:
Tim Peters21429932004-07-21 03:36:52 +0000582 #
Georg Brandl2067bfd2008-05-25 13:05:15 +0000583 # Must take care to not raise an exception if _dummy_thread is being
Tim Peters21429932004-07-21 03:36:52 +0000584 # used (and thus this module is being used as an instance of
Georg Brandl2067bfd2008-05-25 13:05:15 +0000585 # dummy_threading). _dummy_thread.get_ident() always returns -1 since
586 # there is only one thread if _dummy_thread is being used. Thus
Tim Peters21429932004-07-21 03:36:52 +0000587 # len(_active) is always <= 1 here, and any Thread instance created
588 # overwrites the (if any) thread currently registered in _active.
589 #
590 # An instance of _MainThread is always created by 'threading'. This
591 # gets overwritten the instant an instance of Thread is created; both
Georg Brandl2067bfd2008-05-25 13:05:15 +0000592 # threads return -1 from _dummy_thread.get_ident() and thus have the
Tim Peters21429932004-07-21 03:36:52 +0000593 # same key in the dict. So when the _MainThread instance created by
594 # 'threading' tries to clean itself up when atexit calls this method
595 # it gets a KeyError if another Thread instance was created.
596 #
597 # This all means that KeyError from trying to delete something from
598 # _active if dummy_threading is being used is a red herring. But
599 # since it isn't if dummy_threading is *not* being used then don't
600 # hide the exception.
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000601
Christian Heimes969fe572008-01-25 11:23:10 +0000602 try:
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000603 with _active_limbo_lock:
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000604 del _active[_get_ident()]
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000605 # There must not be any python code between the previous line
606 # and after the lock is released. Otherwise a tracing function
607 # could try to acquire the lock again in the same thread, (in
Benjamin Peterson672b8032008-06-11 19:14:14 +0000608 # current_thread()), and would block.
Neal Norwitzf5c7c2e2008-04-05 04:47:45 +0000609 except KeyError:
610 if 'dummy_threading' not in _sys.modules:
611 raise
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000612
613 def join(self, timeout=None):
Guido van Rossumd0648992007-08-20 19:25:41 +0000614 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000615 raise RuntimeError("Thread.__init__() not called")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000616 if not self._started.is_set():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000617 raise RuntimeError("cannot join thread before it is started")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000618 if self is current_thread():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000619 raise RuntimeError("cannot join current thread")
620
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000621 if __debug__:
Guido van Rossumd0648992007-08-20 19:25:41 +0000622 if not self._stopped:
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000623 self._note("%s.join(): waiting until thread stops", self)
Christian Heimes969fe572008-01-25 11:23:10 +0000624
625 self._block.acquire()
626 try:
Brett Cannonad07ff22005-11-23 02:15:50 +0000627 if timeout is None:
Guido van Rossumd0648992007-08-20 19:25:41 +0000628 while not self._stopped:
629 self._block.wait()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000630 if __debug__:
631 self._note("%s.join(): thread stopped", self)
Brett Cannonad07ff22005-11-23 02:15:50 +0000632 else:
633 deadline = _time() + timeout
Guido van Rossumd0648992007-08-20 19:25:41 +0000634 while not self._stopped:
Brett Cannonad07ff22005-11-23 02:15:50 +0000635 delay = deadline - _time()
636 if delay <= 0:
637 if __debug__:
638 self._note("%s.join(): timed out", self)
639 break
Guido van Rossumd0648992007-08-20 19:25:41 +0000640 self._block.wait(delay)
Brett Cannonad07ff22005-11-23 02:15:50 +0000641 else:
642 if __debug__:
643 self._note("%s.join(): thread stopped", self)
Christian Heimes969fe572008-01-25 11:23:10 +0000644 finally:
645 self._block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000646
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000647 @property
648 def name(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000649 assert self._initialized, "Thread.__init__() not called"
650 return self._name
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000651
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000652 @name.setter
653 def name(self, name):
Guido van Rossumd0648992007-08-20 19:25:41 +0000654 assert self._initialized, "Thread.__init__() not called"
655 self._name = str(name)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000656
Benjamin Peterson773c17b2008-08-18 16:45:31 +0000657 @property
658 def ident(self):
Georg Brandl0c77a822008-06-10 16:37:50 +0000659 assert self._initialized, "Thread.__init__() not called"
660 return self._ident
661
Benjamin Peterson672b8032008-06-11 19:14:14 +0000662 def is_alive(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000663 assert self._initialized, "Thread.__init__() not called"
Benjamin Peterson672b8032008-06-11 19:14:14 +0000664 return self._started.is_set() and not self._stopped
Tim Petersb90f89a2001-01-15 03:26:36 +0000665
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000666 isAlive = is_alive
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000667
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000668 @property
669 def daemon(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000670 assert self._initialized, "Thread.__init__() not called"
671 return self._daemonic
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000672
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000673 @daemon.setter
674 def daemon(self, daemonic):
Guido van Rossumd0648992007-08-20 19:25:41 +0000675 if not self._initialized:
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000676 raise RuntimeError("Thread.__init__() not called")
Benjamin Peterson672b8032008-06-11 19:14:14 +0000677 if self._started.is_set():
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000678 raise RuntimeError("cannot set daemon status of active thread");
Guido van Rossumd0648992007-08-20 19:25:41 +0000679 self._daemonic = daemonic
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000680
Benjamin Peterson6640d722008-08-18 18:16:46 +0000681 def isDaemon(self):
682 return self.daemon
683
684 def setDaemon(self, daemonic):
685 self.daemon = daemonic
686
687 def getName(self):
688 return self.name
689
690 def setName(self, name):
691 self.name = name
692
Martin v. Löwis44f86962001-09-05 13:44:54 +0000693# The timer class was contributed by Itamar Shtull-Trauring
694
695def Timer(*args, **kwargs):
696 return _Timer(*args, **kwargs)
697
698class _Timer(Thread):
699 """Call a function after a specified number of seconds:
Tim Petersb64bec32001-09-18 02:26:39 +0000700
Martin v. Löwis44f86962001-09-05 13:44:54 +0000701 t = Timer(30.0, f, args=[], kwargs={})
702 t.start()
703 t.cancel() # stop the timer's action if it's still waiting
704 """
Tim Petersb64bec32001-09-18 02:26:39 +0000705
Martin v. Löwis44f86962001-09-05 13:44:54 +0000706 def __init__(self, interval, function, args=[], kwargs={}):
707 Thread.__init__(self)
708 self.interval = interval
709 self.function = function
710 self.args = args
711 self.kwargs = kwargs
712 self.finished = Event()
Tim Petersb64bec32001-09-18 02:26:39 +0000713
Martin v. Löwis44f86962001-09-05 13:44:54 +0000714 def cancel(self):
715 """Stop the timer if it hasn't finished yet"""
716 self.finished.set()
Tim Petersb64bec32001-09-18 02:26:39 +0000717
Martin v. Löwis44f86962001-09-05 13:44:54 +0000718 def run(self):
719 self.finished.wait(self.interval)
Benjamin Peterson672b8032008-06-11 19:14:14 +0000720 if not self.finished.is_set():
Martin v. Löwis44f86962001-09-05 13:44:54 +0000721 self.function(*self.args, **self.kwargs)
722 self.finished.set()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000723
724# Special thread class to represent the main thread
725# This is garbage collected through an exit handler
726
727class _MainThread(Thread):
728
729 def __init__(self):
730 Thread.__init__(self, name="MainThread")
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000731 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000732 self._set_ident()
733 with _active_limbo_lock:
734 _active[self._ident] = self
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000735
736 def _set_daemon(self):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000737 return False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000738
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000739 def _exitfunc(self):
Guido van Rossumd0648992007-08-20 19:25:41 +0000740 self._stop()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000741 t = _pickSomeNonDaemonThread()
742 if t:
743 if __debug__:
744 self._note("%s: waiting for other threads", self)
745 while t:
746 t.join()
747 t = _pickSomeNonDaemonThread()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000748 if __debug__:
749 self._note("%s: exiting", self)
Guido van Rossumd0648992007-08-20 19:25:41 +0000750 self._delete()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000751
752def _pickSomeNonDaemonThread():
753 for t in enumerate():
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000754 if not t.daemon and t.is_alive():
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000755 return t
756 return None
757
758
759# Dummy thread class to represent threads not started here.
Tim Peters711906e2005-01-08 07:30:42 +0000760# These aren't garbage collected when they die, nor can they be waited for.
Benjamin Peterson672b8032008-06-11 19:14:14 +0000761# If they invoke anything in threading.py that calls current_thread(), they
Tim Peters711906e2005-01-08 07:30:42 +0000762# leave an entry in the _active dict forever after.
Benjamin Peterson672b8032008-06-11 19:14:14 +0000763# Their purpose is to return *something* from current_thread().
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000764# They are marked as daemon threads so we won't wait for them
765# when we exit (conform previous semantics).
766
767class _DummyThread(Thread):
Tim Petersb90f89a2001-01-15 03:26:36 +0000768
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000769 def __init__(self):
770 Thread.__init__(self, name=_newname("Dummy-%d"))
Tim Peters711906e2005-01-08 07:30:42 +0000771
772 # Thread.__block consumes an OS-level locking primitive, which
773 # can never be used by a _DummyThread. Since a _DummyThread
774 # instance is immortal, that's bad, so release this resource.
Guido van Rossumd0648992007-08-20 19:25:41 +0000775 del self._block
Tim Peters711906e2005-01-08 07:30:42 +0000776
Christian Heimes9e7f1d22008-02-28 12:27:11 +0000777
778 self._started.set()
Benjamin Petersond23f8222009-04-05 19:13:16 +0000779 self._set_ident()
780 with _active_limbo_lock:
781 _active[self._ident] = self
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000782
783 def _set_daemon(self):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000784 return True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000785
Neal Norwitz45bec8c2002-02-19 03:01:36 +0000786 def join(self, timeout=None):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000787 assert False, "cannot join a dummy thread"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000788
789
790# Global API functions
791
Benjamin Peterson672b8032008-06-11 19:14:14 +0000792def current_thread():
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000793 try:
794 return _active[_get_ident()]
795 except KeyError:
Benjamin Peterson672b8032008-06-11 19:14:14 +0000796 ##print "current_thread(): no current thread for", _get_ident()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000797 return _DummyThread()
798
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000799currentThread = current_thread
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000800
Benjamin Peterson672b8032008-06-11 19:14:14 +0000801def active_count():
Benjamin Petersond23f8222009-04-05 19:13:16 +0000802 with _active_limbo_lock:
803 return len(_active) + len(_limbo)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000804
Benjamin Petersonb3085c92008-09-01 23:09:31 +0000805activeCount = active_count
Benjamin Petersonf0923f52008-08-18 22:10:13 +0000806
Antoine Pitroubdec11f2009-11-05 13:49:14 +0000807def _enumerate():
808 # Same as enumerate(), but without the lock. Internal use only.
809 return list(_active.values()) + list(_limbo.values())
810
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000811def enumerate():
Benjamin Petersond23f8222009-04-05 19:13:16 +0000812 with _active_limbo_lock:
813 return list(_active.values()) + list(_limbo.values())
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000814
Georg Brandl2067bfd2008-05-25 13:05:15 +0000815from _thread import stack_size
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000816
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000817# Create the main thread object,
818# and make it available for the interpreter
819# (Py_Main) as threading._shutdown.
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000820
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000821_shutdown = _MainThread()._exitfunc
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000822
Jim Fultond15dc062004-07-14 19:11:50 +0000823# get thread-local implementation, either from the thread
824# module, or from the python fallback
825
826try:
Georg Brandl2067bfd2008-05-25 13:05:15 +0000827 from _thread import _local as local
Jim Fultond15dc062004-07-14 19:11:50 +0000828except ImportError:
829 from _threading_local import local
830
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000831
Jesse Nollera8513972008-07-17 16:49:17 +0000832def _after_fork():
833 # This function is called by Python/ceval.c:PyEval_ReInitThreads which
834 # is called from PyOS_AfterFork. Here we cleanup threading module state
835 # that should not exist after a fork.
836
837 # Reset _active_limbo_lock, in case we forked while the lock was held
838 # by another (non-forked) thread. http://bugs.python.org/issue874900
839 global _active_limbo_lock
840 _active_limbo_lock = _allocate_lock()
841
842 # fork() only copied the current thread; clear references to others.
843 new_active = {}
844 current = current_thread()
845 with _active_limbo_lock:
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000846 for thread in _active.values():
Jesse Nollera8513972008-07-17 16:49:17 +0000847 if thread is current:
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000848 # There is only one active thread. We reset the ident to
849 # its new value since it can have changed.
850 ident = _get_ident()
851 thread._ident = ident
Jesse Nollera8513972008-07-17 16:49:17 +0000852 new_active[ident] = thread
853 else:
854 # All the others are already stopped.
855 # We don't call _Thread__stop() because it tries to acquire
856 # thread._Thread__block which could also have been held while
857 # we forked.
Antoine Pitrou5fe291f2008-09-06 23:00:03 +0000858 thread._stopped = True
Jesse Nollera8513972008-07-17 16:49:17 +0000859
860 _limbo.clear()
861 _active.clear()
862 _active.update(new_active)
863 assert len(_active) == 1
864
865
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000866# Self-test code
867
868def _test():
869
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000870 class BoundedQueue(_Verbose):
871
872 def __init__(self, limit):
873 _Verbose.__init__(self)
874 self.mon = RLock()
875 self.rc = Condition(self.mon)
876 self.wc = Condition(self.mon)
877 self.limit = limit
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000878 self.queue = deque()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000879
880 def put(self, item):
881 self.mon.acquire()
882 while len(self.queue) >= self.limit:
883 self._note("put(%s): queue full", item)
884 self.wc.wait()
885 self.queue.append(item)
886 self._note("put(%s): appended, length now %d",
887 item, len(self.queue))
888 self.rc.notify()
889 self.mon.release()
890
891 def get(self):
892 self.mon.acquire()
893 while not self.queue:
894 self._note("get(): queue empty")
895 self.rc.wait()
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000896 item = self.queue.popleft()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000897 self._note("get(): got %s, %d left", item, len(self.queue))
898 self.wc.notify()
899 self.mon.release()
900 return item
901
902 class ProducerThread(Thread):
903
904 def __init__(self, queue, quota):
905 Thread.__init__(self, name="Producer")
906 self.queue = queue
907 self.quota = quota
908
909 def run(self):
Guido van Rossumb26a1b41998-05-20 17:05:52 +0000910 from random import random
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000911 counter = 0
912 while counter < self.quota:
913 counter = counter + 1
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000914 self.queue.put("%s.%d" % (self.name, counter))
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000915 _sleep(random() * 0.00001)
916
917
918 class ConsumerThread(Thread):
919
920 def __init__(self, queue, count):
921 Thread.__init__(self, name="Consumer")
922 self.queue = queue
923 self.count = count
924
925 def run(self):
926 while self.count > 0:
927 item = self.queue.get()
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000928 print(item)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000929 self.count = self.count - 1
930
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000931 NP = 3
932 QL = 4
933 NI = 5
934
935 Q = BoundedQueue(QL)
936 P = []
937 for i in range(NP):
938 t = ProducerThread(Q, NI)
Benjamin Petersonfdbea962008-08-18 17:33:47 +0000939 t.name = "Producer-%d" % (i+1)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000940 P.append(t)
941 C = ConsumerThread(Q, NI*NP)
942 for t in P:
943 t.start()
944 _sleep(0.000001)
945 C.start()
946 for t in P:
947 t.join()
948 C.join()
949
950if __name__ == '__main__':
951 _test()