]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/SolverGit.pm
$INBOX/_/text/color/ and sample user-side CSS
[public-inbox.git] / lib / PublicInbox / SolverGit.pm
index 70d8a93426d161a0aba73c0f0bb64b561038562c..8fde2329fa757a639aba76375c4ab63ffa55ab1b 100644 (file)
@@ -105,6 +105,11 @@ sub extract_diff ($$$$) {
 
                        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));
@@ -221,11 +226,13 @@ sub prepare_index ($$$$) {
        my ($r, $w);
        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 @git = (qw(git -C), $wt_dir);
 
+       # unlike git-apply(1), this only gets called once in a patch
+       # series and happens too quickly to be worth making async:
        pipe($r, $w) or die "pipe: $!";
        my $rdr = { 0 => fileno($r) };
-       my $pid = spawn([@git, qw(update-index -z --index-info)], {}, $rdr);
+       my $pid = spawn([qw(git -C), $wt_dir,
+                        qw(update-index -z --index-info)], undef, $rdr);
        close $r or die "close pipe(r): $!";
        print $w "$mode_a $oid_full\t$path_a\0" or die "print update-index: $!";
 
@@ -246,8 +253,11 @@ sub do_apply_begin ($$$) {
 
        defined(my $err_fd = fileno($out)) or die "fileno(out): $!";
        my $rdr = { 0 => fileno($tmp), 1 => $err_fd, 2 => $err_fd };
+
+       # we need --ignore-whitespace because some patches are CRLF
        my $cmd = [ qw(git -C), $wt_dir,
-                   qw(apply --cached --whitespace=warn --verbose) ];
+                   qw(apply --cached --ignore-whitespace
+                      --whitespace=warn --verbose) ];
        spawn($cmd, undef, $rdr);
 }
 
@@ -290,15 +300,21 @@ sub di_url ($) {
        defined($url) ? "$url$mid/" : "<$mid>";
 }
 
+# reconstruct the oid_b blob using patches we found:
 sub apply_patches_cb ($$$$$) {
        my ($self, $out, $found, $patches, $oid_b) = @_;
+
+       my $tot = scalar(@$patches) or return sub {
+               print $out "no patch(es) for $oid_b\n";
+               undef;
+       };
+
        my $wt = do_git_init_wt($self);
        my $wt_dir = $wt->dirname;
        my $wt_git = PublicInbox::Git->new("$wt_dir/.git");
        $wt_git->{-wt} = $wt;
 
        my $cur = 0;
-       my $tot = scalar @$patches;
        my ($apply_pid, $rd, $di);
 
        # returns an empty string if in progress, undef if not found,
@@ -350,6 +366,9 @@ sub apply_patches_cb ($$$$$) {
 # recreate $oid_b
 # Returns an array ref: [ ::Git object, oid_full, type, size, di ]
 # or undef if nothing was found.
+#
+# TODO: complete the migration of this and ViewVCS into an evented
+# model for fairness
 sub solve ($$$$) {
        my ($self, $out, $oid_b, $hints) = @_;
 
@@ -361,11 +380,20 @@ sub solve ($$$$) {
        my @todo = ($req);
        my $found = {}; # { abbrev => [ ::Git, oid_full, type, size, $di ] }
        my $patches = []; # [ array of $di hashes ]
+       my $max = $self->{max_patches} || 200;
+       my $apply_cb;
+       my $cb = sub {
+               my $want = pop @todo;
+               unless ($want) {
+                       $apply_cb ||= apply_patches_cb($self, $out, $found,
+                                                      $patches, $oid_b);
+                       return $apply_cb->();
+               }
 
-       my $max = $self->{max_steps} || 200;
-       my $steps = 0;
-
-       while (defined(my $want = pop @todo)) {
+               if (scalar(@$patches) > $max) {
+                       print $out "Aborting, too many steps to $oid_b\n";
+                       return;
+               }
                # see if we can find the blob in an existing git repo:
                my $want_oid = $want->{oid_b};
                if (my $existing = solve_existing($self, $out, $want)) {
@@ -373,9 +401,8 @@ sub solve ($$$$) {
                                join("\n", $existing->[0]->pub_urls), "\n";
 
                        return $existing if $want_oid eq $oid_b; # DONE!
-
                        $found->{$want_oid} = $existing;
-                       next; # ok, one blob resolved, more to go?
+                       return ''; # ok, one blob resolved, more to go?
                }
 
                # scan through inboxes to look for emails which results in
@@ -390,40 +417,29 @@ sub solve ($$$$) {
                        # good, we can find a path to the oid we $want, now
                        # lets see if we need to apply more patches:
                        my $src = $di->{oid_a};
-                       if ($src !~ /\A0+\z/) {
-                               if (++$steps > $max) {
-                                       print $out
-"Aborting, too many steps to $oid_b\n";
 
-                                       return;
-                               }
+                       last if $src =~ /\A0+\z/;
 
-                               # we have to solve it using another oid, fine:
-                               my $job = {
-                                       oid_b => $src,
-                                       path_b => $di->{path_a},
-                               };
-                               push @todo, $job;
-                       }
+                       # we have to solve it using another oid, fine:
+                       my $job = { oid_b => $src, path_b => $di->{path_a} };
+                       push @todo, $job;
                        last; # onto the next @todo item
                }
                unless ($di) {
                        print $out "$want_oid could not be found\n";
                        return;
                }
-       }
+               ''; # continue onto next @todo item;
+       };
 
-       unless (scalar(@$patches)) {
-               print $out "no patch(es) for $oid_b\n";
-               return;
-       }
-
-       # reconstruct the oid_b blob using patches we found:
-       my $cb = apply_patches_cb($self, $out, $found, $patches, $oid_b);
-       my $ret;
        while (1) {
-               $ret = $cb->();
-               return $ret if (ref($ret) || !defined($ret));
+               my $ret = eval { $cb->() };
+               unless (defined($ret)) {
+                       print $out "E: $@\n" if $@;
+                       return;
+               }
+               return $ret if ref($ret);
+               # $ret == ''; so continue looping here
        }
 }