/usr/share/perl5/File/ChangeNotify/Event.pm is in libfile-changenotify-perl 0.24-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package File::ChangeNotify::Event;
{
$File::ChangeNotify::Event::VERSION = '0.24';
}
use strict;
use warnings;
use namespace::autoclean;
use Moose;
use Moose::Util::TypeConstraints;
has path => (
is => 'ro',
isa => 'Str',
required => 1,
);
has type => (
is => 'ro',
isa => enum( [qw( create modify delete unknown )] ),
required => 1,
);
__PACKAGE__->meta()->make_immutable();
1;
# ABSTRACT: Class for file change events
__END__
=pod
=head1 NAME
File::ChangeNotify::Event - Class for file change events
=head1 VERSION
version 0.24
=head1 SYNOPSIS
my $watcher = File::ChangeNotify->instantiate_watcher(
directories => [ '/my/path', '/my/other' ],
filter => qr/\.(?:pm|conf|yml)$/,
exclude => [ 't', 'root', qr(/(?!\.)[^/]+$) ],
);
for my $event ( $watcher->new_events() ) {
print $event->path(), ' - ', $event->type(), "\n";
}
=head1 DESCRIPTION
This class provides information about a change to a specific file or
directory.
=head1 METHODS
=head2 File::ChangeNotify::Event->new(...)
This method creates a new event. It accepts the following arguments:
=over 4
=item * path => $path
The full path to the file or directory that changed.
=item * type => $type
The type of event. This must be one of "create", "modify", "delete", or
"unknown".
=back
=head2 $event->path()
Returns the path of the changed file or directory.
=head2 $event->type()
Returns the type of event.
=head1 AUTHOR
Dave Rolsky <autarch@urth.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2013 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut
|