about summary refs log tree commit homepage
path: root/lib/PublicInbox/SolverGit.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-02-14 02:29:10 +0000
committerEric Wong <e@80x24.org>2019-04-04 09:13:57 +0000
commit4123a89e08e145405fa781be7f4590c4d13f4138 (patch)
tree9d15b135918111308c611c9006c91d6c10fb3288 /lib/PublicInbox/SolverGit.pm
parentc9890ef809425a3607c2f1108eb19c30aa0f077b (diff)
downloadpublic-inbox-4123a89e08e145405fa781be7f4590c4d13f4138.tar.gz
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.
Diffstat (limited to 'lib/PublicInbox/SolverGit.pm')
-rw-r--r--lib/PublicInbox/SolverGit.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm
index 463a9b69..cd0f94a1 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