kqueue(在 OS X 上)对读/写常规文件有用吗?我知道 epoll对 Linux 上的常规文件没有用,所以我想知道 kqueue 是否也是如此。
编辑:我不是说读/写文件,显然 read() 和 write() 是为了那个。我的意思是,“kqueue 对于检测文件何时可读/可写真的有用吗?”
kqueue(在 OS X 上)对读/写常规文件有用吗?我知道 epoll对 Linux 上的常规文件没有用,所以我想知道 kqueue 是否也是如此。
编辑:我不是说读/写文件,显然 read() 和 write() 是为了那个。我的意思是,“kqueue 对于检测文件何时可读/可写真的有用吗?”
内核队列是“允许您拦截内核级事件以接收有关套接字、进程、文件系统和系统其他方面的更改的通知”的机制。
我过去曾使用它们来检测文件(或热文件夹中)何时发生操作。不过,我不相信它们可以用于“读取”和“写入”文件。如果您愿意,您也可以使用 MacOS 原生函数或常规 UN*X 风格的“ fopen
”、“ fwrite
”和“ fread
”调用。
是的,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
到它们是没有意义的。