Python打开并杀死子进程

时间:2015-06-15 09:00:34

标签: python subprocess

我正在使用Widnows 7(32位),这是我的代码:

def start_mviewer_broker(broker_path, test_name):
""" The function starts the broker server"""
try:
    print("**** start_mviewer_broker ****")
    p = subprocess.Popen('start python ' + broker_path + ' ' + test_name, shell=True)
    return p
except:
    print("**** start_mviewer_broker - EXCEPTION ****")
    return 0


def kill_process(p):
""" The function kills the input running process"""
try:
    print("**** kill_process ****")
    p.terminate()
except:
    print("**** kill_process - EXCEPTION ****")
    pass

我有一些问题。启动我的子进程的唯一方法是使用shell = True选项。如果我将此选项更改为False,则不会启动子流程。

其他问题是,kill进程不会终止我的进程,但不会引发异常。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可能希望将代码更改为以下内容:

def start_mviewer_broker(broker_path, test_name):
""" The function starts the broker server"""
try:
    print("**** start_mviewer_broker ****")
    return subprocess.Popen('python ' + broker_path + ' ' + test_name) # Note changed line here
except:
    print("**** start_mviewer_broker - EXCEPTION ****")
    return 0


def kill_process(p):
""" The function kills the input running process"""
try:
    print("**** kill_process ****")
    p.terminate()
except:
    print("**** kill_process - EXCEPTION ****")
    pass

您正在运行的start部分不是必需的。实际上,它不是可执行文件,而是cmd命令。因此,它需要一个shell运行。这就是为什么它只与shell=False合作。但是,删除它后,您现在可以使用shell=False。然后将python进程作为返回的进程而不是用于生成它的shell。杀死python进程是你想要做的,而不是shell,所以在删除start部分后,你可以让kill_process()代码正常工作。

BTW,shell=Falsesubprocess.Popen()的默认值,因此在上面的代码中被省略了。此外,将p设置为进程然后立即返回它似乎浪费了一行代码。它可以缩短为直接返回它(如上面的代码所示)。