about summary refs log tree commit homepage
path: root/lib/PublicInbox/GitHTTPBackend.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-26 05:25:36 +0000
committerEric Wong <e@80x24.org>2016-12-26 05:25:36 +0000
commite36899b149ecb7cc56f88a6078b18b211ac3c793 (patch)
treeda8a6e07234a815b3782f1a659f6dee1122959d1 /lib/PublicInbox/GitHTTPBackend.pm
parentb388dfdd96804f898fbf72baf2a32e0c9f0fb3f1 (diff)
parent427245acacaf04a882d5524e662075909b96905b (diff)
downloadpublic-inbox-e36899b149ecb7cc56f88a6078b18b211ac3c793.tar.gz
* origin/master: (25 commits)
  evcleanup: ensure deferred close from timers are handled ASAP
  httpd/async: improve variable naming
  githttpbackend: minor cleanups to improve readability
  githttpbackend: simplify compatibility code
  githttpbackend: minor readability improvement
  http: fix clobbering of $null_io
  linkify: modify argument in place
  view: do not modify array during iteration
  view: stop chomping off whitespace at ends of messages
  view: remove unused parameter
  search: lookup_mail handles modified DBs
  doc: various comments on async handling
  searchthread: simplify API and remove needless OO
  searchthread: update comment about loop prevention
  searchmsg: remove ensure_metadata
  tests: add thread-all testing for benchmarking
  searchmsg: do not memoize {date} field
  searchmsg: remove locale-dependency for ->date
  t/config.t: fix feedmax default
  wwwtext: link to RFC4685 (Atom Threading)
  ...
Diffstat (limited to 'lib/PublicInbox/GitHTTPBackend.pm')
-rw-r--r--lib/PublicInbox/GitHTTPBackend.pm43
1 files changed, 19 insertions, 24 deletions
diff --git a/lib/PublicInbox/GitHTTPBackend.pm b/lib/PublicInbox/GitHTTPBackend.pm
index 0275a2a0..c8f4706c 100644
--- a/lib/PublicInbox/GitHTTPBackend.pm
+++ b/lib/PublicInbox/GitHTTPBackend.pm
@@ -46,6 +46,9 @@ sub r ($;$) {
 sub serve {
         my ($env, $git, $path) = @_;
 
+        # XXX compatibility... ugh, can we stop supporting this?
+        $git = PublicInbox::Git->new($git) unless ref($git);
+
         # Documentation/technical/http-protocol.txt in git.git
         # requires one and exactly one query parameter:
         if ($env->{QUERY_STRING} =~ /\Aservice=git-\w+-pack\z/ ||
@@ -98,7 +101,7 @@ sub serve_dumb {
                 return r(404);
         }
 
-        my $f = (ref $git ? $git->{git_dir} : $git) . '/' . $path;
+        my $f = $git->{git_dir} . '/' . $path;
         return r(404) unless -f $f && -r _; # just in case it's a FIFO :P
         my $size = -s _;
 
@@ -196,21 +199,15 @@ sub serve_smart {
                 my $val = $env->{$name};
                 $env{$name} = $val if defined $val;
         }
-        my ($git_dir, $limiter);
-        if (ref $git) {
-                $limiter = $git->{-httpbackend_limiter} || $default_limiter;
-                $git_dir = $git->{git_dir};
-        } else {
-                $limiter = $default_limiter;
-                $git_dir = $git;
-        }
+        my $limiter = $git->{-httpbackend_limiter} || $default_limiter;
+        my $git_dir = $git->{git_dir};
         $env{GIT_HTTP_EXPORT_ALL} = '1';
         $env{PATH_TRANSLATED} = "$git_dir/$path";
-        my %rdr = ( 0 => fileno($in) );
-        my $x = PublicInbox::Qspawn->new([qw(git http-backend)], \%env, \%rdr);
+        my $rdr = { 0 => fileno($in) };
+        my $qsp = PublicInbox::Qspawn->new([qw(git http-backend)], \%env, $rdr);
         my ($fh, $rpipe);
         my $end = sub {
-                if (my $err = $x->finish) {
+                if (my $err = $qsp->finish) {
                         err($env, "git http-backend ($git_dir): $err");
                 }
                 $fh->close if $fh; # async-only
@@ -227,8 +224,7 @@ sub serve_smart {
                 $r->[0] == 403 ? serve_dumb($env, $git, $path) : $r;
         };
         my $res;
-        my $async = $env->{'pi-httpd.async'};
-        my $io = $env->{'psgix.io'};
+        my $async = $env->{'pi-httpd.async'}; # XXX unstable API
         my $cb = sub {
                 my $r = $rd_hdr->() or return;
                 $rd_hdr = undef;
@@ -239,17 +235,16 @@ sub serve_smart {
                                 $rpipe->close;
                                 $end->();
                         }
-                        return $res->($r);
-                }
-                if ($async) {
+                        $res->($r);
+                } elsif ($async) {
                         $fh = $res->($r);
-                        return $async->async_pass($io, $fh, \$buf);
+                        $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);
                 }
-
-                # for synchronous PSGI servers
-                require PublicInbox::GetlineBody;
-                $r->[2] = PublicInbox::GetlineBody->new($rpipe, $end, $buf);
-                $res->($r);
         };
         sub {
                 ($res) = @_;
@@ -258,7 +253,7 @@ sub serve_smart {
                 # holding the input here is a waste of FDs and memory
                 $env->{'psgi.input'} = undef;
 
-                $x->start($limiter, sub { # may run later, much later...
+                $qsp->start($limiter, sub { # may run later, much later...
                         ($rpipe) = @_;
                         $in = undef;
                         if ($async) {