]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/HTTPD/Async.pm
split out NNTPD and HTTPD* modules
[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);
13
14 sub new {
15         my ($class, $io, $cb) = @_;
16         my $self = fields::new($class);
17         IO::Handle::blocking($io, 0);
18         $self->SUPER::new($io);
19         $self->{cb} = $cb;
20         $self->watch_read(1);
21         $self;
22 }
23
24 sub event_read { $_[0]->{cb}->() }
25 sub event_hup { $_[0]->{cb}->() }
26 sub event_err { $_[0]->{cb}->() }
27 sub sysread { shift->{sock}->sysread(@_) }
28
29 sub close {
30         my $self = shift;
31         $self->{cb} = undef;
32         $self->SUPER::close(@_);
33 }
34
35 1;