8

有没有办法终止以 subprocess.Popen 类启动的进程,其中“shell”参数设置为“True”?在下面的最小工作示例中(使用 wxPython),您可以愉快地打开和终止记事本进程,但是如果您将 Popen“shell”参数更改为“True”,则记事本进程不会终止。

import wx
import threading
import subprocess

class MainWindow(wx.Frame):

    def __init__(self, parent, id, title):        
        wx.Frame.__init__(self, parent, id, title)
        self.main_panel = wx.Panel(self, -1)

        self.border_sizer = wx.BoxSizer()

        self.process_button = wx.Button(self.main_panel, -1, "Start process", (50, 50))
        self.process_button.Bind(wx.EVT_BUTTON, self.processButtonClick)

        self.border_sizer.Add(self.process_button)
        self.main_panel.SetSizerAndFit(self.border_sizer)
        self.Fit()

        self.Centre()
        self.Show(True)

    def processButtonClick(self, event):
        if self.process_button.GetLabel() == "Start process":
            self.process_button.SetLabel("End process")
            self.notepad = threading.Thread(target = self.runProcess)
            self.notepad.start()
        else:
            self.cancel = 1
            self.process_button.SetLabel("Start process")

    def runProcess(self):
        self.cancel = 0

        notepad_process = subprocess.Popen("notepad", shell = False)

        while notepad_process.poll() == None: # While process has not yet terminated.
            if self.cancel:
                notepad_process.terminate()
                break

def main():
    app = wx.PySimpleApp()
    mainView = MainWindow(None, wx.ID_ANY, "test")
    app.MainLoop()

if __name__ == "__main__":
    main()

为了这个问题,请接受“shell”确实必须等于“True”。

4

5 回答 5

7

你为什么用shell=True

只是不要这样做。你不需要它,它会调用 shell,那是没用的。

我不接受它必须是True,因为它没有。使用shell=True只会给你带来问题,没有好处。只是不惜一切代价避免它。除非你正在运行一些 shell 内部命令,否则你永远都不需要它。

于 2009-03-30T11:26:52.677 回答
5

当使用 shell=True 并在进程上调用终止时,您实际上是在杀死 shell,而不是记事本进程。shell 可以是 COMSPEC 环境变量中指定的任何内容。

我能想到杀死这个记事本进程的唯一方法是使用 Win32process.EnumProcesses() 来搜索进程,然后使用 win32api.TerminateProcess 杀死它。但是,您将无法将记事本进程与其他同名进程区分开来。

于 2009-03-30T08:46:54.420 回答
2

根据 Thomas Watnedal 的回答中给出的提示,他指出在示例中实际上只有 shell 被杀死,我根据 Mark Hammond 的 PyWin32 库中给出的示例,安排了以下函数来解决我的场景中的问题:

procname 是在任务管理器中看到的进程的名称,没有扩展名,例如 FFMPEG.EXE 将是 killProcName("FFMPEG")。请注意,该函数相当慢,因为它会枚举所有当前正在运行的进程,因此结果不是即时的。

import win32api
import win32pdhutil
import win32con

def killProcName(procname):
    """Kill a running process by name.  Kills first process with the given name."""
    try:
        win32pdhutil.GetPerformanceAttributes("Process", "ID Process", procname)
    except:
        pass

    pids = win32pdhutil.FindPerformanceAttributesByName(procname)

    # If _my_ pid in there, remove it!
    try:
        pids.remove(win32api.GetCurrentProcessId())
    except ValueError:
        pass

    handle = win32api.OpenProcess(win32con.PROCESS_TERMINATE, 0, pids[0])
    win32api.TerminateProcess(handle, 0)
    win32api.CloseHandle(handle)
于 2009-03-30T19:35:58.243 回答
1

如果您确实需要shell=True标志,那么解决方案是使用带有标志的startshell 命令。/WAIT使用此标志,start进程将等待其子进程终止。然后,例如使用该psutil模块,您可以通过以下顺序实现您想要的:

>>> import psutil
>>> import subprocess
>>> doc = subprocess.Popen(["start", "/WAIT", "notepad"], shell=True)
>>> doc.poll()
>>> psutil.Process(doc.pid).get_children()[0].kill()
>>> doc.poll()
0
>>> 

第三行之后出现记事本。多亏了标志,只要窗口打开就poll返回。kill 后的子记事本窗口消失,并返回退出代码。None/WAITstartpoll

于 2013-12-29T10:18:28.197 回答
-1

Python 2.6 有一个针对 subprocess.Popen 对象的 kill 方法。

http://docs.python.org/library/subprocess.html#subprocess.Popen.kill

于 2009-03-30T10:16:37.277 回答