X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FMiniLoop.pm;h=af9ce36ad4b4a9ba9229543103cf616877175a83;hb=f8080c1c188fa6c4589ffcad8793e0cf7a8d4bdb;hp=5f22eac83951d6e363040bb2f1eeee43c4b523be;hpb=901159798e5541050b7c3357a7148818610a4019;p=scpubgit%2FObject-Remote.git diff --git a/lib/Object/Remote/MiniLoop.pm b/lib/Object/Remote/MiniLoop.pm index 5f22eac..af9ce36 100644 --- a/lib/Object/Remote/MiniLoop.pm +++ b/lib/Object/Remote/MiniLoop.pm @@ -42,14 +42,16 @@ sub watch_io { #TODO if this works out non-blocking support #will need to be integrated in a way that #is compatible with Windows which has no - #non-blocking support - Dlog_warn { "setting file handle to be non-blocking: " } $fh; - use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK); - my $flags = fcntl($fh, F_GETFL, 0) - or die "Can't get flags for the socket: $!\n"; - $flags = fcntl($fh, F_SETFL, $flags | O_NONBLOCK) - or die "Can't set flags for the socket: $!\n"; - + #non-blocking support - see also ::ReadChannel + if (0) { + Dlog_warn { "setting file handle to be non-blocking: $_" } $fh; + use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK); + my $flags = fcntl($fh, F_GETFL, 0) + or die "Can't get flags for the socket: $!\n"; + $flags = fcntl($fh, F_SETFL, $flags | O_NONBLOCK) + or die "Can't set flags for the socket: $!\n"; + } + if (my $cb = $watch{on_read_ready}) { log_trace { "IO watcher is registering with select for reading" }; $self->_read_select->add($fh); @@ -80,16 +82,36 @@ sub unwatch_io { return; } +sub _sort_timers { + my ($self, @new) = @_; + my $timers = $self->_timers; + + log_trace { "Sorting timers" }; + + @{$timers} = sort { $a->[0] <=> $b->[0] } @{$timers}, @new; + return; +} + sub watch_time { my ($self, %watch) = @_; - my $at = $watch{at} || do { - die "watch_time requires at or after" unless my $after = $watch{after}; - time() + $after; - }; + my $at; + + Dlog_trace { "watch_time() invoked with $_" } \%watch; + + if (exists($watch{every})) { + $at = time() + $watch{every}; + } elsif (exists($watch{after})) { + $at = time() + $watch{after}; + } elsif (exists($watch{at})) { + $at = $watch{at}; + } else { + die "watch_time requires every, after or at"; + } + die "watch_time requires code" unless my $code = $watch{code}; my $timers = $self->_timers; - my $new = [ $at => $code ]; - @{$timers} = sort { $a->[0] <=> $b->[0] } @{$timers}, $new; + my $new = [ $at => $code, $watch{every} ]; + $self->_sort_timers($new); log_debug { "Created new timer that expires at '$at'" }; return "$new"; } @@ -122,8 +144,6 @@ sub _next_timer_expires_delay { $duration = $delay_max; } - #uncomment for original behavior - #return .5; return $duration; } @@ -131,11 +151,12 @@ sub loop_once { my ($self) = @_; my $read = $self->_read_watches; my $write = $self->_write_watches; + our $Loop_Entered = 1; 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", + log_trace { 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' ) }; #TODO The docs state that select() in some instances can return a socket as ready to #read data even if reading from it would block and the recomendation is to set @@ -155,7 +176,7 @@ sub loop_once { #return? $self->_read_select, $self->_write_select, undef, $wait_time ); - log_debug { + log_trace { 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"; @@ -163,29 +184,50 @@ sub loop_once { # 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. + + local $Loop_Entered; + log_trace { "Reading from all ready filehandles" }; foreach my $fh (@$readable) { next unless $read->{$fh}; $read_count++; $read->{$fh}(); -# $read->{$fh}() if $read->{$fh}; + last if $Loop_Entered; } log_trace { "Writing to all ready filehandles" }; foreach my $fh (@$writeable) { next unless $write->{$fh}; $write_count++; $write->{$fh}(); -# $write->{$fh}() if $write->{$fh}; + last if $Loop_Entered; } + 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]->(); + my $active = $timers->[0]; + Dlog_debug { "Found timer that needs to be executed: $_" } $active; +# my (shift @$timers)->[1]->(); + + if (defined($active->[2])) { + #handle the case of an 'every' timer + $active->[0] = time() + $active->[2]; + Dlog_trace { "scheduling timer for repeat execution at $_"} $active->[0]; + $self->_sort_timers; + } else { + #it doesn't repeat again so get rid of it + shift(@$timers); + } + + #execute the timer + $active->[1]->(); + + last if $Loop_Entered; } - log_debug { "Run loop: single loop is completed" }; + + log_trace { "Run loop: single loop is completed" }; return; } @@ -220,15 +262,16 @@ sub want_stop { #it's own localized is_running attribute - any adjustment to the #is_running attribute outside of that future will not effect that #future so each future winds up able to call run() and stop() at -#will with out interfering with each other +#will with out interfering with each other - how about having +#run loop until the future becomes ready? sub run { my ($self) = @_; - log_info { "Run loop: run() invoked" }; + log_trace { "Run loop: run() invoked" }; local $self->{is_running} = 1; while ($self->is_running) { $self->loop_once; } - log_info { "Run loop: run() completed" }; + log_trace { "Run loop: run() completed" }; return; }