blob: 5fc149dc33965f0b971da96196e7aef37b8c945a [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
4
5try:
6 import thread
7except ImportError:
8 del _sys.modules[__name__]
9 raise
10
Fred Drakea8725952002-12-30 23:32:50 +000011from time import time as _time, sleep as _sleep
Neil Schemenauerf607fc52003-11-05 23:03:00 +000012from traceback import format_exc as _format_exc
Raymond Hettinger756b3f32004-01-29 06:37:52 +000013from collections import deque
Guido van Rossum7f5013a1998-04-09 22:01:42 +000014
15# Rename some stuff so "from threading import *" is safe
Guido van Rossumc262a1f2002-12-30 21:59:55 +000016__all__ = ['activeCount', 'Condition', 'currentThread', 'enumerate', 'Event',
Tim Peters685e6972003-06-29 16:50:06 +000017 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
Andrew MacIntyre92913322006-06-13 15:04:24 +000018 'Timer', 'setprofile', 'settrace', 'local', 'stack_size']
Guido van Rossum7f5013a1998-04-09 22:01:42 +000019
Guido van Rossum7f5013a1998-04-09 22:01:42 +000020_start_new_thread = thread.start_new_thread
21_allocate_lock = thread.allocate_lock
22_get_ident = thread.get_ident
Jeremy Hyltonb5fc7492000-06-01 01:17:17 +000023ThreadError = thread.error
Guido van Rossum7f5013a1998-04-09 22:01:42 +000024del thread
25
Guido van Rossum7f5013a1998-04-09 22:01:42 +000026
Tim Peters59aba122003-07-01 20:01:55 +000027# Debug support (adapted from ihooks.py).
28# All the major classes here derive from _Verbose. We force that to
29# be a new-style class so that all the major classes here are new-style.
30# This helps debugging (type(instance) is more revealing for instances
31# of new-style classes).
Guido van Rossum7f5013a1998-04-09 22:01:42 +000032
Tim Peters0939fac2003-07-01 19:28:44 +000033_VERBOSE = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +000034
35if __debug__:
36
Tim Peters59aba122003-07-01 20:01:55 +000037 class _Verbose(object):
Guido van Rossum7f5013a1998-04-09 22:01:42 +000038
39 def __init__(self, verbose=None):
40 if verbose is None:
41 verbose = _VERBOSE
42 self.__verbose = verbose
43
44 def _note(self, format, *args):
45 if self.__verbose:
46 format = format % args
47 format = "%s: %s\n" % (
48 currentThread().getName(), format)
49 _sys.stderr.write(format)
50
51else:
52 # Disable this when using "python -O"
Tim Peters59aba122003-07-01 20:01:55 +000053 class _Verbose(object):
Guido van Rossum7f5013a1998-04-09 22:01:42 +000054 def __init__(self, verbose=None):
55 pass
56 def _note(self, *args):
57 pass
58
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000059# Support for profile and trace hooks
60
61_profile_hook = None
62_trace_hook = None
63
64def setprofile(func):
65 global _profile_hook
66 _profile_hook = func
Tim Petersd1b108b2003-06-29 17:24:17 +000067
Jeremy Hyltonbfccb352003-06-29 16:58:41 +000068def settrace(func):
69 global _trace_hook
70 _trace_hook = func
Guido van Rossum7f5013a1998-04-09 22:01:42 +000071
72# Synchronization classes
73
74Lock = _allocate_lock
75
76def RLock(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +000077 return _RLock(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +000078
79class _RLock(_Verbose):
Tim Petersb90f89a2001-01-15 03:26:36 +000080
Guido van Rossum7f5013a1998-04-09 22:01:42 +000081 def __init__(self, verbose=None):
82 _Verbose.__init__(self, verbose)
83 self.__block = _allocate_lock()
84 self.__owner = None
85 self.__count = 0
86
87 def __repr__(self):
Nick Coghlanf8bbaa92007-07-31 13:38:01 +000088 owner = self.__owner
Guido van Rossum7f5013a1998-04-09 22:01:42 +000089 return "<%s(%s, %d)>" % (
90 self.__class__.__name__,
Nick Coghlanf8bbaa92007-07-31 13:38:01 +000091 owner and owner.getName(),
Guido van Rossum7f5013a1998-04-09 22:01:42 +000092 self.__count)
93
94 def acquire(self, blocking=1):
95 me = currentThread()
96 if self.__owner is me:
97 self.__count = self.__count + 1
98 if __debug__:
99 self._note("%s.acquire(%s): recursive success", self, blocking)
100 return 1
101 rc = self.__block.acquire(blocking)
102 if rc:
103 self.__owner = me
104 self.__count = 1
105 if __debug__:
Brett Cannon90cece72005-01-27 22:48:30 +0000106 self._note("%s.acquire(%s): initial success", self, blocking)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000107 else:
108 if __debug__:
109 self._note("%s.acquire(%s): failure", self, blocking)
110 return rc
111
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000112 __enter__ = acquire
113
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000114 def release(self):
Collin Winter50b79ce2007-06-06 00:17:35 +0000115 if self.__owner is not currentThread():
116 raise RuntimeError("cannot release un-aquired lock")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000117 self.__count = count = self.__count - 1
118 if not count:
119 self.__owner = None
120 self.__block.release()
121 if __debug__:
122 self._note("%s.release(): final release", self)
123 else:
124 if __debug__:
125 self._note("%s.release(): non-final release", self)
126
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000127 def __exit__(self, t, v, tb):
128 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000129
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000130 # Internal methods used by condition variables
131
132 def _acquire_restore(self, (count, owner)):
133 self.__block.acquire()
134 self.__count = count
135 self.__owner = owner
136 if __debug__:
137 self._note("%s._acquire_restore()", self)
138
139 def _release_save(self):
140 if __debug__:
141 self._note("%s._release_save()", self)
142 count = self.__count
143 self.__count = 0
144 owner = self.__owner
145 self.__owner = None
146 self.__block.release()
147 return (count, owner)
148
149 def _is_owned(self):
150 return self.__owner is currentThread()
151
152
153def Condition(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000154 return _Condition(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000155
156class _Condition(_Verbose):
157
158 def __init__(self, lock=None, verbose=None):
159 _Verbose.__init__(self, verbose)
160 if lock is None:
161 lock = RLock()
162 self.__lock = lock
163 # Export the lock's acquire() and release() methods
164 self.acquire = lock.acquire
165 self.release = lock.release
166 # If the lock defines _release_save() and/or _acquire_restore(),
167 # these override the default implementations (which just call
168 # release() and acquire() on the lock). Ditto for _is_owned().
169 try:
170 self._release_save = lock._release_save
171 except AttributeError:
172 pass
173 try:
174 self._acquire_restore = lock._acquire_restore
175 except AttributeError:
176 pass
177 try:
178 self._is_owned = lock._is_owned
179 except AttributeError:
180 pass
181 self.__waiters = []
182
Guido van Rossumda5b7012006-05-02 19:47:52 +0000183 def __enter__(self):
184 return self.__lock.__enter__()
185
186 def __exit__(self, *args):
187 return self.__lock.__exit__(*args)
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000188
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000189 def __repr__(self):
190 return "<Condition(%s, %d)>" % (self.__lock, len(self.__waiters))
191
192 def _release_save(self):
193 self.__lock.release() # No state to save
194
195 def _acquire_restore(self, x):
196 self.__lock.acquire() # Ignore saved state
197
198 def _is_owned(self):
Jeremy Hylton39c12bf2002-08-14 17:46:40 +0000199 # Return True if lock is owned by currentThread.
Jeremy Hyltonaf7fde72002-08-14 17:43:59 +0000200 # This method is called only if __lock doesn't have _is_owned().
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000201 if self.__lock.acquire(0):
202 self.__lock.release()
Tim Petersbc0e9102002-04-04 22:55:58 +0000203 return False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000204 else:
Tim Petersbc0e9102002-04-04 22:55:58 +0000205 return True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000206
207 def wait(self, timeout=None):
Collin Winter50b79ce2007-06-06 00:17:35 +0000208 if not self._is_owned():
209 raise RuntimeError("cannot wait on un-aquired lock")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000210 waiter = _allocate_lock()
211 waiter.acquire()
212 self.__waiters.append(waiter)
213 saved_state = self._release_save()
Tim Petersc951bf92001-04-02 20:15:57 +0000214 try: # restore state no matter what (e.g., KeyboardInterrupt)
215 if timeout is None:
216 waiter.acquire()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000217 if __debug__:
Tim Petersc951bf92001-04-02 20:15:57 +0000218 self._note("%s.wait(): got it", self)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000219 else:
Tim Petersa6a4f272001-08-12 00:41:33 +0000220 # Balancing act: We can't afford a pure busy loop, so we
221 # have to sleep; but if we sleep the whole timeout time,
222 # we'll be unresponsive. The scheme here sleeps very
223 # little at first, longer as time goes on, but never longer
224 # than 20 times per second (or the timeout time remaining).
Tim Petersc951bf92001-04-02 20:15:57 +0000225 endtime = _time() + timeout
Tim Petersa6a4f272001-08-12 00:41:33 +0000226 delay = 0.0005 # 500 us -> initial delay of 1 ms
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000227 while True:
Tim Petersc951bf92001-04-02 20:15:57 +0000228 gotit = waiter.acquire(0)
Tim Petersa6a4f272001-08-12 00:41:33 +0000229 if gotit:
Tim Petersc951bf92001-04-02 20:15:57 +0000230 break
Tim Petersa6a4f272001-08-12 00:41:33 +0000231 remaining = endtime - _time()
232 if remaining <= 0:
233 break
234 delay = min(delay * 2, remaining, .05)
Tim Petersc951bf92001-04-02 20:15:57 +0000235 _sleep(delay)
Tim Petersc951bf92001-04-02 20:15:57 +0000236 if not gotit:
237 if __debug__:
238 self._note("%s.wait(%s): timed out", self, timeout)
239 try:
240 self.__waiters.remove(waiter)
241 except ValueError:
242 pass
243 else:
244 if __debug__:
245 self._note("%s.wait(%s): got it", self, timeout)
246 finally:
247 self._acquire_restore(saved_state)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000248
249 def notify(self, n=1):
Collin Winter50b79ce2007-06-06 00:17:35 +0000250 if not self._is_owned():
251 raise RuntimeError("cannot notify on un-aquired lock")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000252 __waiters = self.__waiters
253 waiters = __waiters[:n]
254 if not waiters:
255 if __debug__:
256 self._note("%s.notify(): no waiters", self)
257 return
258 self._note("%s.notify(): notifying %d waiter%s", self, n,
259 n!=1 and "s" or "")
260 for waiter in waiters:
261 waiter.release()
262 try:
263 __waiters.remove(waiter)
264 except ValueError:
265 pass
266
267 def notifyAll(self):
268 self.notify(len(self.__waiters))
269
270
271def Semaphore(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000272 return _Semaphore(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000273
274class _Semaphore(_Verbose):
275
Andrew M. Kuchling39d3bfc2000-02-29 00:10:24 +0000276 # After Tim Peters' semaphore class, but not quite the same (no maximum)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000277
278 def __init__(self, value=1, verbose=None):
Collin Winter50b79ce2007-06-06 00:17:35 +0000279 if value < 0:
280 raise ValueError("semaphore initial value must be >= 0")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000281 _Verbose.__init__(self, verbose)
282 self.__cond = Condition(Lock())
283 self.__value = value
284
285 def acquire(self, blocking=1):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000286 rc = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000287 self.__cond.acquire()
288 while self.__value == 0:
289 if not blocking:
290 break
Skip Montanarob446fc72001-08-19 04:25:24 +0000291 if __debug__:
292 self._note("%s.acquire(%s): blocked waiting, value=%s",
293 self, blocking, self.__value)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000294 self.__cond.wait()
295 else:
296 self.__value = self.__value - 1
Skip Montanarob446fc72001-08-19 04:25:24 +0000297 if __debug__:
Skip Montanaroae8454a2001-08-19 05:53:47 +0000298 self._note("%s.acquire: success, value=%s",
299 self, self.__value)
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000300 rc = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000301 self.__cond.release()
302 return rc
303
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000304 __enter__ = acquire
305
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000306 def release(self):
307 self.__cond.acquire()
308 self.__value = self.__value + 1
Skip Montanarob446fc72001-08-19 04:25:24 +0000309 if __debug__:
Skip Montanaroae8454a2001-08-19 05:53:47 +0000310 self._note("%s.release: success, value=%s",
311 self, self.__value)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000312 self.__cond.notify()
313 self.__cond.release()
314
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000315 def __exit__(self, t, v, tb):
316 self.release()
Guido van Rossum1a5e21e2006-02-28 21:57:43 +0000317
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000318
Skip Montanaroe428bb72001-08-20 20:27:58 +0000319def BoundedSemaphore(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000320 return _BoundedSemaphore(*args, **kwargs)
Skip Montanaroe428bb72001-08-20 20:27:58 +0000321
322class _BoundedSemaphore(_Semaphore):
323 """Semaphore that checks that # releases is <= # acquires"""
324 def __init__(self, value=1, verbose=None):
325 _Semaphore.__init__(self, value, verbose)
326 self._initial_value = value
327
328 def release(self):
329 if self._Semaphore__value >= self._initial_value:
330 raise ValueError, "Semaphore released too many times"
331 return _Semaphore.release(self)
332
333
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000334def Event(*args, **kwargs):
Guido van Rossum68468eb2003-02-27 20:14:51 +0000335 return _Event(*args, **kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000336
337class _Event(_Verbose):
338
339 # After Tim Peters' event class (without is_posted())
340
341 def __init__(self, verbose=None):
342 _Verbose.__init__(self, verbose)
343 self.__cond = Condition(Lock())
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000344 self.__flag = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000345
346 def isSet(self):
347 return self.__flag
348
349 def set(self):
350 self.__cond.acquire()
Guido van Rossum21b60142002-11-21 21:08:39 +0000351 try:
352 self.__flag = True
353 self.__cond.notifyAll()
354 finally:
355 self.__cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000356
357 def clear(self):
358 self.__cond.acquire()
Guido van Rossum21b60142002-11-21 21:08:39 +0000359 try:
360 self.__flag = False
361 finally:
362 self.__cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000363
364 def wait(self, timeout=None):
365 self.__cond.acquire()
Guido van Rossum21b60142002-11-21 21:08:39 +0000366 try:
367 if not self.__flag:
368 self.__cond.wait(timeout)
369 finally:
370 self.__cond.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000371
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000372# Helper to generate new thread names
373_counter = 0
374def _newname(template="Thread-%d"):
375 global _counter
376 _counter = _counter + 1
377 return template % _counter
378
379# Active thread administration
380_active_limbo_lock = _allocate_lock()
Tim Peters711906e2005-01-08 07:30:42 +0000381_active = {} # maps thread id to Thread object
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000382_limbo = {}
383
384
385# Main class for threads
386
387class Thread(_Verbose):
388
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000389 __initialized = False
Brett Cannoncc4e9352004-07-03 03:52:35 +0000390 # Need to store a reference to sys.exc_info for printing
391 # out exceptions when a thread tries to use a global var. during interp.
392 # shutdown and thus raises an exception about trying to perform some
393 # operation on/with a NoneType
394 __exc_info = _sys.exc_info
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000395
396 def __init__(self, group=None, target=None, name=None,
Georg Brandla4a8b822005-07-15 09:13:21 +0000397 args=(), kwargs=None, verbose=None):
Guido van Rossum5a43e1a1998-06-09 19:04:26 +0000398 assert group is None, "group argument must be None for now"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000399 _Verbose.__init__(self, verbose)
Georg Brandla4a8b822005-07-15 09:13:21 +0000400 if kwargs is None:
401 kwargs = {}
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000402 self.__target = target
403 self.__name = str(name or _newname())
404 self.__args = args
405 self.__kwargs = kwargs
406 self.__daemonic = self._set_daemon()
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000407 self.__started = False
408 self.__stopped = False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000409 self.__block = Condition(Lock())
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000410 self.__initialized = True
Brett Cannoncc4e9352004-07-03 03:52:35 +0000411 # sys.stderr is not stored in the class like
412 # sys.exc_info since it can be changed between instances
413 self.__stderr = _sys.stderr
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000414
415 def _set_daemon(self):
416 # Overridden in _MainThread and _DummyThread
417 return currentThread().isDaemon()
418
419 def __repr__(self):
420 assert self.__initialized, "Thread.__init__() was not called"
421 status = "initial"
422 if self.__started:
423 status = "started"
424 if self.__stopped:
425 status = "stopped"
426 if self.__daemonic:
427 status = status + " daemon"
428 return "<%s(%s, %s)>" % (self.__class__.__name__, self.__name, status)
429
430 def start(self):
Collin Winter50b79ce2007-06-06 00:17:35 +0000431 if not self.__initialized:
432 raise RuntimeError("thread.__init__() not called")
433 if self.__started:
434 raise RuntimeError("thread already started")
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000435 if __debug__:
436 self._note("%s.start(): starting thread", self)
437 _active_limbo_lock.acquire()
438 _limbo[self] = self
439 _active_limbo_lock.release()
440 _start_new_thread(self.__bootstrap, ())
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000441 self.__started = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000442 _sleep(0.000001) # 1 usec, to let the thread run (Solaris hack)
443
444 def run(self):
445 if self.__target:
Guido van Rossum68468eb2003-02-27 20:14:51 +0000446 self.__target(*self.__args, **self.__kwargs)
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000447
448 def __bootstrap(self):
449 try:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000450 self.__started = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000451 _active_limbo_lock.acquire()
452 _active[_get_ident()] = self
453 del _limbo[self]
454 _active_limbo_lock.release()
455 if __debug__:
456 self._note("%s.__bootstrap(): thread started", self)
Jeremy Hyltonbfccb352003-06-29 16:58:41 +0000457
458 if _trace_hook:
459 self._note("%s.__bootstrap(): registering trace hook", self)
460 _sys.settrace(_trace_hook)
461 if _profile_hook:
462 self._note("%s.__bootstrap(): registering profile hook", self)
463 _sys.setprofile(_profile_hook)
Tim Petersd1b108b2003-06-29 17:24:17 +0000464
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000465 try:
466 self.run()
467 except SystemExit:
468 if __debug__:
469 self._note("%s.__bootstrap(): raised SystemExit", self)
470 except:
471 if __debug__:
472 self._note("%s.__bootstrap(): unhandled exception", self)
Brett Cannoncc4e9352004-07-03 03:52:35 +0000473 # If sys.stderr is no more (most likely from interpreter
474 # shutdown) use self.__stderr. Otherwise still use sys (as in
475 # _sys) in case sys.stderr was redefined since the creation of
476 # self.
477 if _sys:
478 _sys.stderr.write("Exception in thread %s:\n%s\n" %
479 (self.getName(), _format_exc()))
480 else:
481 # Do the best job possible w/o a huge amt. of code to
482 # approximate a traceback (code ideas from
483 # Lib/traceback.py)
484 exc_type, exc_value, exc_tb = self.__exc_info()
485 try:
486 print>>self.__stderr, (
487 "Exception in thread " + self.getName() +
488 " (most likely raised during interpreter shutdown):")
489 print>>self.__stderr, (
490 "Traceback (most recent call last):")
491 while exc_tb:
492 print>>self.__stderr, (
493 ' File "%s", line %s, in %s' %
494 (exc_tb.tb_frame.f_code.co_filename,
495 exc_tb.tb_lineno,
496 exc_tb.tb_frame.f_code.co_name))
497 exc_tb = exc_tb.tb_next
498 print>>self.__stderr, ("%s: %s" % (exc_type, exc_value))
499 # Make sure that exc_tb gets deleted since it is a memory
500 # hog; deleting everything else is just for thoroughness
501 finally:
502 del exc_type, exc_value, exc_tb
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000503 else:
504 if __debug__:
505 self._note("%s.__bootstrap(): normal return", self)
506 finally:
507 self.__stop()
Guido van Rossumf21b2aa2001-12-28 22:07:09 +0000508 try:
509 self.__delete()
510 except:
511 pass
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000512
513 def __stop(self):
514 self.__block.acquire()
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000515 self.__stopped = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000516 self.__block.notifyAll()
517 self.__block.release()
518
519 def __delete(self):
Tim Peters21429932004-07-21 03:36:52 +0000520 "Remove current thread from the dict of currently running threads."
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000521
Tim Peters21429932004-07-21 03:36:52 +0000522 # Notes about running with dummy_thread:
523 #
524 # Must take care to not raise an exception if dummy_thread is being
525 # used (and thus this module is being used as an instance of
526 # dummy_threading). dummy_thread.get_ident() always returns -1 since
527 # there is only one thread if dummy_thread is being used. Thus
528 # len(_active) is always <= 1 here, and any Thread instance created
529 # overwrites the (if any) thread currently registered in _active.
530 #
531 # An instance of _MainThread is always created by 'threading'. This
532 # gets overwritten the instant an instance of Thread is created; both
533 # threads return -1 from dummy_thread.get_ident() and thus have the
534 # same key in the dict. So when the _MainThread instance created by
535 # 'threading' tries to clean itself up when atexit calls this method
536 # it gets a KeyError if another Thread instance was created.
537 #
538 # This all means that KeyError from trying to delete something from
539 # _active if dummy_threading is being used is a red herring. But
540 # since it isn't if dummy_threading is *not* being used then don't
541 # hide the exception.
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000542
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000543 _active_limbo_lock.acquire()
Tim Peters21429932004-07-21 03:36:52 +0000544 try:
Brett Cannon8b3d92a2004-07-21 02:21:58 +0000545 try:
546 del _active[_get_ident()]
547 except KeyError:
Tim Peters21429932004-07-21 03:36:52 +0000548 if 'dummy_threading' not in _sys.modules:
549 raise
550 finally:
551 _active_limbo_lock.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000552
553 def join(self, timeout=None):
Collin Winter50b79ce2007-06-06 00:17:35 +0000554 if not self.__initialized:
555 raise RuntimeError("Thread.__init__() not called")
556 if not self.__started:
557 raise RuntimeError("cannot join thread before it is started")
558 if self is currentThread():
559 raise RuntimeError("cannot join current thread")
560
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000561 if __debug__:
562 if not self.__stopped:
563 self._note("%s.join(): waiting until thread stops", self)
564 self.__block.acquire()
Brett Cannonad07ff22005-11-23 02:15:50 +0000565 try:
566 if timeout is None:
567 while not self.__stopped:
568 self.__block.wait()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000569 if __debug__:
570 self._note("%s.join(): thread stopped", self)
Brett Cannonad07ff22005-11-23 02:15:50 +0000571 else:
572 deadline = _time() + timeout
573 while not self.__stopped:
574 delay = deadline - _time()
575 if delay <= 0:
576 if __debug__:
577 self._note("%s.join(): timed out", self)
578 break
579 self.__block.wait(delay)
580 else:
581 if __debug__:
582 self._note("%s.join(): thread stopped", self)
583 finally:
584 self.__block.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000585
586 def getName(self):
587 assert self.__initialized, "Thread.__init__() not called"
588 return self.__name
589
590 def setName(self, name):
591 assert self.__initialized, "Thread.__init__() not called"
592 self.__name = str(name)
593
594 def isAlive(self):
595 assert self.__initialized, "Thread.__init__() not called"
596 return self.__started and not self.__stopped
Tim Petersb90f89a2001-01-15 03:26:36 +0000597
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000598 def isDaemon(self):
599 assert self.__initialized, "Thread.__init__() not called"
600 return self.__daemonic
601
602 def setDaemon(self, daemonic):
Collin Winter50b79ce2007-06-06 00:17:35 +0000603 if not self.__initialized:
604 raise RuntimeError("Thread.__init__() not called")
605 if self.__started:
606 raise RuntimeError("cannot set daemon status of active thread");
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000607 self.__daemonic = daemonic
608
Martin v. Löwis44f86962001-09-05 13:44:54 +0000609# The timer class was contributed by Itamar Shtull-Trauring
610
611def Timer(*args, **kwargs):
612 return _Timer(*args, **kwargs)
613
614class _Timer(Thread):
615 """Call a function after a specified number of seconds:
Tim Petersb64bec32001-09-18 02:26:39 +0000616
Martin v. Löwis44f86962001-09-05 13:44:54 +0000617 t = Timer(30.0, f, args=[], kwargs={})
618 t.start()
619 t.cancel() # stop the timer's action if it's still waiting
620 """
Tim Petersb64bec32001-09-18 02:26:39 +0000621
Martin v. Löwis44f86962001-09-05 13:44:54 +0000622 def __init__(self, interval, function, args=[], kwargs={}):
623 Thread.__init__(self)
624 self.interval = interval
625 self.function = function
626 self.args = args
627 self.kwargs = kwargs
628 self.finished = Event()
Tim Petersb64bec32001-09-18 02:26:39 +0000629
Martin v. Löwis44f86962001-09-05 13:44:54 +0000630 def cancel(self):
631 """Stop the timer if it hasn't finished yet"""
632 self.finished.set()
Tim Petersb64bec32001-09-18 02:26:39 +0000633
Martin v. Löwis44f86962001-09-05 13:44:54 +0000634 def run(self):
635 self.finished.wait(self.interval)
636 if not self.finished.isSet():
637 self.function(*self.args, **self.kwargs)
638 self.finished.set()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000639
640# Special thread class to represent the main thread
641# This is garbage collected through an exit handler
642
643class _MainThread(Thread):
644
645 def __init__(self):
646 Thread.__init__(self, name="MainThread")
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000647 self._Thread__started = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000648 _active_limbo_lock.acquire()
649 _active[_get_ident()] = self
650 _active_limbo_lock.release()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000651
652 def _set_daemon(self):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000653 return False
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000654
Martin v. Löwis7b7c9d42007-01-04 21:06:12 +0000655 def _exitfunc(self):
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000656 self._Thread__stop()
657 t = _pickSomeNonDaemonThread()
658 if t:
659 if __debug__:
660 self._note("%s: waiting for other threads", self)
661 while t:
662 t.join()
663 t = _pickSomeNonDaemonThread()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000664 if __debug__:
665 self._note("%s: exiting", self)
666 self._Thread__delete()
667
668def _pickSomeNonDaemonThread():
669 for t in enumerate():
670 if not t.isDaemon() and t.isAlive():
671 return t
672 return None
673
674
675# Dummy thread class to represent threads not started here.
Tim Peters711906e2005-01-08 07:30:42 +0000676# These aren't garbage collected when they die, nor can they be waited for.
677# If they invoke anything in threading.py that calls currentThread(), they
678# leave an entry in the _active dict forever after.
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000679# Their purpose is to return *something* from currentThread().
680# They are marked as daemon threads so we won't wait for them
681# when we exit (conform previous semantics).
682
683class _DummyThread(Thread):
Tim Petersb90f89a2001-01-15 03:26:36 +0000684
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000685 def __init__(self):
686 Thread.__init__(self, name=_newname("Dummy-%d"))
Tim Peters711906e2005-01-08 07:30:42 +0000687
688 # Thread.__block consumes an OS-level locking primitive, which
689 # can never be used by a _DummyThread. Since a _DummyThread
690 # instance is immortal, that's bad, so release this resource.
Brett Cannone6539c42005-01-08 02:43:53 +0000691 del self._Thread__block
Tim Peters711906e2005-01-08 07:30:42 +0000692
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000693 self._Thread__started = True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000694 _active_limbo_lock.acquire()
695 _active[_get_ident()] = self
696 _active_limbo_lock.release()
697
698 def _set_daemon(self):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000699 return True
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000700
Neal Norwitz45bec8c2002-02-19 03:01:36 +0000701 def join(self, timeout=None):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000702 assert False, "cannot join a dummy thread"
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000703
704
705# Global API functions
706
707def currentThread():
708 try:
709 return _active[_get_ident()]
710 except KeyError:
Guido van Rossum5080b332000-12-15 20:08:39 +0000711 ##print "currentThread(): no current thread for", _get_ident()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000712 return _DummyThread()
713
714def activeCount():
715 _active_limbo_lock.acquire()
716 count = len(_active) + len(_limbo)
717 _active_limbo_lock.release()
718 return count
719
720def enumerate():
721 _active_limbo_lock.acquire()
722 active = _active.values() + _limbo.values()
723 _active_limbo_lock.release()
724 return active
725
Andrew MacIntyre92913322006-06-13 15:04:24 +0000726from thread import stack_size
727
Martin v. Löwis7b7c9d42007-01-04 21:06:12 +0000728# Create the main thread object,
729# and make it available for the interpreter
730# (Py_Main) as threading._shutdown.
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000731
Martin v. Löwis7b7c9d42007-01-04 21:06:12 +0000732_shutdown = _MainThread()._exitfunc
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000733
Jim Fultond15dc062004-07-14 19:11:50 +0000734# get thread-local implementation, either from the thread
735# module, or from the python fallback
736
737try:
738 from thread import _local as local
739except ImportError:
740 from _threading_local import local
741
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000742
743# Self-test code
744
745def _test():
746
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000747 class BoundedQueue(_Verbose):
748
749 def __init__(self, limit):
750 _Verbose.__init__(self)
751 self.mon = RLock()
752 self.rc = Condition(self.mon)
753 self.wc = Condition(self.mon)
754 self.limit = limit
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000755 self.queue = deque()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000756
757 def put(self, item):
758 self.mon.acquire()
759 while len(self.queue) >= self.limit:
760 self._note("put(%s): queue full", item)
761 self.wc.wait()
762 self.queue.append(item)
763 self._note("put(%s): appended, length now %d",
764 item, len(self.queue))
765 self.rc.notify()
766 self.mon.release()
767
768 def get(self):
769 self.mon.acquire()
770 while not self.queue:
771 self._note("get(): queue empty")
772 self.rc.wait()
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000773 item = self.queue.popleft()
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000774 self._note("get(): got %s, %d left", item, len(self.queue))
775 self.wc.notify()
776 self.mon.release()
777 return item
778
779 class ProducerThread(Thread):
780
781 def __init__(self, queue, quota):
782 Thread.__init__(self, name="Producer")
783 self.queue = queue
784 self.quota = quota
785
786 def run(self):
Guido van Rossumb26a1b41998-05-20 17:05:52 +0000787 from random import random
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000788 counter = 0
789 while counter < self.quota:
790 counter = counter + 1
791 self.queue.put("%s.%d" % (self.getName(), counter))
792 _sleep(random() * 0.00001)
793
794
795 class ConsumerThread(Thread):
796
797 def __init__(self, queue, count):
798 Thread.__init__(self, name="Consumer")
799 self.queue = queue
800 self.count = count
801
802 def run(self):
803 while self.count > 0:
804 item = self.queue.get()
805 print item
806 self.count = self.count - 1
807
Guido van Rossum7f5013a1998-04-09 22:01:42 +0000808 NP = 3
809 QL = 4
810 NI = 5
811
812 Q = BoundedQueue(QL)
813 P = []
814 for i in range(NP):
815 t = ProducerThread(Q, NI)
816 t.setName("Producer-%d" % (i+1))
817 P.append(t)
818 C = ConsumerThread(Q, NI*NP)
819 for t in P:
820 t.start()
821 _sleep(0.000001)
822 C.start()
823 for t in P:
824 t.join()
825 C.join()
826
827if __name__ == '__main__':
828 _test()