|
NAMEFile::ChangeNotify::Watcher - Role consumed by all watchersVERSIONversion 0.31SYNOPSISmy $watcher = File::ChangeNotify->instantiate_watcher ( directories => [ '/my/path', '/my/other' ], filter => qr/\.(?:pm|conf|yml)$/, exclude => ['t', 'root', qr(/(?!\.)[^/]+$), sub { -e && ! -r }], ); if ( my @events = $watcher->new_events ) { ... } # blocking while ( my @events = $watcher->wait_for_events ) { ... } DESCRIPTIONA "File::ChangeNotify::Watcher" monitors a directory for changes made to any file. You can provide a regular expression to filter out files you are not interested in. It handles the addition of new subdirectories by adding them to the watch list.Note that the actual granularity of what each watcher class reports may vary. Implementations that hook into some sort of kernel event interface (Inotify, for example) have much better knowledge of exactly what changes are happening than one implemented purely in userspace code (like the Default class). By default, events are returned in the form of File::ChangeNotify::Event objects, but this can be overridden by providing an "event_class" attribute to the constructor. You can block while waiting for events or do a non-blocking call asking for any new events since the last call (or since the watcher was instantiated). Different watchers will implement blocking in different ways, and the Default watcher just does a sleep loop. METHODSFile::ChangeNotify::Watcher::Subclass->new(...)This method creates a new watcher. It accepts the following arguments:
$watcher->wait_for_eventsThis method causes the watcher to block until it sees interesting events, and then return them as a list.Some watcher subclasses may implement blocking as a sleep loop, while others may actually block. $watcher->new_eventsThis method returns a list of any interesting events seen since the last time the watcher checked.$watcher->sees_all_eventsIf this is true, the watcher will report on all events.Some watchers, like the Default subclass, are not smart enough to track things like a file being created and then immediately deleted, and can only detect changes between snapshots of the file system. Other watchers, like the Inotify subclass, see all events that happen and report on them. SUPPORTBugs may be submitted at <http://rt.cpan.org/Public/Dist/Display.html?Name=File-ChangeNotify> or via email to bug-file-changenotify@rt.cpan.org <mailto:bug-file-changenotify@rt.cpan.org>.I am also usually active on IRC as 'autarch' on "irc://irc.perl.org". SOURCEThe source code repository for File-ChangeNotify can be found at <https://github.com/houseabsolute/File-ChangeNotify>.AUTHORDave Rolsky <autarch@urth.org>COPYRIGHT AND LICENSEThis software is Copyright (c) 2009 - 2019 by Dave Rolsky.This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) The full text of the license can be found in the LICENSE file included with this distribution.
Visit the GSP FreeBSD Man Page Interface. |