The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
package App::Inotify::Hookable;
BEGIN {
  $App::Inotify::Hookable::AUTHORITY = 'cpan:AVAR';
}
{
  $App::Inotify::Hookable::VERSION = '0.02';
}
use Moose;
use MooseX::Types::Moose ':all';
use Linux::Inotify;
use Time::HiRes qw(gettimeofday tv_interval ualarm);
use Try::Tiny;

with 'MooseX::Getopt::Dashes';

has debug => (
    metaclass      => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => Bool,
    default       => 0,
    cmd_aliases   => 'd',
    documentation => "Should we print debug info about what we're doing?",
);

has watch_directories => (
    metaclass     => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => ArrayRef[Str],
    default       => sub { [] },
    cmd_aliases   => 'w',
    auto_deref    => 1,
    documentation => "What directories should we watch?",
);

has recursive => (
    metaclass     => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => Bool,
    default       => 1,
    cmd_aliases   => 'r',
    documentation => "Should we recursively watch the directories we're watching? On by default.",
);

has on_modify_command => (
    metaclass     => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => ArrayRef[Str],
    default       => sub { [] },
    auto_deref    => 1,
    cmd_aliases   => 'c',
    documentation => "What commands should we run when something happens?",
);

has on_modify_path_command => (
    metaclass     => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => HashRef[Str],
    default       => sub { +{} },
    cmd_aliases   => 'C',
    documentation => "What commands should we run for a given path when something happens? The key is a regex and the value is a command.",
);

has buffer_time => (
    metaclass     => 'MooseX::Getopt::Meta::Attribute',
    is            => 'ro',
    isa           => Int,
    default       => 100,
    cmd_aliases   => 't',
    documentation => "How many ms should we buffer inotify for?",
);

has _watches => (
    is            => 'ro',
    isa           => 'HashRef',
    default       => sub { +{} },
    documentation => "What stuff are we watching?",
);

has _notifier => (
    is         => 'rw',
    isa        => 'Linux::Inotify',
    lazy_build => 1,
);

sub _build__notifier { Linux::Inotify->new }

sub log {
    my ($self, $message) = @_;
    print STDERR scalar(localtime()), " : ", $message, "\n";
};

sub run {
    my ($self) = @_;

    # Catch sigint so DEMOLISH can run 
    local $SIG{INT} = sub { exit 1 };

    my @watching = $self->watch_directories;
    die "You need to give me something to watch" unless @watching;
    $self->log(
        "Starting up, " .
        ($self->recursive ? "recursively " : "") .
        "watching directories <@watching>"
    );

    my $notifier = $self->_notifier;
    $self->setup_watch;
    my $buffer_time = $self->buffer_time;
    while (my @events = $notifier->read()) {
        # At this point we have an event, but Linux sends these *really
        # fast* so if someone does "touch foo bar zar" we might only get
        # an event for the first file, then later the rest.
        #
        # So buffer up events for $sleep_ms and see if we stop getting
        # them, then restart.
        my $sleep_ms = $buffer_time;
        my $sleep_us = $sleep_ms * 10**3;

        my %modified_paths;
        my $should_log_modified_paths = keys %{ $self->on_modify_path_command };
        my $log_modified_paths = sub {
            my $events = shift;
            for my $event (@$events) {
                my $fullname = $event->fullname;
                $fullname =~ s[//][/]g; # We have double slashes for some reason
                $modified_paths{$fullname} = undef;
            }
            return;
        };

      WAIT: while (1) {
            for my $event (@events) {
                $event->print if $self->debug;
            }
            $log_modified_paths->(\@events) if $should_log_modified_paths;
            @events = ();
            try {
                local $SIG{ALRM} = sub {
                    die "Timeout waiting for ->read";
                };
                ualarm($sleep_us);
                @events = $notifier->read;
                ualarm(0);
            } catch {
                $self->log("We have no more events with a timeout of $sleep_ms us") if $self->debug;
            };

            if (@events) {
                $self->log("We have events, waiting another $sleep_ms us and checking again") if $self->debug;

                $log_modified_paths->(\@events) if $should_log_modified_paths;
            } else {
                # No more events
                last WAIT;
            }
        }

        $self->log("Had changes in your directories");

        if ($should_log_modified_paths) {
            $self->log("Checking for path-specific hooks") if $self->debug;
            my %hooks_to_run;
            my $on_modify_path_command = $self->on_modify_path_command;
            for my $path (keys %modified_paths) {
                for my $path_hook (keys %$on_modify_path_command) {
                    $hooks_to_run{$path_hook} = 1
                        if $path =~ /$path_hook/;
                }
            }
            if (keys %hooks_to_run) {
                $self->log("Running path-specific hooks");
                my $t0 = [gettimeofday];
                for my $hook_to_run (keys %hooks_to_run) {
                    my $command = $on_modify_path_command->{$hook_to_run};
                    $self->log("Running path hook <$hook_to_run>: <$command>");
                    system $command;
                }
                my $elapsed = tv_interval ( $t0 );
                $self->log(sprintf "FINISHED running path-specific hooks. Took %.2fs", $elapsed);
            }
        }

        if (my @commands = $self->on_modify_command) {
            $self->log("Running global hooks");
            my $t0 = [gettimeofday];
            for my $command (@commands) {
                $self->log("Running <$command>");
                system $command;
            }
            my $elapsed = tv_interval ( $t0 );
            $self->log(sprintf "FINISHED restarting. Took %.2fs", $elapsed);
        }

        # Re-setup the watching if needed, we may have new directories.
        $self->setup_watch;
    }

    return 1;
}

sub all_directories_to_watch {
    my ($self) = @_;
    my @watch_directories = $self->watch_directories;
    my @directories;
    if ($self->recursive) {
        chomp(@directories = qx[find @watch_directories -type d]);
    } else {
        @directories = @watch_directories;
    }
    # Don't notify on "git status" (creates a lock) and other similar
    # operations.
    grep { not m[/\.git/?] } @directories;
}

sub setup_watch {
    my ($self) = @_;

    my $notifier = $self->_notifier;
    my $watches  = $self->_watches;
    my $debug    = $self->debug;

    # Remove any watches for directories we're watching that have gone away
    EXISTING_WATCH: for my $directory (keys %$watches) {
        unless (-d $directory) {
            $watches->{$directory}->remove;
            delete $watches->{$directory};
            $self->log("Removed watch on directory: $directory") if $debug;
        }
    }

    # Add new watches
    NEW_WATCH: for my $directory ($self->all_directories_to_watch) {
        next NEW_WATCH if exists $watches->{$directory};
        try {
            my $watch = $notifier->add_watch(
                $directory,
                (
                    # This is a directory
                    Linux::Inotify::ISDIR |
                    # Modifications I care about
                    Linux::Inotify::MODIFY
                    |
                    Linux::Inotify::ATTRIB
                    |
                    Linux::Inotify::CREATE
                    |
                    Linux::Inotify::DELETE
                    |
                    Linux::Inotify::DELETE_SELF
                    |
                    Linux::Inotify::MOVED_FROM
                    |
                    Linux::Inotify::MOVED_TO
                )
            );
            $self->log("Now watching directory: $directory") if $debug;
            $watches->{$directory} = $watch;
        } catch {
            my $error = $_;

            if ($error =~ /No space left on device/) {
                die <<"DIE"
We probably exceeded the maximum number of user watches since we had a
"No space left on device" error. Try something like this command and
try again:

    echo 65536 | sudo tee /proc/sys/fs/inotify/max_user_watches

The original error was:

$error
DIE
            } else {
                die $error;
            }
        };
    };
}

sub DEMOLISH {
    my ($self) = @_;
    my $notifier = $self->_notifier;

    $self->log("Demolishing $notifier");
    $notifier->close;
}

1;

__END__

=encoding utf8

=head1 NAME

App::Inotify::Hookable - blocking command-line interface to inotify

=head1 SYNOPSIS

Watch a directory, tell us when things change in it:

    inotify-hookable --watch-directories /tmp/watch-this

Watch a git tree, some configs, and a repository of static assets,
restart the webserver or compress those assets if anything changes:

    inotify-hookable \
        --watch-directories /etc/uwsgi \
        --watch-directories /git_tree/central \
        --watch-directories /etc/app-config \
        --watch-directories /git_tree/static_assets \
        --on-modify-path-command "^(/etc/uwsgi|/git_tree/central|/etc/app-config)=sudo /etc/init.d/uwsgi restart" \
        --on-modify-path-command "^/git_tree/static_assets=(cd /git_tree/static_assets && compress_static_assets)"

=head1 DESCRIPTION

This simple command-line program is my replacement for the
functionality offered by L<Plack>'s L<Filesys::Notify::Simple>. I
found that on very large git trees Plack would spend an inordinate
amount watching the filesystem for changes.

This program uses L<Linux::Inotify>, so the kernel will notify it
B<instantly> when something changes (actually it's so fast that we
have to work around how fast it sends us events).

The result is that you can run this e.g. in a screen session and have
it watch your development environment, and your webserver will have
begun restarting before your finger leaves the I<save> button.

Currently the command-line interface for this is the only one that
really makes sense, this module is entirely blocking (although it
could probably run in another process via L<POE> or
something). Patches welcome.

=head1 OPTIONS

=head2 C<-w> or C<--watch-directories>

Specify this to watch a directory, you can give this however many
times you like to watch lots of directories.

=head2 C<-r> or C<--recursive>

If you supply this any directory you give will be recursively
watched. This is on by default.

=head2 C<-c> or C<--on-modify-command>

A command that will be run when something is modified.

=head2 C<-C> or C<--on-modify-path-command>

A key-value pair where the key is a regex that'll be matched against a
modified path, and the value is a command that'll be run. See the
L</SYNOPSIS> for an example.

Useful for e.g. restarting a webserver if you modify directory F<A>
but compressing some static assets if you modify directory F<B>.

=head2 C<-t> or C<--buffer-time>

Linux will send you inotify events B<really> fast, so fast that if you
run something like:

    touch foo bar

You might get an event for F<foo> in one batch, followed by an event
for F<bar> later on.

To deal with this we enter a loop when we start getting events and
sleep for a default of 100 ms, as long as we keep getting events we
keep sleeping for 100 ms, but as soon as we haven't received anything
new we fire off our event handlers.

=head2 C<-d> or C<--debug>

Spew out some verbose debug output while running.

=head1 ACKNOWLEDGMENT

This module was originally developed at and for Booking.com. With
approval from Booking.com, this module was generalized and put on
CPAN, for which the authors would like to express their gratitude.

=head1 AUTHOR

Ævar Arnfjörð Bjarmason <avar@cpan.org>

=cut