]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/HTTPD/Async.pm
standardize timer-related event-loop code
[public-inbox.git] / lib / PublicInbox / HTTPD / Async.pm
1 # Copyright (C) 2016 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 #
4 # XXX This is a totally unstable API for public-inbox internal use only
5 # This is exposed via the 'pi-httpd.async' key in the PSGI env hash.
6 # The name of this key is not even stable!
7 # Currently is is intended for use with read-only pipes.
8 package PublicInbox::HTTPD::Async;
9 use strict;
10 use warnings;
11 use base qw(Danga::Socket);
12 use fields qw(cb cleanup);
13 require PublicInbox::EvCleanup;
14
15 sub new {
16         my ($class, $io, $cb, $cleanup) = @_;
17         my $self = fields::new($class);
18         IO::Handle::blocking($io, 0);
19         $self->SUPER::new($io);
20         $self->{cb} = $cb;
21         $self->{cleanup} = $cleanup;
22         $self->watch_read(1);
23         $self;
24 }
25
26 sub async_pass {
27         my ($self, $io, $fh, $bref) = @_;
28         my $restart_read = sub { $self->watch_read(1) };
29         # In case the client HTTP connection ($io) dies, it
30         # will automatically close this ($self) object.
31         $io->{forward} = $self;
32         $fh->write($$bref);
33         $self->{cb} = sub {
34                 my $r = sysread($self->{sock}, $$bref, 8192);
35                 if ($r) {
36                         $fh->write($$bref);
37                         if ($io->{write_buf_size}) {
38                                 $self->watch_read(0);
39                                 $io->write($restart_read); # D::S::write
40                         }
41                         return; # stay in watch_read
42                 } elsif (!defined $r) {
43                         return if $!{EAGAIN} || $!{EINTR};
44                 }
45
46                 # Done! Error handling will happen in $fh->close
47                 # called by the {cleanup} handler
48                 $io->{forward} = undef;
49                 $self->close;
50         }
51 }
52
53 sub event_read { $_[0]->{cb}->() }
54 sub event_hup { $_[0]->{cb}->() }
55 sub event_err { $_[0]->{cb}->() }
56 sub sysread { shift->{sock}->sysread(@_) }
57
58 sub close {
59         my $self = shift;
60         my $cleanup = $self->{cleanup};
61         $self->{cleanup} = $self->{cb} = undef;
62         $self->SUPER::close(@_);
63
64         # we defer this to the next timer loop since close is deferred
65         PublicInbox::EvCleanup::asap($cleanup) if $cleanup;
66 }
67
68 # do not let ourselves be closed during graceful termination
69 sub busy () { $_[0]->{cb} }
70
71 1;