| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`threading` --- Higher-level threading interface | 
|  | 2 | ===================================================== | 
|  | 3 |  | 
|  | 4 | .. module:: threading | 
|  | 5 | :synopsis: Higher-level threading interface. | 
|  | 6 |  | 
|  | 7 |  | 
| Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 8 | This module constructs higher-level threading interfaces on top of the lower | 
|  | 9 | level :mod:`_thread` module.  See also the :mod:`queue` module. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 |  | 
|  | 11 | The :mod:`dummy_threading` module is provided for situations where | 
| Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 12 | :mod:`threading` cannot be used because :mod:`_thread` is missing. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 |  | 
| Benjamin Peterson | 8bdd545 | 2008-08-18 22:38:41 +0000 | [diff] [blame] | 14 | .. note:: | 
|  | 15 |  | 
| Benjamin Peterson | b3085c9 | 2008-09-01 23:09:31 +0000 | [diff] [blame] | 16 | While they are not listed below, the ``camelCase`` names used for some | 
|  | 17 | methods and functions in this module in the Python 2.x series are still | 
|  | 18 | supported by this module. | 
| Benjamin Peterson | 8bdd545 | 2008-08-18 22:38:41 +0000 | [diff] [blame] | 19 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 20 | This module defines the following functions and objects: | 
|  | 21 |  | 
|  | 22 |  | 
| Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 23 | .. function:: active_count() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 |  | 
|  | 25 | Return the number of :class:`Thread` objects currently alive.  The returned | 
| Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame^] | 26 | count is equal to the length of the list returned by :func:`.enumerate`. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 |  | 
|  | 28 |  | 
|  | 29 | .. function:: Condition() | 
|  | 30 | :noindex: | 
|  | 31 |  | 
|  | 32 | A factory function that returns a new condition variable object. A condition | 
|  | 33 | variable allows one or more threads to wait until they are notified by another | 
|  | 34 | thread. | 
|  | 35 |  | 
|  | 36 |  | 
| Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 37 | .. function:: current_thread() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 38 |  | 
|  | 39 | Return the current :class:`Thread` object, corresponding to the caller's thread | 
|  | 40 | of control.  If the caller's thread of control was not created through the | 
|  | 41 | :mod:`threading` module, a dummy thread object with limited functionality is | 
|  | 42 | returned. | 
|  | 43 |  | 
|  | 44 |  | 
|  | 45 | .. function:: enumerate() | 
|  | 46 |  | 
| Benjamin Peterson | 672b803 | 2008-06-11 19:14:14 +0000 | [diff] [blame] | 47 | Return a list of all :class:`Thread` objects currently alive.  The list | 
|  | 48 | includes daemonic threads, dummy thread objects created by | 
|  | 49 | :func:`current_thread`, and the main thread.  It excludes terminated threads | 
|  | 50 | and threads that have not yet been started. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 |  | 
|  | 52 |  | 
|  | 53 | .. function:: Event() | 
|  | 54 | :noindex: | 
|  | 55 |  | 
|  | 56 | A factory function that returns a new event object.  An event manages a flag | 
| Georg Brandl | 502d9a5 | 2009-07-26 15:02:41 +0000 | [diff] [blame] | 57 | that can be set to true with the :meth:`~Event.set` method and reset to false | 
|  | 58 | with the :meth:`clear` method.  The :meth:`wait` method blocks until the flag | 
|  | 59 | is true. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 60 |  | 
|  | 61 |  | 
|  | 62 | .. class:: local | 
|  | 63 |  | 
|  | 64 | A class that represents thread-local data.  Thread-local data are data whose | 
|  | 65 | values are thread specific.  To manage thread-local data, just create an | 
|  | 66 | instance of :class:`local` (or a subclass) and store attributes on it:: | 
|  | 67 |  | 
|  | 68 | mydata = threading.local() | 
|  | 69 | mydata.x = 1 | 
|  | 70 |  | 
|  | 71 | The instance's values will be different for separate threads. | 
|  | 72 |  | 
|  | 73 | For more details and extensive examples, see the documentation string of the | 
|  | 74 | :mod:`_threading_local` module. | 
|  | 75 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 |  | 
|  | 77 | .. function:: Lock() | 
|  | 78 |  | 
|  | 79 | A factory function that returns a new primitive lock object.  Once a thread has | 
|  | 80 | acquired it, subsequent attempts to acquire it block, until it is released; any | 
|  | 81 | thread may release it. | 
|  | 82 |  | 
|  | 83 |  | 
|  | 84 | .. function:: RLock() | 
|  | 85 |  | 
|  | 86 | A factory function that returns a new reentrant lock object. A reentrant lock | 
|  | 87 | must be released by the thread that acquired it. Once a thread has acquired a | 
|  | 88 | reentrant lock, the same thread may acquire it again without blocking; the | 
|  | 89 | thread must release it once for each time it has acquired it. | 
|  | 90 |  | 
|  | 91 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 92 | .. function:: Semaphore(value=1) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 93 | :noindex: | 
|  | 94 |  | 
|  | 95 | A factory function that returns a new semaphore object.  A semaphore manages a | 
|  | 96 | counter representing the number of :meth:`release` calls minus the number of | 
|  | 97 | :meth:`acquire` calls, plus an initial value. The :meth:`acquire` method blocks | 
|  | 98 | if necessary until it can return without making the counter negative.  If not | 
|  | 99 | given, *value* defaults to 1. | 
|  | 100 |  | 
|  | 101 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 102 | .. function:: BoundedSemaphore(value=1) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 |  | 
|  | 104 | A factory function that returns a new bounded semaphore object.  A bounded | 
|  | 105 | semaphore checks to make sure its current value doesn't exceed its initial | 
|  | 106 | value.  If it does, :exc:`ValueError` is raised. In most situations semaphores | 
|  | 107 | are used to guard resources with limited capacity.  If the semaphore is released | 
|  | 108 | too many times it's a sign of a bug.  If not given, *value* defaults to 1. | 
|  | 109 |  | 
|  | 110 |  | 
|  | 111 | .. class:: Thread | 
|  | 112 |  | 
|  | 113 | A class that represents a thread of control.  This class can be safely | 
|  | 114 | subclassed in a limited fashion. | 
|  | 115 |  | 
|  | 116 |  | 
|  | 117 | .. class:: Timer | 
|  | 118 |  | 
|  | 119 | A thread that executes a function after a specified interval has passed. | 
|  | 120 |  | 
|  | 121 |  | 
|  | 122 | .. function:: settrace(func) | 
|  | 123 |  | 
|  | 124 | .. index:: single: trace function | 
|  | 125 |  | 
|  | 126 | Set a trace function for all threads started from the :mod:`threading` module. | 
|  | 127 | The *func* will be passed to  :func:`sys.settrace` for each thread, before its | 
|  | 128 | :meth:`run` method is called. | 
|  | 129 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 130 |  | 
|  | 131 | .. function:: setprofile(func) | 
|  | 132 |  | 
|  | 133 | .. index:: single: profile function | 
|  | 134 |  | 
|  | 135 | Set a profile function for all threads started from the :mod:`threading` module. | 
|  | 136 | The *func* will be passed to  :func:`sys.setprofile` for each thread, before its | 
|  | 137 | :meth:`run` method is called. | 
|  | 138 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 139 |  | 
|  | 140 | .. function:: stack_size([size]) | 
|  | 141 |  | 
|  | 142 | Return the thread stack size used when creating new threads.  The optional | 
|  | 143 | *size* argument specifies the stack size to be used for subsequently created | 
|  | 144 | threads, and must be 0 (use platform or configured default) or a positive | 
|  | 145 | integer value of at least 32,768 (32kB). If changing the thread stack size is | 
|  | 146 | unsupported, a :exc:`ThreadError` is raised.  If the specified stack size is | 
|  | 147 | invalid, a :exc:`ValueError` is raised and the stack size is unmodified.  32kB | 
|  | 148 | is currently the minimum supported stack size value to guarantee sufficient | 
|  | 149 | stack space for the interpreter itself.  Note that some platforms may have | 
|  | 150 | particular restrictions on values for the stack size, such as requiring a | 
|  | 151 | minimum stack size > 32kB or requiring allocation in multiples of the system | 
|  | 152 | memory page size - platform documentation should be referred to for more | 
|  | 153 | information (4kB pages are common; using multiples of 4096 for the stack size is | 
|  | 154 | the suggested approach in the absence of more specific information). | 
|  | 155 | Availability: Windows, systems with POSIX threads. | 
|  | 156 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 |  | 
|  | 158 | Detailed interfaces for the objects are documented below. | 
|  | 159 |  | 
|  | 160 | The design of this module is loosely based on Java's threading model. However, | 
|  | 161 | where Java makes locks and condition variables basic behavior of every object, | 
|  | 162 | they are separate objects in Python.  Python's :class:`Thread` class supports a | 
|  | 163 | subset of the behavior of Java's Thread class; currently, there are no | 
|  | 164 | priorities, no thread groups, and threads cannot be destroyed, stopped, | 
|  | 165 | suspended, resumed, or interrupted.  The static methods of Java's Thread class, | 
|  | 166 | when implemented, are mapped to module-level functions. | 
|  | 167 |  | 
|  | 168 | All of the methods described below are executed atomically. | 
|  | 169 |  | 
|  | 170 |  | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 171 | .. _thread-objects: | 
|  | 172 |  | 
|  | 173 | Thread Objects | 
|  | 174 | -------------- | 
|  | 175 |  | 
|  | 176 | This class represents an activity that is run in a separate thread of control. | 
|  | 177 | There are two ways to specify the activity: by passing a callable object to the | 
|  | 178 | constructor, or by overriding the :meth:`run` method in a subclass.  No other | 
|  | 179 | methods (except for the constructor) should be overridden in a subclass.  In | 
|  | 180 | other words,  *only*  override the :meth:`__init__` and :meth:`run` methods of | 
|  | 181 | this class. | 
|  | 182 |  | 
|  | 183 | Once a thread object is created, its activity must be started by calling the | 
|  | 184 | thread's :meth:`start` method.  This invokes the :meth:`run` method in a | 
|  | 185 | separate thread of control. | 
|  | 186 |  | 
|  | 187 | Once the thread's activity is started, the thread is considered 'alive'. It | 
|  | 188 | stops being alive when its :meth:`run` method terminates -- either normally, or | 
|  | 189 | by raising an unhandled exception.  The :meth:`is_alive` method tests whether the | 
|  | 190 | thread is alive. | 
|  | 191 |  | 
|  | 192 | Other threads can call a thread's :meth:`join` method.  This blocks the calling | 
|  | 193 | thread until the thread whose :meth:`join` method is called is terminated. | 
|  | 194 |  | 
|  | 195 | A thread has a name.  The name can be passed to the constructor, and read or | 
|  | 196 | changed through the :attr:`name` attribute. | 
|  | 197 |  | 
|  | 198 | A thread can be flagged as a "daemon thread".  The significance of this flag is | 
|  | 199 | that the entire Python program exits when only daemon threads are left.  The | 
|  | 200 | initial value is inherited from the creating thread.  The flag can be set | 
| Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 201 | through the :attr:`daemon` property. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 202 |  | 
|  | 203 | There is a "main thread" object; this corresponds to the initial thread of | 
|  | 204 | control in the Python program.  It is not a daemon thread. | 
|  | 205 |  | 
|  | 206 | There is the possibility that "dummy thread objects" are created. These are | 
|  | 207 | thread objects corresponding to "alien threads", which are threads of control | 
|  | 208 | started outside the threading module, such as directly from C code.  Dummy | 
|  | 209 | thread objects have limited functionality; they are always considered alive and | 
|  | 210 | daemonic, and cannot be :meth:`join`\ ed.  They are never deleted, since it is | 
|  | 211 | impossible to detect the termination of alien threads. | 
|  | 212 |  | 
|  | 213 |  | 
|  | 214 | .. class:: Thread(group=None, target=None, name=None, args=(), kwargs={}) | 
|  | 215 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 216 | This constructor should always be called with keyword arguments.  Arguments | 
|  | 217 | are: | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 218 |  | 
|  | 219 | *group* should be ``None``; reserved for future extension when a | 
|  | 220 | :class:`ThreadGroup` class is implemented. | 
|  | 221 |  | 
|  | 222 | *target* is the callable object to be invoked by the :meth:`run` method. | 
|  | 223 | Defaults to ``None``, meaning nothing is called. | 
|  | 224 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 225 | *name* is the thread name.  By default, a unique name is constructed of the | 
|  | 226 | form "Thread-*N*" where *N* is a small decimal number. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 227 |  | 
|  | 228 | *args* is the argument tuple for the target invocation.  Defaults to ``()``. | 
|  | 229 |  | 
|  | 230 | *kwargs* is a dictionary of keyword arguments for the target invocation. | 
|  | 231 | Defaults to ``{}``. | 
|  | 232 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 233 | If the subclass overrides the constructor, it must make sure to invoke the | 
|  | 234 | base class constructor (``Thread.__init__()``) before doing anything else to | 
|  | 235 | the thread. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 236 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 237 | .. method:: start() | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 238 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 239 | Start the thread's activity. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 240 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 241 | It must be called at most once per thread object.  It arranges for the | 
|  | 242 | object's :meth:`run` method to be invoked in a separate thread of control. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 243 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 244 | This method will raise a :exc:`RuntimeException` if called more than once | 
|  | 245 | on the same thread object. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 246 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 247 | .. method:: run() | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 248 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 249 | Method representing the thread's activity. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 250 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 251 | You may override this method in a subclass.  The standard :meth:`run` | 
|  | 252 | method invokes the callable object passed to the object's constructor as | 
|  | 253 | the *target* argument, if any, with sequential and keyword arguments taken | 
|  | 254 | from the *args* and *kwargs* arguments, respectively. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 255 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 256 | .. method:: join(timeout=None) | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 257 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 258 | Wait until the thread terminates. This blocks the calling thread until the | 
|  | 259 | thread whose :meth:`join` method is called terminates -- either normally | 
|  | 260 | or through an unhandled exception -- or until the optional timeout occurs. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 261 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 262 | When the *timeout* argument is present and not ``None``, it should be a | 
|  | 263 | floating point number specifying a timeout for the operation in seconds | 
|  | 264 | (or fractions thereof). As :meth:`join` always returns ``None``, you must | 
|  | 265 | call :meth:`is_alive` after :meth:`join` to decide whether a timeout | 
|  | 266 | happened -- if the thread is still alive, the :meth:`join` call timed out. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 267 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 268 | When the *timeout* argument is not present or ``None``, the operation will | 
|  | 269 | block until the thread terminates. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 270 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 271 | A thread can be :meth:`join`\ ed many times. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 272 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 273 | :meth:`join` raises a :exc:`RuntimeError` if an attempt is made to join | 
|  | 274 | the current thread as that would cause a deadlock. It is also an error to | 
|  | 275 | :meth:`join` a thread before it has been started and attempts to do so | 
|  | 276 | raises the same exception. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 277 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 278 | .. attribute:: name | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 279 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 280 | A string used for identification purposes only. It has no semantics. | 
|  | 281 | Multiple threads may be given the same name.  The initial name is set by | 
|  | 282 | the constructor. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 283 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 284 | .. method:: getName() | 
|  | 285 | setName() | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 286 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 287 | Old getter/setter API for :attr:`~Thread.name`; use it directly as a | 
|  | 288 | property instead. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 289 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 290 | .. attribute:: ident | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 291 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 292 | The 'thread identifier' of this thread or ``None`` if the thread has not | 
|  | 293 | been started.  This is a nonzero integer.  See the | 
|  | 294 | :func:`thread.get_ident()` function.  Thread identifiers may be recycled | 
|  | 295 | when a thread exits and another thread is created.  The identifier is | 
|  | 296 | available even after the thread has exited. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 297 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 298 | .. method:: is_alive() | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 299 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 300 | Return whether the thread is alive. | 
| Georg Brandl | 770b0be | 2009-01-02 20:10:05 +0000 | [diff] [blame] | 301 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 302 | Roughly, a thread is alive from the moment the :meth:`start` method | 
|  | 303 | returns until its :meth:`run` method terminates. The module function | 
| Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame^] | 304 | :func:`.enumerate` returns a list of all alive threads. | 
| Georg Brandl | 770b0be | 2009-01-02 20:10:05 +0000 | [diff] [blame] | 305 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 306 | .. attribute:: daemon | 
| Georg Brandl | 770b0be | 2009-01-02 20:10:05 +0000 | [diff] [blame] | 307 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 308 | A boolean value indicating whether this thread is a daemon thread (True) | 
|  | 309 | or not (False).  This must be set before :meth:`start` is called, | 
|  | 310 | otherwise :exc:`RuntimeError` is raised.  Its initial value is inherited | 
|  | 311 | from the creating thread; the main thread is not a daemon thread and | 
|  | 312 | therefore all threads created in the main thread default to :attr:`daemon` | 
|  | 313 | = ``False``. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 314 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 315 | The entire Python program exits when no alive non-daemon threads are left. | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 316 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 317 | .. method:: isDaemon() | 
|  | 318 | setDaemon() | 
| Georg Brandl | a971c65 | 2008-11-07 09:39:56 +0000 | [diff] [blame] | 319 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 320 | Old getter/setter API for :attr:`~Thread.daemon`; use it directly as a | 
|  | 321 | property instead. | 
| Georg Brandl | 770b0be | 2009-01-02 20:10:05 +0000 | [diff] [blame] | 322 |  | 
|  | 323 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 324 | .. _lock-objects: | 
|  | 325 |  | 
|  | 326 | Lock Objects | 
|  | 327 | ------------ | 
|  | 328 |  | 
|  | 329 | A primitive lock is a synchronization primitive that is not owned by a | 
|  | 330 | particular thread when locked.  In Python, it is currently the lowest level | 
| Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 331 | synchronization primitive available, implemented directly by the :mod:`_thread` | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 332 | extension module. | 
|  | 333 |  | 
|  | 334 | A primitive lock is in one of two states, "locked" or "unlocked". It is created | 
|  | 335 | in the unlocked state.  It has two basic methods, :meth:`acquire` and | 
|  | 336 | :meth:`release`.  When the state is unlocked, :meth:`acquire` changes the state | 
|  | 337 | to locked and returns immediately.  When the state is locked, :meth:`acquire` | 
|  | 338 | blocks until a call to :meth:`release` in another thread changes it to unlocked, | 
|  | 339 | then the :meth:`acquire` call resets it to locked and returns.  The | 
|  | 340 | :meth:`release` method should only be called in the locked state; it changes the | 
|  | 341 | state to unlocked and returns immediately. If an attempt is made to release an | 
|  | 342 | unlocked lock, a :exc:`RuntimeError` will be raised. | 
|  | 343 |  | 
|  | 344 | When more than one thread is blocked in :meth:`acquire` waiting for the state to | 
|  | 345 | turn to unlocked, only one thread proceeds when a :meth:`release` call resets | 
|  | 346 | the state to unlocked; which one of the waiting threads proceeds is not defined, | 
|  | 347 | and may vary across implementations. | 
|  | 348 |  | 
|  | 349 | All methods are executed atomically. | 
|  | 350 |  | 
|  | 351 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 352 | .. method:: Lock.acquire(blocking=True) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 353 |  | 
|  | 354 | Acquire a lock, blocking or non-blocking. | 
|  | 355 |  | 
|  | 356 | When invoked without arguments, block until the lock is unlocked, then set it to | 
|  | 357 | locked, and return true. | 
|  | 358 |  | 
|  | 359 | When invoked with the *blocking* argument set to true, do the same thing as when | 
|  | 360 | called without arguments, and return true. | 
|  | 361 |  | 
|  | 362 | When invoked with the *blocking* argument set to false, do not block.  If a call | 
|  | 363 | without an argument would block, return false immediately; otherwise, do the | 
|  | 364 | same thing as when called without arguments, and return true. | 
|  | 365 |  | 
|  | 366 |  | 
|  | 367 | .. method:: Lock.release() | 
|  | 368 |  | 
|  | 369 | Release a lock. | 
|  | 370 |  | 
|  | 371 | When the lock is locked, reset it to unlocked, and return.  If any other threads | 
|  | 372 | are blocked waiting for the lock to become unlocked, allow exactly one of them | 
|  | 373 | to proceed. | 
|  | 374 |  | 
|  | 375 | Do not call this method when the lock is unlocked. | 
|  | 376 |  | 
|  | 377 | There is no return value. | 
|  | 378 |  | 
|  | 379 |  | 
|  | 380 | .. _rlock-objects: | 
|  | 381 |  | 
|  | 382 | RLock Objects | 
|  | 383 | ------------- | 
|  | 384 |  | 
|  | 385 | A reentrant lock is a synchronization primitive that may be acquired multiple | 
|  | 386 | times by the same thread.  Internally, it uses the concepts of "owning thread" | 
|  | 387 | and "recursion level" in addition to the locked/unlocked state used by primitive | 
|  | 388 | locks.  In the locked state, some thread owns the lock; in the unlocked state, | 
|  | 389 | no thread owns it. | 
|  | 390 |  | 
|  | 391 | To lock the lock, a thread calls its :meth:`acquire` method; this returns once | 
|  | 392 | the thread owns the lock.  To unlock the lock, a thread calls its | 
|  | 393 | :meth:`release` method. :meth:`acquire`/:meth:`release` call pairs may be | 
|  | 394 | nested; only the final :meth:`release` (the :meth:`release` of the outermost | 
|  | 395 | pair) resets the lock to unlocked and allows another thread blocked in | 
|  | 396 | :meth:`acquire` to proceed. | 
|  | 397 |  | 
|  | 398 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 399 | .. method:: RLock.acquire(blocking=True) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 400 |  | 
|  | 401 | Acquire a lock, blocking or non-blocking. | 
|  | 402 |  | 
|  | 403 | When invoked without arguments: if this thread already owns the lock, increment | 
|  | 404 | the recursion level by one, and return immediately.  Otherwise, if another | 
|  | 405 | thread owns the lock, block until the lock is unlocked.  Once the lock is | 
|  | 406 | unlocked (not owned by any thread), then grab ownership, set the recursion level | 
|  | 407 | to one, and return.  If more than one thread is blocked waiting until the lock | 
|  | 408 | is unlocked, only one at a time will be able to grab ownership of the lock. | 
|  | 409 | There is no return value in this case. | 
|  | 410 |  | 
|  | 411 | When invoked with the *blocking* argument set to true, do the same thing as when | 
|  | 412 | called without arguments, and return true. | 
|  | 413 |  | 
|  | 414 | When invoked with the *blocking* argument set to false, do not block.  If a call | 
|  | 415 | without an argument would block, return false immediately; otherwise, do the | 
|  | 416 | same thing as when called without arguments, and return true. | 
|  | 417 |  | 
|  | 418 |  | 
|  | 419 | .. method:: RLock.release() | 
|  | 420 |  | 
|  | 421 | Release a lock, decrementing the recursion level.  If after the decrement it is | 
|  | 422 | zero, reset the lock to unlocked (not owned by any thread), and if any other | 
|  | 423 | threads are blocked waiting for the lock to become unlocked, allow exactly one | 
|  | 424 | of them to proceed.  If after the decrement the recursion level is still | 
|  | 425 | nonzero, the lock remains locked and owned by the calling thread. | 
|  | 426 |  | 
|  | 427 | Only call this method when the calling thread owns the lock. A | 
|  | 428 | :exc:`RuntimeError` is raised if this method is called when the lock is | 
|  | 429 | unlocked. | 
|  | 430 |  | 
|  | 431 | There is no return value. | 
|  | 432 |  | 
|  | 433 |  | 
|  | 434 | .. _condition-objects: | 
|  | 435 |  | 
|  | 436 | Condition Objects | 
|  | 437 | ----------------- | 
|  | 438 |  | 
|  | 439 | A condition variable is always associated with some kind of lock; this can be | 
|  | 440 | passed in or one will be created by default.  (Passing one in is useful when | 
|  | 441 | several condition variables must share the same lock.) | 
|  | 442 |  | 
|  | 443 | A condition variable has :meth:`acquire` and :meth:`release` methods that call | 
|  | 444 | the corresponding methods of the associated lock. It also has a :meth:`wait` | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 445 | method, and :meth:`notify` and :meth:`notify_all` methods.  These three must only | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 446 | be called when the calling thread has acquired the lock, otherwise a | 
|  | 447 | :exc:`RuntimeError` is raised. | 
|  | 448 |  | 
|  | 449 | The :meth:`wait` method releases the lock, and then blocks until it is awakened | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 450 | by a :meth:`notify` or :meth:`notify_all` call for the same condition variable in | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 451 | another thread.  Once awakened, it re-acquires the lock and returns.  It is also | 
|  | 452 | possible to specify a timeout. | 
|  | 453 |  | 
|  | 454 | The :meth:`notify` method wakes up one of the threads waiting for the condition | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 455 | variable, if any are waiting.  The :meth:`notify_all` method wakes up all threads | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 456 | waiting for the condition variable. | 
|  | 457 |  | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 458 | Note: the :meth:`notify` and :meth:`notify_all` methods don't release the lock; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 459 | this means that the thread or threads awakened will not return from their | 
|  | 460 | :meth:`wait` call immediately, but only when the thread that called | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 461 | :meth:`notify` or :meth:`notify_all` finally relinquishes ownership of the lock. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 462 |  | 
|  | 463 | Tip: the typical programming style using condition variables uses the lock to | 
|  | 464 | synchronize access to some shared state; threads that are interested in a | 
|  | 465 | particular change of state call :meth:`wait` repeatedly until they see the | 
|  | 466 | desired state, while threads that modify the state call :meth:`notify` or | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 467 | :meth:`notify_all` when they change the state in such a way that it could | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 468 | possibly be a desired state for one of the waiters.  For example, the following | 
|  | 469 | code is a generic producer-consumer situation with unlimited buffer capacity:: | 
|  | 470 |  | 
|  | 471 | # Consume one item | 
|  | 472 | cv.acquire() | 
|  | 473 | while not an_item_is_available(): | 
|  | 474 | cv.wait() | 
|  | 475 | get_an_available_item() | 
|  | 476 | cv.release() | 
|  | 477 |  | 
|  | 478 | # Produce one item | 
|  | 479 | cv.acquire() | 
|  | 480 | make_an_item_available() | 
|  | 481 | cv.notify() | 
|  | 482 | cv.release() | 
|  | 483 |  | 
| Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 484 | To choose between :meth:`notify` and :meth:`notify_all`, consider whether one | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 485 | state change can be interesting for only one or several waiting threads.  E.g. | 
|  | 486 | in a typical producer-consumer situation, adding one item to the buffer only | 
|  | 487 | needs to wake up one consumer thread. | 
|  | 488 |  | 
|  | 489 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 490 | .. class:: Condition(lock=None) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 491 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 492 | If the *lock* argument is given and not ``None``, it must be a :class:`Lock` | 
|  | 493 | or :class:`RLock` object, and it is used as the underlying lock.  Otherwise, | 
|  | 494 | a new :class:`RLock` object is created and used as the underlying lock. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 495 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 496 | .. method:: acquire(*args) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 497 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 498 | Acquire the underlying lock. This method calls the corresponding method on | 
|  | 499 | the underlying lock; the return value is whatever that method returns. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 500 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 501 | .. method:: release() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 502 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 503 | Release the underlying lock. This method calls the corresponding method on | 
|  | 504 | the underlying lock; there is no return value. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 505 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 506 | .. method:: wait(timeout=None) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 508 | Wait until notified or until a timeout occurs. If the calling thread has | 
|  | 509 | not acquired the lock when this method is called, a :exc:`RuntimeError` is | 
|  | 510 | raised. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 511 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 512 | This method releases the underlying lock, and then blocks until it is | 
|  | 513 | awakened by a :meth:`notify` or :meth:`notify_all` call for the same | 
|  | 514 | condition variable in another thread, or until the optional timeout | 
|  | 515 | occurs.  Once awakened or timed out, it re-acquires the lock and returns. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 516 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 517 | When the *timeout* argument is present and not ``None``, it should be a | 
|  | 518 | floating point number specifying a timeout for the operation in seconds | 
|  | 519 | (or fractions thereof). | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 520 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 521 | When the underlying lock is an :class:`RLock`, it is not released using | 
|  | 522 | its :meth:`release` method, since this may not actually unlock the lock | 
|  | 523 | when it was acquired multiple times recursively.  Instead, an internal | 
|  | 524 | interface of the :class:`RLock` class is used, which really unlocks it | 
|  | 525 | even when it has been recursively acquired several times. Another internal | 
|  | 526 | interface is then used to restore the recursion level when the lock is | 
|  | 527 | reacquired. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 528 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 529 | .. method:: notify() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 530 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 531 | Wake up a thread waiting on this condition, if any.  If the calling thread | 
|  | 532 | has not acquired the lock when this method is called, a | 
|  | 533 | :exc:`RuntimeError` is raised. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 534 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 535 | This method wakes up one of the threads waiting for the condition | 
|  | 536 | variable, if any are waiting; it is a no-op if no threads are waiting. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 537 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 538 | The current implementation wakes up exactly one thread, if any are | 
|  | 539 | waiting.  However, it's not safe to rely on this behavior.  A future, | 
|  | 540 | optimized implementation may occasionally wake up more than one thread. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 541 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 542 | Note: the awakened thread does not actually return from its :meth:`wait` | 
|  | 543 | call until it can reacquire the lock.  Since :meth:`notify` does not | 
|  | 544 | release the lock, its caller should. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 545 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 546 | .. method:: notify_all() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 547 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 548 | Wake up all threads waiting on this condition.  This method acts like | 
|  | 549 | :meth:`notify`, but wakes up all waiting threads instead of one. If the | 
|  | 550 | calling thread has not acquired the lock when this method is called, a | 
|  | 551 | :exc:`RuntimeError` is raised. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 552 |  | 
|  | 553 |  | 
|  | 554 | .. _semaphore-objects: | 
|  | 555 |  | 
|  | 556 | Semaphore Objects | 
|  | 557 | ----------------- | 
|  | 558 |  | 
|  | 559 | This is one of the oldest synchronization primitives in the history of computer | 
|  | 560 | science, invented by the early Dutch computer scientist Edsger W. Dijkstra (he | 
|  | 561 | used :meth:`P` and :meth:`V` instead of :meth:`acquire` and :meth:`release`). | 
|  | 562 |  | 
|  | 563 | A semaphore manages an internal counter which is decremented by each | 
|  | 564 | :meth:`acquire` call and incremented by each :meth:`release` call.  The counter | 
|  | 565 | can never go below zero; when :meth:`acquire` finds that it is zero, it blocks, | 
|  | 566 | waiting until some other thread calls :meth:`release`. | 
|  | 567 |  | 
|  | 568 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 569 | .. class:: Semaphore(value=1) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 570 |  | 
|  | 571 | The optional argument gives the initial *value* for the internal counter; it | 
|  | 572 | defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is | 
|  | 573 | raised. | 
|  | 574 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 575 | .. method:: acquire(blocking=True) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 576 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 577 | Acquire a semaphore. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 578 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 579 | When invoked without arguments: if the internal counter is larger than | 
|  | 580 | zero on entry, decrement it by one and return immediately.  If it is zero | 
|  | 581 | on entry, block, waiting until some other thread has called | 
|  | 582 | :meth:`release` to make it larger than zero.  This is done with proper | 
|  | 583 | interlocking so that if multiple :meth:`acquire` calls are blocked, | 
|  | 584 | :meth:`release` will wake exactly one of them up.  The implementation may | 
|  | 585 | pick one at random, so the order in which blocked threads are awakened | 
|  | 586 | should not be relied on.  There is no return value in this case. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 587 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 588 | When invoked with *blocking* set to true, do the same thing as when called | 
|  | 589 | without arguments, and return true. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 590 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 591 | When invoked with *blocking* set to false, do not block.  If a call | 
|  | 592 | without an argument would block, return false immediately; otherwise, do | 
|  | 593 | the same thing as when called without arguments, and return true. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 594 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 595 | .. method:: release() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 596 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 597 | Release a semaphore, incrementing the internal counter by one.  When it | 
|  | 598 | was zero on entry and another thread is waiting for it to become larger | 
|  | 599 | than zero again, wake up that thread. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 600 |  | 
|  | 601 |  | 
|  | 602 | .. _semaphore-examples: | 
|  | 603 |  | 
|  | 604 | :class:`Semaphore` Example | 
|  | 605 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | 
|  | 606 |  | 
|  | 607 | Semaphores are often used to guard resources with limited capacity, for example, | 
|  | 608 | a database server.  In any situation where the size of the resource size is | 
|  | 609 | fixed, you should use a bounded semaphore.  Before spawning any worker threads, | 
|  | 610 | your main thread would initialize the semaphore:: | 
|  | 611 |  | 
|  | 612 | maxconnections = 5 | 
|  | 613 | ... | 
|  | 614 | pool_sema = BoundedSemaphore(value=maxconnections) | 
|  | 615 |  | 
|  | 616 | Once spawned, worker threads call the semaphore's acquire and release methods | 
|  | 617 | when they need to connect to the server:: | 
|  | 618 |  | 
|  | 619 | pool_sema.acquire() | 
|  | 620 | conn = connectdb() | 
|  | 621 | ... use connection ... | 
|  | 622 | conn.close() | 
|  | 623 | pool_sema.release() | 
|  | 624 |  | 
|  | 625 | The use of a bounded semaphore reduces the chance that a programming error which | 
|  | 626 | causes the semaphore to be released more than it's acquired will go undetected. | 
|  | 627 |  | 
|  | 628 |  | 
|  | 629 | .. _event-objects: | 
|  | 630 |  | 
|  | 631 | Event Objects | 
|  | 632 | ------------- | 
|  | 633 |  | 
|  | 634 | This is one of the simplest mechanisms for communication between threads: one | 
|  | 635 | thread signals an event and other threads wait for it. | 
|  | 636 |  | 
|  | 637 | An event object manages an internal flag that can be set to true with the | 
| Georg Brandl | 502d9a5 | 2009-07-26 15:02:41 +0000 | [diff] [blame] | 638 | :meth:`~Event.set` method and reset to false with the :meth:`clear` method.  The | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 639 | :meth:`wait` method blocks until the flag is true. | 
|  | 640 |  | 
|  | 641 |  | 
|  | 642 | .. class:: Event() | 
|  | 643 |  | 
|  | 644 | The internal flag is initially false. | 
|  | 645 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 646 | .. method:: is_set() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 647 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 648 | Return true if and only if the internal flag is true. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 649 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 650 | .. method:: set() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 651 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 652 | Set the internal flag to true. All threads waiting for it to become true | 
|  | 653 | are awakened. Threads that call :meth:`wait` once the flag is true will | 
|  | 654 | not block at all. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 655 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 656 | .. method:: clear() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 657 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 658 | Reset the internal flag to false. Subsequently, threads calling | 
| Georg Brandl | 502d9a5 | 2009-07-26 15:02:41 +0000 | [diff] [blame] | 659 | :meth:`wait` will block until :meth:`.set` is called to set the internal | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 660 | flag to true again. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 661 |  | 
| Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 662 | .. method:: wait(timeout=None) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 663 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 664 | Block until the internal flag is true.  If the internal flag is true on | 
|  | 665 | entry, return immediately.  Otherwise, block until another thread calls | 
|  | 666 | :meth:`set` to set the flag to true, or until the optional timeout occurs. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 667 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 668 | When the timeout argument is present and not ``None``, it should be a | 
|  | 669 | floating point number specifying a timeout for the operation in seconds | 
|  | 670 | (or fractions thereof). | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 671 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 672 | This method returns the internal flag on exit, so it will always return | 
|  | 673 | ``True`` except if a timeout is given and the operation times out. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 674 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 675 | .. versionchanged:: 3.1 | 
|  | 676 | Previously, the method always returned ``None``. | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 677 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 678 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 679 | .. _timer-objects: | 
|  | 680 |  | 
|  | 681 | Timer Objects | 
|  | 682 | ------------- | 
|  | 683 |  | 
|  | 684 | This class represents an action that should be run only after a certain amount | 
|  | 685 | of time has passed --- a timer.  :class:`Timer` is a subclass of :class:`Thread` | 
|  | 686 | and as such also functions as an example of creating custom threads. | 
|  | 687 |  | 
|  | 688 | Timers are started, as with threads, by calling their :meth:`start` method.  The | 
|  | 689 | timer can be stopped (before its action has begun) by calling the :meth:`cancel` | 
|  | 690 | method.  The interval the timer will wait before executing its action may not be | 
|  | 691 | exactly the same as the interval specified by the user. | 
|  | 692 |  | 
|  | 693 | For example:: | 
|  | 694 |  | 
|  | 695 | def hello(): | 
| Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 696 | print("hello, world") | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 697 |  | 
|  | 698 | t = Timer(30.0, hello) | 
|  | 699 | t.start() # after 30 seconds, "hello, world" will be printed | 
|  | 700 |  | 
|  | 701 |  | 
|  | 702 | .. class:: Timer(interval, function, args=[], kwargs={}) | 
|  | 703 |  | 
|  | 704 | Create a timer that will run *function* with arguments *args* and  keyword | 
|  | 705 | arguments *kwargs*, after *interval* seconds have passed. | 
|  | 706 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 707 | .. method:: cancel() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 708 |  | 
| Georg Brandl | 7a72b3a | 2009-07-26 14:48:09 +0000 | [diff] [blame] | 709 | Stop the timer, and cancel the execution of the timer's action.  This will | 
|  | 710 | only work if the timer is still in its waiting stage. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 711 |  | 
|  | 712 |  | 
|  | 713 | .. _with-locks: | 
|  | 714 |  | 
|  | 715 | Using locks, conditions, and semaphores in the :keyword:`with` statement | 
|  | 716 | ------------------------------------------------------------------------ | 
|  | 717 |  | 
|  | 718 | All of the objects provided by this module that have :meth:`acquire` and | 
|  | 719 | :meth:`release` methods can be used as context managers for a :keyword:`with` | 
|  | 720 | statement.  The :meth:`acquire` method will be called when the block is entered, | 
|  | 721 | and :meth:`release` will be called when the block is exited. | 
|  | 722 |  | 
|  | 723 | Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`, | 
|  | 724 | :class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as | 
|  | 725 | :keyword:`with` statement context managers.  For example:: | 
|  | 726 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 727 | import threading | 
|  | 728 |  | 
|  | 729 | some_rlock = threading.RLock() | 
|  | 730 |  | 
|  | 731 | with some_rlock: | 
| Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 732 | print("some_rlock is locked while this executes") | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 733 |  | 
| Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 734 |  | 
|  | 735 | .. _threaded-imports: | 
|  | 736 |  | 
|  | 737 | Importing in threaded code | 
|  | 738 | -------------------------- | 
|  | 739 |  | 
|  | 740 | While the import machinery is thread safe, there are two key | 
|  | 741 | restrictions on threaded imports due to inherent limitations in the way | 
|  | 742 | that thread safety is provided: | 
|  | 743 |  | 
|  | 744 | * Firstly, other than in the main module, an import should not have the | 
|  | 745 | side effect of spawning a new thread and then waiting for that thread in | 
|  | 746 | any way. Failing to abide by this restriction can lead to a deadlock if | 
|  | 747 | the spawned thread directly or indirectly attempts to import a module. | 
|  | 748 | * Secondly, all import attempts must be completed before the interpreter | 
|  | 749 | starts shutting itself down. This can be most easily achieved by only | 
|  | 750 | performing imports from non-daemon threads created through the threading | 
|  | 751 | module. Daemon threads and threads created directly with the thread | 
|  | 752 | module will require some other form of synchronization to ensure they do | 
|  | 753 | not attempt imports after system shutdown has commenced. Failure to | 
|  | 754 | abide by this restriction will lead to intermittent exceptions and | 
|  | 755 | crashes during interpreter shutdown (as the late imports attempt to | 
|  | 756 | access machinery which is no longer in a valid state). |