]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/SearchIdx.pm
rename SearchIdxThread to SearchIdxSkeleton
[public-inbox.git] / lib / PublicInbox / SearchIdx.pm
index fa5057fd6851b5f668ead4b84b5b0ff46f8c0325..3259413789a1b4e3da5099fdf0e6a5146f209e5d 100644 (file)
@@ -11,8 +11,6 @@ use strict;
 use warnings;
 use Fcntl qw(:flock :DEFAULT);
 use PublicInbox::MIME;
-use Email::MIME::ContentType;
-$Email::MIME::ContentType::STRICT_PARAMS = 0;
 use base qw(PublicInbox::Search);
 use PublicInbox::MID qw/mid_clean id_compress mid_mime/;
 use PublicInbox::MsgIter;
@@ -51,26 +49,46 @@ sub git_unquote ($) {
 }
 
 sub new {
-       my ($class, $inbox, $creat) = @_;
-       my $git_dir = $inbox;
-       my $altid;
-       if (ref $inbox) {
-               $git_dir = $inbox->{mainrepo};
-               $altid = $inbox->{altid};
+       my ($class, $ibx, $creat, $part) = @_;
+       my $mainrepo = $ibx; # for "public-inbox-index" w/o entry in config
+       my $git_dir = $mainrepo;
+       my ($altid, $git);
+       my $version = 1;
+       if (ref $ibx) {
+               $mainrepo = $ibx->{mainrepo};
+               $altid = $ibx->{altid};
+               $version = $ibx->{version} || 1;
                if ($altid) {
                        require PublicInbox::AltId;
                        $altid = [ map {
-                               PublicInbox::AltId->new($inbox, $_);
+                               PublicInbox::AltId->new($ibx, $_);
                        } @$altid ];
                }
+               $git = $ibx->git;
+       } else {
+               $git = PublicInbox::Git->new($git_dir); # v1 only
        }
        require Search::Xapian::WritableDatabase;
-       my $self = bless { git_dir => $git_dir, -altid => $altid }, $class;
+       my $self = bless {
+               mainrepo => $mainrepo,
+               git => $git,
+               -altid => $altid,
+               version => $version,
+       }, $class;
        my $perm = $self->_git_config_perm;
        my $umask = _umask_for($perm);
        $self->{umask} = $umask;
-       $self->{lock_path} = "$git_dir/ssoma.lock";
-       $self->{git} = PublicInbox::Git->new($git_dir);
+       if ($version == 1) {
+               $self->{lock_path} = "$mainrepo/ssoma.lock";
+       } elsif ($version == 2) {
+               defined $part or die "partition is required for v2\n";
+               # partition is a number or "all"
+               $self->{partition} = $part;
+               $self->{lock_path} = undef;
+               $self->{msgmap_path} = "$mainrepo/msgmap.sqlite3";
+       } else {
+               die "unsupported inbox version=$version\n";
+       }
        $self->{creat} = ($creat || 0) == 1;
        $self;
 }
@@ -86,7 +104,7 @@ sub _xdb_release {
 sub _xdb_acquire {
        my ($self) = @_;
        croak 'already acquired' if $self->{xdb};
-       my $dir = PublicInbox::Search->xdir($self->{git_dir});
+       my $dir = $self->xdir;
        my $flag = Search::Xapian::DB_OPEN;
        if ($self->{creat}) {
                require File::Path;
@@ -102,14 +120,16 @@ sub _xdb_acquire {
 sub _lock_acquire {
        my ($self) = @_;
        croak 'already locked' if $self->{lockfh};
-       sysopen(my $lockfh, $self->{lock_path}, O_WRONLY|O_CREAT) or
-               die "failed to open lock $self->{lock_path}: $!\n";
+       my $lock_path = $self->{lock_path} or return;
+       sysopen(my $lockfh, $lock_path, O_WRONLY|O_CREAT) or
+               die "failed to open lock $lock_path: $!\n";
        flock($lockfh, LOCK_EX) or die "lock failed: $!\n";
        $self->{lockfh} = $lockfh;
 }
 
 sub _lock_release {
        my ($self) = @_;
+       return unless $self->{lock_path};
        my $lockfh = delete $self->{lockfh} or croak 'not locked';
        flock($lockfh, LOCK_UN) or die "unlock failed: $!\n";
        close $lockfh or die "close failed: $!\n";
@@ -121,19 +141,20 @@ sub add_val ($$$) {
        $doc->add_value($col, $num);
 }
 
-sub add_values ($$$) {
-       my ($smsg, $bytes, $num) = @_;
+sub add_values ($$) {
+       my ($doc, $values) = @_;
 
-       my $ts = $smsg->ts;
-       my $doc = $smsg->{doc};
-       add_val($doc, &PublicInbox::Search::TS, $ts);
+       my $ts = $values->[PublicInbox::Search::TS];
+       add_val($doc, PublicInbox::Search::TS, $ts);
 
-       defined($num) and add_val($doc, &PublicInbox::Search::NUM, $num);
+       my $num = $values->[PublicInbox::Search::NUM];
+       defined($num) and add_val($doc, PublicInbox::Search::NUM, $num);
 
-       defined($bytes) and add_val($doc, &PublicInbox::Search::BYTES, $bytes);
+       my $bytes = $values->[PublicInbox::Search::BYTES];
+       defined($bytes) and add_val($doc, PublicInbox::Search::BYTES, $bytes);
 
-       add_val($doc, &PublicInbox::Search::LINES,
-                       $smsg->{mime}->body_raw =~ tr!\n!\n!);
+       my $lines = $values->[PublicInbox::Search::LINES];
+       add_val($doc, PublicInbox::Search::LINES, $lines);
 
        my $yyyymmdd = strftime('%Y%m%d', gmtime($ts));
        add_val($doc, PublicInbox::Search::YYYYMMDD, $yyyymmdd);
@@ -264,6 +285,7 @@ sub add_message {
 
        my ($doc_id, $old_tid);
        my $mid = mid_clean(mid_mime($mime));
+       my $skel = $self->{skeleton};
 
        eval {
                die 'Message-ID too long' if length($mid) > MAX_MID_SIZE;
@@ -272,19 +294,23 @@ sub add_message {
                        # convert a ghost to a regular message
                        # it will also clobber any existing regular message
                        $doc_id = $smsg->{doc_id};
-                       $old_tid = $smsg->thread_id;
+                       $old_tid = $smsg->thread_id unless $skel;
                }
                $smsg = PublicInbox::SearchMsg->new($mime);
                my $doc = $smsg->{doc};
                $doc->add_term('XMID' . $mid);
 
                my $subj = $smsg->subject;
+               my $xpath;
                if ($subj ne '') {
-                       my $path = $self->subject_path($subj);
-                       $doc->add_term('XPATH' . id_compress($path));
+                       $xpath = $self->subject_path($subj);
+                       $xpath = id_compress($xpath);
+                       $doc->add_term('XPATH' . $xpath);
                }
 
-               add_values($smsg, $bytes, $num);
+               my $lines = $mime->body_raw =~ tr!\n!\n!;
+               my @values = ($smsg->ts, $num, $bytes, $lines);
+               add_values($doc, \@values);
 
                my $tg = $self->term_generator;
 
@@ -333,9 +359,17 @@ sub add_message {
                        index_body($tg, \@orig, $doc) if @orig;
                });
 
-               link_message($self, $smsg, $old_tid);
+               # populates smsg->references for smsg->to_doc_data
+               my $refs = parse_references($smsg);
+               my $data = $smsg->to_doc_data($blob);
+               if ($skel) {
+                       push @values, $mid, $xpath, $data;
+                       $skel->index_skeleton(\@values);
+               } else {
+                       link_message($self, $smsg, $refs, $old_tid);
+               }
                $tg->index_text($mid, 1, 'XM');
-               $doc->set_data($smsg->to_doc_data($blob));
+               $doc->set_data($data);
 
                if (my $altid = $self->{-altid}) {
                        foreach my $alt (@$altid) {
@@ -366,12 +400,14 @@ sub remove_message {
        $mid = mid_clean($mid);
 
        eval {
-               $doc_id = $self->find_unique_doc_id('XMID' . $mid);
-               if (defined $doc_id) {
-                       $db->delete_document($doc_id);
-               } else {
+               my ($head, $tail) = $self->find_doc_ids('XMID' . $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);
+               }
        };
 
        if ($@) {
@@ -405,8 +441,8 @@ sub next_thread_id {
        $last_thread_id;
 }
 
-sub link_message {
-       my ($self, $smsg, $old_tid) = @_;
+sub parse_references ($) {
+       my ($smsg) = @_;
        my $doc = $smsg->{doc};
        my $mid = $smsg->mid;
        my $mime = $smsg->{mime};
@@ -417,7 +453,6 @@ sub link_message {
        my @refs = (($hdr->header_raw('References') || '') =~ /<([^>]+)>/g);
        push(@refs, (($hdr->header_raw('In-Reply-To') || '') =~ /<([^>]+)>/g));
 
-       my $tid;
        if (@refs) {
                my %uniq = ($mid => 1);
                my @orig_refs = @refs;
@@ -433,30 +468,31 @@ sub link_message {
                        push @refs, $ref;
                }
        }
+       $smsg->{references} = '<'.join('> <', @refs).'>' if @refs;
+       \@refs
+}
 
-       if (@refs) {
-               $smsg->{references} = '<'.join('> <', @refs).'>';
+sub link_message {
+       my ($self, $smsg, $refs, $old_tid) = @_;
+       my $tid;
+
+       if (@$refs) {
 
                # first ref *should* be the thread root,
                # but we can never trust clients to do the right thing
-               my $ref = shift @refs;
+               my $ref = shift @$refs;
                $tid = $self->_resolve_mid_to_tid($ref);
                $self->merge_threads($tid, $old_tid) if defined $old_tid;
 
                # the rest of the refs should point to this tid:
-               foreach $ref (@refs) {
+               foreach $ref (@$refs) {
                        my $ptid = $self->_resolve_mid_to_tid($ref);
                        merge_threads($self, $tid, $ptid);
                }
        } else {
                $tid = defined $old_tid ? $old_tid : $self->next_thread_id;
        }
-       $doc->add_term('G' . $tid);
-}
-
-sub index_blob {
-       my ($self, $mime, $bytes, $num, $blob) = @_;
-       $self->add_message($mime, $bytes, $num, $blob);
+       $smsg->{doc}->add_term('G' . $tid);
 }
 
 sub index_git_blob_id {
@@ -476,13 +512,15 @@ sub unindex_blob {
 }
 
 sub index_mm {
-       my ($self, $mime) = @_;
+       my ($self, $mime, $warn_existing) = @_;
        my $mid = mid_clean(mid_mime($mime));
        my $mm = $self->{mm};
        my $num = $mm->mid_insert($mid);
+       return $num if defined $num;
 
+       warn "<$mid> reused\n" if $warn_existing;
        # fallback to num_for since filters like RubyLang set the number
-       defined $num ? $num : $mm->num_for($mid);
+       $mm->num_for($mid);
 }
 
 sub unindex_mm {
@@ -493,7 +531,7 @@ sub unindex_mm {
 sub index_mm2 {
        my ($self, $mime, $bytes, $blob) = @_;
        my $num = $self->{mm}->num_for(mid_clean(mid_mime($mime)));
-       index_blob($self, $mime, $bytes, $num, $blob);
+       add_message($self, $mime, $bytes, $num, $blob);
 }
 
 sub unindex_mm2 {
@@ -505,7 +543,7 @@ sub unindex_mm2 {
 sub index_both {
        my ($self, $mime, $bytes, $blob) = @_;
        my $num = index_mm($self, $mime);
-       index_blob($self, $mime, $bytes, $num, $blob);
+       add_message($self, $mime, $bytes, $num, $blob);
 }
 
 sub unindex_both {
@@ -539,6 +577,7 @@ sub batch_adjust ($$$$) {
        }
 }
 
+# only for v1
 sub rlog {
        my ($self, $log, $add_cb, $del_cb, $batch_cb) = @_;
        my $hex = '[a-f0-9]';
@@ -571,9 +610,14 @@ sub rlog {
 
 sub _msgmap_init {
        my ($self) = @_;
-       $self->{mm} = eval {
+       $self->{mm} ||= eval {
                require PublicInbox::Msgmap;
-               PublicInbox::Msgmap->new($self->{git_dir}, 1);
+               my $msgmap_path = $self->{msgmap_path};
+               if (defined $msgmap_path) { # v2
+                       PublicInbox::Msgmap->new_file($msgmap_path, 1);
+               } else {
+                       PublicInbox::Msgmap->new($self->{mainrepo}, 1);
+               }
        };
 }
 
@@ -666,7 +710,7 @@ sub _index_sync {
                }
        } else {
                # user didn't install DBD::SQLite and DBI
-               rlog($self, $xlog, *index_blob, *unindex_blob, $cb);
+               rlog($self, $xlog, *add_message, *unindex_blob, $cb);
        }
 }
 
@@ -710,8 +754,11 @@ sub merge_threads {
 
 sub _read_git_config_perm {
        my ($self) = @_;
-       my @cmd = qw(config core.sharedRepository);
-       my $fh = PublicInbox::Git->new($self->{git_dir})->popen(@cmd);
+       my @cmd = qw(config);
+       if ($self->{version} == 2) {
+               push @cmd, "--file=$self->{mainrepo}/inbox-config";
+       }
+       my $fh = $self->{git}->popen(@cmd, 'core.sharedRepository');
        local $/ = "\n";
        my $perm = <$fh>;
        chomp $perm if defined $perm;
@@ -770,4 +817,20 @@ sub DESTROY {
        $_[0]->{lockfh} = undef;
 }
 
+# remote_* subs are only used by SearchIdxPart and SearchIdxSkeleton
+sub remote_commit {
+       my ($self) = @_;
+       print { $self->{w} } "commit\n" or die "failed to write commit: $!";
+}
+
+sub remote_close {
+       my ($self) = @_;
+       my $pid = delete $self->{pid} or die "no process to wait on\n";
+       my $w = delete $self->{w} or die "no pipe to write to\n";
+       print $w "close\n" or die "failed to write to pid:$pid: $!\n";
+       close $w or die "failed to close pipe for pid:$pid: $!\n";
+       waitpid($pid, 0) == $pid or die "remote process did not finish";
+       $? == 0 or die ref($self)." exited with: $?";
+}
+
 1;