使用subprocess.Popen在Python中检查进程的状态

时间:2012-12-26 16:04:14

标签: python multiprocessing

如果我在Python中使用subprocess.Popen调用进程,如下所示:

myproc = subprocess.Popen(...).communicate()

查看其状态的正确方法是什么?不是它输出到stdout或stderr,而是它的退出状态一旦完成(例如0表示成功或另一个表示失败)?

3 个答案:

答案 0 :(得分:22)

returncode确实是答案,但解决方案不需要复杂。

process = subprocess.Popen(...)
stdoutdata, stderrdata = process.communicate()
print process.returncode

Python subprocess docs中的更多信息。

答案 1 :(得分:7)

进程在完成执行之前没有返回代码。因此,如果还没有完成,你必须决定你想做什么:等待它,或者返回一些“我还没有完成”的指示。

如果您要等待,请使用communicate,然后检查returncode属性。

如果您想检查是否设置了返回代码,如果没有,请返回None,请使用Popen.poll()

  

Popen.poll()

     

检查子进程是否已终止。设置并返回returncode属性。

(如果流程尚未终止,poll()会返回None

答案 2 :(得分:1)

您可能需要在子流程上调用wait,然后(一旦完成)检查子流程实例的returncode字段中的状态。

我有一个调用东西的小程序,也许它会帮助......

def singleProcessExecuter(command, ** kwargs):
    assert isinstance(command, list), "Expected 'command' parameter to be a list containing the process/arguments to execute. Got %s of type %s instead" % (command, type(command))
    assert len(command) > 0, "Received empty list of parameters"
    retval = {
            "exitCode": -1,
            "stderr": u"",
            "stdout": u"",
            "execTime": datetime.timedelta(0),
            "command": None,
            "pid": None
            }
    retval["command"] = command
    log.info("::singleProcessExecuter > At %s, executing \"%s\"" % (datetime.datetime.now(), " ".join(command)))
    #print("::singleProcessExecuter > At %s, executing \"%s\"" % (datetime.datetime.now(), " ".join(parameter)))
    cwd = kwargs.get("cwd", os.getcwd())
    user = kwargs.get("user", getUid())
    sheel = kwargs.get("shell", False)
    startDatetime = datetime.datetime.now()
    myPopy = subprocess.Popen(command, cwd=cwd, preexec_fn=os.seteuid(getUid(user)), shell=sheel, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
    retval["pid"] = myPopy.pid
    log.debug("::singleProcessExecuter > Command \"%s\" got pid %s" % (" ".join(command), myPopy.pid))
    try:
        retval["stdout"], retval["stderr"] = myPopy.communicate()
        myPopy.wait()
    except OSError, osErr:
        log.debug("::singleProcessExecuter > Got %s %s in myPopy.communicate() when trying get output of command %s. It is probably a bug (more info: http://bugs.python.org/issue1731717)" % (osErr, type(osErr), command[0]))
    except Exception, e:
        log.warn("::singleProcessExecuter > Got %s %s when trying to get stdout/stderr outputs of %s" % (type(e), e, " ".join(command)))
        log.debug("::singleProcessExecuter > Got %s %s when trying to get stdout/stderr outputs of %s. Showing traceback:\n%s" % (type(e), e, " ".join(command), traceback.format_exc()))
        raise
    retval["exitCode"] = myPopy.returncode
    retval["execTime"] = datetime.datetime.now() - startDatetime
    #print(":singleProcessExecuter > This is %s's retval:\n%s" % (" ".join(parameter), retval)) 
    return retval

您可以尝试使用:

print "This is the return: %s" % singleProcessExecuter(["ls", "-la"])