]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/SearchIdx.pm
f9b40b0db5a9968c0bdf11de0dfffa628ae08d95
[public-inbox.git] / lib / PublicInbox / SearchIdx.pm
1 # Copyright (C) 2015-2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 # based on notmuch, but with no concept of folders, files or flags
4 #
5 # Indexes mail with Xapian and our (SQLite-based) ::Msgmap for use
6 # with the web and NNTP interfaces.  This index maintains thread
7 # relationships for use by PublicInbox::SearchThread.
8 # This writes to the search index.
9 package PublicInbox::SearchIdx;
10 use strict;
11 use warnings;
12 use base qw(PublicInbox::Search PublicInbox::Lock);
13 use PublicInbox::MIME;
14 use PublicInbox::InboxWritable;
15 use PublicInbox::MID qw/mid_clean id_compress mid_mime mids/;
16 use PublicInbox::MsgIter;
17 use Carp qw(croak);
18 use POSIX qw(strftime);
19 use PublicInbox::OverIdx;
20 require PublicInbox::Git;
21 use Compress::Zlib qw(compress);
22
23 use constant {
24         BATCH_BYTES => 10_000_000,
25         DEBUG => !!$ENV{DEBUG},
26 };
27
28 my %GIT_ESC = (
29         a => "\a",
30         b => "\b",
31         f => "\f",
32         n => "\n",
33         r => "\r",
34         t => "\t",
35         v => "\013",
36 );
37
38 sub git_unquote ($) {
39         my ($s) = @_;
40         return $s unless ($s =~ /\A"(.*)"\z/);
41         $s = $1;
42         $s =~ s/\\([abfnrtv])/$GIT_ESC{$1}/g;
43         $s =~ s/\\([0-7]{1,3})/chr(oct($1))/ge;
44         $s;
45 }
46
47 sub new {
48         my ($class, $ibx, $creat, $part) = @_;
49         my $mainrepo = $ibx; # for "public-inbox-index" w/o entry in config
50         my $git_dir = $mainrepo;
51         my ($altid, $git);
52         my $version = 1;
53         if (ref $ibx) {
54                 $mainrepo = $ibx->{mainrepo};
55                 $altid = $ibx->{altid};
56                 $version = $ibx->{version} || 1;
57                 if ($altid) {
58                         require PublicInbox::AltId;
59                         $altid = [ map {
60                                 PublicInbox::AltId->new($ibx, $_);
61                         } @$altid ];
62                 }
63         } else { # v1
64                 $ibx = { mainrepo => $git_dir, version => 1 };
65         }
66         $ibx = PublicInbox::InboxWritable->new($ibx);
67         require Search::Xapian::WritableDatabase;
68         my $self = bless {
69                 mainrepo => $mainrepo,
70                 -inbox => $ibx,
71                 git => $ibx->git,
72                 -altid => $altid,
73                 version => $version,
74         }, $class;
75         $ibx->umask_prepare;
76         if ($version == 1) {
77                 $self->{lock_path} = "$mainrepo/ssoma.lock";
78                 my $dir = $self->xdir;
79                 $self->{over} = PublicInbox::OverIdx->new("$dir/over.sqlite3");
80         } elsif ($version == 2) {
81                 defined $part or die "partition is required for v2\n";
82                 # partition is a number
83                 $self->{partition} = $part;
84                 $self->{lock_path} = undef;
85         } else {
86                 die "unsupported inbox version=$version\n";
87         }
88         $self->{creat} = ($creat || 0) == 1;
89         $self;
90 }
91
92 sub _xdb_release {
93         my ($self) = @_;
94         my $xdb = delete $self->{xdb} or croak 'not acquired';
95         $xdb->close;
96         $self->lock_release if $self->{creat};
97         undef;
98 }
99
100 sub _xdb_acquire {
101         my ($self) = @_;
102         croak 'already acquired' if $self->{xdb};
103         my $dir = $self->xdir;
104         my $flag = Search::Xapian::DB_OPEN;
105         if ($self->{creat}) {
106                 require File::Path;
107                 $self->lock_acquire;
108                 File::Path::mkpath($dir);
109                 $flag = Search::Xapian::DB_CREATE_OR_OPEN;
110         }
111         $self->{xdb} = Search::Xapian::WritableDatabase->new($dir, $flag);
112 }
113
114 sub add_val ($$$) {
115         my ($doc, $col, $num) = @_;
116         $num = Search::Xapian::sortable_serialise($num);
117         $doc->add_value($col, $num);
118 }
119
120 sub index_users ($$) {
121         my ($tg, $smsg) = @_;
122
123         my $from = $smsg->from;
124         my $to = $smsg->to;
125         my $cc = $smsg->cc;
126
127         $tg->index_text($from, 1, 'A'); # A - author
128         $tg->increase_termpos;
129         $tg->index_text($to, 1, 'XTO') if $to ne '';
130         $tg->increase_termpos;
131         $tg->index_text($cc, 1, 'XCC') if $cc ne '';
132         $tg->increase_termpos;
133 }
134
135 sub index_diff_inc ($$$$) {
136         my ($tg, $text, $pfx, $xnq) = @_;
137         if (@$xnq) {
138                 $tg->index_text(join("\n", @$xnq), 1, 'XNQ');
139                 $tg->increase_termpos;
140                 @$xnq = ();
141         }
142         $tg->index_text($text, 1, $pfx);
143         $tg->increase_termpos;
144 }
145
146 sub index_old_diff_fn {
147         my ($tg, $seen, $fa, $fb, $xnq) = @_;
148
149         # no renames or space support for traditional diffs,
150         # find the number of leading common paths to strip:
151         my @fa = split('/', $fa);
152         my @fb = split('/', $fb);
153         while (scalar(@fa) && scalar(@fb)) {
154                 $fa = join('/', @fa);
155                 $fb = join('/', @fb);
156                 if ($fa eq $fb) {
157                         unless ($seen->{$fa}++) {
158                                 index_diff_inc($tg, $fa, 'XDFN', $xnq);
159                         }
160                         return 1;
161                 }
162                 shift @fa;
163                 shift @fb;
164         }
165         0;
166 }
167
168 sub index_diff ($$$) {
169         my ($tg, $lines, $doc) = @_;
170         my %seen;
171         my $in_diff;
172         my @xnq;
173         my $xnq = \@xnq;
174         foreach (@$lines) {
175                 if ($in_diff && s/^ //) { # diff context
176                         index_diff_inc($tg, $_, 'XDFCTX', $xnq);
177                 } elsif (/^-- $/) { # email signature begins
178                         $in_diff = undef;
179                 } elsif (m!^diff --git ("?a/.+) ("?b/.+)\z!) {
180                         my ($fa, $fb) = ($1, $2);
181                         my $fn = (split('/', git_unquote($fa), 2))[1];
182                         $seen{$fn}++ or index_diff_inc($tg, $fn, 'XDFN', $xnq);
183                         $fn = (split('/', git_unquote($fb), 2))[1];
184                         $seen{$fn}++ or index_diff_inc($tg, $fn, 'XDFN', $xnq);
185                         $in_diff = 1;
186                 # traditional diff:
187                 } elsif (m/^diff -(.+) (\S+) (\S+)$/) {
188                         my ($opt, $fa, $fb) = ($1, $2, $3);
189                         push @xnq, $_;
190                         # only support unified:
191                         next unless $opt =~ /[uU]/;
192                         $in_diff = index_old_diff_fn($tg, \%seen, $fa, $fb,
193                                                         $xnq);
194                 } elsif (m!^--- ("?a/.+)!) {
195                         my $fn = (split('/', git_unquote($1), 2))[1];
196                         $seen{$fn}++ or index_diff_inc($tg, $fn, 'XDFN', $xnq);
197                         $in_diff = 1;
198                 } elsif (m!^\+\+\+ ("?b/.+)!)  {
199                         my $fn = (split('/', git_unquote($1), 2))[1];
200                         $seen{$fn}++ or index_diff_inc($tg, $fn, 'XDFN', $xnq);
201                         $in_diff = 1;
202                 } elsif (/^--- (\S+)/) {
203                         $in_diff = $1;
204                         push @xnq, $_;
205                 } elsif (defined $in_diff && /^\+\+\+ (\S+)/) {
206                         $in_diff = index_old_diff_fn($tg, \%seen, $in_diff, $1,
207                                                         $xnq);
208                 } elsif ($in_diff && s/^\+//) { # diff added
209                         index_diff_inc($tg, $_, 'XDFB', $xnq);
210                 } elsif ($in_diff && s/^-//) { # diff removed
211                         index_diff_inc($tg, $_, 'XDFA', $xnq);
212                 } elsif (m!^index ([a-f0-9]+)\.\.([a-f0-9]+)!) {
213                         my ($ba, $bb) = ($1, $2);
214                         index_git_blob_id($doc, 'XDFPRE', $ba);
215                         index_git_blob_id($doc, 'XDFPOST', $bb);
216                         $in_diff = 1;
217                 } elsif (/^@@ (?:\S+) (?:\S+) @@\s*$/) {
218                         # traditional diff w/o -p
219                 } elsif (/^@@ (?:\S+) (?:\S+) @@\s*(\S+.*)$/) {
220                         # hunk header context
221                         index_diff_inc($tg, $1, 'XDFHH', $xnq);
222                 # ignore the following lines:
223                 } elsif (/^(?:dis)similarity index/ ||
224                                 /^(?:old|new) mode/ ||
225                                 /^(?:deleted|new) file mode/ ||
226                                 /^(?:copy|rename) (?:from|to) / ||
227                                 /^(?:dis)?similarity index / ||
228                                 /^\\ No newline at end of file/ ||
229                                 /^Binary files .* differ/) {
230                         push @xnq, $_;
231                 } elsif ($_ eq '') {
232                         $in_diff = undef;
233                 } else {
234                         push @xnq, $_;
235                         warn "non-diff line: $_\n" if DEBUG && $_ ne '';
236                         $in_diff = undef;
237                 }
238         }
239
240         $tg->index_text(join("\n", @xnq), 1, 'XNQ');
241         $tg->increase_termpos;
242 }
243
244 sub index_body ($$$) {
245         my ($tg, $lines, $doc) = @_;
246         my $txt = join("\n", @$lines);
247         if ($doc) {
248                 # does it look like a diff?
249                 if ($txt =~ /^(?:diff|---|\+\+\+) /ms) {
250                         $txt = undef;
251                         index_diff($tg, $lines, $doc);
252                 } else {
253                         $tg->index_text($txt, 1, 'XNQ');
254                 }
255         } else {
256                 $tg->index_text($txt, 0, 'XQUOT');
257         }
258         $tg->increase_termpos;
259         @$lines = ();
260 }
261
262 sub add_message {
263         # mime = Email::MIME object
264         my ($self, $mime, $bytes, $num, $oid, $mid0) = @_;
265         my $doc_id;
266         my $mids = mids($mime->header_obj);
267         $mid0 = $mids->[0] unless defined $mid0; # v1 compatibility
268         unless (defined $num) { # v1
269                 my $mm = $self->_msgmap_init;
270                 $num = $mm->mid_insert($mid0) || $mm->num_for($mid0);
271         }
272         eval {
273                 my $smsg = PublicInbox::SearchMsg->new($mime);
274                 my $doc = $smsg->{doc};
275                 my $subj = $smsg->subject;
276                 add_val($doc, PublicInbox::Search::TS(), $smsg->ts);
277                 my @ds = gmtime($smsg->ds);
278                 my $yyyymmdd = strftime('%Y%m%d', @ds);
279                 add_val($doc, PublicInbox::Search::YYYYMMDD(), $yyyymmdd);
280                 my $dt = strftime('%Y%m%d%H%M%S', @ds);
281                 add_val($doc, PublicInbox::Search::DT(), $dt);
282
283                 my $tg = $self->term_generator;
284
285                 $tg->set_document($doc);
286                 $tg->index_text($subj, 1, 'S') if $subj;
287                 $tg->increase_termpos;
288
289                 index_users($tg, $smsg);
290
291                 msg_iter($mime, sub {
292                         my ($part, $depth, @idx) = @{$_[0]};
293                         my $ct = $part->content_type || 'text/plain';
294                         my $fn = $part->filename;
295                         if (defined $fn && $fn ne '') {
296                                 $tg->index_text($fn, 1, 'XFN');
297                         }
298
299                         return if $ct =~ m!\btext/x?html\b!i;
300
301                         my $s = eval { $part->body_str };
302                         if ($@) {
303                                 if ($ct =~ m!\btext/plain\b!i) {
304                                         # Try to assume UTF-8 because Alpine
305                                         # seems to do wacky things and set
306                                         # charset=X-UNKNOWN
307                                         $part->charset_set('UTF-8');
308                                         $s = eval { $part->body_str };
309                                         $s = $part->body if $@;
310                                 }
311                         }
312                         defined $s or return;
313
314                         my (@orig, @quot);
315                         my $body = $part->body;
316                         my @lines = split(/\n/, $body);
317                         while (defined(my $l = shift @lines)) {
318                                 if ($l =~ /^>/) {
319                                         index_body($tg, \@orig, $doc) if @orig;
320                                         push @quot, $l;
321                                 } else {
322                                         index_body($tg, \@quot, 0) if @quot;
323                                         push @orig, $l;
324                                 }
325                         }
326                         index_body($tg, \@quot, 0) if @quot;
327                         index_body($tg, \@orig, $doc) if @orig;
328                 });
329
330                 foreach my $mid (@$mids) {
331                         $tg->index_text($mid, 1, 'XM');
332                 }
333                 $smsg->{to} = $smsg->{cc} = '';
334                 my $data = $smsg->to_doc_data($oid, $mid0);
335                 $doc->set_data($data);
336                 if (my $altid = $self->{-altid}) {
337                         foreach my $alt (@$altid) {
338                                 my $pfx = $alt->{xprefix};
339                                 foreach my $mid (@$mids) {
340                                         my $id = $alt->mid2alt($mid);
341                                         next unless defined $id;
342                                         $doc->add_boolean_term($pfx . $id);
343                                 }
344                         }
345                 }
346
347                 if (my $over = $self->{over}) {
348                         $over->add_overview($mime, $bytes, $num, $oid, $mid0);
349                 }
350                 $doc->add_boolean_term('Q' . $_) foreach @$mids;
351                 $self->{xdb}->replace_document($doc_id = $num, $doc);
352         };
353
354         if ($@) {
355                 warn "failed to index message <".join('> <',@$mids).">: $@\n";
356                 return undef;
357         }
358         $doc_id;
359 }
360
361 # returns begin and end PostingIterator
362 sub find_doc_ids {
363         my ($self, $termval) = @_;
364         my $db = $self->{xdb};
365
366         ($db->postlist_begin($termval), $db->postlist_end($termval));
367 }
368
369 sub batch_do {
370         my ($self, $termval, $cb) = @_;
371         my $batch_size = 1000; # don't let @ids grow too large to avoid OOM
372         while (1) {
373                 my ($head, $tail) = $self->find_doc_ids($termval);
374                 return if $head == $tail;
375                 my @ids;
376                 for (; $head != $tail && @ids < $batch_size; $head->inc) {
377                         push @ids, $head->get_docid;
378                 }
379                 $cb->(\@ids);
380         }
381 }
382
383 sub remove_message {
384         my ($self, $mid) = @_;
385         my $db = $self->{xdb};
386         my $called;
387         $mid = mid_clean($mid);
388
389         eval {
390                 batch_do($self, 'Q' . $mid, sub {
391                         my ($ids) = @_;
392                         $db->delete_document($_) for @$ids;
393                         $called = 1;
394                 });
395         };
396         if ($@) {
397                 warn "failed to remove message <$mid>: $@\n";
398         } elsif (!$called) {
399                 warn "cannot remove non-existent <$mid>\n";
400         }
401 }
402
403 # MID is a hint in V2
404 sub remove_by_oid {
405         my ($self, $oid, $mid) = @_;
406         my $db = $self->{xdb};
407
408         $self->{over}->remove_oid($oid, $mid) if $self->{over};
409
410         # XXX careful, we cannot use batch_do here since we conditionally
411         # delete documents based on other factors, so we cannot call
412         # find_doc_ids twice.
413         my ($head, $tail) = $self->find_doc_ids('Q' . $mid);
414         return if $head == $tail;
415
416         # there is only ONE element in @delete unless we
417         # have bugs in our v2writable deduplication check
418         my @delete;
419         for (; $head != $tail; $head->inc) {
420                 my $docid = $head->get_docid;
421                 my $doc = $db->get_document($docid);
422                 my $smsg = PublicInbox::SearchMsg->wrap($doc, $mid);
423                 $smsg->load_expand;
424                 if ($smsg->{blob} eq $oid) {
425                         push(@delete, $docid);
426                 }
427         }
428         $db->delete_document($_) foreach @delete;
429         scalar(@delete);
430 }
431
432 sub term_generator { # write-only
433         my ($self) = @_;
434
435         my $tg = $self->{term_generator};
436         return $tg if $tg;
437
438         $tg = Search::Xapian::TermGenerator->new;
439         $tg->set_stemmer($self->stemmer);
440
441         $self->{term_generator} = $tg;
442 }
443
444 sub index_git_blob_id {
445         my ($doc, $pfx, $objid) = @_;
446
447         my $len = length($objid);
448         for (my $len = length($objid); $len >= 7; ) {
449                 $doc->add_term($pfx.$objid);
450                 $objid = substr($objid, 0, --$len);
451         }
452 }
453
454 sub unindex_blob {
455         my ($self, $mime) = @_;
456         my $mid = eval { mid_clean(mid_mime($mime)) };
457         $self->remove_message($mid) if defined $mid;
458 }
459
460 sub index_mm {
461         my ($self, $mime) = @_;
462         my $mid = mid_clean(mid_mime($mime));
463         my $mm = $self->{mm};
464         my $num = $mm->mid_insert($mid);
465         return $num if defined $num;
466
467         # fallback to num_for since filters like RubyLang set the number
468         $mm->num_for($mid);
469 }
470
471 sub unindex_mm {
472         my ($self, $mime) = @_;
473         $self->{mm}->mid_delete(mid_clean(mid_mime($mime)));
474 }
475
476 sub index_mm2 {
477         my ($self, $mime, $bytes, $blob) = @_;
478         my $num = $self->{mm}->num_for(mid_clean(mid_mime($mime)));
479         add_message($self, $mime, $bytes, $num, $blob);
480 }
481
482 sub unindex_mm2 {
483         my ($self, $mime) = @_;
484         $self->{mm}->mid_delete(mid_clean(mid_mime($mime)));
485         unindex_blob($self, $mime);
486 }
487
488 sub index_both {
489         my ($self, $mime, $bytes, $blob) = @_;
490         my $num = index_mm($self, $mime);
491         add_message($self, $mime, $bytes, $num, $blob);
492 }
493
494 sub unindex_both {
495         my ($self, $mime) = @_;
496         unindex_blob($self, $mime);
497         unindex_mm($self, $mime);
498 }
499
500 sub do_cat_mail {
501         my ($git, $blob, $sizeref) = @_;
502         my $mime = eval {
503                 my $str = $git->cat_file($blob, $sizeref);
504                 # fixup bugs from import:
505                 $$str =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
506                 PublicInbox::MIME->new($str);
507         };
508         $@ ? undef : $mime;
509 }
510
511 sub index_sync {
512         my ($self, $opts) = @_;
513         $self->{-inbox}->with_umask(sub { $self->_index_sync($opts) })
514 }
515
516 sub batch_adjust ($$$$) {
517         my ($max, $bytes, $batch_cb, $latest) = @_;
518         $$max -= $bytes;
519         if ($$max <= 0) {
520                 $$max = BATCH_BYTES;
521                 $batch_cb->($latest, 1);
522         }
523 }
524
525 # only for v1
526 sub rlog {
527         my ($self, $log, $add_cb, $del_cb, $batch_cb) = @_;
528         my $hex = '[a-f0-9]';
529         my $h40 = $hex .'{40}';
530         my $addmsg = qr!^:000000 100644 \S+ ($h40) A\t${hex}{2}/${hex}{38}$!;
531         my $delmsg = qr!^:100644 000000 ($h40) \S+ D\t${hex}{2}/${hex}{38}$!;
532         my $git = $self->{git};
533         my $latest;
534         my $bytes;
535         my $max = BATCH_BYTES;
536         local $/ = "\n";
537         my $line;
538         while (defined($line = <$log>)) {
539                 if ($line =~ /$addmsg/o) {
540                         my $blob = $1;
541                         my $mime = do_cat_mail($git, $blob, \$bytes) or next;
542                         batch_adjust(\$max, $bytes, $batch_cb, $latest);
543                         $add_cb->($self, $mime, $bytes, $blob);
544                 } elsif ($line =~ /$delmsg/o) {
545                         my $blob = $1;
546                         my $mime = do_cat_mail($git, $blob, \$bytes) or next;
547                         batch_adjust(\$max, $bytes, $batch_cb, $latest);
548                         $del_cb->($self, $mime);
549                 } elsif ($line =~ /^commit ($h40)/o) {
550                         $latest = $1;
551                 }
552         }
553         $batch_cb->($latest, 0);
554 }
555
556 sub _msgmap_init {
557         my ($self) = @_;
558         die "BUG: _msgmap_init is only for v1\n" if $self->{version} != 1;
559         $self->{mm} ||= eval {
560                 require PublicInbox::Msgmap;
561                 PublicInbox::Msgmap->new($self->{mainrepo}, 1);
562         };
563 }
564
565 sub _git_log {
566         my ($self, $range) = @_;
567         $self->{git}->popen(qw/log --reverse --no-notes --no-color
568                                 --raw -r --no-abbrev/, $range);
569 }
570
571 # indexes all unindexed messages (v1 only)
572 sub _index_sync {
573         my ($self, $opts) = @_;
574         my $tip = $opts->{ref} || 'HEAD';
575         my $reindex = $opts->{reindex};
576         my ($mkey, $last_commit, $lx, $xlog);
577         $self->{git}->batch_prepare;
578         my $xdb = $self->begin_txn_lazy;
579         do {
580                 $xlog = undef;
581                 $mkey = 'last_commit';
582                 $last_commit = $xdb->get_metadata('last_commit');
583                 $lx = $last_commit;
584                 if ($reindex) {
585                         $lx = '';
586                         $mkey = undef if $last_commit ne '';
587                 }
588                 $self->{over}->rollback_lazy;
589                 $self->{over}->disconnect;
590                 delete $self->{txn};
591                 $xdb->cancel_transaction;
592                 $xdb = _xdb_release($self);
593
594                 # ensure we leak no FDs to "git log"
595                 my $range = $lx eq '' ? $tip : "$lx..$tip";
596                 $xlog = _git_log($self, $range);
597
598                 $xdb = $self->begin_txn_lazy;
599         } while ($xdb->get_metadata('last_commit') ne $last_commit);
600
601         my $mm = _msgmap_init($self);
602         my $dbh = $mm->{dbh} if $mm;
603         my $mm_only;
604         my $cb = sub {
605                 my ($commit, $more) = @_;
606                 if ($dbh) {
607                         $mm->last_commit($commit) if $commit;
608                         $dbh->commit;
609                 }
610                 if (!$mm_only) {
611                         $xdb->set_metadata($mkey, $commit) if $mkey && $commit;
612                         $self->commit_txn_lazy;
613                 }
614                 # let another process do some work... <
615                 if ($more) {
616                         if (!$mm_only) {
617                                 $xdb = $self->begin_txn_lazy;
618                         }
619                         $dbh->begin_work if $dbh;
620                 }
621         };
622
623         if ($mm) {
624                 $dbh->begin_work;
625                 my $lm = $mm->last_commit || '';
626                 if ($lm eq $lx) {
627                         # Common case is the indexes are synced,
628                         # we only need to run git-log once:
629                         rlog($self, $xlog, *index_both, *unindex_both, $cb);
630                 } else {
631                         # Uncommon case, msgmap and xapian are out-of-sync
632                         # do not care for performance (but git is fast :>)
633                         # This happens if we have to reindex Xapian since
634                         # msgmap is a frozen format and our Xapian format
635                         # is evolving.
636                         my $r = $lm eq '' ? $tip : "$lm..$tip";
637
638                         # first, ensure msgmap is up-to-date:
639                         my $mkey_prev = $mkey;
640                         $mkey = undef; # ignore xapian, for now
641                         my $mlog = _git_log($self, $r);
642                         $mm_only = 1;
643                         rlog($self, $mlog, *index_mm, *unindex_mm, $cb);
644                         $mm_only = $mlog = undef;
645
646                         # now deal with Xapian
647                         $mkey = $mkey_prev;
648                         $dbh = undef;
649                         rlog($self, $xlog, *index_mm2, *unindex_mm2, $cb);
650                 }
651         } else {
652                 # user didn't install DBD::SQLite and DBI
653                 rlog($self, $xlog, *add_message, *unindex_blob, $cb);
654         }
655 }
656
657 sub DESTROY {
658         # order matters for unlocking
659         $_[0]->{xdb} = undef;
660         $_[0]->{lockfh} = undef;
661 }
662
663 # remote_* subs are only used by SearchIdxPart
664 sub remote_commit {
665         my ($self) = @_;
666         if (my $w = $self->{w}) {
667                 print $w "commit\n" or die "failed to write commit: $!";
668         } else {
669                 $self->commit_txn_lazy;
670         }
671 }
672
673 sub remote_close {
674         my ($self) = @_;
675         if (my $w = delete $self->{w}) {
676                 my $pid = delete $self->{pid} or die "no process to wait on\n";
677                 print $w "close\n" or die "failed to write to pid:$pid: $!\n";
678                 close $w or die "failed to close pipe for pid:$pid: $!\n";
679                 waitpid($pid, 0) == $pid or die "remote process did not finish";
680                 $? == 0 or die ref($self)." pid:$pid exited with: $?";
681         } else {
682                 die "transaction in progress $self\n" if $self->{txn};
683                 $self->_xdb_release if $self->{xdb};
684         }
685 }
686
687 sub remote_remove {
688         my ($self, $oid, $mid) = @_;
689         if (my $w = $self->{w}) {
690                 # triggers remove_by_oid in a partition
691                 print $w "D $oid $mid\n" or die "failed to write remove $!";
692         } else {
693                 $self->begin_txn_lazy;
694                 $self->remove_by_oid($oid, $mid);
695         }
696 }
697
698 sub begin_txn_lazy {
699         my ($self) = @_;
700         return if $self->{txn};
701         my $xdb = $self->{xdb} || $self->_xdb_acquire;
702         $self->{over}->begin_lazy if $self->{over};
703         $xdb->begin_transaction;
704         $self->{txn} = 1;
705         $xdb;
706 }
707
708 sub commit_txn_lazy {
709         my ($self) = @_;
710         delete $self->{txn} or return;
711         $self->{xdb}->commit_transaction;
712         $self->{over}->commit_lazy if $self->{over};
713 }
714
715 sub worker_done {
716         my ($self) = @_;
717         die "$$ $0 xdb not released\n" if $self->{xdb};
718         die "$$ $0 still in transaction\n" if $self->{txn};
719 }
720
721 1;