X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSolverGit.pm;h=8629f0dafeb4216b41ac2c0951c866c8e76c2dcf;hb=55b707d788ce13696e4411389583e720ea6dab01;hp=a7a9a0a1ec20cc2a50a358b28cdf6240dc7df249;hpb=fffbc9ec32b78731acd30539f6e3f2778d2d1fb2;p=public-inbox.git diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm index a7a9a0a1..8629f0da 100644 --- a/lib/PublicInbox/SolverGit.pm +++ b/lib/PublicInbox/SolverGit.pm @@ -10,51 +10,70 @@ package PublicInbox::SolverGit; use strict; use warnings; -use File::Temp qw(); +use 5.010_001; +use File::Temp 0.19 (); # 0.19 for ->newdir use Fcntl qw(SEEK_SET); use PublicInbox::Git qw(git_unquote git_quote); -use PublicInbox::Spawn qw(spawn popen_rd); use PublicInbox::MsgIter qw(msg_iter msg_part_text); use PublicInbox::Qspawn; +use PublicInbox::Tmpfile; use URI::Escape qw(uri_escape_utf8); +# POSIX requires _POSIX_ARG_MAX >= 4096, and xargs is required to +# subtract 2048 bytes. We also don't factor in environment variable +# headroom into this. +use POSIX qw(sysconf _SC_ARG_MAX); +my $ARG_SIZE_MAX = (sysconf(_SC_ARG_MAX) || 4096) - 2048; +my $OID_MIN = 7; + +# By default, "git format-patch" generates filenames with a four-digit +# prefix, so that means 9999 patch series are OK, right? :> +# Maybe we can make this configurable, main concern is disk space overhead +# for uncompressed patch fragments. Aside from space, public-inbox-httpd +# is otherwise unaffected by having many patches, here, as it can share +# work fairly. Other PSGI servers may have trouble, though. +my $MAX_PATCH = 9999; + # di = diff info / a hashref with information about a diff ($di): # { # oid_a => abbreviated pre-image oid, # oid_b => abbreviated post-image oid, # tmp => anonymous file handle with the diff, -# hdr_lines => arrayref of various header lines for mode information +# hdr_lines => string of various header lines for mode information # mode_a => original mode of oid_a (string, not integer), # ibx => PublicInbox::Inbox object containing the diff # smsg => PublicInbox::SearchMsg object containing diff # path_a => pre-image path # path_b => post-image path +# n => numeric path of the patch (relative to worktree) # } -# don't bother if somebody sends us a patch with these path components, -# it's junk at best, an attack attempt at worse: -my %bad_component = map { $_ => 1 } ('', '.', '..'); - sub dbg ($$) { print { $_[0]->{out} } $_[1], "\n" or ERR($_[0], "print(dbg): $!"); } +sub done ($$) { + my ($self, $res) = @_; + my $ucb = delete($self->{user_cb}) or return; + $ucb->($res, $self->{uarg}); +} + sub ERR ($$) { my ($self, $err) = @_; print { $self->{out} } $err, "\n"; - my $ucb = delete($self->{user_cb}); - eval { $ucb->($err) } if $ucb; + eval { done($self, $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) ]; } @@ -69,21 +88,20 @@ sub solve_existing ($$) { # push @ambiguous, [ $git, @oids ]; dbg($self, "`$oid_b' ambiguous in " . - join("\n\t", $git->pub_urls) . "\n" . + join("\n\t", $git->pub_urls($self->{psgi_env})) + . "\n" . join('', map { "$_ blob\n" } @oids)); } scalar(@ambiguous) ? \@ambiguous : undef; } -sub extract_diff ($$$$) { - my ($p, $re, $ibx, $smsg) = @_; +sub extract_diff ($$) { + my ($p, $arg) = @_; + my ($self, $diffs, $pre, $post, $ibx, $smsg) = @$arg; my ($part) = @$p; # ignore $depth and @idx; - my $hdr_lines; # diff --git a/... b/... - my $tmp; my $ct = $part->content_type || 'text/plain'; my ($s, undef) = msg_part_text($part, $ct); defined $s or return; - my $di = {}; # Email::MIME::Encodings forces QP to be CRLF upon decoding, # change it back to LF: @@ -92,65 +110,100 @@ sub extract_diff ($$$$) { $s =~ s/\r\n/\n/sg; } - foreach my $l (split(/^/m, $s)) { - if ($l =~ $re) { - $di->{oid_a} = $1; - $di->{oid_b} = $2; - if (defined($3)) { - my $mode_a = $3; - if ($mode_a =~ /\A(?:100644|120000|100755)\z/) { - $di->{mode_a} = $mode_a; - } - } - - # start writing the diff out to a tempfile - open($tmp, '+>', undef) or die "open(tmp): $!"; - $di->{tmp} = $tmp; - - push @$hdr_lines, $l; - $di->{hdr_lines} = $hdr_lines; - print $tmp @$hdr_lines or die "print(tmp): $!"; - - # for debugging/diagnostics: - $di->{ibx} = $ibx; - $di->{smsg} = $smsg; - } elsif ($l =~ m!\Adiff --git ("?a/.+) ("?b/.+)$!) { - return $di if $tmp; # got our blob, done! - - my ($path_a, $path_b) = ($1, $2); - - # diff header lines won't have \r because git - # will quote them, but Email::MIME gives CRLF - # for quoted-printable: - $path_b =~ tr/\r//d; - - # don't care for leading 'a/' and 'b/' - my (undef, @a) = split(m{/}, git_unquote($path_a)); - my (undef, @b) = split(m{/}, git_unquote($path_b)); - - # get rid of path-traversal attempts and junk patches: - foreach (@a, @b) { - return if $bad_component{$_}; - } - - $di->{path_a} = join('/', @a); - $di->{path_b} = join('/', @b); - $hdr_lines = [ $l ]; - } elsif ($tmp) { - print $tmp $l or die "print(tmp): $!"; - } elsif ($hdr_lines) { - push @$hdr_lines, $l; - if ($l =~ /\Anew file mode (100644|120000|100755)$/) { - $di->{mode_a} = $1; - } - } - } - $tmp ? $di : undef; + state $LF = qr!\r?\n!; + state $ANY = qr![^\r\n]+!; + state $MODE = '100644|120000|100755'; + state $FN = qr!(?:("?[^/\n]+/[^\r\n]+)|/dev/null)!; + + $s =~ m!( # $1 start header lines we save for debugging: + + # everything before ^index is optional, but we don't + # want to match ^(old|copy|rename|deleted|...) unless + # we match /^diff --git/ first: + (?: # begin optional stuff: + + # try to get the pre-and-post filenames as $2 and $3 + (?:^diff\x20--git\x20$FN\x20$FN$LF) + + (?:^(?: # pass all this to git-apply: + # old mode $4 + (?:old\x20mode\x20($MODE)) + | + # new mode (possibly new file) ($5) + (?:new\x20(?:file\x20)?mode\x20($MODE)) + | + (?:(?:copy|rename|deleted| + dissimilarity|similarity)$ANY) + )$LF)* + + )? # end of optional stuff, everything below is required + + # match the pre and post-image OIDs as $6 $7 + ^index\x20(${pre}[a-f0-9]*)\.\.(${post}[a-f0-9]*) + # mode if unchanged $8 + (?:\x20(100644|120000|100755))?$LF + ) # end of header lines ($1) + ( # $9 is the patch body + # "--- a/foo.c" sets pre-filename ($10) in case + # $2 is missing + (?:^---\x20$FN$LF) + + # "+++ b/foo.c" sets post-filename ($11) in case + # $3 is missing + (?:^\+{3}\x20$FN$LF) + + # the meat of the diff, including "^\\No newline ..." + # We also allow for totally blank lines w/o leading spaces, + # because git-apply(1) handles that case, too + (?:^(?:[\@\+\x20\-\\][^\n]*|)$LF)+ + )!smx or return; + + my $di = { + hdr_lines => $1, + oid_a => $6, + oid_b => $7, + mode_a => $5 // $8 // $4, # new (file) // unchanged // old + }; + my $path_a = $2 // $10; + my $path_b = $3 // $11; + my $patch = $9; + + # don't care for leading 'a/' and 'b/' + my (undef, @a) = split(m{/}, git_unquote($path_a)); + my (undef, @b) = split(m{/}, git_unquote($path_b)); + + # get rid of path-traversal attempts and junk patches: + # it's junk at best, an attack attempt at worse: + state $bad_component = { map { $_ => 1 } ('', '.', '..') }; + foreach (@a, @b) { return if $bad_component->{$_} } + + $di->{path_a} = join('/', @a); + $di->{path_b} = join('/', @b); + + my $path = ++$self->{tot}; + $di->{n} = $path; + open(my $tmp, '>:utf8', $self->{tmp}->dirname . "/$path") or + die "open(tmp): $!"; + print $tmp $di->{hdr_lines}, $patch or die "print(tmp): $!"; + close $tmp or die "close(tmp): $!"; + + # for debugging/diagnostics: + $di->{ibx} = $ibx; + $di->{smsg} = $smsg; + + push @$diffs, $di; } sub path_searchable ($) { defined($_[0]) && $_[0] =~ m!\A[\w/\. \-]+\z! } -sub find_extract_diff ($$$) { +# ".." appears in path names, which confuses Xapian into treating +# it as a range query. So we split on ".." since Xapian breaks +# on punctuation anyways: +sub filename_query ($) { + join('', map { qq( dfn:"$_") } split(/\.\./, $_[0])); +} + +sub find_extract_diffs ($$$) { my ($self, $ibx, $want) = @_; my $srch = $ibx->search or return; @@ -167,32 +220,40 @@ sub find_extract_diff ($$$) { my $path_b = $want->{path_b}; if (path_searchable($path_b)) { - $q .= qq{ dfn:"$path_b"}; + $q .= filename_query($path_b); my $path_a = $want->{path_a}; if (path_searchable($path_a) && $path_a ne $path_b) { - $q .= qq{ dfn:"$path_a"}; + $q .= filename_query($path_a); } } my $msgs = $srch->query($q, { relevance => 1 }); - my $re = qr/\Aindex ($pre[a-f0-9]*)\.\.($post[a-f0-9]*)(?: (\d+))?/; - my $di; + my $diffs = []; foreach my $smsg (@$msgs) { $ibx->smsg_mime($smsg) or next; - msg_iter(delete($smsg->{mime}), sub { - $di ||= extract_diff($_[0], $re, $ibx, $smsg); - }); - return $di if $di; + my $mime = delete $smsg->{mime}; + msg_iter($mime, \&extract_diff, + [$self, $diffs, $pre, $post, $ibx, $smsg]); + } + @$diffs ? $diffs : undef; +} + +sub update_index_result ($$) { + my ($bref, $self) = @_; + my ($qsp, $msg) = delete @$self{qw(-qsp -msg)}; + if (my $err = $qsp->{err}) { + ERR($self, "git update-index error: $err"); } + dbg($self, $msg); + next_step($self); # onto do_git_apply } sub prepare_index ($) { my ($self) = @_; my $patches = $self->{patches}; $self->{nr} = 0; - $self->{tot} = scalar @$patches; my $di = $patches->[0] or die 'no patches'; my $oid_a = $di->{oid_a} or die '{oid_a} unset'; @@ -205,40 +266,34 @@ sub prepare_index ($) { my $oid_full = $existing->[1]; my $path_a = $di->{path_a} or die "BUG: path_a missing for $oid_full"; - my $mode_a = $di->{mode_a} || extract_old_mode($di); + my $mode_a = $di->{mode_a} // '100644'; - open my $in, '+>', undef or die "open: $!"; + 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: $!"; dbg($self, 'preparing index'); - my $rdr = { 0 => fileno($in) }; - my $cmd = [ qw(git -C), $self->{wt_dir}, - qw(update-index -z --index-info) ]; - my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr); - $qsp->psgi_qx($self->{psgi_env}, undef, sub { - my ($bref) = @_; - if (my $err = $qsp->{err}) { - ERR($self, "git update-index error: $err"); - } - dbg($self, "index prepared:\n" . - "$mode_a $oid_full\t" . git_quote($path_a)); - next_step($self); # onto do_git_apply - }); + my $rdr = { 0 => $in }; + my $cmd = [ qw(git update-index -z --index-info) ]; + my $qsp = PublicInbox::Qspawn->new($cmd, $self->{git_env}, $rdr); + $path_a = git_quote($path_a); + $self->{-qsp} = $qsp; + $self->{-msg} = "index prepared:\n$mode_a $oid_full\t$path_a"; + $qsp->psgi_qx($self->{psgi_env}, undef, \&update_index_result, $self); } # pure Perl "git init" -sub do_git_init_wt ($) { +sub do_git_init ($) { my ($self) = @_; - my $wt = File::Temp->newdir('solver.wt-XXXXXXXX', TMPDIR => 1); - my $dir = $self->{wt_dir} = $wt->dirname; + my $dir = $self->{tmp}->dirname; + my $git_dir = "$dir/git"; foreach ('', qw(objects refs objects/info refs/heads)) { - mkdir("$dir/.git/$_") or die "mkdir $_: $!"; + mkdir("$git_dir/$_") or die "mkdir $_: $!"; } - open my $fh, '>', "$dir/.git/config" or die "open .git/config: $!"; - print $fh <<'EOF' or die "print .git/config $!"; + open my $fh, '>', "$git_dir/config" or die "open git/config: $!"; + print $fh <<'EOF' or die "print git/config $!"; [core] repositoryFormatVersion = 0 filemode = true @@ -246,31 +301,47 @@ sub do_git_init_wt ($) { fsyncObjectfiles = false logAllRefUpdates = false EOF - close $fh or die "close .git/config: $!"; + close $fh or die "close git/config: $!"; - open $fh, '>', "$dir/.git/HEAD" or die "open .git/HEAD: $!"; - print $fh "ref: refs/heads/master\n" or die "print .git/HEAD: $!"; - close $fh or die "close .git/HEAD: $!"; + open $fh, '>', "$git_dir/HEAD" or die "open git/HEAD: $!"; + print $fh "ref: refs/heads/master\n" or die "print git/HEAD: $!"; + close $fh or die "close git/HEAD: $!"; - my $f = '.git/objects/info/alternates'; - open $fh, '>', "$dir/$f" or die "open: $f: $!"; - print($fh (map { "$_->{git_dir}/objects\n" } @{$self->{gits}})) or - die "print $f: $!"; + my $f = 'objects/info/alternates'; + open $fh, '>', "$git_dir/$f" or die "open: $f: $!"; + foreach my $git (@{$self->{gits}}) { + print $fh $git->git_path('objects'),"\n" or die "print $f: $!"; + } close $fh or die "close: $f: $!"; - my $wt_git = $self->{wt_git} = PublicInbox::Git->new("$dir/.git"); - $wt_git->{-wt} = $wt; + my $tmp_git = $self->{tmp_git} = PublicInbox::Git->new($git_dir); + $tmp_git->{-tmp} = $self->{tmp}; + $self->{git_env} = { + GIT_DIR => $git_dir, + GIT_INDEX_FILE => "$git_dir/index", + }; prepare_index($self); } -sub extract_old_mode ($) { - my ($di) = @_; - if (grep(/\Aold mode (100644|100755|120000)$/, @{$di->{hdr_lines}})) { - return $1; +sub do_finish ($) { + my ($self) = @_; + my ($found, $oid_want) = @$self{qw(found oid_want)}; + if (my $exists = $found->{$oid_want}) { + return done($self, $exists); + } + + # let git disambiguate if oid_want was too short, + # but long enough to be unambiguous: + my $tmp_git = $self->{tmp_git}; + if (my @res = $tmp_git->check($oid_want)) { + return done($self, $found->{$res[0]}); } - '100644'; + if (my $err = $tmp_git->last_check_err) { + dbg($self, $err); + } + done($self, undef); } -sub do_step ($) { +sub event_step ($) { my ($self) = @_; eval { # step 1: resolve blobs to patches in the todo queue @@ -280,8 +351,8 @@ sub do_step ($) { # step 2: then we instantiate a working tree once # the todo queue is finally empty: - } elsif (!defined($self->{wt_git})) { - do_git_init_wt($self); + } elsif (!defined($self->{tmp_git})) { + do_git_init($self); # step 3: apply each patch in the stack } elsif (scalar @{$self->{patches}}) { @@ -291,8 +362,8 @@ sub do_step ($) { # our result: (which may be undef) # Other steps may call user_cb to terminate prematurely # on error - } elsif (my $ucb = delete($self->{user_cb})) { - $ucb->($self->{found}->{$self->{oid_want}}); + } elsif (exists $self->{user_cb}) { + do_finish($self); } else { die 'about to call user_cb twice'; # Oops :x } @@ -301,32 +372,33 @@ sub do_step ($) { if ($err) { $err =~ s/^\s*Exception:\s*//; # bad word to show users :P dbg($self, "E: $err"); - my $ucb = delete($self->{user_cb}); - eval { $ucb->($err) } if $ucb; + eval { done($self, $err) }; } } -sub step_cb ($) { - my ($self) = @_; - sub { do_step($self) }; -} - sub next_step ($) { my ($self) = @_; # if outside of public-inbox-httpd, caller is expected to be - # looping step_cb, anyways + # looping event_step, anyways my $async = $self->{psgi_env}->{'pi-httpd.async'} or return; # PublicInbox::HTTPD::Async->new - $async->(undef, step_cb($self)); + $async->(undef, undef, $self); } sub mark_found ($$$) { my ($self, $oid, $found_info) = @_; - $self->{found}->{$oid} = $found_info; + my $found = $self->{found}; + $found->{$oid} = $found_info; + my $oid_cur = $found_info->[1]; + while ($oid_cur ne $oid && length($oid_cur) > $OID_MIN) { + $found->{$oid_cur} = $found_info; + chop($oid_cur); + } } -sub parse_ls_files ($$$$) { - my ($self, $qsp, $bref, $di) = @_; +sub parse_ls_files ($$) { + my ($self, $bref) = @_; + my ($qsp, $di) = delete @$self{qw(-qsp -cur_di)}; if (my $err = $qsp->{err}) { die "git ls-files error: $err"; } @@ -342,55 +414,95 @@ sub parse_ls_files ($$$$) { "BUG: index mismatch: file=$file != path_b=$di->{path_b}"; } - my $wt_git = $self->{wt_git} or die 'no git working tree'; - my (undef, undef, $size) = $wt_git->check($oid_b_full); + my $tmp_git = $self->{tmp_git} or die 'no git working tree'; + my (undef, undef, $size) = $tmp_git->check($oid_b_full); defined($size) or die "check $oid_b_full failed"; dbg($self, "index at:\n$mode_b $oid_b_full\t$file"); - my $created = [ $wt_git, $oid_b_full, 'blob', $size, $di ]; + my $created = [ $tmp_git, $oid_b_full, 'blob', $size, $di ]; mark_found($self, $di->{oid_b}, $created); next_step($self); # onto the next patch } -sub start_ls_files ($$) { - my ($self, $di) = @_; - my $cmd = [qw(git -C), $self->{wt_dir}, qw(ls-files -s -z)]; - my $qsp = PublicInbox::Qspawn->new($cmd); - $qsp->psgi_qx($self->{psgi_env}, undef, sub { - my ($bref) = @_; - eval { parse_ls_files($self, $qsp, $bref, $di) }; - ERR($self, $@) if $@; - }); +sub ls_files_result { + my ($bref, $self) = @_; + eval { parse_ls_files($self, $bref) }; + ERR($self, $@) if $@; } -sub do_git_apply ($) { - my ($self) = @_; +sub oids_same_ish ($$) { + (index($_[0], $_[1]) == 0) || (index($_[1], $_[0]) == 0); +} + +sub skip_identical ($$$) { + my ($self, $patches, $cur_oid_b) = @_; + while (my $nxt = $patches->[0]) { + if (oids_same_ish($cur_oid_b, $nxt->{oid_b})) { + dbg($self, 'skipping '.di_url($self, $nxt). + " for $cur_oid_b"); + shift @$patches; + } else { + return; + } + } +} + +sub apply_result ($$) { + my ($bref, $self) = @_; + my ($qsp, $di) = delete @$self{qw(-qsp -cur_di)}; + dbg($self, $$bref); + my $patches = $self->{patches}; + if (my $err = $qsp->{err}) { + my $msg = "git apply error: $err"; + my $nxt = $patches->[0]; + if ($nxt && oids_same_ish($nxt->{oid_b}, $di->{oid_b})) { + dbg($self, $msg); + dbg($self, 'trying '.di_url($self, $nxt)); + return do_git_apply($self); + } else { + ERR($self, $msg); + } + } else { + skip_identical($self, $patches, $di->{oid_b}); + } - my $di = shift @{$self->{patches}} or die 'empty {patches}'; - my $tmp = delete $di->{tmp} or die 'no tmp ', di_url($self, $di); - $tmp->flush or die "tmp->flush failed: $!"; - sysseek($tmp, 0, SEEK_SET) or die "sysseek(tmp) failed: $!"; + my @cmd = qw(git ls-files -s -z); + $qsp = PublicInbox::Qspawn->new(\@cmd, $self->{git_env}); + $self->{-cur_di} = $di; + $self->{-qsp} = $qsp; + $qsp->psgi_qx($self->{psgi_env}, undef, \&ls_files_result, $self); +} - my $i = ++$self->{nr}; - dbg($self, "\napplying [$i/$self->{tot}] " . di_url($self, $di) . - "\n" . join('', @{$di->{hdr_lines}})); +sub do_git_apply ($) { + my ($self) = @_; + my $dn = $self->{tmp}->dirname; + my $patches = $self->{patches}; # we need --ignore-whitespace because some patches are CRLF - my $cmd = [ qw(git -C), $self->{wt_dir}, - qw(apply --cached --ignore-whitespace - --whitespace=warn --verbose) ]; - my $rdr = { 0 => fileno($tmp), 2 => 1 }; - my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr); - $qsp->psgi_qx($self->{psgi_env}, undef, sub { - my ($bref) = @_; - close $tmp; - dbg($self, $$bref); - if (my $err = $qsp->{err}) { - ERR($self, "git apply error: $err"); - } - eval { start_ls_files($self, $di) }; - ERR($self, $@) if $@; - }); + my @cmd = (qw(git apply --cached --ignore-whitespace + --unidiff-zero --whitespace=warn --verbose)); + my $len = length(join(' ', @cmd)); + my $total = $self->{tot}; + my $di; # keep track of the last one for "git ls-files" + my $prv_oid_b; + + do { + my $i = ++$self->{nr}; + $di = shift @$patches; + dbg($self, "\napplying [$i/$total] " . di_url($self, $di) . + "\n" . $di->{hdr_lines}); + my $path = $di->{n}; + $len += length($path) + 1; + push @cmd, $path; + $prv_oid_b = $di->{oid_b}; + } while (@$patches && $len < $ARG_SIZE_MAX && + !oids_same_ish($patches->[0]->{oid_b}, $prv_oid_b)); + + my $opt = { 2 => 1, -C => $dn, quiet => 1 }; + my $qsp = PublicInbox::Qspawn->new(\@cmd, $self->{git_env}, $opt); + $self->{-cur_di} = $di; + $self->{-qsp} = $qsp; + $qsp->psgi_qx($self->{psgi_env}, undef, \&apply_result, $self); } sub di_url ($$) { @@ -407,18 +519,22 @@ sub di_url ($$) { sub resolve_patch ($$) { my ($self, $want) = @_; - if (scalar(@{$self->{patches}}) > $self->{max_patch}) { + if (scalar(@{$self->{patches}}) > $MAX_PATCH) { die "Aborting, too many steps to $self->{oid_want}"; } # see if we can find the blob in an existing git repo: my $cur_want = $want->{oid_b}; + if ($self->{seen_oid}->{$cur_want}++) { + 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($self->{psgi_env}))); - if ($cur_want eq $self->{oid_want}) { # all done! - eval { delete($self->{user_cb})->($existing) }; + if ($cur_want eq $self->{oid_want} || $type ne 'blob') { + eval { done($self, $existing) }; die "E: $@" if $@; return; } @@ -428,15 +544,16 @@ sub resolve_patch ($$) { # scan through inboxes to look for emails which results in # the oid we want: - my $di; foreach my $ibx (@{$self->{inboxes}}) { - $di = find_extract_diff($self, $ibx, $want) or next; + my $diffs = find_extract_diffs($self, $ibx, $want) or next; - unshift @{$self->{patches}}, $di; - dbg($self, "found $cur_want in ".di_url($self, $di)); + unshift @{$self->{patches}}, @$diffs; + dbg($self, "found $cur_want in ". + join("\n\t", map { di_url($self, $_) } @$diffs)); # good, we can find a path to the oid we $want, now # lets see if we need to apply more patches: + my $di = $diffs->[0]; my $src = $di->{oid_a}; unless ($src =~ /\A0+\z/) { @@ -446,20 +563,29 @@ sub resolve_patch ($$) { } return next_step($self); # onto the next todo item } + if (length($cur_want) > $OID_MIN) { + chop($cur_want); + dbg($self, "retrying $want->{oid_b} as $cur_want"); + $want->{oid_b} = $cur_want; + push @{$self->{todo}}, $want; + return next_step($self); # retry with shorter abbrev + } + dbg($self, "could not find $cur_want"); - eval { delete($self->{user_cb})->(undef) }; # not found! :< + eval { done($self, undef) }; die "E: $@" if $@; } # this API is designed to avoid creating self-referential structures; # so user_cb never references the SolverGit object sub new { - my ($class, $ibx, $user_cb) = @_; + my ($class, $ibx, $user_cb, $uarg) = @_; bless { gits => $ibx->{-repo_objs}, user_cb => $user_cb, - max_patch => 100, + uarg => $uarg, + # -cur_di, -qsp, -msg => temporary fields for Qspawn callbacks # TODO: config option for searching related inboxes inboxes => [ $ibx ], @@ -467,6 +593,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 @@ -475,22 +602,24 @@ sub solve ($$$$$) { # should we even get here? Probably not, but somebody # could be manually typing URLs: - return (delete $self->{user_cb})->(undef) if $oid_want =~ /\A0+\z/; + return done($self, undef) if $oid_want =~ /\A0+\z/; $self->{oid_want} = $oid_want; $self->{out} = $out; + $self->{seen_oid} = {}; + $self->{tot} = 0; $self->{psgi_env} = $env; $self->{todo} = [ { %$hints, oid_b => $oid_want } ]; $self->{patches} = []; # [ $di, $di, ... ] $self->{found} = {}; # { abbr => [ ::Git, oid, type, size, $di ] } + $self->{tmp} = File::Temp->newdir("solver.$oid_want-XXXXXXXX", TMPDIR => 1); dbg($self, "solving $oid_want ..."); - my $step_cb = step_cb($self); if (my $async = $env->{'pi-httpd.async'}) { # PublicInbox::HTTPD::Async->new - $async->(undef, $step_cb); + $async->(undef, undef, $self); } else { - $step_cb->() while $self->{user_cb}; + event_step($self) while $self->{user_cb}; } }