我希望能够运行和停止脚本/模块从我的GUI不阻止它。我学到了一些关于线程和在GUI代码中运行"简单"的长任务的基本知识。然而,所有的例子都是关于简单的while
或for
循环,可以被中止。在大多数情况下,它是某种计数。
所以问题是:如何运行/停止外部脚本/模块与wx。基于python的GUI?脚本没有什么特别的,它可以是任何类型的长任务。
这是基本的wx。Python示例代码!
import wx
class MyApp (wx.App):
def OnInit(self):
self.frame = MyFrame(None, title = 'Example')
self.SetTopWindow(self.frame)
self.frame.Show()
return True
class MyFrame(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, title=title ,style = (wx.MINIMIZE_BOX | wx.SYSTEM_MENU | wx.CAPTION | wx.CLOSE_BOX | wx.CLIP_CHILDREN))
button1 = wx.Button(self,-1,'Start')
button2 = wx.Button(self,-1, 'Stop')
self.gauge1 = wx.Button(self, -1)
box = wx.BoxSizer(wx.VERTICAL)
box.Add(button1,1, wx.ALL, 10)
box.Add(button2,1, wx.ALL, 10)
box.Add(self.gauge1,1,wx.EXPAND|wx.ALL,10)
self.SetSizer(box, wx.EXPAND)
self.Bind(wx.EVT_BUTTON, self.OnStart, button1)
self.Bind(wx.EVT_BUTTON, self.OnStop, button2)
def OnStart(self,e):
pass
def OnStop(self,e):
pass
if __name__=='__main__':
app = MyApp(False)
app.MainLoop()
您正在调用的脚本将需要一些机制来干净地退出,否则您将不得不处理混乱。我会使用Python的subprocess模块启动外部脚本,然后如果需要的话,使用psutil (https://github.com/giampaolo/psutil)之类的东西来终止它。这将要求您使用subprocess获取进程id (pid)并跟踪它,以便以后可以杀死它。
我在这里写了一个在wxPython中使用psutil的例子:http://www.blog.pythonlibrary.org/2012/07/13/wxpython-creating-your-own-cross-platform-process-monitor-with-psutil/