1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
#include <ruby.h>
#include <rubyio.h>
#ifdef HAVE_VERSION_H
#include <version.h>
#endif
#ifdef HAVE_LINUX_INOTIFY_H
#include <asm/unistd.h>
#include <linux/inotify.h>
#else
#include "inotify.h"
#include "inotify-syscalls.h"
#endif
#include <sys/syscall.h>
#include <unistd.h>
static inline int inotify_init (void)
{
return syscall (__NR_inotify_init);
}
static inline int inotify_add_watch (int fd, const char *name, __u32 mask)
{
return syscall (__NR_inotify_add_watch, fd, name, mask);
}
static inline int inotify_rm_watch (int fd, __u32 wd)
{
return syscall (__NR_inotify_rm_watch, fd, wd);
}
VALUE rb_cInotify;
VALUE rb_cInotifyEvent;
int event_check (int fd) {
struct timeval timeout;
int r;
fd_set rfds;
timeout.tv_sec = 0;
timeout.tv_usec = 4000;
FD_ZERO(&rfds);
FD_SET(fd, &rfds);
r = rb_thread_select (fd+1, &rfds, NULL, NULL, &timeout);
return r;
}
static VALUE rb_inotify_event_new(struct inotify_event *event) {
VALUE retval;
retval = Data_Wrap_Struct(rb_cInotifyEvent, NULL, free, event);
rb_obj_call_init(retval, 0, NULL);
return retval;
}
/*
* call-seq:
* Inotify.new => inotify
*
*/
static VALUE rb_inotify_new(VALUE klass) {
int *fd;
VALUE retval;
fd = malloc(sizeof(int));
*fd = inotify_init();
if(*fd < 0) rb_sys_fail("inotify_init()");
retval = Data_Wrap_Struct(klass, NULL, free, fd);
rb_obj_call_init(retval, 0, NULL);
return retval;
}
/*
* call-seq:
* inotify.add_watch(filename, Inotify::ALL_EVENTS) => watch number
*
*/
static VALUE rb_inotify_add_watch(VALUE self, VALUE filename, VALUE mask) {
#ifndef HAVE_TYPE_OPENFILE
rb_io_t *fptr;
#else
OpenFile *fptr;
#endif
int *fd, wd;
Data_Get_Struct(self, int, fd);
wd = inotify_add_watch(*fd, RSTRING_PTR(filename), NUM2INT(mask));
if(wd < 0) {
rb_sys_fail(RSTRING_PTR(filename));
}
return INT2NUM(wd);
}
/*
* call-seq:
* inotify.rm_watch(filename, wd) => true or raises exception.
*
*/
static VALUE rb_inotify_rm_watch(VALUE self, VALUE wdnum) {
int *fd;
Data_Get_Struct(self, int, fd);
if(inotify_rm_watch(*fd, NUM2INT(wdnum)) < 0) {
rb_sys_fail("removing watch");
}
return Qtrue;
}
/*
* call-seq:
* inotify.each_event { |event| ... }
*
*/
static VALUE rb_inotify_each_event(VALUE self) {
#ifndef HAVE_TYPE_OPENFILE
rb_io_t *fptr;
#else
OpenFile *fptr;
#endif
int *fd, r;
struct inotify_event *event, *pevent;
char buffer[16384];
size_t buffer_n, event_size;
Data_Get_Struct(self, int, fd);
while(1) {
r = event_check(*fd);
if(r == 0) {
continue;
}
if((r = read(*fd, buffer, 16384)) < 0) {
rb_sys_fail("reading event");
}
buffer_n = 0;
while (buffer_n < r) {
pevent = (struct inotify_event *)&buffer[buffer_n];
event_size = sizeof(struct inotify_event) + pevent->len;
event = malloc(event_size);
memmove(event, pevent, event_size);
buffer_n += event_size;
rb_yield(rb_inotify_event_new(event));
}
}
return Qnil;
}
/*
* call-seq:
* inotify.close => nil
*
*/
static VALUE rb_inotify_close(VALUE self) {
int *fd;
Data_Get_Struct(self, int, fd);
if(close(*fd) != 0) {
rb_sys_fail("closing inotify");
}
return Qnil;
}
/*
* call-seq:
* inotify_event.inspect => "<Inotify::Event name=foo mask=0xdeadbeef wd=123>"
*
*/
static VALUE rb_inotify_event_inspect(VALUE self) {
struct inotify_event *event;
int len, pf;
char buf[1024];
Data_Get_Struct(self, struct inotify_event, event);
len = event->len;
/* TODO: Check for string getting truncated */
pf = snprintf(buf, 1024, "<Inotify::Event name=%s mask=%ld wd=%d>",
event->name, event->mask, event->wd);
return rb_str_new2(buf);
}
/*
* call-seq:
* inotify_event.name => name or nil
*
*/
static VALUE rb_inotify_event_name(VALUE self) {
struct inotify_event *event;
Data_Get_Struct(self, struct inotify_event, event);
if(event->len) {
return rb_str_new2(event->name);
} else {
return Qnil;
}
}
/*
* call-seq:
* inotify_event.wd => watch descriptor
*
*/
static VALUE rb_inotify_event_wd(VALUE self) {
struct inotify_event *event;
Data_Get_Struct(self, struct inotify_event, event);
return INT2NUM(event->wd);
}
/*
* call-seq:
* inotify_event.mask => 0xcafebabe
*
*/
static VALUE rb_inotify_event_mask(VALUE self) {
struct inotify_event *event;
Data_Get_Struct(self, struct inotify_event, event);
return LONG2NUM(event->mask);
}
void Init_inotify () {
rb_cInotify = rb_define_class("Inotify", rb_cObject);
rb_cInotifyEvent = rb_define_class_under(rb_cInotify, "Event", rb_cObject);
rb_const_set(rb_cInotify, rb_intern("ACCESS"), INT2NUM(IN_ACCESS));
rb_const_set(rb_cInotify, rb_intern("MODIFY"), INT2NUM(IN_MODIFY));
rb_const_set(rb_cInotify, rb_intern("ATTRIB"), INT2NUM(IN_ATTRIB));
rb_const_set(rb_cInotify, rb_intern("CLOSE_WRITE"), INT2NUM(IN_CLOSE_WRITE));
rb_const_set(rb_cInotify, rb_intern("CLOSE_NOWRITE"), INT2NUM(IN_CLOSE_NOWRITE));
rb_const_set(rb_cInotify, rb_intern("OPEN"), INT2NUM(IN_OPEN));
rb_const_set(rb_cInotify, rb_intern("MOVED_FROM"), INT2NUM(IN_MOVED_FROM));
rb_const_set(rb_cInotify, rb_intern("MOVED_TO"), INT2NUM(IN_MOVED_TO));
rb_const_set(rb_cInotify, rb_intern("CREATE"), INT2NUM(IN_CREATE));
rb_const_set(rb_cInotify, rb_intern("DELETE"), INT2NUM(IN_DELETE));
rb_const_set(rb_cInotify, rb_intern("DELETE_SELF"), INT2NUM(IN_DELETE_SELF));
rb_const_set(rb_cInotify, rb_intern("MOVE_SELF"), INT2NUM(IN_MOVE_SELF));
rb_const_set(rb_cInotify, rb_intern("UNMOUNT"), INT2NUM(IN_UNMOUNT));
rb_const_set(rb_cInotify, rb_intern("Q_OVERFLOW"), INT2NUM(IN_Q_OVERFLOW));
rb_const_set(rb_cInotify, rb_intern("IGNORED"), INT2NUM(IN_IGNORED));
rb_const_set(rb_cInotify, rb_intern("CLOSE"), INT2NUM(IN_CLOSE));
rb_const_set(rb_cInotify, rb_intern("MOVE"), INT2NUM(IN_MOVE));
rb_const_set(rb_cInotify, rb_intern("MASK_ADD"), INT2NUM(IN_MASK_ADD));
rb_const_set(rb_cInotify, rb_intern("ISDIR"), INT2NUM(IN_ISDIR));
rb_const_set(rb_cInotify, rb_intern("ONESHOT"), INT2NUM(IN_ONESHOT));
rb_const_set(rb_cInotify, rb_intern("ALL_EVENTS"), INT2NUM(IN_ALL_EVENTS));
rb_define_singleton_method(rb_cInotify, "new", rb_inotify_new, 0);
rb_define_method(rb_cInotify, "add_watch", rb_inotify_add_watch, 2);
rb_define_method(rb_cInotify, "rm_watch", rb_inotify_rm_watch, 1);
rb_define_method(rb_cInotify, "each_event", rb_inotify_each_event, 0);
rb_define_method(rb_cInotify, "close", rb_inotify_close, 0);
rb_define_method(rb_cInotifyEvent, "inspect", rb_inotify_event_inspect, 0);
rb_define_method(rb_cInotifyEvent, "name", rb_inotify_event_name, 0);
rb_define_method(rb_cInotifyEvent, "wd", rb_inotify_event_wd, 0);
rb_define_method(rb_cInotifyEvent, "mask", rb_inotify_event_mask, 0);
}
|