常规文件上的 Kqueue
Posted
技术标签:
【中文标题】常规文件上的 Kqueue【英文标题】:Kqueue on regular files 【发布时间】:2012-12-27 07:40:41 【问题描述】:kqueue(在 OS X 上)对读/写常规文件有用吗?我知道 epoll 对 Linux 上的常规文件不有用,所以我想知道 kqueue 是否也是如此。
编辑:我不是说读/写文件,显然 read() 和 write() 就是为了这个。我的意思是,“kqueue 对于检测文件何时可读/可写真的有用吗?”
【问题讨论】:
【参考方案1】:是的,kqueue 可用于监视文件以提高可读性。从手册页:
EVFILT_READ Takes a file descriptor as the identifier, and returns
whenever there is data available to read. The behavior
of the filter is slightly different depending on the
descriptor type.
[...]
Vnodes
Returns when the file pointer is not at the end of
file. data contains the offset from current posi-
tion to end of file, and may be negative.
(“vnodes”,在此上下文中,是常规文件。)
由于常规文件始终是可写的,因此对它们应用EVFILT_WRITE
是没有意义的。
【讨论】:
你怎么知道常规文件总是可写的? 文件不会像套接字、管道和其他东西那样暂时不可写(从“满”)。 @duskwuff 不,但他们肯定会阻止。它们可能导致应用程序滞后/挂起。使用这些机制的重点是在这些资源上发出事件信号,并且在访问这些资源时不会因这些事件而阻塞。 “完整”的概念是无关紧要的。【参考方案2】:内核队列是"allow you to intercept kernel-level events to receive notifications about changes to sockets, processes, the file system and other aspects of the system."
我过去曾将它们用于detect when when actions happen on a file(或在常用文件夹中)。不过,我不相信它们可以用于“读取”和“写入”文件。如果您愿意,您也可以使用 MacOS 原生函数或常规 UN*X 样式“fopen
”、“fwrite
”和“fread
”调用。
【讨论】:
以上是关于常规文件上的 Kqueue的主要内容,如果未能解决你的问题,请参考以下文章