美文网首页随笔
关于Solaris中类似于的Inotify功能

关于Solaris中类似于的Inotify功能

作者: Wales_Kuo | 来源:发表于2019-07-05 18:51 被阅读0次

    背景

    当年的巨无霸一去不复返了啊。在SUN收购Mysql之后,我们还在讨论SUN已经是一个全产业链的超级大公司了。那时的SUN有语言JAVA,有操作系统Solaris,有数据库Mysql,有IDE,有硬件。

    原文:

    可以使用http://blogs.sun.com/praks/entry/file_events_notification中介绍的port方法,在用户态监视系统中某个文件(大家都知道*nix中的文件,并不一定真的是文件,可以是目录等等一些东西)。该机制可以监控的事件有:

     Watchable events:
    
    FILE_ACCESS             /* Monitored file/directory was accessed */
    FILE_MODIFIED        /* Monitored file/directory was modified */
    FILE_ATTRIB             /* Monitored file/directory's ATTRIB was changed */
    FILE_NOFOLLOW    /* flag to indicate not to follow symbolic links */
    
     Exception events - cannot be filtered:
    
    FILE_DELETE                 /* Monitored file/directory was deleted */
    FILE_RENAME_TO        /* Monitored file/directory was renamed */
    FILE_RENAME_FROM /* Monitored file/directory was renamed */
    UNMOUNTED                /* Monitored file system got unmounted */
    MOUNTEDOVER          /* Monitored file/directory was mounted on */
    

    这些事件类型定义在sys/port.h中,在原文中可以看到这个机制不止可以监视文件事件。在使用文件事件通知(File Events Notification)时,像socket变成一样现需要一个socket。在FEN中需要的port,可以用port_create函数创建port。创建port后可以使用函数port_associate来注册该port上要监视的事件源的类型,再将你的文件的现在的状态填到结构体file_obj_t中传给该函数。含有就是你要系统通知你的事件(不过我在测试的时候,只设置FILE_ACCESS|FILE_MODIFIED|FILE_ATTRIB其他事件一样会通知你)。用户数据会在调用port_get的返回参数port_event_t中的portev_object中填写。

    所有工作完成了,可以直接调用函数port_get等待事件发生了。

    哎!自从Oracle接手SUN之后,文档系统就可以说根本找不到SUN的信息了。够狠。

    另附:函数声明

    #include <port.h> 
    int port_create(void); /* 该函数用创建port */
    /* 下面两个函数一个注册一个注册文件事件通知 */
    int port_associate(int port, int source, uintptr_t object, int events, void *user);
    int port_dissociate(int port, int source, uintptr_t object);
    /* 在注册文件事件通知之后,需要调用该函数来得到事件,这两个函数会阻塞 */
    int port_get(int port, port_event_t *pe, const timespec_t *timeout);
    int port_getn(int port, port_event_t list[], uint_t max, uint_t *nget, const timespec_t *timeout);
    

    相关文章

      网友评论

        本文标题:关于Solaris中类似于的Inotify功能

        本文链接:https://www.haomeiwen.com/subject/rcjkzqtx.html