about summary refs log tree commit homepage
path: root/lib/PublicInbox/Qspawn.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-25 08:53:19 +0000
committerEric Wong <e@80x24.org>2019-01-22 03:38:39 +0000
commitda9beb99af585718c36725f3457b1b72347bcebf (patch)
tree3b0bc7da15c7ee8f36becfc220947666c4ab1912 /lib/PublicInbox/Qspawn.pm
parent2f8319e8aab32252e5895be6bb8dbd2d5941ebd9 (diff)
downloadpublic-inbox-da9beb99af585718c36725f3457b1b72347bcebf.tar.gz
Was: ("repobrowse: port patch generation over to qspawn")

We'll be using it for githttpbackend and maybe other things.
Diffstat (limited to 'lib/PublicInbox/Qspawn.pm')
-rw-r--r--lib/PublicInbox/Qspawn.pm58
1 files changed, 58 insertions, 0 deletions
diff --git a/lib/PublicInbox/Qspawn.pm b/lib/PublicInbox/Qspawn.pm
index 3500f8a4..b80dac1f 100644
--- a/lib/PublicInbox/Qspawn.pm
+++ b/lib/PublicInbox/Qspawn.pm
@@ -9,6 +9,7 @@ package PublicInbox::Qspawn;
 use strict;
 use warnings;
 use PublicInbox::Spawn qw(popen_rd);
+my $def_limiter;
 
 sub new ($$$;) {
         my ($class, $cmd, $env, $opt) = @_;
@@ -59,6 +60,63 @@ sub start {
         }
 }
 
+sub psgi_return {
+        my ($self, $env, $limiter, $parse_hdr) = @_;
+        my ($fh, $rpipe);
+        my $end = sub {
+                if (my $err = $self->finish) {
+                        $err = join(' ', @{$self->{args}->[0]}).": $err\n";
+                        $env->{'psgi.errors'}->print($err);
+                }
+                $fh->close if $fh; # async-only
+        };
+
+        # Danga::Socket users, we queue up the read_enable callback to
+        # fire after pending writes are complete:
+        my $buf = '';
+        my $rd_hdr = sub {
+                my $r = sysread($rpipe, $buf, 1024, length($buf));
+                return if !defined($r) && ($!{EINTR} || $!{EAGAIN});
+                $parse_hdr->($r, \$buf);
+        };
+        my $res;
+        my $async = $env->{'pi-httpd.async'};
+        my $cb = sub {
+                my $r = $rd_hdr->() or return;
+                $rd_hdr = undef;
+                if (scalar(@$r) == 3) { # error
+                        if ($async) {
+                                $async->close; # calls rpipe->close
+                        } else {
+                                $rpipe->close;
+                                $end->();
+                        }
+                        $res->($r);
+                } elsif ($async) {
+                        $fh = $res->($r); # scalar @$r == 2
+                        $async->async_pass($env->{'psgix.io'}, $fh, \$buf);
+                } else { # for synchronous PSGI servers
+                        require PublicInbox::GetlineBody;
+                        $r->[2] = PublicInbox::GetlineBody->new($rpipe, $end,
+                                                                $buf);
+                        $res->($r);
+                }
+        };
+        $limiter ||= $def_limiter ||= PublicInbox::Qspawn::Limiter->new(32);
+        sub {
+                ($res) = @_;
+                $self->start($limiter, sub { # may run later, much later...
+                        ($rpipe) = @_;
+                        if ($async) {
+                        # PublicInbox::HTTPD::Async->new($rpipe, $cb, $end)
+                                $async = $async->($rpipe, $cb, $end);
+                        } else { # generic PSGI
+                                $cb->() while $rd_hdr;
+                        }
+                });
+        };
+}
+
 package PublicInbox::Qspawn::Limiter;
 use strict;
 use warnings;