]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/SearchIdx.pm
searchidx: do not delete documents while iterating
[public-inbox.git] / lib / PublicInbox / SearchIdx.pm
index a70e1ebf649ffbe48b1d993ea0ce47d34b8ba1f7..ccec01811e63a7202a6866f8c730f1e9c997044d 100644 (file)
@@ -302,7 +302,8 @@ sub index_body ($$$) {
 }
 
 sub add_message {
-       my ($self, $mime, $bytes, $num, $blob) = @_; # mime = Email::MIME object
+       # mime = Email::MIME object
+       my ($self, $mime, $bytes, $num, $oid, $mid0) = @_;
        my $doc_id;
        my $mids = mids($mime->header_obj);
        my $skel = $self->{skeleton};
@@ -370,7 +371,8 @@ sub add_message {
 
                # populates smsg->references for smsg->to_doc_data
                my $refs = parse_references($smsg);
-               my $data = $smsg->to_doc_data($blob);
+               $mid0 = $mids->[0] unless defined $mid0;
+               my $data = $smsg->to_doc_data($oid, $mid0);
                foreach my $mid (@$mids) {
                        $tg->index_text($mid, 1, 'XM');
                }
@@ -404,29 +406,38 @@ sub add_message {
        $doc_id;
 }
 
-# returns deleted doc_id on success, undef on missing
+sub batch_do {
+       my ($self, $termval, $cb) = @_;
+       my $batch_size = 1000; # don't let @ids grow too large to avoid OOM
+       while (1) {
+               my ($head, $tail) = $self->find_doc_ids($termval);
+               return if $head == $tail;
+               my @ids;
+               for (; $head != $tail && @ids < $batch_size; $head->inc) {
+                       push @ids, $head->get_docid;
+               }
+               $cb->(\@ids);
+       }
+}
+
 sub remove_message {
        my ($self, $mid) = @_;
        my $db = $self->{xdb};
-       my $doc_id;
+       my $called;
        $mid = mid_clean($mid);
 
        eval {
-               my ($head, $tail) = $self->find_doc_ids('Q' . $mid);
-               if ($head->equal($tail)) {
-                       warn "cannot remove non-existent <$mid>\n";
-               }
-               for (; $head != $tail; $head->inc) {
-                       my $docid = $head->get_docid;
-                       $db->delete_document($docid);
-               }
+               batch_do($self, 'Q' . $mid, sub {
+                       my ($ids) = @_;
+                       $db->delete_document($_) for @$ids;
+                       $called = 1;
+               });
        };
-
        if ($@) {
                warn "failed to remove message <$mid>: $@\n";
-               return undef;
+       } elsif (!$called) {
+               warn "cannot remove non-existent <$mid>\n";
        }
-       $doc_id;
 }
 
 sub term_generator { # write-only
@@ -793,29 +804,22 @@ sub merge_threads {
        my ($self, $winner_tid, $loser_tid) = @_;
        return if $winner_tid == $loser_tid;
        my $db = $self->{xdb};
-
-       my $batch_size = 1000; # don't let @ids grow too large to avoid OOM
-       while (1) {
-               my ($head, $tail) = $self->find_doc_ids('G' . $loser_tid);
-               return if $head == $tail;
-               my @ids;
-               for (; $head != $tail && @ids < $batch_size; $head->inc) {
-                       push @ids, $head->get_docid;
-               }
-               foreach my $docid (@ids) {
+       batch_do($self, 'G' . $loser_tid, sub {
+               my ($ids) = @_;
+               foreach my $docid (@$ids) {
                        my $doc = $db->get_document($docid);
                        $doc->remove_term('G' . $loser_tid);
                        $doc->add_boolean_term('G' . $winner_tid);
                        $db->replace_document($docid, $doc);
                }
-       }
+       });
 }
 
 sub _read_git_config_perm {
        my ($self) = @_;
        my @cmd = qw(config);
        if ($self->{version} == 2) {
-               push @cmd, "--file=$self->{mainrepo}/inbox-config";
+               push @cmd, "--file=$self->{mainrepo}/all.git/config";
        }
        my $fh = $self->{git}->popen(@cmd, 'core.sharedRepository');
        local $/ = "\n";