Keyboard interruptable blocking queue in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T22:56:23Zhttp://stackoverflow.com/feeds/question/212797http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/212797/keyboard-interruptable-blocking-queue-in-python3Keyboard interruptable blocking queue in PythonHenrik Gustafsson2008-10-17T16:10:51Z2008-10-19T17:40:36Z
<p>Hi!</p>
<p>It seems</p>
<pre><code>import Queue
Queue.Queue().get(timeout=10)
</code></pre>
<p>is keyboard interruptible (ctrl-c) whereas</p>
<pre><code>import Queue
Queue.Queue().get()
</code></pre>
<p>is not. I could always create a loop;</p>
<pre><code>import Queue
q = Queue()
while True:
try:
q.get(timeout=1000)
except Queue.Empty:
pass
</code></pre>
<p>but this seems like a strange thing to do.</p>
<p>So, is there a way of getting an indefinitely waiting but keyboard interruptible Queue.get()?</p>
http://stackoverflow.com/questions/212797/keyboard-interruptable-blocking-queue-in-python/212975#2129753Answer by Eli Courtwright for Keyboard interruptable blocking queue in PythonEli Courtwright2008-10-17T17:01:03Z2008-10-17T17:01:03Z<p><code>Queue</code> objects have this behavior because they lock using <code>Condition</code> objects form the <code>threading</code> module. So your solution is really the only way to go.</p>
<p>However, if you really want a <code>Queue</code> method that does this, you can monkeypatch the <code>Queue</code> class. For example:</p>
<pre><code>def interruptable_get(self):
while True:
try:
return self.get(timeout=1000)
except Queue.Empty:
pass
Queue.interruptable_get = interruptable_get
</code></pre>
<p>This would let you say</p>
<pre><code>q.interruptable_get()
</code></pre>
<p>instead of</p>
<pre><code>interruptable_get(q)
</code></pre>
<p>although monkeypatching is generally discouraged by the Python community in cases such as these, since a regular function seems just as good.</p>
http://stackoverflow.com/questions/212797/keyboard-interruptable-blocking-queue-in-python/216719#2167193Answer by Anders Waldenborg for Keyboard interruptable blocking queue in PythonAnders Waldenborg2008-10-19T17:40:36Z2008-10-19T17:40:36Z<p>This may not apply to your use case at all. But I've successfully used this pattern in several cases: (sketchy and likely buggy, but you get the point).</p>
<pre><code>STOP = object()
def consumer(q):
while True:
x = q.get()
if x is STOP:
return
consume(x)
def main()
q = Queue()
c=threading.Thread(target=consumer,args=[q])
try:
run_producer(q)
except KeybordInterrupt:
q.enqueue(STOP)
c.join()
</code></pre>