1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2009 -- leonerd@leonerd.org.uk
package IO::Async::Timer::Countdown;
use strict;
use warnings;
use base qw( IO::Async::Timer );
our $VERSION = '0.29';
use Carp;
use Scalar::Util qw( weaken );
=head1 NAME
C<IO::Async::Timer::Countdown> - event callback after a fixed delay
=head1 SYNOPSIS
use IO::Async::Timer::Countdown;
use IO::Async::Loop;
my $loop = IO::Async::Loop->new();
my $timer = IO::Async::Timer::Countdown->new(
delay => 10,
on_expire => sub {
print "Sorry, your time's up\n";
$loop->loop_stop;
},
);
$timer->start;
$loop->add( $timer );
$loop->loop_forever;
=head1 DESCRIPTION
This module provides a subclass of L<IO::Async::Timer> for implementing
one-shot fixed delays. The object implements a countdown timer, which invokes
its callback after the given period from when it was started. After it has
expired the Timer may be started again, when it will wait the same period then
invoke the callback again. A timer that is currently running may be stopped or
reset.
For a C<Timer> object that repeatedly runs a callback at regular intervals,
see instead L<IO::Async::Timer::Periodic>.
This object may be used in one of two ways; with a callback function, or as a
base class.
=over 4
=item Callbacks
If the C<on_expire> key is supplied to the constructor, it should contain a
CODE reference to a callback function to be invoked at the appropriate time:
$on_expire->( $self )
=item Base Class
If a subclass is built, then it can override the C<on_expire> method.
$self->on_expire()
=back
=cut
=head1 PARAMETERS
The following named parameters may be passed to C<new> or C<configure>:
=over 8
=item on_expire => CODE
CODE reference to callback to invoke when the timer expires. If not supplied,
the subclass method will be called instead.
=item delay => NUM
The delay in seconds after starting the timer until it expires. Cannot be
changed if the timer is running.
=back
Once constructed, the timer object will need to be added to the C<Loop> before
it will work. It will also need to be started by the C<start> method.
=cut
sub configure
{
my $self = shift;
my %params = @_;
if( exists $params{on_expire} ) {
my $on_expire = delete $params{on_expire};
ref $on_expire or croak "Expected 'on_expire' as a reference";
$self->{on_expire} = $on_expire;
undef $self->{cb}; # Will be lazily constructed when needed
}
if( exists $params{delay} ) {
$self->is_running and croak "Cannot configure 'delay' of a running timer\n";
my $delay = delete $params{delay};
$delay > 0 or croak "Expected a 'delay' as a positive number";
$self->{delay} = $delay;
}
if( !$self->{on_expire} and !$self->can( 'on_expire' ) ) {
croak 'Expected either a on_expire callback or an ->on_expire method';
}
$self->SUPER::configure( %params );
}
sub _make_cb
{
my $self = shift;
weaken( my $weakself = $self );
if( $self->{on_expire} ) {
return sub {
undef $weakself->{id};
$weakself->{on_expire}->( $weakself );
};
}
else {
return sub {
undef $weakself->{id};
$weakself->on_expire;
};
}
}
sub _make_enqueueargs
{
my $self = shift;
return delay => $self->{delay};
}
=head2 $timer->reset
If the timer is running, restart the countdown period from now. If the timer
is not running, this method has no effect.
=cut
sub reset
{
my $self = shift;
my $loop = $self->get_loop or croak "Cannot reset a Timer that is not in a Loop";
return if !$self->is_running;
$self->{id} = $loop->requeue_timer(
$self->{id},
delay => $self->{delay},
);
}
# Keep perl happy; keep Britain tidy
1;
__END__
=head1 EXAMPLES
=head2 Watchdog Timer
Because the C<reset> method restarts a running countdown timer back to its
full period, it can be used to implement a watchdog timer. This is a timer
which will not expire provided the method is called at least as often as it
is configured. If the method fails to be called, the timer will eventually
expire and run its callback.
For example, to expire an accepted connection after 30 seconds of inactivity:
...
on_accept => sub {
my ( $newclient ) = @_;
my $stream;
my $watchdog = IO::Async::Timer::Countdown->new(
delay => 30,
on_expire => sub { $stream->close },
);
$stream->add_child( $watchdog );
$stream = IO::Async::Stream->new(
handle => $newclient,
on_read => sub {
my ( $self, $buffref, $closed ) = @_;
$watchdog->reset;
...
},
on_closed => sub {
$watchdog->stop;
},
) );
$watchdog->start;
$loop->add( $watchdog );
}
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
|