【发布时间】:2018-12-05 21:08:17
【问题描述】:
我正在使用 GTK 为 python 中的命令行程序编写图形 shell。主程序有这样的输出:
Starting Tractor:
Dec 04 22:10:34.000 [notice] Bootstrapped 0%: Starting
Dec 04 22:10:34.000 [notice] Bootstrapped 80%: Connecting to the Tor network
Dec 04 22:10:35.000 [notice] Bootstrapped 85%: Finishing handshake with first hop
Dec 04 22:10:36.000 [notice] Bootstrapped 90%: Establishing a Tor circuit
Dec 04 22:10:37.000 [notice] Bootstrapped 100%: Done
Tractor is conneted.
我有一个启动按钮,它通过子进程启动程序。因为我希望主窗口在启动过程中运行,所以我使用了 thrading。这是我的代码:
def on_start_clicked(self, button):
spinner = Gtk.Spinner()
self.props.icon_widget = spinner
spinner.start()
self.show_all()
header_bar = self.get_parent()
if self.is_running():
def task_thread():
task = Popen(command + "stop", stdout=PIPE, shell=True)
task.wait()
spinner.stop()
header_bar.show_progress_button(False)
self.update_label()
else:
def task_thread():
header_bar.show_progress_button(True)
task = Popen(command + "start", stdout=PIPE, shell=True)
while True:
output = task.stdout.readline().decode("utf-8")
if output == '' and task.poll() is not None:
break
if output and '%' in output:
print(output.split()[5][:-2])
task.wait()
spinner.stop()
self.update_label()
thread = Thread(target=task_thread)
thread.daemon = True
thread.start()
问题是日志输出不是实时的,而是等到整个过程完成后再打印整个输出!
我想要当时的实际百分比,以便将其传递到进度条,显示完成了多少任务。我怎样才能做到这一点?
编辑
感谢theGtknerd,我将代码更改为以下代码,但在该过程完成后,提要功能仍然有效,并且只打印整个输出的第一行。我认为这是触发 IO_IN 时的故障。
def thread_finished (self, stdout, condition):
GLib.source_remove(self.io_id)
stdout.close()
self.spinner.stop()
self.update_label()
print("heeey")
return False
def feed (self, stdout, condition):
line = stdout.readline()
line = line.decode("utf-8")
print(line)
return True
def on_start_clicked(self, button):
self.spinner = Gtk.Spinner()
self.props.icon_widget = self.spinner
self.spinner.start()
self.show_all()
header_bar = self.get_parent()
if self.is_running():
header_bar.show_progress_button(False)
task = Popen(command + "stop", stdout=PIPE, shell=True)
else:
header_bar.show_progress_button(True)
task = Popen(command + "start", stdout=PIPE, shell=True)
self.io_id = GLib.io_add_watch(task.stdout, GLib.IO_IN, self.feed)
GLib.io_add_watch(task.stdout, GLib.IO_HUP, self.thread_finished)
【问题讨论】:
标签: python subprocess gtk3 python-multithreading