blob: 79b0abf1418648aeec070dd63290bcd5117bcd5c [file] [log] [blame]
Guido van Rossum4acc25b2000-02-02 15:10:15 +00001"""A multi-producer, multi-consumer queue."""
Guido van Rossum9022fce1992-08-25 12:30:44 +00002
Tim Peters5af0e412004-07-12 00:45:14 +00003from time import time as _time
Raymond Hettinger756b3f32004-01-29 06:37:52 +00004from collections import deque
Martin v. Löwis77ac4292002-10-15 15:11:13 +00005
Brett Cannonb42bb5a2003-07-01 05:34:27 +00006__all__ = ['Empty', 'Full', 'Queue']
7
Tim Petersb8c94172001-01-15 22:53:46 +00008class Empty(Exception):
9 "Exception raised by Queue.get(block=0)/get_nowait()."
10 pass
11
12class Full(Exception):
13 "Exception raised by Queue.put(block=0)/put_nowait()."
14 pass
Guido van Rossum9022fce1992-08-25 12:30:44 +000015
16class Queue:
Skip Montanaro86116e22006-06-10 14:09:11 +000017 """Create a queue object with a given maximum size.
Guido van Rossum9022fce1992-08-25 12:30:44 +000018
Skip Montanaro86116e22006-06-10 14:09:11 +000019 If maxsize is <= 0, the queue size is infinite.
20 """
21 def __init__(self, maxsize=0):
Guido van Rossuma0934242002-12-30 22:36:09 +000022 try:
Tim Peters5af0e412004-07-12 00:45:14 +000023 import threading
Guido van Rossuma0934242002-12-30 22:36:09 +000024 except ImportError:
Tim Peters5af0e412004-07-12 00:45:14 +000025 import dummy_threading as threading
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000026 self._init(maxsize)
Tim Peters5af0e412004-07-12 00:45:14 +000027 # mutex must be held whenever the queue is mutating. All methods
28 # that acquire mutex must release it before returning. mutex
Raymond Hettingera3c77672006-11-23 21:35:19 +000029 # is shared between the three conditions, so acquiring and
Tim Peters5af0e412004-07-12 00:45:14 +000030 # 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)
Raymond Hettingerfd3fcf02006-03-24 20:43:29 +000038 # 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
42
43 def task_done(self):
44 """Indicate that a formerly enqueued task is complete.
45
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.
49
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).
53
54 Raises a ValueError if called more times than there were items
55 placed in the queue.
56 """
57 self.all_tasks_done.acquire()
58 try:
Raymond Hettingerc4e94b92006-03-25 12:15:04 +000059 unfinished = self.unfinished_tasks - 1
Raymond Hettingerfd3fcf02006-03-24 20:43:29 +000060 if unfinished <= 0:
61 if unfinished < 0:
Tim Peterse33901e2006-03-25 01:50:43 +000062 raise ValueError('task_done() called too many times')
Raymond Hettingerfd3fcf02006-03-24 20:43:29 +000063 self.all_tasks_done.notifyAll()
Raymond Hettingerc4e94b92006-03-25 12:15:04 +000064 self.unfinished_tasks = unfinished
Raymond Hettingerfd3fcf02006-03-24 20:43:29 +000065 finally:
66 self.all_tasks_done.release()
67
68 def join(self):
69 """Blocks until all items in the Queue have been gotten and processed.
70
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.
74
75 When the count of unfinished tasks drops to zero, join() unblocks.
76 """
77 self.all_tasks_done.acquire()
78 try:
79 while self.unfinished_tasks:
80 self.all_tasks_done.wait()
81 finally:
82 self.all_tasks_done.release()
Guido van Rossum9022fce1992-08-25 12:30:44 +000083
Barry Warsaw3d96d521997-11-20 19:56:38 +000084 def qsize(self):
Guido van Rossum9e1721f1999-02-08 18:34:01 +000085 """Return the approximate size of the queue (not reliable!)."""
Guido van Rossum7e6d18c1998-04-29 14:29:32 +000086 self.mutex.acquire()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000087 n = self._qsize()
Guido van Rossum7e6d18c1998-04-29 14:29:32 +000088 self.mutex.release()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000089 return n
Barry Warsaw3d96d521997-11-20 19:56:38 +000090
91 def empty(self):
Martin v. Löwis77ac4292002-10-15 15:11:13 +000092 """Return True if the queue is empty, False otherwise (not reliable!)."""
Guido van Rossum7e6d18c1998-04-29 14:29:32 +000093 self.mutex.acquire()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000094 n = self._empty()
Guido van Rossum7e6d18c1998-04-29 14:29:32 +000095 self.mutex.release()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000096 return n
Barry Warsaw3d96d521997-11-20 19:56:38 +000097
98 def full(self):
Martin v. Löwis77ac4292002-10-15 15:11:13 +000099 """Return True if the queue is full, False otherwise (not reliable!)."""
Guido van Rossum7e6d18c1998-04-29 14:29:32 +0000100 self.mutex.acquire()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000101 n = self._full()
Guido van Rossum7e6d18c1998-04-29 14:29:32 +0000102 self.mutex.release()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000103 return n
Barry Warsaw3d96d521997-11-20 19:56:38 +0000104
Martin v. Löwis77ac4292002-10-15 15:11:13 +0000105 def put(self, item, block=True, timeout=None):
Guido van Rossumc09e6b11998-04-09 14:25:32 +0000106 """Put an item into the queue.
107
Martin v. Löwis77ac4292002-10-15 15:11:13 +0000108 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).
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000115 """
Tim Peters5af0e412004-07-12 00:45:14 +0000116 self.not_full.acquire()
Mark Hammond3b959db2002-04-19 00:11:32 +0000117 try:
Tim Peters71ed2202004-07-12 01:20:32 +0000118 if not block:
119 if self._full():
120 raise Full
121 elif timeout is None:
Tim Peters5af0e412004-07-12 00:45:14 +0000122 while self._full():
123 self.not_full.wait()
124 else:
125 if timeout < 0:
126 raise ValueError("'timeout' must be a positive number")
127 endtime = _time() + timeout
128 while self._full():
129 remaining = endtime - _time()
Tim Peters71ed2202004-07-12 01:20:32 +0000130 if remaining <= 0.0:
Tim Peters5af0e412004-07-12 00:45:14 +0000131 raise Full
132 self.not_full.wait(remaining)
Mark Hammond3b959db2002-04-19 00:11:32 +0000133 self._put(item)
Raymond Hettingerfd3fcf02006-03-24 20:43:29 +0000134 self.unfinished_tasks += 1
Tim Peters5af0e412004-07-12 00:45:14 +0000135 self.not_empty.notify()
Mark Hammond3b959db2002-04-19 00:11:32 +0000136 finally:
Tim Peters5af0e412004-07-12 00:45:14 +0000137 self.not_full.release()
Barry Warsaw3d96d521997-11-20 19:56:38 +0000138
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000139 def put_nowait(self, item):
140 """Put an item into the queue without blocking.
Guido van Rossumc09e6b11998-04-09 14:25:32 +0000141
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000142 Only enqueue the item if a free slot is immediately available.
143 Otherwise raise the Full exception.
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000144 """
Tim Peters71ed2202004-07-12 01:20:32 +0000145 return self.put(item, False)
Barry Warsaw3d96d521997-11-20 19:56:38 +0000146
Martin v. Löwis77ac4292002-10-15 15:11:13 +0000147 def get(self, block=True, timeout=None):
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000148 """Remove and return an item from the queue.
Guido van Rossumc09e6b11998-04-09 14:25:32 +0000149
Martin v. Löwis77ac4292002-10-15 15:11:13 +0000150 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
156 in that case).
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000157 """
Tim Peters5af0e412004-07-12 00:45:14 +0000158 self.not_empty.acquire()
Mark Hammond3b959db2002-04-19 00:11:32 +0000159 try:
Tim Peters71ed2202004-07-12 01:20:32 +0000160 if not block:
161 if self._empty():
162 raise Empty
163 elif timeout is None:
Tim Peters5af0e412004-07-12 00:45:14 +0000164 while self._empty():
165 self.not_empty.wait()
166 else:
167 if timeout < 0:
168 raise ValueError("'timeout' must be a positive number")
169 endtime = _time() + timeout
170 while self._empty():
171 remaining = endtime - _time()
Tim Peters71ed2202004-07-12 01:20:32 +0000172 if remaining <= 0.0:
Tim Peters5af0e412004-07-12 00:45:14 +0000173 raise Empty
174 self.not_empty.wait(remaining)
Mark Hammond3b959db2002-04-19 00:11:32 +0000175 item = self._get()
Tim Peters5af0e412004-07-12 00:45:14 +0000176 self.not_full.notify()
177 return item
Mark Hammond3b959db2002-04-19 00:11:32 +0000178 finally:
Tim Peters5af0e412004-07-12 00:45:14 +0000179 self.not_empty.release()
Guido van Rossum9022fce1992-08-25 12:30:44 +0000180
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000181 def get_nowait(self):
182 """Remove and return an item from the queue without blocking.
Guido van Rossum9022fce1992-08-25 12:30:44 +0000183
Martin v. Löwis77ac4292002-10-15 15:11:13 +0000184 Only get an item if one is immediately available. Otherwise
Guido van Rossum9e1721f1999-02-08 18:34:01 +0000185 raise the Empty exception.
186 """
Tim Peters71ed2202004-07-12 01:20:32 +0000187 return self.get(False)
Guido van Rossum9022fce1992-08-25 12:30:44 +0000188
Barry Warsaw3d96d521997-11-20 19:56:38 +0000189 # 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
Guido van Rossum9022fce1992-08-25 12:30:44 +0000192
Barry Warsaw3d96d521997-11-20 19:56:38 +0000193 # Initialize the queue representation
194 def _init(self, maxsize):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000195 self.maxsize = maxsize
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000196 self.queue = deque()
Guido van Rossum9022fce1992-08-25 12:30:44 +0000197
Barry Warsaw3d96d521997-11-20 19:56:38 +0000198 def _qsize(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000199 return len(self.queue)
Guido van Rossum9022fce1992-08-25 12:30:44 +0000200
Jeremy Hyltona05e2932000-06-28 14:48:01 +0000201 # Check whether the queue is empty
Barry Warsaw3d96d521997-11-20 19:56:38 +0000202 def _empty(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000203 return not self.queue
Guido van Rossum9022fce1992-08-25 12:30:44 +0000204
Barry Warsaw3d96d521997-11-20 19:56:38 +0000205 # Check whether the queue is full
206 def _full(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000207 return self.maxsize > 0 and len(self.queue) == self.maxsize
Guido van Rossum9022fce1992-08-25 12:30:44 +0000208
Barry Warsaw3d96d521997-11-20 19:56:38 +0000209 # Put a new item in the queue
210 def _put(self, item):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000211 self.queue.append(item)
Guido van Rossum9022fce1992-08-25 12:30:44 +0000212
Barry Warsaw3d96d521997-11-20 19:56:38 +0000213 # Get an item from the queue
214 def _get(self):
Raymond Hettinger756b3f32004-01-29 06:37:52 +0000215 return self.queue.popleft()