]>
iEval git - gruntmaster-daemon.git/blob - lib/Gruntmaster/Daemon/Base.pm
1 package Gruntmaster
::Daemon
::Base
;
6 use parent qw
/Exporter/;
7 our @EXPORT_OK = qw
/watch/;
8 our $VERSION = '0.001';
10 use Fcntl qw
/O_WRONLY O_EXCL O_CREAT/;
12 use Log
::Log4perl qw
/get_logger/;
14 ##################################################
17 my ($name, $dir, $cb) = @_;
18 my $logger = get_logger
;
19 $logger->debug("Taking job $name...");
20 if (sysopen my $file, "$dir/$name/pidfile", O_WRONLY
| O_EXCL
| O_CREAT
){
21 $logger->debug("Successfully taken job $name, executing callback");
24 $logger->debug("Job $name already taken");
32 process
$_, $dir, $cb;
35 my $logger = Log
::Log4perl
->get_logger(__PACKAGE__
);
36 my $inotify = Linux
::Inotify2
->new or $logger->logdie("Unable to create Linux::Inotify2 object: $!");
37 $inotify->watch($dir, IN_MOVED_TO
, sub { process
$_[0]->name, $dir, $cb }) or $logger->logdie("Error watching $dir: $!");
38 1 while $inotify->poll;
39 $logger->logdie("Inotify polling stopped: $!");
This page took 0.055187 seconds and 4 git commands to generate.