X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FReadChannel.pm;h=2d3da400ca516e52e8f282efdadda3d32aaf4533;hp=5de5bf131a6edd0e8a69674b37f263ffc28404f2;hb=901159798e5541050b7c3357a7148818610a4019;hpb=5d59cb9859e004df5cde5d83aa7230e621a28b95 diff --git a/lib/Object/Remote/ReadChannel.pm b/lib/Object/Remote/ReadChannel.pm index 5de5bf1..2d3da40 100644 --- a/lib/Object/Remote/ReadChannel.pm +++ b/lib/Object/Remote/ReadChannel.pm @@ -2,7 +2,8 @@ package Object::Remote::ReadChannel; use CPS::Future; use Scalar::Util qw(weaken); -use Object::Remote::Logging qw(:log); +use Object::Remote::Logging qw(:log :dlog); +use POSIX; use Moo; has fh => ( @@ -27,18 +28,34 @@ has on_line_call => (is => 'rw'); has _receive_data_buffer => (is => 'ro', default => sub { my $x = ''; \$x }); +#TODO confirmed this is the point of the hang - sysread() is invoked on a +#socket inside the controller that blocks and deadlocks the entire system. +#The remote nodes are all waiting to receive data at that point. +#Validated this behavior exists in an unmodified Object::Remote from CPAN +#by wrapping this sysread() with warns that have the pid in them and pounding +#my local machine with System::Introspector via ssh and 7 remote perl instances +#It looks like one of the futures is responding to an event regarding the ability +#to read from a socket and every once in a while an ordering issue means that +#there is no actual data to read from the socket sub _receive_data_from { my ($self, $fh) = @_; - log_trace { "Preparing to read data" }; + Dlog_trace { "Preparing to read data from $_" } $fh; + #use Carp qw(cluck); cluck(); my $rb = $self->_receive_data_buffer; - my $len = sysread($fh, $$rb, 1024, length($$rb)); + #TODO is there a specific reason sysread() and syswrite() aren't + #a part of ::MiniLoop? It's one spot to handle errors and other + #logic involving filehandles + my $len = sysread($fh, $$rb, 32768, length($$rb)); my $err = defined($len) ? '' : ": $!"; if (defined($len) and $len > 0) { log_trace { "Read $len bytes of data" }; while (my $cb = $self->on_line_call and $$rb =~ s/^(.*)\n//) { $cb->(my $line = $1); } - } else { + #TODO this isn't compatible with Windows but would be if + #EAGAIN was set to something that could never match + #if on Windows + } elsif ($! != EAGAIN) { log_trace { "Got EOF or error, this read channel is done" }; Object::Remote->current_loop ->unwatch_io(