如何将 readline() 与 subprocess.Popen 返回的管道一起使用

发布于 2024-12-23 11:44:36 字数 745 浏览 3 评论 0原文

我正在使用 subprocess.Popen (POSIX 系统上的 Python 2.x)调用子进程。我希望能够使用 Python 的 readline() 文件对象函数读取子进程的输出。但是,Popen.stdout 中可用的流似乎没有 readline() 方法。

使用 Linux 上的管道中的 Python readline 中的想法,我尝试了以下操作:

p = subprocess.Popen(
    [sys.executable, "child.py"],
    stdout=subprocess.PIPE)
status = os.fdopen(p.stdout.fileno())
while True:
    s = status.readline()
    if not s:
        break
    print s

但是,此方法的问题在于,p.stdout 对象和新的 status 对象都尝试关闭单个文件描述符。这最终导致:

close failed: [Errno 9] Bad file number

有没有办法创建一个“包装”先前创建的类文件对象的文件对象?

I'm calling a child process using subprocess.Popen (Python 2.x on a POSIX system). I want to be able to read the output of the child process using Python's readline() file object function. However, the stream available in Popen.stdout does not appear to have a readline() method.

Using the idea from Python readline from pipe on Linux, I tried the following:

p = subprocess.Popen(
    [sys.executable, "child.py"],
    stdout=subprocess.PIPE)
status = os.fdopen(p.stdout.fileno())
while True:
    s = status.readline()
    if not s:
        break
    print s

However, the problem with this method is that both the p.stdout object and the new status object attempt to close the single file descriptor. This eventually results in:

close failed: [Errno 9] Bad file number

Is there a way to create a file object that "wraps" a previously created file-like object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年里的时光 2024-12-30 11:44:36

解决方案是使用 os.dup() 创建另一个引用同一管道的文件描述符:

status = os.fdopen(os.dup(p.stdout.fileno()))

这样,status 就有自己的要关闭的文件描述符。

The solution is to use os.dup() to create another file descriptor referring to the same pipe:

status = os.fdopen(os.dup(p.stdout.fileno()))

This way, status has its own file descriptor to close.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文