]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/LeiXSearch.pm
ipc: get rid of wq_set_recv_modes
[public-inbox.git] / lib / PublicInbox / LeiXSearch.pm
index 45a073a06289d3c103e6e3f6f2fe7859b0c8958f..c396c59734589b0b21bd4932da7a4688d9d3c750 100644 (file)
@@ -13,6 +13,8 @@ use PublicInbox::OpPipe;
 use PublicInbox::Import;
 use File::Temp 0.19 (); # 0.19 for ->newdir
 use File::Spec ();
+use PublicInbox::Search qw(xap_terms);
+use PublicInbox::Spawn qw(popen_rd);
 
 sub new {
        my ($class) = @_;
@@ -25,10 +27,6 @@ sub new {
 
 sub attach_external {
        my ($self, $ibxish) = @_; # ibxish = ExtSearch or Inbox
-
-       if (!$ibxish->can('over') || !$ibxish->over) {
-               return push(@{$self->{remotes}}, $ibxish)
-       }
        my $desc = $ibxish->{inboxdir} // $ibxish->{topdir};
        my $srch = $ibxish->search or
                return warn("$desc not indexed for Xapian\n");
@@ -58,10 +56,9 @@ sub attach_external {
 }
 
 # returns a list of local inboxes (or count in scalar context)
-sub locals {
-       my %uniq = map {; "$_" => $_ } @{$_[0]->{shard2ibx} // []};
-       values %uniq;
-}
+sub locals { @{$_[0]->{locals} // []} }
+
+sub remotes { @{$_[0]->{remotes} // []} }
 
 # called by PublicInbox::Search::xdb
 sub xdb_shards_flat { @{$_[0]->{shards_flat} // []} }
@@ -74,7 +71,12 @@ sub smsg_for {
        my $docid = $mitem->get_docid;
        my $shard = ($docid - 1) % $nshard;
        my $num = int(($docid - 1) / $nshard) + 1;
-       my $smsg = $self->{shard2ibx}->[$shard]->over->get_art($num);
+       my $ibx = $self->{shard2ibx}->[$shard];
+       my $smsg = $ibx->over->get_art($num);
+       if (ref($ibx->can('msg_keywords'))) {
+               my $kw = xap_terms('K', $mitem->get_document);
+               $smsg->{kw} = [ sort keys %$kw ];
+       }
        $smsg->{docid} = $docid;
        $smsg;
 }
@@ -104,6 +106,7 @@ sub wait_startq ($) {
 
 sub query_thread_mset { # for --thread
        my ($self, $lei, $ibxish) = @_;
+       local $0 = "$0 query_thread_mset";
        my $startq = delete $self->{5};
        my %sig = $lei->atfork_child_wq($self);
        local @SIG{keys %sig} = values %sig;
@@ -141,29 +144,101 @@ sub query_thread_mset { # for --thread
 }
 
 sub query_mset { # non-parallel for non-"--thread" users
-       my ($self, $lei, $srcs) = @_;
+       my ($self, $lei) = @_;
+       local $0 = "$0 query_mset";
        my $startq = delete $self->{5};
        my %sig = $lei->atfork_child_wq($self);
        local @SIG{keys %sig} = values %sig;
        my $mo = { %{$lei->{mset_opt}} };
        my $mset;
-       $self->attach_external($_) for @$srcs;
+       for my $loc (locals($self)) {
+               attach_external($self, $loc);
+       }
        my $each_smsg = $lei->{ovv}->ovv_each_smsg_cb($lei, $self);
        my $dedupe = $lei->{dedupe} // die 'BUG: {dedupe} missing';
        $dedupe->prepare_dedupe;
        do {
                $mset = $self->mset($mo->{qstr}, $mo);
-               for my $it ($mset->items) {
-                       my $smsg = smsg_for($self, $it) or next;
+               for my $mitem ($mset->items) {
+                       my $smsg = smsg_for($self, $mitem) or next;
                        wait_startq($startq) if $startq;
                        next if $dedupe->is_smsg_dup($smsg);
-                       $each_smsg->($smsg, $it);
+                       $each_smsg->($smsg, $mitem);
                }
        } while (_mset_more($mset, $mo));
        undef $each_smsg; # drops @io for l2m->{each_smsg_done}
        $lei->{ovv}->ovv_atexit_child($lei);
 }
 
+sub each_eml { # callback for MboxReader->mboxrd
+       my ($eml, $self, $lei, $each_smsg) = @_;
+       my $smsg = bless {}, 'PublicInbox::Smsg';
+       $smsg->populate($eml);
+       $smsg->{$_} //= '' for qw(from to cc ds subject references mid);
+       delete @$smsg{qw(From Subject -ds -ts)};
+       if (my $startq = delete($self->{5})) { wait_startq($startq) }
+       return if !$lei->{l2m} && $lei->{dedupe}->is_smsg_dup($smsg);
+       $each_smsg->($smsg, undef, $eml);
+}
+
+sub query_remote_mboxrd {
+       my ($self, $lei, $uris) = @_;
+       local $0 = "$0 query_remote_mboxrd";
+       my %sig = $lei->atfork_child_wq($self); # keep $self->{5} startq
+       local @SIG{keys %sig} = values %sig;
+       my ($opt, $env) = @$lei{qw(opt env)};
+       my @qform = (q => $lei->{mset_opt}->{qstr}, x => 'm');
+       push(@qform, t => 1) if $opt->{thread};
+       my $dedupe = $lei->{dedupe} // die 'BUG: {dedupe} missing';
+       $dedupe->prepare_dedupe;
+       my @cmd = qw(curl -XPOST -sSf);
+       my $verbose = $opt->{verbose};
+       push @cmd, '-v' if $verbose;
+       for my $o ($lei->curl_opt) {
+               $o =~ s/\|[a-z0-9]\b//i; # remove single char short option
+               if ($o =~ s/=[is]@\z//) {
+                       my $ary = $opt->{$o} or next;
+                       push @cmd, map { ("--$o", $_) } @$ary;
+               } elsif ($o =~ s/=[is]\z//) {
+                       my $val = $opt->{$o} // next;
+                       push @cmd, "--$o", $val;
+               } elsif ($opt->{$o}) {
+                       push @cmd, "--$o";
+               }
+       }
+       $opt->{torsocks} = 'false' if $opt->{'no-torsocks'};
+       my $tor = $opt->{torsocks} //= 'auto';
+       for my $uri (@$uris) {
+               $uri->query_form(@qform);
+               my $each_smsg = $lei->{ovv}->ovv_each_smsg_cb($lei, $uri);
+               my $cmd = [ @cmd, $uri->as_string ];
+               if ($tor eq 'auto' && substr($uri->host, -6) eq '.onion' &&
+                               (($env->{LD_PRELOAD}//'') !~ /torsocks/)) {
+                       unshift @$cmd, 'torsocks';
+               } elsif (PublicInbox::Config::git_bool($tor)) {
+                       unshift @$cmd, 'torsocks';
+               }
+               $lei->err("# @$cmd") if $verbose;
+               $? = 0;
+               my $fh = popen_rd($cmd, $env, { 2 => $lei->{2} });
+               $fh = IO::Uncompress::Gunzip->new($fh);
+               eval {
+                       PublicInbox::MboxReader->mboxrd($fh, \&each_eml, $self,
+                                                       $lei, $each_smsg);
+               };
+               return $lei->fail("E: @$cmd: $@") if $@;
+               if (($? >> 8) == 22) { # HTTP 404 from curl(1)
+                       $uri->query_form(q => $lei->{mset_opt}->{qstr});
+                       $lei->err('# no results from '.$uri->as_string);
+               } elsif ($?) {
+                       $uri->query_form(q => $lei->{mset_opt}->{qstr});
+                       $lei->err('E: '.$uri->as_string);
+                       $lei->child_error($?);
+               }
+       }
+       $lei->{ovv}->ovv_atexit_child($lei);
+}
+
 sub git {
        my ($self) = @_;
        my (%seen, @dirs);
@@ -184,106 +259,160 @@ sub git {
 }
 
 sub query_done { # EOF callback
-       my ($self, $lei) = @_;
-       my $l2m = delete $lei->{l2m};
-       if (my $pids = delete $self->{l2m_pids}) {
-               my $ipc_worker_reap = $self->can('ipc_worker_reap');
-               dwaitpid($_, $ipc_worker_reap, $l2m) for @$pids;
+       my ($lei) = @_;
+       my $has_l2m = exists $lei->{l2m};
+       for my $f (qw(lxs l2m)) {
+               my $wq = delete $lei->{$f} or next;
+               $wq->wq_wait_old;
        }
        $lei->{ovv}->ovv_end($lei);
-       $lei->start_mua if $l2m && !$l2m->lock_free;
+       if ($has_l2m) { # close() calls LeiToMail reap_compress
+               if (my $out = delete $lei->{old_1}) {
+                       if (my $mbout = $lei->{1}) {
+                               close($mbout) or return $lei->fail(<<"");
+Error closing $lei->{ovv}->{dst}: $!
+
+                       }
+                       $lei->{1} = $out;
+               }
+               $lei->start_mua;
+       }
        $lei->dclose;
 }
 
-sub start_query { # always runs in main (lei-daemon) process
-       my ($self, $io, $lei, $srcs) = @_;
-       if (my $l2m = $lei->{l2m}) {
-               $lei->{1} = $io->[1];
-               $l2m->post_augment($lei);
-               $io->[1] = delete $lei->{1};
-               $lei->start_mua($io->[3]) if $l2m->lock_free;
+sub do_post_augment {
+       my ($lei, $zpipe, $au_done) = @_;
+       my $l2m = $lei->{l2m} or die 'BUG: no {l2m}';
+       eval { $l2m->post_augment($lei, $zpipe) };
+       if (my $err = $@) {
+               if (my $lxs = delete $lei->{lxs}) {
+                       $lxs->wq_kill;
+                       $lxs->wq_close;
+               }
+               $lei->fail("$err");
        }
-       my $remotes = $self->{remotes} // [];
+       close $au_done; # triggers wait_startq
+}
+
+my $MAX_PER_HOST = 4;
+sub MAX_PER_HOST { $MAX_PER_HOST }
+
+sub concurrency {
+       my ($self, $opt) = @_;
+       my $nl = $opt->{thread} ? locals($self) : 1;
+       my $nr = remotes($self);
+       $nr = $MAX_PER_HOST if $nr > $MAX_PER_HOST;
+       $nl + $nr;
+}
+
+sub start_query { # always runs in main (lei-daemon) process
+       my ($self, $io, $lei) = @_;
        if ($lei->{opt}->{thread}) {
-               for my $ibxish (@$srcs) {
+               for my $ibxish (locals($self)) {
                        $self->wq_do('query_thread_mset', $io, $lei, $ibxish);
                }
        } else {
-               $self->wq_do('query_mset', $io, $lei, $srcs);
+               $self->wq_do('query_mset', $io, $lei);
        }
-       # TODO
-       for my $rmt (@$remotes) {
-               $self->wq_do('query_thread_mbox', $io, $lei, $rmt);
+       my $i = 0;
+       my $q = [];
+       for my $uri (remotes($self)) {
+               push @{$q->[$i++ % $MAX_PER_HOST]}, $uri;
+       }
+       for my $uris (@$q) {
+               $self->wq_do('query_remote_mboxrd', $io, $lei, $uris);
        }
-       close $io->[0]; # qry_status_wr
        @$io = ();
 }
 
 sub query_prepare { # called by wq_do
        my ($self, $lei) = @_;
+       local $0 = "$0 query_prepare";
        my %sig = $lei->atfork_child_wq($self);
+       -p $lei->{0} or die "BUG: \$done pipe expected";
        local @SIG{keys %sig} = values %sig;
        eval { $lei->{l2m}->do_augment($lei) };
        $lei->fail($@) if $@;
+       syswrite($lei->{0}, '.') == 1 or die "do_post_augment trigger: $!";
 }
 
-sub sigpipe_handler {
-       my ($self, $lei_orig, $pids) = @_;
-       if ($pids) { # one-shot (no event loop)
-               kill 'TERM', @$pids;
+sub sigpipe_handler { # handles SIGPIPE from l2m/lxs workers
+       my ($lei) = @_;
+       my $lxs = delete $lei->{lxs};
+       if ($lxs && $lxs->wq_kill_old) {
                kill 'PIPE', $$;
-       } else {
-               $self->wq_kill;
-               $self->wq_close;
+               $lxs->wq_wait_old;
        }
-       close(delete $lei_orig->{1}) if $lei_orig->{1};
+       close(delete $lei->{1}) if $lei->{1};
 }
 
 sub do_query {
-       my ($self, $lei_orig, $srcs) = @_;
+       my ($self, $lei_orig) = @_;
        my ($lei, @io) = $lei_orig->atfork_parent_wq($self);
        $io[0] = undef;
        pipe(my $done, $io[0]) or die "pipe $!";
+       $lei_orig->{1}->autoflush(1);
 
        $lei_orig->event_step_init; # wait for shutdowns
        my $done_op = {
-               '' => [ \&query_done, $self, $lei_orig ],
-               '!' => [ \&sigpipe_handler, $self, $lei_orig ]
+               '' => [ \&query_done, $lei_orig ],
+               '!' => [ \&sigpipe_handler, $lei_orig ]
        };
        my $in_loop = exists $lei_orig->{sock};
        $done = PublicInbox::OpPipe->new($done, $done_op, $in_loop);
        my $l2m = $lei->{l2m};
        if ($l2m) {
-               $l2m->pre_augment($lei_orig); # may redirect $lei->{1} for mbox
+               # may redirect $lei->{1} for mbox
+               my $zpipe = $l2m->pre_augment($lei_orig);
                $io[1] = $lei_orig->{1};
-               my @l2m_io = (undef, @io[1..$#io]);
-               pipe(my $startq, $l2m_io[0]) or die "pipe: $!";
-               $self->wq_do('query_prepare', \@l2m_io, $lei);
-               $io[4] = *STDERR{GLOB}; # don't send l2m->{-wq_s1}
+               pipe(my ($startq, $au_done)) or die "pipe: $!";
+               $done_op->{'.'} = [ \&do_post_augment, $lei_orig,
+                                       $zpipe, $au_done ];
+               local $io[4] = *STDERR{GLOB}; # don't send l2m->{-wq_s1}
                die "BUG: unexpected \$io[5]: $io[5]" if $io[5];
+               $self->wq_do('query_prepare', \@io, $lei);
                fcntl($startq, 1031, 4096) if $^O eq 'linux'; # F_SETPIPE_SZ
                $io[5] = $startq;
+               $io[1] = $zpipe->[1] if $zpipe;
        }
-       start_query($self, \@io, $lei, $srcs);
+       start_query($self, \@io, $lei);
+       $self->wq_close(1);
        unless ($in_loop) {
-               my @pids = $self->wq_close;
                # for the $lei->atfork_child_wq PIPE handler:
-               $done_op->{'!'}->[3] = \@pids;
-               $done->event_step;
-               my $ipc_worker_reap = $self->can('ipc_worker_reap');
-               if (my $l2m_pids = delete $self->{l2m_pids}) {
-                       dwaitpid($_, $ipc_worker_reap, $l2m) for @$l2m_pids;
-               }
-               dwaitpid($_, $ipc_worker_reap, $self) for @pids;
+               while ($done->{sock}) { $done->event_step }
        }
 }
 
 sub ipc_atfork_prepare {
        my ($self) = @_;
-       # (0: qry_status_wr, 1: stdout|mbox, 2: stderr,
-       #  3: sock, 4: $l2m->{-wq_s1}, 5: $startq)
-       $self->wq_set_recv_modes(qw[+<&= >&= >&= +<&= +<&= <&=]);
+       if (exists $self->{remotes}) {
+               require PublicInbox::MboxReader;
+               require IO::Uncompress::Gunzip;
+       }
+       # FDS: (0: done_wr, 1: stdout|mbox, 2: stderr,
+       #       3: sock, 4: $l2m->{-wq_s1}, 5: $startq)
        $self->SUPER::ipc_atfork_prepare; # PublicInbox::IPC
 }
 
+sub prepare_external {
+       my ($self, $loc, $boost) = @_; # n.b. already ordered by boost
+       if (ref $loc) { # already a URI, or PublicInbox::Inbox-like object
+               return push(@{$self->{remotes}}, $loc) if $loc->can('scheme');
+       } elsif ($loc =~ m!\Ahttps?://!) {
+               require URI;
+               return push(@{$self->{remotes}}, URI->new($loc));
+       } elsif (-f "$loc/ei.lock") {
+               require PublicInbox::ExtSearch;
+               $loc = PublicInbox::ExtSearch->new($loc);
+       } elsif (-f "$loc/inbox.lock" || -d "$loc/public-inbox") {
+               require PublicInbox::Inbox; # v2, v1
+               $loc = bless { inboxdir => $loc }, 'PublicInbox::Inbox';
+       } else {
+               warn "W: ignoring $loc, unable to determine type\n";
+               return;
+       }
+       push @{$self->{locals}}, $loc;
+}
+
+
 1;