threading.py 48 KB

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