gpt4 book ai didi

python - GUI 中 python 程序的实时输出

转载 作者:太空宇宙 更新时间:2023-11-04 04:25:10 32 4
gpt4 key购买 nike

我正在使用 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,我将代码更改如下,但是 feed 函数在该过程完成后仍然有效,并且只打印整个输出的第一行。我认为这是在触发 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 文件中我有:

#!/usr/bin/env python3

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib, GObject
from subprocess import Popen, PIPE, STDOUT
import os, sys


class GUI:
def __init__(self):

window = Gtk.Window()
self.label = Gtk.Label()
window.add(self.label)
window.show_all()
window.connect("destroy", self.on_window_destroy)

p = Popen(['./long_run.sh'], stdout = PIPE,stderr = STDOUT,stdin = PIPE)
self.io_id = GObject.io_add_watch(p.stdout, GObject.IO_IN, self.feed)
GObject.io_add_watch(p.stdout, GObject.IO_HUP, self.thread_finished)

def feed (self, stdout, condition):
line = stdout.readline()
line = line.decode(encoding="utf-8", errors="strict")
self.label.set_label(line)
return True

def thread_finished (self, stdout, condition):
GObject.source_remove(self.io_id)
stdout.close()
self.label.set_label("Hurray, all done!")

def on_window_destroy(self, window):
Gtk.main_quit()
print ("shutdown")

def main():
app = GUI()
Gtk.main()

if __name__ == "__main__":
sys.exit(main())

在 long_run.sh 文件中我有:

#!/bin/bash

echo "Loading, please wait..."
sleep 5
echo "10%"
sleep 5
echo "20%"
sleep 5
echo "30%"
sleep 5
echo "40%"
sleep 5
echo "50%"
sleep 5
echo "60%"
sleep 5
echo "70%"
sleep 5
echo "80%"
sleep 5
echo "90%"
sleep 5
echo "100%"
sleep 5

关于python - GUI 中 python 程序的实时输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53640759/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com