Does anyone used PyQt with gevent? How to link PyQt loop to the gevent?

http://www.gevent.org/ - coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop.

link|improve this question

What is "gevent"? Please add links to your question. – Aaron Digulla Jan 7 '11 at 17:28
gevent.org - coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop. – Creotiv Jan 9 '11 at 15:47
very interesting.. what you will do when pyqt + gevent works? – linjunhalida Jan 17 '11 at 7:32
I need to use gevent threads, because have to use db and network asynchronously. And i can't do this with python threads that used by QThreads. – Creotiv Jan 17 '11 at 9:08
feedback

3 Answers

up vote 2 down vote accepted

Here's how you would change pyqt by example's session1 to cooperate: https://github.com/traviscline/pyqt-by-example/commit/b5d6c61daaa4d2321efe89679b1687e85892460a

link|improve this answer
It can easily lead to 100% CPU load without any useful activity, since you are not using a gevent.sleep period greater than zero. – fviktor Nov 27 '11 at 5:43
feedback

You can use a Qt IDLE "timer" to allow gevent for processing its microthreads while no Qt events handled for a short period of time, for example 10 milliseconds. It is still not perfect, since it does not give the "smoothest" possible integration. It is because we don't use a single event loop for both Qt and gevent, just "interleaving" them in time.

The correct solution would be to allow libevent to listen on new Qt events somehow, but I haven't been able to figure out how to do that in practice yet. Maybe having Qt to send something to gevent via a socket when a GUI event arrives into the event queue would help. Has anybody solved that?

Working example:

""" Qt - gevent event loop integration using a Qt IDLE timer
"""

import sys, itertools

import PySide
from PySide import QtCore, QtGui

import gevent

# Limit the IDLE handler's frequency while still allow for gevent
# to trigger a microthread anytime
IDLE_PERIOD = 0.01

class MainWindow(QtGui.QMainWindow):

    def __init__(self, application):

        QtGui.QMainWindow.__init__(self)

        self.application = application

        self.counter = itertools.count()

        self.resize(400, 100)
        self.setWindowTitle(u'Counting: -')

        self.button = QtGui.QPushButton(self)
        self.button.setText(u'Reset')
        self.button.clicked.connect(self.reset_counter)

        self.show()

    def counter_loop(self):

        while self.isVisible():
            self.setWindowTitle(u'Counting: %d' % self.counter.next())
            gevent.sleep(0.1)

    def reset_counter(self):

        self.counter = itertools.count()

    def run_application(self):

        # IDLE timer: on_idle is called whenever no Qt events left for processing
        self.timer = QtCore.QTimer()
        self.timer.timeout.connect(self.on_idle)
        self.timer.start(0)

        # Start counter
        gevent.spawn(self.counter_loop)

        # Start you application normally, but ensure that you stop the timer
        try:
            self.application.exec_()
        finally:
            self.timer.stop()

    def on_idle(self):

        # Cooperative yield, allow gevent to monitor file handles via libevent
        gevent.sleep(IDLE_PERIOD)

def main():

    application = QtGui.QApplication(sys.argv)
    main_window = MainWindow(application)
    main_window.run_application()

if __name__ == '__main__':
    main()
link|improve this answer
feedback

you sould avoid use app.exec_(), it is a loop function which use this function to process events:

http://doc.qt.nokia.com/stable/qcoreapplication.html#processEvents

so you can call processEvents directly.

link|improve this answer
It can easily lead to 100% CPU load without any activity. – fviktor Nov 27 '11 at 5:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.