1 """A multi-producer, multi-consumer queue."""
3 from time
import time
as _time
4 from collections
import deque
6 __all__
= ['Empty', 'Full', 'Queue']
8 class Empty(Exception):
9 "Exception raised by Queue.get(block=0)/get_nowait()."
12 class Full(Exception):
13 "Exception raised by Queue.put(block=0)/put_nowait()."
17 """Create a queue object with a given maximum size.
19 If maxsize is <= 0, the queue size is infinite.
21 def __init__(self
, maxsize
=0):
25 import dummy_threading
as threading
27 # mutex must be held whenever the queue is mutating. All methods
28 # that acquire mutex must release it before returning. mutex
29 # is shared between the two conditions, so acquiring and
30 # releasing the conditions also acquires and releases mutex.
31 self
.mutex
= threading
.Lock()
32 # Notify not_empty whenever an item is added to the queue; a
33 # thread waiting to get is notified then.
34 self
.not_empty
= threading
.Condition(self
.mutex
)
35 # Notify not_full whenever an item is removed from the queue;
36 # a thread waiting to put is notified then.
37 self
.not_full
= threading
.Condition(self
.mutex
)
38 # Notify all_tasks_done whenever the number of unfinished tasks
39 # drops to zero; thread waiting to join() is notified to resume
40 self
.all_tasks_done
= threading
.Condition(self
.mutex
)
41 self
.unfinished_tasks
= 0
44 """Indicate that a formerly enqueued task is complete.
46 Used by Queue consumer threads. For each get() used to fetch a task,
47 a subsequent call to task_done() tells the queue that the processing
48 on the task is complete.
50 If a join() is currently blocking, it will resume when all items
51 have been processed (meaning that a task_done() call was received
52 for every item that had been put() into the queue).
54 Raises a ValueError if called more times than there were items
57 self
.all_tasks_done
.acquire()
59 unfinished
= self
.unfinished_tasks
- 1
62 raise ValueError('task_done() called too many times')
63 self
.all_tasks_done
.notifyAll()
64 self
.unfinished_tasks
= unfinished
66 self
.all_tasks_done
.release()
69 """Blocks until all items in the Queue have been gotten and processed.
71 The count of unfinished tasks goes up whenever an item is added to the
72 queue. The count goes down whenever a consumer thread calls task_done()
73 to indicate the item was retrieved and all work on it is complete.
75 When the count of unfinished tasks drops to zero, join() unblocks.
77 self
.all_tasks_done
.acquire()
79 while self
.unfinished_tasks
:
80 self
.all_tasks_done
.wait()
82 self
.all_tasks_done
.release()
85 """Return the approximate size of the queue (not reliable!)."""
92 """Return True if the queue is empty, False otherwise (not reliable!)."""
99 """Return True if the queue is full, False otherwise (not reliable!)."""
105 def put(self
, item
, block
=True, timeout
=None):
106 """Put an item into the queue.
108 If optional args 'block' is true and 'timeout' is None (the default),
109 block if necessary until a free slot is available. If 'timeout' is
110 a positive number, it blocks at most 'timeout' seconds and raises
111 the Full exception if no free slot was available within that time.
112 Otherwise ('block' is false), put an item on the queue if a free slot
113 is immediately available, else raise the Full exception ('timeout'
114 is ignored in that case).
116 self
.not_full
.acquire()
121 elif timeout
is None:
126 raise ValueError("'timeout' must be a positive number")
127 endtime
= _time() + timeout
129 remaining
= endtime
- _time()
132 self
.not_full
.wait(remaining
)
134 self
.unfinished_tasks
+= 1
135 self
.not_empty
.notify()
137 self
.not_full
.release()
139 def put_nowait(self
, item
):
140 """Put an item into the queue without blocking.
142 Only enqueue the item if a free slot is immediately available.
143 Otherwise raise the Full exception.
145 return self
.put(item
, False)
147 def get(self
, block
=True, timeout
=None):
148 """Remove and return an item from the queue.
150 If optional args 'block' is true and 'timeout' is None (the default),
151 block if necessary until an item is available. If 'timeout' is
152 a positive number, it blocks at most 'timeout' seconds and raises
153 the Empty exception if no item was available within that time.
154 Otherwise ('block' is false), return an item if one is immediately
155 available, else raise the Empty exception ('timeout' is ignored
158 self
.not_empty
.acquire()
163 elif timeout
is None:
165 self
.not_empty
.wait()
168 raise ValueError("'timeout' must be a positive number")
169 endtime
= _time() + timeout
171 remaining
= endtime
- _time()
174 self
.not_empty
.wait(remaining
)
176 self
.not_full
.notify()
179 self
.not_empty
.release()
181 def get_nowait(self
):
182 """Remove and return an item from the queue without blocking.
184 Only get an item if one is immediately available. Otherwise
185 raise the Empty exception.
187 return self
.get(False)
189 # Override these methods to implement other queue organizations
190 # (e.g. stack or priority queue).
191 # These will only be called with appropriate locks held
193 # Initialize the queue representation
194 def _init(self
, maxsize
):
195 self
.maxsize
= maxsize
199 return len(self
.queue
)
201 # Check whether the queue is empty
203 return not self
.queue
205 # Check whether the queue is full
207 return self
.maxsize
> 0 and len(self
.queue
) == self
.maxsize
209 # Put a new item in the queue
210 def _put(self
, item
):
211 self
.queue
.append(item
)
213 # Get an item from the queue
215 return self
.queue
.popleft()