Rev 0.3.0: Now with filesystem monitoring

Rev is a high-performance event library for Ruby, providing event loops
for
monitoring network, timer, and now filesystem events. Rev is based on
the
libev C library.

http://github.com/tarcieri/rev/

Rev 0.3.0 provides some bugfixes and performance improvements as well as
a
slew of new features, including many new extensions to existing APIs
that
provide for better integration with the Ruby environment, and a new
filesystem monitoring API built on the facilities provided by the libev
event library, including inotify support on Linux.

The new StatWatcher API allows you to monitor any file or directory for
changes and receive events when changes occur:

– snip –

class MyStatWatcher < Rev::StatWatcher
def on_change
begin
puts “#{path} has new status #{File.stat(path).inspect}”
rescue Errno::ENOENT
puts “#{path} was deleted”
end
end
end

watcher = MyStatWatcher.new “interesting/file”
watcher.attach Rev::Loop.default
Rev::Loop.default.run

– snip –

I know there are many gems already available to provide filesystem
monitoring, such as directory_watcher (
GitHub - TwP/directory_watcher: Event notification for file system changes), and that
EventMachine
already provides EM.watch_file, but for the Rev users out there, you now
have the same capabilities with Rev’s asynchronous event loops.

On Sat, Aug 29, 2009 at 12:12 AM, Tony A.[email protected] wrote:

event library, including inotify support on Linux.

Awesome work Tony!

I for one welcome our new event-loop driven file notification
overlords. Thanks for adding inotify support in an elegant manner.

Blessings,
TwP

On Sat, Aug 29, 2009 at 2:12 AM, Tony A. [email protected] wrote:

event library, including inotify support on Linux.
rescue Errno::ENOENT

Hi Tony

Does this use fsevents on Mac OSX?

Thanks,
Rob

On Mon, Aug 31, 2009 at 10:48 AM, Rob S. [email protected]
wrote:

Hi Tony

Does this use fsevents on Mac OSX?

Unfortunately on all platforms besides Linux it’s just using stat()
periodically, to my knowledge.

If you are interested in having other syscalls supported for filesystem
monitoring, I can ask on the libev mailing list.