aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/tail.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/tail.c')
-rw-r--r--toys/posix/tail.c31
1 files changed, 9 insertions, 22 deletions
diff --git a/toys/posix/tail.c b/toys/posix/tail.c
index 8c6548d3..49a7f69b 100644
--- a/toys/posix/tail.c
+++ b/toys/posix/tail.c
@@ -31,12 +31,11 @@ config TAIL_SEEK
#define FOR_tail
#include "toys.h"
-#include <sys/inotify.h>
GLOBALS(
long n, c;
- int file_no, ffd, *files;
+ int file_no, last_fd;
)
struct line_list {
@@ -137,16 +136,14 @@ static void do_tail(int fd, char *name)
int linepop = 1;
if (FLAG(f)) {
- int f = TT.file_no*2;
char *s = name;
if (!fd) sprintf(s = toybuf, "/proc/self/fd/%d", fd);
- TT.files[f++] = fd;
- if (0 > (TT.files[f] = inotify_add_watch(TT.ffd, s, IN_MODIFY)))
- perror_msg("bad -f on '%s'", name);
+ if (notify_add(fd, s) == -1) perror_exit("-f on '%s' failed", s);
}
if (TT.file_no++) xputc('\n');
+ TT.last_fd = fd;
if (toys.optc > 1) xprintf("==> %s <==\n", name);
// Are we measuring from the end of the file?
@@ -236,29 +233,19 @@ void tail_main(void)
}
}
- // Allocate 2 ints per optarg for -f
- if (FLAG(f)) {
- if ((TT.ffd = inotify_init()) < 0) perror_exit("inotify_init");
- TT.files = xmalloc(toys.optc*8);
- }
+ if (FLAG(f)) notify_init(toys.optc);
loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!FLAG(f)), 0, do_tail);
if (FLAG(f) && TT.file_no) {
- int len, last_fd = TT.files[(TT.file_no-1)*2], i, fd;
- struct inotify_event ev;
-
for (;;) {
- if (sizeof(ev)!=read(TT.ffd, &ev, sizeof(ev))) perror_exit("inotify");
-
- for (i = 0; i<TT.file_no && ev.wd!=TT.files[(i*2)+1]; i++);
- if (i==TT.file_no) continue;
- fd = TT.files[i*2];
+ char *path;
+ int fd = notify_wait(&path), len;
// Read new data.
while ((len = read(fd, toybuf, sizeof(toybuf)))>0) {
- if (last_fd != fd) {
- last_fd = fd;
- xprintf("\n==> %s <==\n", args[i]);
+ if (TT.last_fd != fd) {
+ TT.last_fd = fd;
+ xprintf("\n==> %s <==\n", path);
}
xwrite(1, toybuf, len);