Execution order with threads and PyGTK on Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:14:46Z http://stackoverflow.com/feeds/question/1008322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1008322/execution-order-with-threads-and-pygtk-on-windows 1 Execution order with threads and PyGTK on Windows falcojr 2009-06-17T16:56:41Z 2009-06-18T10:59:31Z <p>I'm having issues with threads and PyGTK on Windows. According the the <a href="http://faq.pygtk.org/index.py?req=show&amp;file=faq21.003.htp" rel="nofollow">PyGTK FAQ</a> (and my own experimentation), the only way to reliably update the GUI from a child thread is to use the <code>gobject.idle_add</code> function. However, it can't be guaranteed when this function will be called. How can I guarantee that the line following the <code>gobject.idle_add</code> gets called after the function it points to?</p> <p>Very simple and contrived example: <pre><code>import gtk import gobject from threading import Thread<br /> class Gui(object): def __init__(self): self.button = gtk.Button("Click") self.button.connect("clicked", self.onButtonClicked) self.textEntry = gtk.Entry() self.content = gtk.HBox() self.content.pack_start(self.button) self.content.pack_start(self.textEntry) self.window = gtk.Window() self.window.connect("destroy", self.quit) self.window.add(self.content) self.window.show_all()<br /> def onButtonClicked(self, button): Thread(target=self.startThread).start()<br /> def startThread(self): #I want these next 2 lines to run in order gobject.idle_add(self.updateText) print self.textEntry.get_text()<br /> def updateText(self): self.textEntry.set_text("Hello!")<br /> def quit(self, widget): gtk.main_quit()</p> <p>gobject.threads_init() x = Gui() gtk.main()</pre></code></p> http://stackoverflow.com/questions/1008322/execution-order-with-threads-and-pygtk-on-windows/1008365#1008365 1 Answer by balpha for Execution order with threads and PyGTK on Windows balpha 2009-06-17T17:04:14Z 2009-06-17T17:04:14Z <p>You could wrap the two functions into another function and call idle_add on this function:</p> <pre><code>def update_and_print(self): self.updateText() print self.textEntry.get_text() def startThread(self): gobject.idle_add(self.update_and_print) </code></pre> http://stackoverflow.com/questions/1008322/execution-order-with-threads-and-pygtk-on-windows/1012052#1012052 1 Answer by Glyph for Execution order with threads and PyGTK on Windows Glyph 2009-06-18T10:59:31Z 2009-06-18T10:59:31Z <p>Don't try to update or access your GUI from a thread. You're just asking for trouble. For example, the fact that "<code>get_text</code>" works <em>at all</em> in a thread is almost an accident. You might be able to rely on it in GTK - although I'm not even sure about that - but you won't be able to do so in other GUI toolkits.</p> <p>If you have things that really need doing in threads, you should get the data you need from the GUI <em>before</em> launching the thread, and then update the GUI from the thread by using <code>idle_add</code>, like this:</p> <pre><code>import time import gtk import gobject from threading import Thread w = gtk.Window() h = gtk.HBox() v = gtk.VBox() addend1 = gtk.Entry() h.add(addend1) h.add(gtk.Label(" + ")) addend2 = gtk.Entry() h.add(addend2) h.add(gtk.Label(" = ")) summation = gtk.Entry() summation.set_text("?") summation.set_editable(False) h.add(summation) v.add(h) progress = gtk.ProgressBar() v.add(progress) b = gtk.Button("Do It") v.add(b) w.add(v) status = gtk.Statusbar() v.add(status) w.show_all() def hardWork(a1, a2): messages = ["Doing the hard work to add %s to %s..." % (a1, a2), "Oof, I'm working so hard...", "Almost done..."] for index, message in enumerate(messages): fraction = index / float(len(messages)) gobject.idle_add(progress.set_fraction, fraction) gobject.idle_add(status.push, 4321, message) time.sleep(1) result = a1 + a2 gobject.idle_add(summation.set_text, str(result)) gobject.idle_add(status.push, 4321, "Done!") gobject.idle_add(progress.set_fraction, 1.0) def addthem(*ignored): a1 = int(addend1.get_text()) a2 = int(addend2.get_text()) Thread(target=lambda : hardWork(a1, a2)).start() b.connect("clicked", addthem) gtk.gdk.threads_init() gtk.main() </code></pre> <p>If you really, absolutely need to read data from the GUI in the middle of a thread (this is a really bad idea, don't do it - you can get into really surprising deadlocks, especially when the program is shutting down) there is a utility in Twisted, <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.threads.html#blockingCallFromThread" rel="nofollow">blockingCallFromThread</a>, which will do the hard work for you. You can use it like this:</p> <pre><code>from twisted.internet.gtk2reactor import install install() from twisted.internet import reactor from twisted.internet.threads import blockingCallFromThread from threading import Thread import gtk w = gtk.Window() v = gtk.VBox() e = gtk.Entry() b = gtk.Button("Get Text") v.add(e) v.add(b) w.add(v) def inThread(): print 'Getting value' textValue = blockingCallFromThread(reactor, e.get_text) print 'Got it!', repr(textValue) def kickOffThread(*ignored): Thread(target=inThread).start() b.connect("clicked", kickOffThread) w.show_all() reactor.run() </code></pre> <p>If you want to see how the magic works, you can always <a href="http://twistedmatrix.com/trac/browser/trunk/twisted/internet/threads.py#L89" rel="nofollow">read the source</a>.</p>