1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
| | # Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
#
# XXX This is a totally unstable API for public-inbox internal use only
# This is exposed via the 'pi-httpd.async' key in the PSGI env hash.
# The name of this key is not even stable!
# Currently is is intended for use with read-only pipes.
package PublicInbox::HTTPD::Async;
use strict;
use warnings;
use base qw(Danga::Socket);
use fields qw(cb cleanup);
require PublicInbox::EvCleanup;
sub new {
my ($class, $io, $cb, $cleanup) = @_;
# no $io? call $cb at the top of the next event loop to
# avoid recursion:
unless (defined($io)) {
PublicInbox::EvCleanup::asap($cb) if $cb;
PublicInbox::EvCleanup::next_tick($cleanup) if $cleanup;
return;
}
my $self = fields::new($class);
IO::Handle::blocking($io, 0);
$self->SUPER::new($io);
$self->{cb} = $cb;
$self->{cleanup} = $cleanup;
$self->watch_read(1);
$self;
}
# fires after pending writes are complete:
sub restart_read_cb ($) {
my ($self) = @_;
sub { $self->watch_read(1) }
}
sub main_cb ($$$) {
my ($http, $fh, $bref) = @_;
sub {
my ($self) = @_;
my $r = sysread($self->{sock}, $$bref, 8192);
if ($r) {
$fh->write($$bref);
unless ($http->{closed}) { # Danga::Socket sets this
if ($http->{write_buf_size}) {
$self->watch_read(0);
$http->write(restart_read_cb($self));
}
# stay in watch_read, but let other clients
# get some work done, too.
return;
}
# fall through to close below...
} elsif (!defined $r) {
return if $!{EAGAIN} || $!{EINTR};
}
# Done! Error handling will happen in $fh->close
# called by the {cleanup} handler
$http->{forward} = undef;
$self->close;
}
}
sub async_pass {
my ($self, $http, $fh, $bref) = @_;
# In case the client HTTP connection ($http) dies, it
# will automatically close this ($self) object.
$http->{forward} = $self;
$fh->write($$bref); # PublicInbox:HTTP::{chunked,identity}_wcb
$self->{cb} = main_cb($http, $fh, $bref);
}
sub event_read { $_[0]->{cb}->(@_) }
sub event_hup { $_[0]->{cb}->(@_) }
sub event_err { $_[0]->{cb}->(@_) }
sub close {
my $self = shift;
my $cleanup = $self->{cleanup};
$self->{cleanup} = $self->{cb} = undef;
$self->SUPER::close(@_);
# we defer this to the next timer loop since close is deferred
PublicInbox::EvCleanup::next_tick($cleanup) if $cleanup;
}
1;
|