使用python select.kqueue()检查文件是否被修改删除或扩展

时间:2011-10-31 19:04:31

标签: python polling bsd kqueue

您好我很难理解如何使用BSD只有python模块类select.kqueue和select.kevent设置监视文件写事件。

我希望python程序在另一个进程写入文本文件时进行响应。 我的测试代码如下:

    import os
    myfd = os.open("/Users/hari/c2cbio/t.txt",os.O_RDONLY)
    my_event=select.kevent(myfd,filter=select.KQ_FILTER_VNODE,fflags=select.KQ_NOTE_WRITE|select.KQ_NOTE_EXTEND)

    # I now create a kqueue object and a control object

    kq = select.kqueue()
    # I dont know how to set the max_events if it is non zero the REPL does not return
    kq.control([my_event],0,None)

我不知道如何检查这些事件确实发生过。有人能指出我使用kqueue检测文件修改或任何其他事件(如文件删除,文件重命名等)的示例

1 个答案:

答案 0 :(得分:0)

看看看门狗模块的代码,我想出了这个。我不知道旗帜是否必要。

#/usr/bin/env python
import select
import os

kq = select.kqueue()
# Use the OSX specific os.EVTONLY
# http://code.google.com/p/python-watchdog/source/browse/src/watchdog/observers/kqueue.py
fd = os.open("/Users/hari/c2cbio/t.txt", 0x8000)

ev = [select.kevent(fd, filter=select.KQ_FILTER_VNODE,flags=select.KQ_EV_ADD | select.KQ_EV_ENABLE | select.KQ_EV_CLEAR,fflags=select.KQ_NOTE_WRITE | select.KQ_NOTE_EXTEND)]
#This call will block till the write or extend events occur
evts = kq.control(ev,1,None)
print "event occurred"