user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 2/2] http: avoid anonymous sub for getline callback
Date: Sat, 21 Dec 2019 23:53:19 +0000	[thread overview]
Message-ID: <20191221235319.27082-3-e@80x24.org> (raw)
In-Reply-To: <20191221235319.27082-1-e@80x24.org>

We can avoid the danger of self-referential subs entirely for
code internal to PublicInbox::HTTP.

This change was only made possible by
commit 8e1c3155da4edc082e8e3d8b30351f0c861757a7
("ds: pass $self to code references")
---
 lib/PublicInbox/HTTP.pm | 85 ++++++++++++++++++++---------------------
 1 file changed, 41 insertions(+), 44 deletions(-)

diff --git a/lib/PublicInbox/HTTP.pm b/lib/PublicInbox/HTTP.pm
index ad1a2f9f..e350daaf 100644
--- a/lib/PublicInbox/HTTP.pm
+++ b/lib/PublicInbox/HTTP.pm
@@ -11,7 +11,7 @@ package PublicInbox::HTTP;
 use strict;
 use warnings;
 use base qw(PublicInbox::DS);
-use fields qw(httpd env input_left remote_addr remote_port forward);
+use fields qw(httpd env input_left remote_addr remote_port forward alive);
 use bytes (); # only for bytes::length
 use Fcntl qw(:seek);
 use Plack::HTTPParser qw(parse_http_request); # XS or pure Perl
@@ -256,51 +256,47 @@ sub response_done {
 	$self->write($alive ? \&next_request : \&close);
 }
 
-sub getline_response ($$) {
-	my ($self, $alive) = @_;
-	my $write = $alive == 2 ? \&chunked_write : \&identity_write;
-	my $pull; # DANGER: self-referential
-	$pull = sub {
-		my $forward = $self->{forward};
-		# limit our own running time for fairness with other
-		# clients and to avoid buffering too much:
-		my $buf = eval {
-			local $/ = \8192;
-			$forward->getline;
-		} if $forward;
-
-		if (defined $buf) {
-			# may close in PublicInbox::DS::write
-			$write->($self, $buf);
-
-			if ($self->{sock}) {
-				my $wbuf = $self->{wbuf} ||= [];
-				push @$wbuf, $pull;
-
-				# wbuf may be populated by $write->(...$buf),
-				# no need to rearm if so:
-				$self->requeue if scalar(@$wbuf) == 1;
-				return; # likely
-			}
-		} elsif ($@) {
-			err($self, "response ->getline error: $@");
-			$self->close;
+sub getline_pull {
+	my ($self) = @_;
+	my $forward = $self->{forward};
+
+	# limit our own running time for fairness with other
+	# clients and to avoid buffering too much:
+	my $buf = eval {
+		local $/ = \8192;
+		$forward->getline;
+	} if $forward;
+
+	if (defined $buf) {
+		# may close in PublicInbox::DS::write
+		if ($self->{alive} == 2) {
+			chunked_write($self, $buf);
+		} else {
+			identity_write($self, $buf);
 		}
 
-		$pull = undef; # all done!
-		# avoid recursion
-		if (delete $self->{forward}) {
-			eval { $forward->close };
-			if ($@) {
-				err($self, "response ->close error: $@");
-				$self->close; # idempotent
-			}
-		}
-		$forward = undef;
-		response_done($self, $alive);
-	};
+		if ($self->{sock}) {
+			my $wbuf = $self->{wbuf} //= [];
+			push @$wbuf, \&getline_pull;
 
-	$pull->(); # kick-off!
+			# wbuf may be populated by {chunked,identity}_write()
+			# above, no need to rearm if so:
+			$self->requeue if scalar(@$wbuf) == 1;
+			return; # likely
+		}
+	} elsif ($@) {
+		err($self, "response ->getline error: $@");
+		$self->close;
+	}
+	# avoid recursion
+	if (delete $self->{forward}) {
+		eval { $forward->close };
+		if ($@) {
+			err($self, "response ->close error: $@");
+			$self->close; # idempotent
+		}
+	}
+	response_done($self, delete $self->{alive});
 }
 
 sub response_write {
@@ -316,7 +312,8 @@ sub response_write {
 			response_done($self, $alive);
 		} else {
 			$self->{forward} = $body;
-			getline_response($self, $alive);
+			$self->{alive} = $alive;
+			getline_pull($self); # kick-off!
 		}
 	# these are returned to the calling application:
 	} elsif ($alive == 2) {

      parent reply	other threads:[~2019-12-21 23:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-21 23:53 [PATCH 0/2] http: remove most anonymous subs Eric Wong
2019-12-21 23:53 ` [PATCH 1/2] http: get rid of anonymous subs for write/close Eric Wong
2019-12-21 23:53 ` Eric Wong [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191221235319.27082-3-e@80x24.org \
    --to=e@80x24.org \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).