about summary refs log tree commit homepage
path: root/lib/PublicInbox
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-11-07 10:56:58 +0000
committerEric Wong <e@80x24.org>2020-11-08 10:18:21 +0000
commit5ed2573594258bd53c9ae8e1c1c517a0c8ba191f (patch)
tree7c37866af77038b39a94fb6a1fd27e1171dcf320 /lib/PublicInbox
parenta381e4acc9070bad6490b83173687a4f0e142627 (diff)
downloadpublic-inbox-5ed2573594258bd53c9ae8e1c1c517a0c8ba191f.tar.gz
With async git blob retrievals, the OID being enqueued and the
OID being processed can be totally unrelated and misleading.

We'll also prefix $INBOX_DIR for v2, and not just the epoch
since we could be indexing multiple inboxes via both -index
and -extindex.
Diffstat (limited to 'lib/PublicInbox')
-rw-r--r--lib/PublicInbox/ExtSearchIdx.pm7
-rw-r--r--lib/PublicInbox/V2Writable.pm24
2 files changed, 25 insertions, 6 deletions
diff --git a/lib/PublicInbox/ExtSearchIdx.pm b/lib/PublicInbox/ExtSearchIdx.pm
index 3e7f5604..50342802 100644
--- a/lib/PublicInbox/ExtSearchIdx.pm
+++ b/lib/PublicInbox/ExtSearchIdx.pm
@@ -250,17 +250,22 @@ sub cur_ibx_xnum ($$) {
 
 sub index_oid { # git->cat_async callback for 'm'
         my ($bref, $oid, $type, $size, $req) = @_;
+        my $self = $req->{self};
+        local $self->{current_info} = "$self->{current_info} $oid";
         return if is_bad_blob($oid, $type, $size, $req->{oid});
         my $new_smsg = $req->{new_smsg} = bless {
                 blob => $oid,
         }, 'PublicInbox::Smsg';
         $new_smsg->{bytes} = $size + crlf_adjust($$bref);
         defined($req->{xnum} = cur_ibx_xnum($req, $bref)) or return;
+        ++${$req->{nr}};
         do_step($req);
 }
 
 sub unindex_oid { # git->cat_async callback for 'd'
         my ($bref, $oid, $type, $size, $req) = @_;
+        my $self = $req->{self};
+        local $self->{current_info} = "$self->{current_info} $oid";
         return if is_bad_blob($oid, $type, $size, $req->{oid});
         return if defined(cur_ibx_xnum($req, $bref)); # was re-added
         do_step($req);
@@ -286,6 +291,8 @@ sub _sync_inbox ($$$) {
                 -opt => $opt,
                 self => $self,
                 ibx => $ibx,
+                nr => \(my $nr = 0),
+                -regen_fmt => "%u/?\n",
         };
         my $v = $ibx->version;
         my $ekey = $ibx->eidx_key;
diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm
index 224675ab..18f33655 100644
--- a/lib/PublicInbox/V2Writable.pm
+++ b/lib/PublicInbox/V2Writable.pm
@@ -882,12 +882,13 @@ sub reindex_checkpoint ($$) {
 
 sub index_oid { # cat_async callback
         my ($bref, $oid, $type, $size, $arg) = @_;
+        my $self = $arg->{self};
+        local $self->{current_info} = "$self->{current_info} $oid";
         return if $size == 0; # purged
         my ($num, $mid0);
         my $eml = PublicInbox::Eml->new($$bref);
         my $mids = mids($eml);
         my $chash = content_hash($eml);
-        my $self = $arg->{self};
 
         if (scalar(@$mids) == 0) {
                 warn "E: $oid has no Message-ID, skipping\n";
@@ -1047,6 +1048,11 @@ sub sync_prepare ($$) {
         my $pr = $sync->{-opt}->{-progress};
         my $regen_max = 0;
         my $head = $sync->{ibx}->{ref_head} || 'HEAD';
+        my $pfx;
+        if ($pr) {
+                ($pfx) = ($sync->{ibx}->{inboxdir} =~ m!([^/]+)\z!g);
+                $pfx //= $sync->{ibx}->{inboxdir};
+        }
 
         # reindex stops at the current heads and we later rerun index_sync
         # without {reindex}
@@ -1068,7 +1074,7 @@ sub sync_prepare ($$) {
 
                 my $range = log_range($sync, $unit, $tip) or next;
                 # can't use 'rev-list --count' if we use --diff-filter
-                $pr->("$i.git counting $range ... ") if $pr;
+                $pr->("$pfx $i.git counting $range ... ") if $pr;
                 # Don't bump num_highwater on --reindex by using {D}.
                 # We intentionally do NOT use {D} in the non-reindex case
                 # because we want NNTP article number gaps from unindexed
@@ -1086,10 +1092,10 @@ sub sync_prepare ($$) {
         # our code and blindly injects "d" file history into git repos
         if (my @leftovers = keys %{delete($sync->{D}) // {}}) {
                 warn('W: unindexing '.scalar(@leftovers)." leftovers\n");
+                local $self->{current_info} = 'leftover ';
                 my $unindex_oid = $self->can('unindex_oid');
                 for my $oid (@leftovers) {
                         $oid = unpack('H*', $oid);
-                        $self->{current_info} = "leftover $oid";
                         my $req = { %$sync, oid => $oid };
                         $self->git->cat_async($oid, $unindex_oid, $req);
                 }
@@ -1121,6 +1127,7 @@ sub unindex_oid_aux ($$$) {
 sub unindex_oid ($$;$) { # git->cat_async callback
         my ($bref, $oid, $type, $size, $sync) = @_;
         my $self = $sync->{self};
+        local $self->{current_info} = "$self->{current_info} $oid";
         my $unindexed = $sync->{in_unindex} ? $sync->{unindexed} : undef;
         my $mm = $self->{mm};
         my $mids = mids(PublicInbox::Eml->new($bref));
@@ -1230,10 +1237,15 @@ sub index_todo ($$$) {
         my $all = $self->git;
         my $index_oid = $self->can('index_oid');
         my $unindex_oid = $self->can('unindex_oid');
-        my ($pfx) = ($unit->{git}->{git_dir} =~ m!/([^/]+)\z!g);
-        $pfx //= $unit->{git}->{git_dir};
+        my $pfx;
+        if ($unit->{git}->{git_dir} =~ m!/([^/]+)/git/([0-9]+\.git)\z!) {
+                $pfx = "$1 $2"; # v2
+        } else { # v1
+                ($pfx) = ($unit->{git}->{git_dir} =~ m!/([^/]+)\z!g);
+                $pfx //= $unit->{git}->{git_dir};
+        }
+        local $self->{current_info} = "$pfx ";
         while (my ($f, $at, $ct, $oid) = $stk->pop_rec) {
-                $self->{current_info} = "$pfx $oid";
                 my $req = { %$sync, autime => $at, cotime => $ct, oid => $oid };
                 if ($f eq 'm') {
                         if ($sync->{max_size}) {