1

我在这方面搜索了很多,但我仍然没有找到我要找的东西。这是一个经典的问题,我想,但我仍然无法弄清楚。

我有这个 Python/Tkinter 代码。该代码通过简单地使用os.system(cmd). 我想要一个进度条(振荡的,而不是渐进的)向用户显示实际发生的事情。我想我只需要在调用之前启动包含进度条的线程os.system,然后os.system在进度条线程运行时调用,关闭进度条线程并销毁关联Toplevel()

我的意思是,Python 非常灵活,是否可以不费力地做到这一点?我知道从另一个线程杀死一个线程是不安全的(由于数据共享),但是据我所知,这两个线程不共享任何数据。

能不能这样走:

progressbar_thread.start()
os.system(...)
progressbar_thread.kill()

如果那不可能,我仍然不明白如何在两个线程之间传递“信号”变量。

谢谢,

安德烈亚

4

2 回答 2

1

这是你追求的东西吗?

from Tkinter import *
import ttk, threading

class progress():
    def __init__(self, parent):
            toplevel = Toplevel(tk)
            self.progressbar = ttk.Progressbar(toplevel, orient = HORIZONTAL, mode = 'indeterminate')
            self.progressbar.pack()
            self.t = threading.Thread()
            self.t.__init__(target = self.progressbar.start, args = ())
            self.t.start()
            #if self.t.isAlive() == True:
             #       print 'worked'

    def end(self):
            if self.t.isAlive() == False:
                    self.progressbar.stop()
                    self.t.join()


def printmsg():
    print 'proof a new thread is running'


tk = Tk()
new = progress(tk)
but1 = ttk.Button(tk, text= 'stop', command= new.end)
but2 = ttk.Button(tk, text = 'test', command= printmsg)
but1.pack()
but2.pack()
tk.mainloop()
于 2012-11-13T11:06:39.873 回答
1

在这种情况下,您不需要线程。只需用于subprocess.Popen启动子进程。

要在进程结束时通知 GUI,您可以使用widget.after()以下方法实现轮询:

process = Popen(['/path/to/command', 'arg1', 'arg2', 'etc'])
progressbar.start()

def poller():
    if process.poll() is None: # process is still running
       progressbar.after(delay, poller)  # continue polling
    else:
       progressbar.stop() # process ended; stop progress bar

delay = 100  # milliseconds
progressbar.after(delay, poller) # call poller() in `delay` milliseconds

如果您想手动停止进程而不等待:

if process.poll() is None: # process is still running
   process.terminate()
   # kill process in a couple of seconds if it is not terminated
   progressbar.after(2000, kill_process, process)

def kill_process(process):
    if process.poll() is None:
        process.kill()
        process.wait()

这是一个完整的例子

于 2012-11-13T18:48:02.773 回答