从另一个线程或进程更新Gtk.ProgressBar

时间:2019-04-26 13:27:50

标签: python multithreading gtk pygobject

我有一个带有进度条的GUI。它应该显示第二个线程所做的工作进度。我希望在工作的每个步骤中都可以有一个事件,例如线程可以立即将其发送到GUI进度条。但是我不知道如何做到这一点。

Python本身为线程情况提供了Event类。但这会由于Event.wait()方法而阻塞GUI主线程。

如果第二个线程是一个进程,它将如何改变情景和可能的解决方案?

我的示例基于PyGObject(Pythons Gtk),但也与所有其他GUI库有关。 当前的解决方案有效,但这只是IMO的一种解决方法。 GUI(作为主线程)和第二个(工作线程)通过线程安全queue.Queue共享数据。 GUI线程中有一个计时器事件,用于检查“固定时间间隔”中的队列是否有来自线程的新数据并更新进度条。

#!/usr/bin/env python3
import time
import threading
import queue
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib


class MyThread(threading.Thread):
    def __init__(self, queue, n_tasks):
        threading.Thread.__init__(self)
        self._queue = queue
        self._max = n_tasks

    def run(self):
        for i in range(self._max):
            # simulate a task 
            time.sleep(1)
            # put something in the data queue
            self._queue.put(1)


class MyWindow(Gtk.Window):
    def __init__(self, n_tasks):
        Gtk.Window.__init__(self)

        # max and current number of tasks
        self._max = n_tasks
        self._curr = 0

        # queue to share data between threads
        self._queue = queue.Queue()

        # gui: progressbar
        self._bar = Gtk.ProgressBar(show_text=True)
        self.add(self._bar)
        self.connect('destroy', Gtk.main_quit)

        # install timer event to check the queue for new data from the thread
        GLib.timeout_add(interval=250, function=self._on_timer)
        # start the thread
        self._thread = MyThread(self._queue, self._max)
        self._thread.start()

    def _on_timer(self):
        # if the thread is dead and no more data available...
        if not self._thread.is_alive() and self._queue.empty():
            # ...end the timer
            return False

        # if data available
        while not self._queue.empty():
            # read data from the thread
            self._curr += self._queue.get()
            # update the progressbar
            self._bar.set_fraction(self._curr / self._max)

        # keep the timer alive
        return True

if __name__ == '__main__':
    win = MyWindow(30)
    win.show_all()
    Gtk.main()

2 个答案:

答案 0 :(得分:1)

您的实现是正确的。您正在处理线程化的命令,在队列中共享反馈,并通过GLib.timeout_add()从主循环更新进度条。

最初,这似乎是执行简单的进度条更新的一种复杂方法,但这是在尊重Gtk主循环的同时始终生成子进程并跟踪进度的唯一方法之一。

答案 1 :(得分:0)

根据我的问题的评论,我修改了示例。请谨慎使用,因为对于该解决方案是否是线程安全的,我仍然不清楚。

我尝试了GLib.idle_add(),并删除了自己的计时器和队列。 注意:文档中有关方法签名/参数的信息不正确。原来是

idle_add(function, *user_data, **kwargs)

可能的线程解决方案

#!/usr/bin/env python3
import time
import threading
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib


class MyThread(threading.Thread):
    def __init__(self, callback, n_tasks):
        threading.Thread.__init__(self)
        self._callback = callback
        self._max = n_tasks

    def run(self):
        for i in range(self._max):
            # simulate a task 
            time.sleep(1)
            # increment/update progress
            GLib.idle_add(self._callback)


class MyWindow(Gtk.Window):
    def __init__(self, n_tasks):
        Gtk.Window.__init__(self)

        # max and current number of tasks
        self._max = n_tasks
        self._curr = 0

        # gui: progressbar
        self._bar = Gtk.ProgressBar(show_text=True)
        self.add(self._bar)
        self.connect('destroy', Gtk.main_quit)

        # start the thread
        self._thread = MyThread(self._update_progress, self._max)
        self._thread.start()

    def _update_progress(self):
        # increment
        self._curr += 1
        # update the progressbar
        self._bar.set_fraction(self._curr / self._max)

        # end this event handler
        return False

if __name__ == '__main__':
    win = MyWindow(30)
    win.show_all()
    Gtk.main()

GLib.idle_add()做什么?

我不是Gtk的专家或核心开发人员。以我的理解,我会说您可以_install__事件处理程序方法进入Gtk主循环。换句话说,第二个线程告诉Gtk主循环(第一个线程)在没有其他事情要做时(通常在GUI循环中退出)来调用givin方法。

没有针对流程的解决方案,因为它们运行在单独的Python解释器实例中。在两个进程之间无法调用GLib.idle_add()