package Mojo::IOLoop::Delay; use Mojo::Base 'Mojo::EventEmitter'; use Mojo::IOLoop; has ioloop => sub { Mojo::IOLoop->singleton }; sub begin { my ($self, $ignore) = @_; $self->{pending}++; my $id = $self->{counter}++; return sub { (defined $ignore ? $ignore : 1) and shift; $self->_step($id, @_) }; } sub steps { my $self = shift; $self->{steps} = [@_]; $self->ioloop->timer(0 => $self->begin); return $self; } sub wait { my $self = shift; my @args; $self->once(error => \&_die); $self->once(finish => sub { shift->ioloop->stop; @args = @_ }); $self->ioloop->start; return wantarray ? @args : $args[0]; } sub _die { $_[0]->has_subscribers('error') ? $_[0]->ioloop->stop : die $_[1] } sub _step { my ($self, $id) = (shift, shift); $self->{args}[$id] = [@_]; return if $self->{fail} || --$self->{pending} || $self->{lock}; local $self->{lock} = 1; my @args = map {@$_} @{delete $self->{args}}; $self->{counter} = 0; if (my $cb = shift @{$self->{steps} ||= []}) { eval { $self->$cb(@args); 1 } or return $self->emit(error => $@)->{fail}++; } return $self->emit(finish => @args) unless $self->{counter}; $self->ioloop->timer(0 => $self->begin) unless $self->{pending}; } 1; =encoding utf8 =head1 NAME Mojo::IOLoop::Delay - Manage callbacks and control the flow of events =head1 SYNOPSIS use Mojo::IOLoop::Delay; # Synchronize multiple events my $delay = Mojo::IOLoop::Delay->new; $delay->on(finish => sub { say 'BOOM!' }); for my $i (1 .. 10) { my $end = $delay->begin; Mojo::IOLoop->timer($i => sub { say 10 - $i; $end->(); }); } $delay->wait unless Mojo::IOLoop->is_running; # Sequentialize multiple events my $delay = Mojo::IOLoop::Delay->new; $delay->steps( # First step (simple timer) sub { my $delay = shift; Mojo::IOLoop->timer(2 => $delay->begin); say 'Second step in 2 seconds.'; }, # Second step (parallel timers) sub { my ($delay, @args) = @_; Mojo::IOLoop->timer(1 => $delay->begin); Mojo::IOLoop->timer(3 => $delay->begin); say 'Third step in 3 seconds.'; }, # Third step (the end) sub { my ($delay, @args) = @_; say 'And done after 5 seconds total.'; } ); $delay->wait unless Mojo::IOLoop->is_running; =head1 DESCRIPTION L manages callbacks and controls the flow of events for L. =head1 EVENTS L inherits all events from L and can emit the following new ones. =head2 error $delay->on(error => sub { my ($delay, $err) = @_; ... }); Emitted if an error occurs in one of the steps, breaking the chain, fatal if unhandled. =head2 finish $delay->on(finish => sub { my ($delay, @args) = @_; ... }); Emitted once the active event counter reaches zero and there are no more steps. =head1 ATTRIBUTES L implements the following attributes. =head2 ioloop my $ioloop = $delay->ioloop; $delay = $delay->ioloop(Mojo::IOLoop->new); Event loop object to control, defaults to the global L singleton. =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 begin my $without_first_arg = $delay->begin; my $with_first_arg = $delay->begin(0); Increment active event counter, the returned callback can be used to decrement the active event counter again. Arguments passed to the callback are queued in the right order for the next step or L event and L method, the first argument will be ignored by default. # Capture all arguments my $delay = Mojo::IOLoop->delay; Mojo::IOLoop->client({port => 3000} => $delay->begin(0)); my ($loop, $err, $stream) = $delay->wait; =head2 steps $delay = $delay->steps(sub {...}, sub {...}); Sequentialize multiple events, the first callback will run right away, and the next one once the active event counter reaches zero. This chain will continue until there are no more callbacks, a callback does not increment the active event counter or an error occurs in a callback. =head2 wait my $arg = $delay->wait; my @args = $delay->wait; Start L and stop it again once an L or L event gets emitted, only works when L is not running already. # Use the "finish" event to synchronize portably $delay->on(finish => sub { my ($delay, @args) = @_; ... }); $delay->wait unless $delay->ioloop->is_running; =head1 SEE ALSO L, L, L. =cut