about summary refs log tree commit homepage
path: root/lib/PublicInbox/HTTPD/Async.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-01-04 11:20:50 +0000
committerEric Wong <e@80x24.org>2017-01-04 16:12:06 +0000
commit950be11b15dcd1edee98caec80b445471971a55f (patch)
tree43a8470cff23569f4aa77247d7e0e16706ec2338 /lib/PublicInbox/HTTPD/Async.pm
parente38216139ae38570b9052216f3ca41638c057118 (diff)
downloadpublic-inbox-950be11b15dcd1edee98caec80b445471971a55f.tar.gz
We do not need to use weaken() here, so avoid it to simplify our
interactions with Perl; as weaken requires additional storage
and (it seems) time complexity.
Diffstat (limited to 'lib/PublicInbox/HTTPD/Async.pm')
-rw-r--r--lib/PublicInbox/HTTPD/Async.pm31
1 files changed, 17 insertions, 14 deletions
diff --git a/lib/PublicInbox/HTTPD/Async.pm b/lib/PublicInbox/HTTPD/Async.pm
index 79951ca6..54b62451 100644
--- a/lib/PublicInbox/HTTPD/Async.pm
+++ b/lib/PublicInbox/HTTPD/Async.pm
@@ -10,7 +10,6 @@ use strict;
 use warnings;
 use base qw(Danga::Socket);
 use fields qw(cb cleanup);
-use Scalar::Util qw(weaken);
 require PublicInbox::EvCleanup;
 
 sub new {
@@ -29,22 +28,17 @@ sub restart_read_cb ($) {
         sub { $self->watch_read(1) }
 }
 
-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);
-        my $restart_read = restart_read_cb($self);
-        weaken($self);
-        $self->{cb} = sub {
+sub main_cb ($$$) {
+        my ($http, $fh, $bref) = @_;
+        sub {
+                my ($self) = @_;
                 my $r = sysread($self->{sock}, $$bref, 8192);
                 if ($r) {
                         $fh->write($$bref);
                         return if $http->{closed};
                         if ($http->{write_buf_size}) {
                                 $self->watch_read(0);
-                                $http->write($restart_read); # D::S::write
+                                $http->write(restart_read_cb($self));
                         }
                         # stay in watch_read, but let other clients
                         # get some work done, too.
@@ -60,9 +54,18 @@ sub async_pass {
         }
 }
 
-sub event_read { $_[0]->{cb}->() }
-sub event_hup { $_[0]->{cb}->() }
-sub event_err { $_[0]->{cb}->() }
+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 sysread { shift->{sock}->sysread(@_) }
 
 sub close {