From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7CCAC20305 for ; Tue, 12 Mar 2019 04:00:46 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 02/13] viewvcs: preliminary support for showing non-blobs Date: Tue, 12 Mar 2019 04:00:35 +0000 Message-Id: <20190312040046.4619-3-e@80x24.org> In-Reply-To: <20190312040046.4619-1-e@80x24.org> References: <20190312040046.4619-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Eventually, we'll have special displays for various git objects (commit, tree, tag). But for now, we'll just use git-show to spew whatever comes from git. --- lib/PublicInbox/SolverGit.pm | 11 +++++++---- lib/PublicInbox/ViewVCS.pm | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm index 463a9b6..cd0f94a 100644 --- a/lib/PublicInbox/SolverGit.pm +++ b/lib/PublicInbox/SolverGit.pm @@ -62,14 +62,15 @@ sub ERR ($$) { die $err; } -# look for existing blobs already in git repos +# look for existing objects already in git repos sub solve_existing ($$) { my ($self, $want) = @_; my $oid_b = $want->{oid_b}; + my $have_hints = scalar keys %$want > 1; my @ambiguous; # Array of [ git, $oids] foreach my $git (@{$self->{gits}}) { my ($oid_full, $type, $size) = $git->check($oid_b); - if (defined($type) && $type eq 'blob') { + if (defined($type) && (!$have_hints || $type eq 'blob')) { return [ $git, $oid_full, $type, int($size) ]; } @@ -480,10 +481,11 @@ sub resolve_patch ($$) { die "Loop detected solving $cur_want\n"; } if (my $existing = solve_existing($self, $want)) { + my ($found_git, undef, $type, undef) = @$existing; dbg($self, "found $cur_want in " . - join("\n", $existing->[0]->pub_urls)); + join("\n", $found_git->pub_urls)); - if ($cur_want eq $self->{oid_want}) { # all done! + if ($cur_want eq $self->{oid_want} || $type ne 'blob') { eval { delete($self->{user_cb})->($existing) }; die "E: $@" if $@; return; @@ -540,6 +542,7 @@ sub new { } # recreate $oid_want using $hints +# hints keys: path_a, path_b, oid_a # Calls {user_cb} with: [ ::Git object, oid_full, type, size, di (diff_info) ] # with found object, or undef if nothing was found # Calls {user_cb} with a string error on fatal errors diff --git a/lib/PublicInbox/ViewVCS.pm b/lib/PublicInbox/ViewVCS.pm index f537451..4a97b9a 100644 --- a/lib/PublicInbox/ViewVCS.pm +++ b/lib/PublicInbox/ViewVCS.pm @@ -67,6 +67,33 @@ sub stream_large_blob ($$$$) { }); } +sub show_other ($$$$) { + my ($ctx, $res, $logref, $fn) = @_; + my ($git, $oid, $type, $size) = @$res; + if ($size > $max_size) { + $$logref = "$oid is too big to show\n" . $$logref; + return html_page($ctx, 200, $logref); + } + my $cmd = ['git', "--git-dir=$git->{git_dir}", + qw(show --encoding=UTF-8 --no-color --no-abbrev), $oid ]; + my $qsp = PublicInbox::Qspawn->new($cmd); + my $env = $ctx->{env}; + $qsp->psgi_qx($env, undef, sub { + my ($bref) = @_; + if (my $err = $qsp->{err}) { + utf8::decode($$err); + $$logref .= "git show error: $err"; + return html_page($ctx, 500, $logref); + } + my $l = PublicInbox::Linkify->new; + utf8::decode($$bref); + $l->linkify_1($$bref); + $$bref = '
'. $l->linkify_2(ascii_html($$bref));
+		$$bref .= '

' . $$logref; + html_page($ctx, 200, $bref); + }); +} + sub solve_result { my ($ctx, $res, $log, $hints, $fn) = @_; @@ -86,6 +113,7 @@ sub solve_result { $ref eq 'ARRAY' or return html_page($ctx, 500, \$log); my ($git, $oid, $type, $size, $di) = @$res; + return show_other($ctx, $res, \$log, $fn) if $type ne 'blob'; my $path = to_filename($di->{path_b} || $hints->{path_b} || 'blob'); my $raw_link = "(raw)"; if ($size > $max_size) { -- EW