lib/PublicInbox/V2Writable.pm | 32 ++++++++++++++------------------ diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm index a1986a4698b639537c838bc5a46f81eda0ba9e6d..a85f9e1f8bdc98d07d4c31eecede09ea419f5986 100644 --- a/lib/PublicInbox/V2Writable.pm +++ b/lib/PublicInbox/V2Writable.pm @@ -861,16 +861,14 @@ close $self->{bnote}->[0] or die "close bnote[0]: $!\n"; $self->{bnote}->[1]; } -sub reindex_checkpoint ($$$) { - my ($self, $sync, $git) = @_; +sub reindex_checkpoint ($$) { + my ($self, $sync) = @_; - $git->cleanup; $sync->{mm_tmp}->atfork_prepare; $self->done; # release lock if (my $pr = $sync->{-opt}->{-progress}) { - my ($bn) = (split('/', $git->{git_dir}))[-1]; - $pr->("$bn ".sprintf($sync->{-regen_fmt}, $sync->{nr})); + $pr->(sprintf($sync->{-regen_fmt}, $sync->{nr})); } # allow -watch or -mda to write... @@ -878,11 +876,11 @@ $self->idx_init; # reacquire lock $sync->{mm_tmp}->atfork_parent; } -sub reindex_oid ($$$$) { - my ($self, $sync, $git, $oid) = @_; +sub reindex_oid ($$$) { + my ($self, $sync, $oid) = @_; return if PublicInbox::SearchIdx::too_big($self, $oid); my ($num, $mid0, $len); - my $msgref = $git->cat_file($oid, \$len); + my $msgref = $self->{ibx}->git->cat_file($oid, \$len); return if $len == 0; # purged my $mime = PublicInbox::Eml->new($$msgref); my $mids = mids($mime->header_obj); @@ -951,7 +949,7 @@ mid => $mid0, }, 'PublicInbox::Smsg'; $smsg->populate($mime, $sync); if (do_idx($self, $msgref, $mime, $smsg)) { - reindex_checkpoint($self, $sync, $git); + reindex_checkpoint($self, $sync); } } @@ -1107,13 +1105,11 @@ # XXX this should not happen unless somebody bypasses checks in # 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"); - my $git = $self->{ibx}->git; for my $oid (@leftovers) { $oid = unpack('H*', $oid); $self->{current_info} = "leftover $oid"; - unindex_oid($self, $git, $oid); + unindex_oid($self, $oid); } - $git->cleanup; } return 0 if (!$regen_max && !keys(%{$self->{unindex_range}})); @@ -1135,10 +1131,10 @@ $idx->remote_remove($oid, $num); } } -sub unindex_oid ($$$;$) { - my ($self, $git, $oid, $unindexed) = @_; +sub unindex_oid ($$;$) { + my ($self, $oid, $unindexed) = @_; my $mm = $self->{mm}; - my $msgref = $git->cat_file($oid); + my $msgref = $self->{ibx}->git->cat_file($oid); my $mime = PublicInbox::Eml->new($msgref); my $mids = mids($mime->header_obj); $mime = $msgref = undef; @@ -1175,7 +1171,7 @@ --no-notes --no-color --no-abbrev --no-renames); my $fh = $self->{reindex_pipe} = $git->popen(@cmd, $unindex_range); while (<$fh>) { /\A:\d{6} 100644 $OID ($OID) [AM]\tm$/o or next; - unindex_oid($self, $git, $1, $unindexed); + unindex_oid($self, $1, $unindexed); } delete $self->{reindex_pipe}; close $fh or die "git log failed: \$?=$?"; @@ -1220,9 +1216,9 @@ $self->{current_info} = "$i.git $oid"; if ($f eq 'm') { $sync->{autime} = $at; $sync->{cotime} = $ct; - reindex_oid($self, $sync, $git, $oid); + reindex_oid($self, $sync, $oid); } elsif ($f eq 'd') { - unindex_oid($self, $git, $oid); + unindex_oid($self, $oid); } } delete @$sync{qw(autime cotime)};