Dear Monks,
We are making some changes to our system and one of the objectives was to use
POE::Component::DirWatch.
I tried the following code from the internet, modified to my needs.
Main objective of the script is to watch a directory and print the filenames that gets added to that directory
The script is able to watch a specified directory and when a file gets added to the directory the script responds.
One issue I'm facing is that it is not able to print the file names which came into the directory. Instead it prints "" and empty session id.
use warnings;
use strict;
use POE;
use POE::Component::DirWatch;
POE::Session->create(
inline_states => {
_start => \&init_watcher,
watch_dir => \&watch_dir,
},
);
sub init_watcher {
my ($kernel, $heap, $session, $sender) = @_[KERNEL, HEAP, SESSION,
+SENDER];
warn "Queue 1 starting (session id " . $session->ID . ")";
# watch a directory for this queue
$kernel->yield('watch_dir', '/tmp/queue1'); }
sub watch_dir {
my ($kernel, $heap, $session, $queue) = @_[KERNEL, HEAP, SESSION,
+ ARG0];
# start watching the directory
POE::Component::DirWatch->new(
alias => 'dirwatch',
directory => $queue,
file_callback => \&found_file,
interval => 1,
);
}
sub found_file {
my ($kernel, $heap, $session, $sender, $file) = @_[KERNEL, HEAP, S
+ESSION, SENDER, ARG1];
# warn "Found '$file' for " . $session->ID . " (from " . $sender-ID
+ . ")\n";
warn "Found '$file' for $session->ID\n";
}
$poe_kernel->run();
exit(0);
Below is the output of the script without the filename(s) and the session ID.
-bash-3.00$ ./dirwatch_test1.pl
Queue 1 starting (session id 2) at ./dirwatch_test1.pl line 19.
Found '' for ->ID
Found '' for ->ID
Please let me know whats the error. Also let me know if there is a shorter way of doing this.
I'm using verion 0.20000 of
POE::Component::DirWatch
Thanks for your help.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.