fix some non-blocking behavior but it's not right yet; log some signals
[scpubgit/Object-Remote.git] / lib / Object / Remote / ReadChannel.pm
CommitLineData
12fb4a80 1package Object::Remote::ReadChannel;
2
3use CPS::Future;
b7a853b3 4use Scalar::Util qw(weaken openhandle);
9031635d 5use Object::Remote::Logging qw(:log :dlog);
90115979 6use POSIX;
12fb4a80 7use Moo;
8
9has fh => (
10 is => 'ro', required => 1,
11 trigger => sub {
12 my ($self, $fh) = @_;
13 weaken($self);
5d59cb98 14 log_trace { "Watching filehandle via trigger on 'fh' attribute in Object::Remote::ReadChannel" };
12fb4a80 15 Object::Remote->current_loop
16 ->watch_io(
17 handle => $fh,
18 on_read_ready => sub { $self->_receive_data_from($fh) }
19 );
20 },
21);
22
23has on_close_call => (
24 is => 'rw', default => sub { sub {} },
25);
26
27has on_line_call => (is => 'rw');
28
29has _receive_data_buffer => (is => 'ro', default => sub { my $x = ''; \$x });
30
31sub _receive_data_from {
32 my ($self, $fh) = @_;
9031635d 33 Dlog_trace { "Preparing to read data from $_" } $fh;
12fb4a80 34 my $rb = $self->_receive_data_buffer;
9031635d 35 my $len = sysread($fh, $$rb, 32768, length($$rb));
c824fdf3 36 my $err = defined($len) ? 'eof' : ": $!";
12fb4a80 37 if (defined($len) and $len > 0) {
5d59cb98 38 log_trace { "Read $len bytes of data" };
12fb4a80 39 while (my $cb = $self->on_line_call and $$rb =~ s/^(.*)\n//) {
40 $cb->(my $line = $1);
41 }
90115979 42 #TODO this isn't compatible with Windows but would be if
43 #EAGAIN was set to something that could never match
44 #if on Windows
45 } elsif ($! != EAGAIN) {
5d59cb98 46 log_trace { "Got EOF or error, this read channel is done" };
12fb4a80 47 Object::Remote->current_loop
48 ->unwatch_io(
49 handle => $self->fh,
50 on_read_ready => 1
51 );
f8080c1c 52 log_trace { "Invoking on_close_call() for dead read channel" };
12fb4a80 53 $self->on_close_call->($err);
54 }
55}
56
57sub DEMOLISH {
58 my ($self, $gd) = @_;
59 return if $gd;
5d59cb98 60 log_trace { "read channel is being demolished" };
b7a853b3 61
12fb4a80 62 Object::Remote->current_loop
63 ->unwatch_io(
64 handle => $self->fh,
65 on_read_ready => 1
66 );
b7a853b3 67
68
12fb4a80 69}
70
711;