cEvent
Returned by SleepyPenguin::Inotify#take. It is a Struct with the following elements:
wd - watch descriptor (unsigned Integer)
mask - mask of events (unsigned Integer)
cookie - unique cookie associated related events (for rename)
name - optional string name (may be nil)
The mask is a bitmask of the event flags accepted by Inotify#add_watch and may also include the following flags:
:IGNORED - watch was removed
:ISDIR - event occured on a directory
:Q_OVERFLOW - event queue overflowed (wd is -1)
:UNMOUNT - filesystem containing watched object was unmounted
Use the Event#events method to get an array of symbols for the matched events.
Returns an array of symbolic event names based on the contents of the mask field.
static VALUE events(VALUE self)
{
long len = RARRAY_LEN(checks);
VALUE *ptr = RARRAY_PTR(checks);
VALUE sym;
VALUE rv = rb_ary_new();
uint32_t mask;
uint32_t event_mask = NUM2UINT(rb_funcall(self, id_mask, 0));
for (; (len -= 2) >= 0;) {
sym = *ptr++;
mask = NUM2UINT(*ptr++);
if ((event_mask & mask) == mask)
rb_ary_push(rv, sym);
}
return rv;
}
Originally generated with the Darkfish Rdoc Generator 2, modified by wrongdoc.
We love to hear from you!