Make my code handle in the background function calls that take a long time to finish - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:57:27Zhttp://stackoverflow.com/feeds/question/998674http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/998674/make-my-code-handle-in-the-background-function-calls-that-take-a-long-time-to-fin2Make my code handle in the background function calls that take a long time to finishJcMaco2009-06-15T22:09:02Z2009-06-17T14:34:20Z
<p>Certain functions in my code take a long time to return. I don't need the return value and I'd like to execute the next lines of code in the script before the slow function returns. More precisely, the functions send out commands via USB to another system (via a C++ library with SWIG) and once the other system has completed the task, it returns an "OK" value. I have reproduced the problem in the following example. How can I make "tic" and "toc" print one after the other without any delay? I suppose the solution involves threads, but I am not too familiar with them. Can anyone show me a simple way to solve this problem?</p>
<pre><code>from math import sqrt
from time import sleep
def longcalc():
total = 1e6
for i in range(total):
r = sqrt(i)
return r
def longtime():
#Do stuff here
sleep(1)
return "sleep done"
print "tic"
longcalc()
print "toc"
longtime()
print "tic"
</code></pre>
http://stackoverflow.com/questions/998674/make-my-code-handle-in-the-background-function-calls-that-take-a-long-time-to-fin/998718#9987181Answer by Johnny G for Make my code handle in the background function calls that take a long time to finishJohnny G2009-06-15T22:20:05Z2009-06-15T22:28:19Z<pre><code>from threading import Thread
# ... your code
calcthread = Thread(target=longcalc)
timethread = Thread(target=longtime)
print "tic"
calcthread.start()
print "toc"
timethread.start()
print "tic"
</code></pre>
<p>Have a look at the <a href="http://docs.python.org/library/threading.html" rel="nofollow">python <code>threading</code> docs</a> for more information about multithreading in python. </p>
<p>A word of warning about multithreading: it can be hard. <strong>Very</strong> hard. Debugging multithreaded software can lead to some of the worst experiences you will ever have as a software developer. </p>
<p>So before you delve into the world of potential deadlocks and race conditions, be absolutely sure that it makes sense to convert your synchronous USB interactions into ansynchronous ones. Specifically, ensure that any code dependent upon the async code is executed after it has been completed (via a <a href="http://en.wikipedia.org/wiki/Callback%5F%28computer%5Fscience%29" rel="nofollow">callback method</a> or something similar).</p>
http://stackoverflow.com/questions/998674/make-my-code-handle-in-the-background-function-calls-that-take-a-long-time-to-fin/998743#9987435Answer by Alex Martelli for Make my code handle in the background function calls that take a long time to finishAlex Martelli2009-06-15T22:24:54Z2009-06-17T14:34:20Z<p>Unless the SWIGged C++ code is specifically set up to release the GIL (Global Interpreter Lock) before long delays and re-acquire it before getting back to Python, multi-threading might not prove very useful in practice. You could try <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a> instead:</p>
<pre><code>from multiprocessing import Process
if __name__ == '__main__':
print "tic"
Process(target=longcalc).start()
print "toc"
Process(target=longtime).start()
print "tic"
</code></pre>
<p>multiprocessing is in the standard library in Python 2.6 and later, but can be separately <a href="http://code.google.com/p/python-multiprocessing/" rel="nofollow">downloaded</a> and installed for versions 2.5 and 2.4.</p>
<p>Edit: the asker is of course trying to do something more complicated than this, and in a comment explains:
"""I get a bunch of errors ending with: <code>"pickle.PicklingError: Can't pickle <type 'PySwigObject'>: it's not found as __builtin__.PySwigObject"</code>. Can this be solved without reorganizing all my code? Process was called from inside a method bound to a button to my wxPython interface."""</p>
<p><code>multiprocessing</code> does need to pickle objects to cross process boundaries; not sure what SWIGged object exactly is involved here, but, unless you can find a way to serialize and deserialize it, and register that with the <code>copy_reg module</code>, you need to avoid passing it across the boundary (make SWIGged objects owned and used by a single process, don't have them as module-global objects particularly in <code>__main__</code>, communicate among processes with Queue.Queue through objects that don't contain SWIGged objects, etc).</p>
<p>The <em>early</em> errors (if different than the one you report "ending with") might actually be more significant, but I can't guess without seeing them.</p>
http://stackoverflow.com/questions/998674/make-my-code-handle-in-the-background-function-calls-that-take-a-long-time-to-fin/1006101#10061010Answer by Glyph for Make my code handle in the background function calls that take a long time to finishGlyph2009-06-17T09:54:22Z2009-06-17T09:54:22Z<p>You can use a Future, which is not included in the standard library, but very simple to implement:</p>
<pre><code>from threading import Thread, Event
class Future(object):
def __init__(self, thunk):
self._thunk = thunk
self._event = Event()
self._result = None
self._failed = None
Thread(target=self._run).start()
def _run(self):
try:
self._result = self._thunk()
except Exception, e:
self._failed = True
self._result = e
else:
self._failed = False
self._event.set()
def wait(self):
self._event.wait()
if self._failed:
raise self._result
else:
return self._result
</code></pre>
<p>You would use this particular implementation like this:</p>
<pre><code>import time
def work():
for x in range(3):
time.sleep(1)
print 'Tick...'
print 'Done!'
return 'Result!'
def main():
print 'Starting up...'
f = Future(work)
print 'Doing more main thread work...'
time.sleep(1.5)
print 'Now waiting...'
print 'Got result: %s' % f.wait()
</code></pre>
<p>Unfortunately, when using a system that has no "main" thread, it's hard to tell when to call "wait"; you obviously don't want to stop processing until you absolutely need an answer.</p>
<p>With Twisted, you can use <code>deferToThread</code>, which allows you to return to the main loop. The idiomatically equivalent code in Twisted would be something like this:</p>
<pre><code>import time
from twisted.internet import reactor
from twisted.internet.task import deferLater
from twisted.internet.threads import deferToThread
from twisted.internet.defer import inlineCallbacks
def work():
for x in range(3):
time.sleep(1)
print 'Tick...'
print 'Done!'
return 'Result!'
@inlineCallbacks
def main():
print 'Starting up...'
d = deferToThread(work)
print 'Doing more main thread work...'
yield deferLater(reactor, 1.5, lambda : None)
print "Now 'waiting'..."
print 'Got result: %s' % (yield d)
</code></pre>
<p>although in order to actually start up the reactor and exit when it's finished, you'd need to do this as well:</p>
<pre><code>reactor.callWhenRunning(
lambda : main().addCallback(lambda _: reactor.stop()))
reactor.run()
</code></pre>
<p>The main difference with Twisted is that if more "stuff" happens in the main thread - other timed events fire, other network connections get traffic, buttons get clicked in a GUI - that work will happen seamlessly, because the <code>deferLater</code> and the <code>yield d</code> don't actually stop the whole thread, they only pause the "main" <code>inlineCallbacks</code> coroutine.</p>