从 Python 子进程模块解释示例管道 [英] Explain example pipeline from Python subprocess module

查看:31
本文介绍了从 Python 子进程模块解释示例管道的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

17.1.4.2:替换外壳管道python子进程模块说要替换

Section 17.1.4.2: Replacing shell pipeline of the python subprocess module says to replace

output=`dmesg | grep hda`

p1 = Popen(["dmesg"], stdout=PIPE)
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
p1.stdout.close()  # Allow p1 to receive a SIGPIPE if p2 exits.
output = p2.communicate()[0]

第三行的注释解释了为什么调用 close 函数,但没有解释为什么它有意义.不会,对我来说.在调用通信方法之前不关闭 p1.stdout 会阻止任何输出通过管道发送吗?(显然不会,我试过运行代码并且运行良好).为什么需要调用close让p1接收SIGPIPE?什么样的关闭是不关闭的?什么,确切地说,它正在关闭?

The comment to the third line explains why the close function is being called, but not why it makes sense. It doesn't, to me. Will not closing p1.stdout before the communicate method is called prevent any output from being sent through the pipe? (Obviously it won't, I've tried to run the code and it runs fine). Why is it necessary to call close to make p1 receive SIGPIPE? What kind of close is it that doesn't close? What, exactly, is it closing?

请将此视为学术问题,除了更好地理解这些事情之外,我并没有试图完成任何事情.

Please consider this an academic question, I'm not trying to accomplish anything except understanding these things better.

推荐答案

您正在关闭 进程中的 p1.stdout,从而使 dmesg 作为唯一的进程该文件描述符打开.如果你不这样做,即使 dmesg 关闭了它的标准输出,你仍然会打开它,并且不会生成 SIGPIPE.(操作系统基本上保持一个引用计数,并在它达到零时生成 SIGPIPE.如果你不关闭文件,你会阻止它达到零.)

You are closing p1.stdout in the parent process, thus leaving dmesg as the only process with that file descriptor open. If you didn't do this, even when dmesg closed its stdout, you would still have it open, and a SIGPIPE would not be generated. (The OS basically keeps a reference count, and generates SIGPIPE when it hits zero. If you don't close the file, you prevent it from ever reaching zero.)

这篇关于从 Python 子进程模块解释示例管道的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆