Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hi all,

I'm trying to monitor a directory "/tmp/j" with Linux::Inotify2 to be notified when a file is accessed or when a (write) file descriptor is closed. So far, I haven't been able to receive any notification events :( My guess is that I'm missing something simple.

#!/usr/bin/perl use strict; use warnings; use Linux::Inotify2; $|++; my $inotify = new Linux::Inotify2 or die "Unable to create new inotify object: $!"; 1 while $inotify->poll; $inotify->watch("/tmp/j", IN_ACCESS | IN_CLOSE_WRITE, sub { my $event = shift; my $name = $event->fullname; print "$name was accessed\n" if $event->IN_ACCESS; print "$name is no longer mounted\n" if $event->IN_UNMOUNT; print "$name is gone\n" if $event->IN_IGNORED; print "$name is new\n" if $event->IN_CLOSE_WRITE; print "events for $name have been lost\n" if $event->IN_Q_OVERFLOW; print "jjjj\n"; $event->w->cancel; }) or die "watch creation failed: $!";

$ dd if=/dev/zero of=/tmp/j/p bs=1M count=2
2+0 records in
2+0 records out
2097152 bytes (2.1 MB) copied, 0.101007 s, 20.8 MB/s

The script runs with no warnings.

linux kernel 2.6.24-19-generic

update:

To rule out an issue with the os, I tested with the inotifywatch of the inotify tools package. Running the dd command above several times.

$ inotifywatch -v -e access -e modify -t 20 -r /tmp/j Establishing watches... Setting up watch(es) on /tmp/j OK, /tmp/j is now being watched. Total of 1 watches. Finished establishing watches, now collecting statistics. Will listen for events for 20 seconds. total modify filename 18 18 /tmp/j/

Update to the update:

Did more testing. Looks like the perldoc is wrong. The $inotify->poll needs to be called AFTER the $inotify->watch routines are set!

Thanks Animator for making me rethink how I was calling it. Working code:

#!/usr/bin/perl use strict; use warnings; use Linux::Inotify2; $|++; my $inotify = new Linux::Inotify2 or die "Unable to create new inotify object: $!"; $inotify->watch("/tmp/j", IN_ACCESS | IN_CLOSE_WRITE, sub { my $event = shift; my $name = $event->fullname; print "$name was accessed\n" if $event->IN_ACCESS; print "$name is no longer mounted\n" if $event->IN_UNMOUNT; print "$name is gone\n" if $event->IN_IGNORED; print "$name is new\n" if $event->IN_CLOSE_WRITE; print "events for $name have been lost\n" if $event->IN_Q_OVERFLOW; print "jjjj\n"; # $event->w->cancel; }) or die "watch creation failed: $!"; 1 while $inotify->poll;

Jason L. Froebe

Blog, Tech Blog


In reply to Linux::Inotify2 - unable to receive events by jfroebe

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-18 18:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found