use vars qw($VERSION %IRSSI);
$VERSION = "1.7";
-my ($REV) = '$Rev: 341 $' =~ /(\d+)/;
+my ($REV) = '$Rev: 343 $' =~ /(\d+)/;
%IRSSI = (
authors => 'Dan Boger',
contact => 'zigdon@gmail.com',
. 'Can optionally set your bitlbee /away message to same',
license => 'GNU GPL v2',
url => 'http://tinyurl.com/twirssi',
- changed => 'Mon Dec 1 15:36:01 PST 2008',
+ changed => '$Date: 2009-01-05 16:36:08 -0800 (Mon, 05 Jan 2009) $',
);
my $window;
my $pid = fork();
if ($pid) { # parent
- Irssi::timeout_add_once( 5000, 'monitor_child', [$filename] );
+ Irssi::timeout_add_once( 5000, 'monitor_child', [ $filename, 0 ] );
Irssi::pidwait_add($pid);
} elsif ( defined $pid ) { # child
close STDIN;
}
sub monitor_child {
- my $data = shift;
+ my ( $data, $attempt ) = @_;
my $filename = $data->[0];
print scalar localtime, " - checking child log at $filename" if &debug;
}
close FILE;
- Irssi::timeout_add_once( 5000, 'monitor_child', [$filename] );
+
+ if ( $attempt < 12 ) {
+ Irssi::timeout_add_once( 5000, 'monitor_child',
+ [ $filename, $attempt + 1 ] );
+ } else {
+ ¬ice("Giving up on polling $filename");
+ unlink $filename unless &debug;
+ }
}
sub debug {