]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/HTTPD/Async.pm
qspawn|httpd/async: improve and fix out-of-date comments
[public-inbox.git] / lib / PublicInbox / HTTPD / Async.pm
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>
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 # fires after pending writes are complete:
27 sub restart_read_cb ($) {
28         my ($self) = @_;
29         sub { $self->watch_read(1) }
30 }
31
32 sub main_cb ($$$) {
33         my ($http, $fh, $bref) = @_;
34         sub {
35                 my ($self) = @_;
36                 my $r = sysread($self->{sock}, $$bref, 8192);
37                 if ($r) {
38                         $fh->write($$bref);
39                         return if $http->{closed};
40                         if ($http->{write_buf_size}) {
41                                 $self->watch_read(0);
42                                 $http->write(restart_read_cb($self));
43                         }
44                         # stay in watch_read, but let other clients
45                         # get some work done, too.
46                         return;
47                 } elsif (!defined $r) {
48                         return if $!{EAGAIN} || $!{EINTR};
49                 }
50
51                 # Done! Error handling will happen in $fh->close
52                 # called by the {cleanup} handler
53                 $http->{forward} = undef;
54                 $self->close;
55         }
56 }
57
58 sub async_pass {
59         my ($self, $http, $fh, $bref) = @_;
60         # In case the client HTTP connection ($http) dies, it
61         # will automatically close this ($self) object.
62         $http->{forward} = $self;
63         $fh->write($$bref); # PublicInbox:HTTP::{chunked,identity}_wcb
64         $self->{cb} = main_cb($http, $fh, $bref);
65 }
66
67 sub event_read { $_[0]->{cb}->(@_) }
68 sub event_hup { $_[0]->{cb}->(@_) }
69 sub event_err { $_[0]->{cb}->(@_) }
70
71 sub close {
72         my $self = shift;
73         my $cleanup = $self->{cleanup};
74         $self->{cleanup} = $self->{cb} = undef;
75         $self->SUPER::close(@_);
76
77         # we defer this to the next timer loop since close is deferred
78         PublicInbox::EvCleanup::next_tick($cleanup) if $cleanup;
79 }
80
81 1;