X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FMiniLoop.pm;h=16216dee01587241f811e508078929358e8bd032;hp=e7be944633f268484c6ae712c4a015cec75ba30b;hb=5d59cb9859e004df5cde5d83aa7230e621a28b95;hpb=fbd3b8ecbd2c9004f0e56ff1c0bc30f677a19c62 diff --git a/lib/Object/Remote/MiniLoop.pm b/lib/Object/Remote/MiniLoop.pm index e7be944..16216de 100644 --- a/lib/Object/Remote/MiniLoop.pm +++ b/lib/Object/Remote/MiniLoop.pm @@ -2,6 +2,7 @@ package Object::Remote::MiniLoop; use IO::Select; use Time::HiRes qw(time); +use Object::Remote::Logging qw( :log :dlog ); use Moo; # this is ro because we only actually set it using local in sub run @@ -18,6 +19,7 @@ has _timers => (is => 'ro', default => sub { [] }); sub pass_watches_to { my ($self, $new_loop) = @_; + log_debug { "passing watches to new run loop" }; foreach my $fh ($self->_read_select->handles) { $new_loop->watch_io( handle => $fh, @@ -35,19 +37,24 @@ sub pass_watches_to { sub watch_io { my ($self, %watch) = @_; my $fh = $watch{handle}; + log_debug { my $type = ref($fh); "Adding watch for ref of type '$type'" }; if (my $cb = $watch{on_read_ready}) { + log_trace { "IO watcher on_read_ready has been invoked" }; $self->_read_select->add($fh); $self->_read_watches->{$fh} = $cb; } if (my $cb = $watch{on_write_ready}) { + log_trace { "IO watcher on_write_ready has been invoked" }; $self->_write_select->add($fh); $self->_write_watches->{$fh} = $cb; } + return; } sub unwatch_io { my ($self, %watch) = @_; my $fh = $watch{handle}; + log_debug { my $type = ref($fh); "Removing watch for ref of type '$type'" }; if ($watch{on_read_ready}) { $self->_read_select->remove($fh); delete $self->_read_watches->{$fh}; @@ -69,61 +76,121 @@ sub watch_time { my $timers = $self->_timers; my $new = [ $at => $code ]; @{$timers} = sort { $a->[0] <=> $b->[0] } @{$timers}, $new; + log_debug { "Created new timer that expires at '$at'" }; return "$new"; } sub unwatch_time { my ($self, $id) = @_; + log_debug { "Removing timer with id of '$id'" }; @$_ = grep !($_ eq $id), @$_ for $self->_timers; return; } +sub _next_timer_expires_delay { + my ($self) = @_; + my $timers = $self->_timers; + #undef means no timeout, only returns + #when data is ready - when the system + #deadlocks the chatter from the timeout in + #select clogs up the logs + my $delay_max = undef; + + return $delay_max unless @$timers; + my $duration = $timers->[0]->[0] - time; + + log_trace { "next timer fires in '$duration' seconds " }; + + if ($duration < 0) { + $duration = 0; + } elsif (! defined($delay_max)) { + $duration = undef; + } elsif ($duration > $delay_max) { + $duration = $delay_max; + } + + return $duration; +} + sub loop_once { my ($self) = @_; my $read = $self->_read_watches; my $write = $self->_write_watches; + my $read_count = 0; + my $write_count = 0; + my @c = caller; + my $wait_time = $self->_next_timer_expires_delay; + log_debug { sprintf("Run loop: loop_once() has been invoked by $c[1]:$c[2] with read:%i write:%i select timeout:%s", + scalar(keys(%$read)), scalar(keys(%$write)), defined $wait_time ? $wait_time : 'indefinite' ) }; my ($readable, $writeable) = IO::Select->select( - $self->_read_select, $self->_write_select, undef, 0.5 - ); + $self->_read_select, $self->_write_select, undef, $wait_time + ); + log_debug { + my $readable_count = defined $readable ? scalar(@$readable) : 0; + my $writable_count = defined $writeable ? scalar(@$writeable) : 0; + "Run loop: select returned readable:$readable_count writeable:$writable_count"; + }; # I would love to trap errors in the select call but IO::Select doesn't # differentiate between an error and a timeout. # -- no, love, mst. + log_trace { "Reading from all ready filehandles" }; foreach my $fh (@$readable) { - $read->{$fh}() if $read->{$fh}; + next unless $read->{$fh}; + $read_count++; + $read->{$fh}(); +# $read->{$fh}() if $read->{$fh}; } + log_trace { "Writing to all ready filehandles" }; foreach my $fh (@$writeable) { - $write->{$fh}() if $write->{$fh}; + next unless $write->{$fh}; + $write_count++; + $write->{$fh}(); +# $write->{$fh}() if $write->{$fh}; } + log_trace { "Read from $read_count filehandles; wrote to $write_count filehandles" }; my $timers = $self->_timers; my $now = time(); + log_trace { "Checking timers" }; while (@$timers and $timers->[0][0] <= $now) { + Dlog_debug { "Found timer that needs to be executed: $_" } $timers->[0]; (shift @$timers)->[1]->(); } + log_debug { "Run loop: single loop is completed" }; return; } sub want_run { my ($self) = @_; - $self->{want_running}++; + Dlog_debug { "Run loop: Incrimenting want_running, is now $_" } + ++$self->{want_running}; } sub run_while_wanted { my ($self) = @_; + log_debug { "Run loop: run_while_wanted() invoked" }; $self->loop_once while $self->{want_running}; + log_debug { "Run loop: run_while_wanted() completed" }; return; } sub want_stop { my ($self) = @_; - $self->{want_running}-- if $self->{want_running}; + if (! $self->{want_running}) { + log_debug { "Run loop: want_stop() was called but want_running was not true" }; + return; + } + Dlog_debug { "Run loop: decrimenting want_running, is now $_" } + --$self->{want_running}; } sub run { my ($self) = @_; + log_info { "Run loop: run() invoked" }; local $self->{is_running} = 1; while ($self->is_running) { $self->loop_once; } + log_info { "Run loop: run() completed" }; return; }