2

关于 Python 的 subprocess.Popen() 对象的问题
(请假设为 stdout/stderr 生成的字节数没有填满 OS 管道缓冲区并创建死锁以等待 OS 管道缓冲区接受更多数据)

1) p.stdout.read() 和 p.wait() 的顺序是否重要?

2) stdout/stderr subprocess.PIPE 上的 read() 是否会阻塞,直到进程终止?

3) 即使在进程终止后,stdout/stderr subprocess.PIPE 文件对象和数据是否可用?

import subprocess
process = subprocess.Popen(args="ls", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
stdout = process.stdout.read()
# Does the above read() block until the process has terminated?
stderr = process.stderr.read()
return_code = process.wait()

process = subprocess.Popen(args="ls", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
return_code = process.wait() 
# Are stdout and stderr pipes available now, even after the process terminated?
stdout = process.stdout.read()
stderr = process.stderr.read()
4

2 回答 2

4

问:p.stdout.read() 和 p.wait() 的顺序有关系吗?
答:没有。

问:stdout/stderr subprocess.PIPE 上的 read() 是否会阻塞,直到进程终止?
A:如果没有指定要读取的字节数限制,那么它将阻塞直到流关闭(这很可能是在进程终止时)。

问:即使在进程终止后,stdout/stderr subprocess.PIPE 文件对象和数据是否可用?
答:是的。

您可能需要特别注意subprocess文档中的此警告:

警告:这将在使用stdout=PIPE和/或时发生死锁,stderr=PIPE并且子进程会向管道生成足够的输出,从而阻塞等待 OS 管道缓冲区接受更多数据。用来communicate()避免这种情况。

于 2012-07-02T00:13:07.813 回答
0

您可能需要考虑使用类似的库sarge,以便在对子进程进行 I/O 时提供灵活性。(披露:我是维护者。我写它部分是为了回应你遇到的那种困难。)

于 2012-07-02T00:17:57.603 回答