3

我有一种感觉,这是不可能的;但是有没有办法在 Linux 上的 Python / C 中的匿名管道上设置读取超时?

有比设置和捕获 SIGALRM 更好的选择吗?

>>> import os
>>> output, input = os.pipe()
>>> outputfd = os.fdopen(output, 'r')
>>> dir(outputfd)
['__class__', '__delattr__', '__doc__', '__enter__', '__exit__', '__format__', '__getattribute__', '__hash__', '__init__', '__iter__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'close', 'closed', 'encoding', 'errors', 'fileno', 'flush', 'isatty', 'mode', 'name', 'newlines', 'next', 'read', 'readinto', 'readline', 'readlines', 'seek', 'softspace', 'tell', 'truncate', 'write', 'writelines', 'xreadlines']
>>> 

(没有settimeout()方法)

4

2 回答 2

4

您应该尝试使用该select模块,它允许您提供超时。将文件对象添加到选择集中,然后检查返回对象以查看它是否已更改:

r, w, x = select.select([output], [], [], timeout)

然后检查 r 以查看对象是否可读。这可以扩展到您想要监控的任意数量的对象。如果对象在 r 中,则读取:output.read().

此外,您可能希望使用os.read. 而不是 fdopen,因为它不会受到 Python 文件缓冲的异想天开的影响。

于 2012-07-30T19:57:04.747 回答
0

这不是直接设置,但您可以select在文件描述符上使用以等待输入。它是一个内置模块,支持 Unix 上的所有文件描述符,但仅支持 OpenVMS 和 Windows 上的套接字(来自 pydoc 页面select)。

于 2012-07-30T19:57:21.367 回答