blob: 6cdf3e8f8880ed9b011af457326d5c3fc2f25fd9 [file] [log] [blame]
Guido van Rossum48a69b71994-05-16 09:35:22 +00001# Defines classes that provide synchronization objects. Note that use of
2# this module requires that your Python support threads.
3#
Guido van Rossuma6970581994-05-18 08:14:04 +00004# condition(lock=None) # a POSIX-like condition-variable object
5# barrier(n) # an n-thread barrier
6# event() # an event object
7# semaphore(n=1) # a semaphore object, with initial count n
8# mrsw() # a multiple-reader single-writer lock
Guido van Rossum48a69b71994-05-16 09:35:22 +00009#
10# CONDITIONS
11#
12# A condition object is created via
13# import this_module
Guido van Rossuma6970581994-05-18 08:14:04 +000014# your_condition_object = this_module.condition(lock=None)
15#
16# As explained below, a condition object has a lock associated with it,
17# used in the protocol to protect condition data. You can specify a
18# lock to use in the constructor, else the constructor will allocate
19# an anonymous lock for you. Specifying a lock explicitly can be useful
20# when more than one condition keys off the same set of shared data.
Guido van Rossum48a69b71994-05-16 09:35:22 +000021#
22# Methods:
23# .acquire()
24# acquire the lock associated with the condition
25# .release()
26# release the lock associated with the condition
27# .wait()
28# block the thread until such time as some other thread does a
29# .signal or .broadcast on the same condition, and release the
30# lock associated with the condition. The lock associated with
31# the condition MUST be in the acquired state at the time
32# .wait is invoked.
33# .signal()
34# wake up exactly one thread (if any) that previously did a .wait
35# on the condition; that thread will awaken with the lock associated
36# with the condition in the acquired state. If no threads are
37# .wait'ing, this is a nop. If more than one thread is .wait'ing on
38# the condition, any of them may be awakened.
39# .broadcast()
40# wake up all threads (if any) that are .wait'ing on the condition;
41# the threads are woken up serially, each with the lock in the
42# acquired state, so should .release() as soon as possible. If no
43# threads are .wait'ing, this is a nop.
44#
45# Note that if a thread does a .wait *while* a signal/broadcast is
Guido van Rossum846c3221994-05-17 08:34:33 +000046# in progress, it's guaranteeed to block until a subsequent
Guido van Rossum48a69b71994-05-16 09:35:22 +000047# signal/broadcast.
48#
49# Secret feature: `broadcast' actually takes an integer argument,
50# and will wake up exactly that many waiting threads (or the total
51# number waiting, if that's less). Use of this is dubious, though,
52# and probably won't be supported if this form of condition is
53# reimplemented in C.
54#
55# DIFFERENCES FROM POSIX
56#
57# + A separate mutex is not needed to guard condition data. Instead, a
58# condition object can (must) be .acquire'ed and .release'ed directly.
59# This eliminates a common error in using POSIX conditions.
60#
61# + Because of implementation difficulties, a POSIX `signal' wakes up
62# _at least_ one .wait'ing thread. Race conditions make it difficult
63# to stop that. This implementation guarantees to wake up only one,
64# but you probably shouldn't rely on that.
65#
66# PROTOCOL
67#
68# Condition objects are used to block threads until "some condition" is
69# true. E.g., a thread may wish to wait until a producer pumps out data
70# for it to consume, or a server may wish to wait until someone requests
71# its services, or perhaps a whole bunch of threads want to wait until a
72# preceding pass over the data is complete. Early models for conditions
73# relied on some other thread figuring out when a blocked thread's
74# condition was true, and made the other thread responsible both for
75# waking up the blocked thread and guaranteeing that it woke up with all
76# data in a correct state. This proved to be very delicate in practice,
77# and gave conditions a bad name in some circles.
78#
79# The POSIX model addresses these problems by making a thread responsible
80# for ensuring that its own state is correct when it wakes, and relies
81# on a rigid protocol to make this easy; so long as you stick to the
82# protocol, POSIX conditions are easy to "get right":
83#
84# A) The thread that's waiting for some arbitrarily-complex condition
85# (ACC) to become true does:
86#
87# condition.acquire()
88# while not (code to evaluate the ACC):
89# condition.wait()
90# # That blocks the thread, *and* releases the lock. When a
91# # condition.signal() happens, it will wake up some thread that
92# # did a .wait, *and* acquire the lock again before .wait
93# # returns.
94# #
95# # Because the lock is acquired at this point, the state used
96# # in evaluating the ACC is frozen, so it's safe to go back &
97# # reevaluate the ACC.
98#
99# # At this point, ACC is true, and the thread has the condition
100# # locked.
101# # So code here can safely muck with the shared state that
102# # went into evaluating the ACC -- if it wants to.
103# # When done mucking with the shared state, do
104# condition.release()
105#
106# B) Threads that are mucking with shared state that may affect the
107# ACC do:
108#
109# condition.acquire()
110# # muck with shared state
111# condition.release()
112# if it's possible that ACC is true now:
113# condition.signal() # or .broadcast()
114#
115# Note: You may prefer to put the "if" clause before the release().
116# That's fine, but do note that anyone waiting on the signal will
117# stay blocked until the release() is done (since acquiring the
118# condition is part of what .wait() does before it returns).
119#
120# TRICK OF THE TRADE
121#
122# With simpler forms of conditions, it can be impossible to know when
123# a thread that's supposed to do a .wait has actually done it. But
124# because this form of condition releases a lock as _part_ of doing a
125# wait, the state of that lock can be used to guarantee it.
126#
127# E.g., suppose thread A spawns thread B and later wants to wait for B to
128# complete:
129#
130# In A: In B:
131#
132# B_done = condition() ... do work ...
133# B_done.acquire() B_done.acquire(); B_done.release()
134# spawn B B_done.signal()
135# ... some time later ... ... and B exits ...
136# B_done.wait()
137#
138# Because B_done was in the acquire'd state at the time B was spawned,
139# B's attempt to acquire B_done can't succeed until A has done its
140# B_done.wait() (which releases B_done). So B's B_done.signal() is
141# guaranteed to be seen by the .wait(). Without the lock trick, B
142# may signal before A .waits, and then A would wait forever.
143#
144# BARRIERS
145#
146# A barrier object is created via
147# import this_module
148# your_barrier = this_module.barrier(num_threads)
149#
150# Methods:
151# .enter()
152# the thread blocks until num_threads threads in all have done
153# .enter(). Then the num_threads threads that .enter'ed resume,
154# and the barrier resets to capture the next num_threads threads
155# that .enter it.
156#
157# EVENTS
158#
159# An event object is created via
160# import this_module
161# your_event = this_module.event()
162#
163# An event has two states, `posted' and `cleared'. An event is
164# created in the cleared state.
165#
166# Methods:
167#
168# .post()
169# Put the event in the posted state, and resume all threads
170# .wait'ing on the event (if any).
171#
172# .clear()
173# Put the event in the cleared state.
174#
175# .is_posted()
176# Returns 0 if the event is in the cleared state, or 1 if the event
177# is in the posted state.
178#
179# .wait()
180# If the event is in the posted state, returns immediately.
181# If the event is in the cleared state, blocks the calling thread
182# until the event is .post'ed by another thread.
183#
184# Note that an event, once posted, remains posted until explicitly
185# cleared. Relative to conditions, this is both the strength & weakness
186# of events. It's a strength because the .post'ing thread doesn't have to
187# worry about whether the threads it's trying to communicate with have
188# already done a .wait (a condition .signal is seen only by threads that
189# do a .wait _prior_ to the .signal; a .signal does not persist). But
190# it's a weakness because .clear'ing an event is error-prone: it's easy
191# to mistakenly .clear an event before all the threads you intended to
192# see the event get around to .wait'ing on it. But so long as you don't
193# need to .clear an event, events are easy to use safely.
194#
Guido van Rossum846c3221994-05-17 08:34:33 +0000195# SEMAPHORES
196#
197# A semaphore object is created via
198# import this_module
199# your_semaphore = this_module.semaphore(count=1)
200#
201# A semaphore has an integer count associated with it. The initial value
202# of the count is specified by the optional argument (which defaults to
203# 1) passed to the semaphore constructor.
204#
205# Methods:
206#
207# .p()
208# If the semaphore's count is greater than 0, decrements the count
209# by 1 and returns.
210# Else if the semaphore's count is 0, blocks the calling thread
211# until a subsequent .v() increases the count. When that happens,
212# the count will be decremented by 1 and the calling thread resumed.
213#
214# .v()
215# Increments the semaphore's count by 1, and wakes up a thread (if
216# any) blocked by a .p(). It's an (detected) error for a .v() to
217# increase the semaphore's count to a value larger than the initial
218# count.
Guido van Rossuma6970581994-05-18 08:14:04 +0000219#
220# MULTIPLE-READER SINGLE-WRITER LOCKS
221#
222# A mrsw lock is created via
223# import this_module
224# your_mrsw_lock = this_module.mrsw()
225#
226# This kind of lock is often useful with complex shared data structures.
227# The object lets any number of "readers" proceed, so long as no thread
228# wishes to "write". When a (one or more) thread declares its intention
229# to "write" (e.g., to update a shared structure), all current readers
230# are allowed to finish, and then a writer gets exclusive access; all
231# other readers & writers are blocked until the current writer completes.
232# Finally, if some thread is waiting to write and another is waiting to
233# read, the writer takes precedence.
234#
235# Methods:
236#
237# .read_in()
238# If no thread is writing or waiting to write, returns immediately.
239# Else blocks until no thread is writing or waiting to write. So
240# long as some thread has completed a .read_in but not a .read_out,
241# writers are blocked.
242#
243# .read_out()
244# Use sometime after a .read_in to declare that the thread is done
245# reading. When all threads complete reading, a writer can proceed.
246#
247# .write_in()
248# If no thread is writing (has completed a .write_in, but hasn't yet
249# done a .write_out) or reading (similarly), returns immediately.
250# Else blocks the calling thread, and threads waiting to read, until
251# the current writer completes writing or all the current readers
252# complete reading; if then more than one thread is waiting to
253# write, one of them is allowed to proceed, but which one is not
254# specified.
255#
256# .write_out()
257# Use sometime after a .write_in to declare that the thread is done
258# writing. Then if some other thread is waiting to write, it's
259# allowed to proceed. Else all threads (if any) waiting to read are
260# allowed to proceed.
Guido van Rossum48a69b71994-05-16 09:35:22 +0000261
262import thread
263
264class condition:
Guido van Rossuma6970581994-05-18 08:14:04 +0000265 def __init__(self, lock=None):
Guido van Rossum48a69b71994-05-16 09:35:22 +0000266 # the lock actually used by .acquire() and .release()
Guido van Rossuma6970581994-05-18 08:14:04 +0000267 if lock is None:
268 self.mutex = thread.allocate_lock()
269 else:
270 if hasattr(lock, 'acquire') and \
271 hasattr(lock, 'release'):
272 self.mutex = lock
273 else:
274 raise TypeError, 'condition constructor requires ' \
275 'a lock argument'
Guido van Rossum48a69b71994-05-16 09:35:22 +0000276
277 # lock used to block threads until a signal
278 self.checkout = thread.allocate_lock()
279 self.checkout.acquire()
280
281 # internal critical-section lock, & the data it protects
282 self.idlock = thread.allocate_lock()
283 self.id = 0
284 self.waiting = 0 # num waiters subject to current release
285 self.pending = 0 # num waiters awaiting next signal
286 self.torelease = 0 # num waiters to release
287 self.releasing = 0 # 1 iff release is in progress
288
289 def acquire(self):
290 self.mutex.acquire()
291
292 def release(self):
293 self.mutex.release()
294
295 def wait(self):
296 mutex, checkout, idlock = self.mutex, self.checkout, self.idlock
297 if not mutex.locked():
298 raise ValueError, \
299 "condition must be .acquire'd when .wait() invoked"
300
301 idlock.acquire()
302 myid = self.id
303 self.pending = self.pending + 1
304 idlock.release()
305
306 mutex.release()
307
308 while 1:
309 checkout.acquire(); idlock.acquire()
310 if myid < self.id:
311 break
312 checkout.release(); idlock.release()
313
314 self.waiting = self.waiting - 1
315 self.torelease = self.torelease - 1
316 if self.torelease:
317 checkout.release()
318 else:
319 self.releasing = 0
320 if self.waiting == self.pending == 0:
321 self.id = 0
322 idlock.release()
323 mutex.acquire()
324
325 def signal(self):
326 self.broadcast(1)
327
328 def broadcast(self, num = -1):
329 if num < -1:
330 raise ValueError, '.broadcast called with num ' + `num`
331 if num == 0:
332 return
333 self.idlock.acquire()
334 if self.pending:
335 self.waiting = self.waiting + self.pending
336 self.pending = 0
337 self.id = self.id + 1
338 if num == -1:
339 self.torelease = self.waiting
340 else:
341 self.torelease = min( self.waiting,
342 self.torelease + num )
343 if self.torelease and not self.releasing:
344 self.releasing = 1
345 self.checkout.release()
346 self.idlock.release()
347
348class barrier:
349 def __init__(self, n):
350 self.n = n
351 self.togo = n
352 self.full = condition()
353
354 def enter(self):
355 full = self.full
356 full.acquire()
357 self.togo = self.togo - 1
358 if self.togo:
359 full.wait()
360 else:
361 self.togo = self.n
362 full.broadcast()
363 full.release()
364
365class event:
366 def __init__(self):
367 self.state = 0
368 self.posted = condition()
369
370 def post(self):
371 self.posted.acquire()
372 self.state = 1
373 self.posted.broadcast()
374 self.posted.release()
375
376 def clear(self):
377 self.posted.acquire()
378 self.state = 0
379 self.posted.release()
380
381 def is_posted(self):
382 self.posted.acquire()
383 answer = self.state
384 self.posted.release()
385 return answer
386
387 def wait(self):
388 self.posted.acquire()
Guido van Rossum846c3221994-05-17 08:34:33 +0000389 if not self.state:
Guido van Rossum48a69b71994-05-16 09:35:22 +0000390 self.posted.wait()
391 self.posted.release()
392
Guido van Rossum846c3221994-05-17 08:34:33 +0000393class semaphore:
394 def __init__(self, count=1):
395 if count <= 0:
396 raise ValueError, 'semaphore count %d; must be >= 1' % count
397 self.count = count
398 self.maxcount = count
399 self.nonzero = condition()
400
401 def p(self):
402 self.nonzero.acquire()
403 while self.count == 0:
404 self.nonzero.wait()
405 self.count = self.count - 1
406 self.nonzero.release()
407
408 def v(self):
409 self.nonzero.acquire()
410 if self.count == self.maxcount:
411 raise ValueError, '.v() tried to raise semaphore count above ' \
412 'initial value ' + `maxcount`
413 self.count = self.count + 1
414 self.nonzero.signal()
415 self.nonzero.release()
416
Guido van Rossuma6970581994-05-18 08:14:04 +0000417class mrsw:
418 def __init__(self):
419 # critical-section lock & the data it protects
420 self.rwOK = thread.allocate_lock()
421 self.nr = 0 # number readers actively reading (not just waiting)
422 self.nw = 0 # number writers either waiting to write or writing
423 self.writing = 0 # 1 iff some thread is writing
424
425 # conditions
426 self.readOK = condition(self.rwOK) # OK to unblock readers
427 self.writeOK = condition(self.rwOK) # OK to unblock writers
428
429 def read_in(self):
430 self.rwOK.acquire()
431 while self.nw:
432 self.readOK.wait()
433 self.nr = self.nr + 1
434 self.rwOK.release()
435
436 def read_out(self):
437 self.rwOK.acquire()
438 if self.nr <= 0:
439 raise ValueError, \
440 '.read_out() invoked without an active reader'
441 self.nr = self.nr - 1
442 if self.nr == 0:
443 self.writeOK.signal()
444 self.rwOK.release()
445
446 def write_in(self):
447 self.rwOK.acquire()
448 self.nw = self.nw + 1
449 while self.writing or self.nr:
450 self.writeOK.wait()
451 self.writing = 1
452 self.rwOK.release()
453
454 def write_out(self):
455 self.rwOK.acquire()
456 if not self.writing:
457 raise ValueError, \
458 '.write_out() invoked without an active writer'
459 self.writing = 0
460 self.nw = self.nw - 1
461 if self.nw:
462 self.writeOK.signal()
463 else:
464 self.readOK.broadcast()
465 self.rwOK.release()
466
Guido van Rossum48a69b71994-05-16 09:35:22 +0000467# The rest of the file is a test case, that runs a number of parallelized
468# quicksorts in parallel. If it works, you'll get about 600 lines of
469# tracing output, with a line like
470# test passed! 209 threads created in all
471# as the last line. The content and order of preceding lines will
472# vary across runs.
473
474def _new_thread(func, *args):
475 global TID
476 tid.acquire(); id = TID = TID+1; tid.release()
477 io.acquire(); alive.append(id); \
478 print 'starting thread', id, '--', len(alive), 'alive'; \
479 io.release()
480 thread.start_new_thread( func, (id,) + args )
481
482def _qsort(tid, a, l, r, finished):
483 # sort a[l:r]; post finished when done
484 io.acquire(); print 'thread', tid, 'qsort', l, r; io.release()
485 if r-l > 1:
486 pivot = a[l]
487 j = l+1 # make a[l:j] <= pivot, and a[j:r] > pivot
488 for i in range(j, r):
489 if a[i] <= pivot:
490 a[j], a[i] = a[i], a[j]
491 j = j + 1
492 a[l], a[j-1] = a[j-1], pivot
493
494 l_subarray_sorted = event()
495 r_subarray_sorted = event()
496 _new_thread(_qsort, a, l, j-1, l_subarray_sorted)
497 _new_thread(_qsort, a, j, r, r_subarray_sorted)
498 l_subarray_sorted.wait()
499 r_subarray_sorted.wait()
500
501 io.acquire(); print 'thread', tid, 'qsort done'; \
502 alive.remove(tid); io.release()
503 finished.post()
504
505def _randarray(tid, a, finished):
506 io.acquire(); print 'thread', tid, 'randomizing array'; \
507 io.release()
508 for i in range(1, len(a)):
509 wh.acquire(); j = randint(0,i); wh.release()
510 a[i], a[j] = a[j], a[i]
511 io.acquire(); print 'thread', tid, 'randomizing done'; \
512 alive.remove(tid); io.release()
513 finished.post()
514
515def _check_sort(a):
516 if a != range(len(a)):
517 raise ValueError, ('a not sorted', a)
518
519def _run_one_sort(tid, a, bar, done):
520 # randomize a, and quicksort it
521 # for variety, all the threads running this enter a barrier
522 # at the end, and post `done' after the barrier exits
523 io.acquire(); print 'thread', tid, 'randomizing', a; \
524 io.release()
525 finished = event()
526 _new_thread(_randarray, a, finished)
527 finished.wait()
528
529 io.acquire(); print 'thread', tid, 'sorting', a; io.release()
530 finished.clear()
531 _new_thread(_qsort, a, 0, len(a), finished)
532 finished.wait()
533 _check_sort(a)
534
535 io.acquire(); print 'thread', tid, 'entering barrier'; \
536 io.release()
537 bar.enter()
538 io.acquire(); print 'thread', tid, 'leaving barrier'; \
539 io.release()
540 io.acquire(); alive.remove(tid); io.release()
541 bar.enter() # make sure they've all removed themselves from alive
542 ## before 'done' is posted
543 bar.enter() # just to be cruel
544 done.post()
545
546def test():
547 global TID, tid, io, wh, randint, alive
548 import whrandom
549 randint = whrandom.randint
550
551 TID = 0 # thread ID (1, 2, ...)
552 tid = thread.allocate_lock() # for changing TID
553 io = thread.allocate_lock() # for printing, and 'alive'
554 wh = thread.allocate_lock() # for calls to whrandom
555 alive = [] # IDs of active threads
556
557 NSORTS = 5
558 arrays = []
559 for i in range(NSORTS):
560 arrays.append( range( (i+1)*10 ) )
561
562 bar = barrier(NSORTS)
563 finished = event()
564 for i in range(NSORTS):
565 _new_thread(_run_one_sort, arrays[i], bar, finished)
566 finished.wait()
567
568 print 'all threads done, and checking results ...'
569 if alive:
570 raise ValueError, ('threads still alive at end', alive)
571 for i in range(NSORTS):
572 a = arrays[i]
573 if len(a) != (i+1)*10:
574 raise ValueError, ('length of array', i, 'screwed up')
575 _check_sort(a)
576
577 print 'test passed!', TID, 'threads created in all'
578
579if __name__ == '__main__':
580 test()
581
582# end of module