X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSolverGit.pm;h=12024dbcc6dfa143b444e0e24959e1b405991a0c;hb=37df9d6964061f437e37646d8858ade4b6f13a24;hp=f718e28cbd55af423a4ad41d15c4e2a141ac55e2;hpb=8d1b87f498ea47bb752ea24900372df192d322fb;p=public-inbox.git diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm index f718e28c..12024dbc 100644 --- a/lib/PublicInbox/SolverGit.pm +++ b/lib/PublicInbox/SolverGit.pm @@ -9,8 +9,7 @@ # local filesystem layouts in the process. package PublicInbox::SolverGit; use strict; -use warnings; -use 5.010_001; +use v5.10.1; use File::Temp 0.19 (); # 0.19 for ->newdir use Fcntl qw(SEEK_SET); use PublicInbox::Git qw(git_unquote git_quote); @@ -71,34 +70,38 @@ sub ERR ($$) { die $err; } -# look for existing objects already in git repos +# look for existing objects already in git repos, returns arrayref +# if found, number of remaining git coderepos to try if not. sub solve_existing ($$) { my ($self, $want) = @_; + my $try = $want->{try_gits} //= [ @{$self->{gits}} ]; # array copy + my $git = shift @$try or die 'BUG {try_gits} empty'; 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) && (!$have_hints || $type eq 'blob')) { - return [ $git, $oid_full, $type, int($size) ]; - } + my ($oid_full, $type, $size) = $git->check($oid_b); + + # other than {oid_b, try_gits, try_ibxs} + my $have_hints = scalar keys %$want > 3; + if (defined($type) && (!$have_hints || $type eq 'blob')) { + delete $want->{try_gits}; + return [ $git, $oid_full, $type, int($size) ]; # done, success + } - next if length($oid_b) == 40; + # TODO: deal with 40-char "abbreviations" with future SHA-256 git + return scalar(@$try) if length($oid_b) >= 40; - # parse stderr of "git cat-file --batch-check" - my $err = $git->last_check_err; - my (@oids) = ($err =~ /\b([a-f0-9]{40})\s+blob\b/g); - next unless scalar(@oids); + # parse stderr of "git cat-file --batch-check" + my $err = $git->last_check_err; + my (@oids) = ($err =~ /\b([a-f0-9]{40,})\s+blob\b/g); + return scalar(@$try) unless scalar(@oids); - # TODO: do something with the ambiguous array? - # push @ambiguous, [ $git, @oids ]; + # TODO: do something with the ambiguous array? + # push @ambiguous, [ $git, @oids ]; - dbg($self, "`$oid_b' ambiguous in " . - join("\n\t", $git->pub_urls($self->{psgi_env})) - . "\n" . - join('', map { "$_ blob\n" } @oids)); - } - scalar(@ambiguous) ? \@ambiguous : undef; + dbg($self, "`$oid_b' ambiguous in " . + join("\n\t", $git->pub_urls($self->{psgi_env})) + . "\n" . + join('', map { "$_ blob\n" } @oids)); + scalar(@$try); } sub extract_diff ($$) { @@ -229,12 +232,11 @@ sub find_extract_diffs ($$$) { } } - my $msgs = $srch->query($q, { relevance => 1 }); - + my $mset = $srch->mset($q, { relevance => 1 }); my $diffs = []; - foreach my $smsg (@$msgs) { - $ibx->smsg_mime($smsg) or next; - delete($smsg->{mime})->each_part(\&extract_diff, + for my $smsg (@{$srch->mset_to_smsg($ibx, $mset)}) { + my $eml = $ibx->smsg_eml($smsg) or next; + $eml->each_part(\&extract_diff, [$self, $diffs, $pre, $post, $ibx, $smsg], 1); } @$diffs ? $diffs : undef; @@ -271,7 +273,7 @@ sub prepare_index ($) { my $in = tmpfile("update-index.$oid_full") or die "tmpfile: $!"; print $in "$mode_a $oid_full\t$path_a\0" or die "print: $!"; $in->flush or die "flush: $!"; - sysseek($in, 0, 0) or die "seek: $!"; + sysseek($in, 0, SEEK_SET) or die "seek: $!"; dbg($self, 'preparing index'); my $rdr = { 0 => $in }; @@ -525,10 +527,12 @@ sub resolve_patch ($$) { # see if we can find the blob in an existing git repo: my $cur_want = $want->{oid_b}; - if ($self->{seen_oid}->{$cur_want}++) { + if (!$want->{try_ibxs} && $self->{seen_oid}->{$cur_want}++) { die "Loop detected solving $cur_want\n"; } - if (my $existing = solve_existing($self, $want)) { + $want->{try_ibxs} //= [ @{$self->{inboxes}} ]; # array copy + my $existing = solve_existing($self, $want); + if (ref $existing) { my ($found_git, undef, $type, undef) = @$existing; dbg($self, "found $cur_want in " . join(" ||\n\t", @@ -541,13 +545,17 @@ sub resolve_patch ($$) { } mark_found($self, $cur_want, $existing); return next_step($self); # onto patch application + } elsif ($existing > 0) { + push @{$self->{todo}}, $want; + return next_step($self); # retry solve_existing + } else { # $existing == 0: we may retry if inbox scan (below) fails + delete $want->{try_gits}; } # scan through inboxes to look for emails which results in # the oid we want: - foreach my $ibx (@{$self->{inboxes}}) { - my $diffs = find_extract_diffs($self, $ibx, $want) or next; - + my $ibx = shift(@{$want->{try_ibxs}}) or die 'BUG: {try_ibxs} empty'; + if (my $diffs = find_extract_diffs($self, $ibx, $want)) { unshift @{$self->{patches}}, @$diffs; dbg($self, "found $cur_want in ". join(" ||\n\t", map { di_url($self, $_) } @$diffs)); @@ -564,7 +572,14 @@ sub resolve_patch ($$) { } return next_step($self); # onto the next todo item } - if (length($cur_want) > $OID_MIN) { + + if (scalar @{$want->{try_ibxs}}) { # do we have more inboxes to try? + push @{$self->{todo}}, $want; + return next_step($self); + } + + if (length($cur_want) > $OID_MIN) { # maybe a shorter OID will work + delete $want->{try_ibxs}; # drop empty arrayref chop($cur_want); dbg($self, "retrying $want->{oid_b} as $cur_want"); $want->{oid_b} = $cur_want; @@ -594,7 +609,7 @@ sub new { } # recreate $oid_want using $hints -# hints keys: path_a, path_b, oid_a +# hints keys: path_a, path_b, oid_a (note: `oid_b' is NOT a hint) # 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