1 # Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
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;
11 use base qw(PublicInbox::DS);
12 use fields qw(cb cleanup);
13 require PublicInbox::EvCleanup;
17 my ($class, $io, $cb, $cleanup) = @_;
19 # no $io? call $cb at the top of the next event loop to
21 unless (defined($io)) {
22 PublicInbox::EvCleanup::asap($cb) if $cb;
23 PublicInbox::EvCleanup::next_tick($cleanup) if $cleanup;
27 my $self = fields::new($class);
28 IO::Handle::blocking($io, 0);
29 $self->SUPER::new($io, PublicInbox::DS::EPOLLIN());
31 $self->{cleanup} = $cleanup;
35 sub restart_read ($) { $_[0]->watch(PublicInbox::DS::EPOLLIN()) }
37 # fires after pending writes are complete:
38 sub restart_read_cb ($) {
40 sub { restart_read($self) }
44 my ($http, $fh, $bref) = @_;
47 my $r = sysread($self->{sock}, $$bref, 8192);
50 if ($http->{sock}) { # !closed
53 $http->write(restart_read_cb($self));
55 # stay in EPOLLIN, but let other clients
56 # get some work done, too.
59 # fall through to close below...
60 } elsif (!defined $r) {
61 return restart_read($self) if $! == EAGAIN;
64 # Done! Error handling will happen in $fh->close
65 # called by the {cleanup} handler
66 $http->{forward} = undef;
72 my ($self, $http, $fh, $bref) = @_;
73 # In case the client HTTP connection ($http) dies, it
74 # will automatically close this ($self) object.
75 $http->{forward} = $self;
76 $fh->write($$bref); # PublicInbox:HTTP::{chunked,identity}_wcb
77 $self->{cb} = main_cb($http, $fh, $bref);
80 sub event_step { $_[0]->{cb}->(@_) }
84 my $cleanup = $self->{cleanup};
85 $self->{cleanup} = $self->{cb} = undef;
86 $self->SUPER::close(@_);
88 # we defer this to the next timer loop since close is deferred
89 PublicInbox::EvCleanup::next_tick($cleanup) if $cleanup;