便携式监视文件以进行更改的方法

时间:2015-06-29 06:49:39

标签: c unix tail

我实际上实现了一个非常简单的tail(1)版本。在FreeBSD中,我使用kqueue来监视文件的更改,然后将附加的行打印到输出中。但这不是一种可移植的方式,因为kqueue仅适用于BSD系列。是否有一种通用,高效且独立于平台的方法来监视UNIX中的更改文件?我不想使用外部库。

这是我写的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <sys/types.h>
#include <sys/event.h>
#include <sys/time.h>
#include <fcntl.h>
#include <unistd.h>

void die(const char*);

#define MAXLINE     1024

int main(int argc, char *argv[])
{
    int fdes;
    int kq;
    int nev;
    int flags;
    off_t curoff;

    char line[MAXLINE + 1];
    ssize_t nbytes;

    struct kevent change, event;

    if (2 != argc)
    {
        fprintf(stderr, "Usage: %s path\n", argv[0]);
        exit(EXIT_FAILURE);
    }

    if (-1 == (fdes = open(argv[1], O_RDONLY)))
        die("open()");

    if (-1 == (curoff = lseek(fdes, 0, SEEK_END)))
        die("lseek()");

    int ch = 0;
    int i = 0;
    while (i < 10)
    {
        read(fdes, &ch, 1);

        if (ch == '\n')
            i++;

        if (10 > i)
            lseek(fdes, --curoff, SEEK_SET);
    }

    if (-1 == (flags = fcntl(fdes, F_GETFL)))
        die("fcntl()");

    flags |= O_NONBLOCK;

    if (-1 == fcntl(fdes, F_SETFL, flags))
        die("fcntl()1");

    while ((nbytes = read(fdes, line, MAXLINE)) > 0)
        if (write(STDOUT_FILENO, line, nbytes) != nbytes)
            die("write()");

    if (-1 == (kq = kqueue()))
        die("kqueue()");

    EV_SET(&change, fdes, EVFILT_VNODE, EV_ADD | EV_ENABLE | EV_ONESHOT,
     NOTE_EXTEND | NOTE_WRITE | NOTE_DELETE, 0, NULL);

    if (-1 == kevent(kq, &change, 1, NULL, 0, NULL))
        die("kevent()");

    for (;;)
    {
        if (-1 == (nev = kevent(kq, NULL, 0, &event, 1, NULL)))
            die("kevent()");

        if (nev > 0)
        {
            if (event.fflags & NOTE_WRITE || event.fflags & NOTE_EXTEND)    
            {
                while ((nbytes = read(fdes, line, MAXLINE)) > 0)
                    if (write(STDOUT_FILENO, line, nbytes) != nbytes)
                        die("write()");
            }
            else if (NOTE_DELETE & event.fflags)
            {
                printf("The file has been deleted\n");
                break;
            }
        }
    }

    return 0;
}

void die(const char *str)
{
    perror(str);
    exit(EXIT_FAILURE);
}

1 个答案:

答案 0 :(得分:0)

您可以继续循环执行read()。如果你读零字节, 检查错误。如果没有错误,那么您已经点击了EOF。在 EOF,stat()文件名,如果它消失了,那么文件就被删除了。如果 stat返回,比较stat的st_dev和st_ino字段 来自fstat的结果(当你打开文件时缓存它)。如果他们重新开始 不同的是,路径被删除并重新创建。只要你睡觉 在尝试另一次阅读之前,请先关注删除检查。