]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/LeiQuery.pm
lei_to_mail: limit workers for text, reply and v2 outputs
[public-inbox.git] / lib / PublicInbox / LeiQuery.pm
index d14da1bc4f17c0ea2241d7a6ca75ec8774509172..352ee60131aaf6bc9baabfbd4ae735c4a0f06568 100644 (file)
 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
-# handles lei <q|ls-query|rm-query|mv-query> commands
+# handles "lei q" command and provides internals for
+# several other sub-commands (up, lcat, ...)
 package PublicInbox::LeiQuery;
 use strict;
 use v5.10.1;
-use PublicInbox::MID qw($MID_EXTRACT);
-use POSIX qw(strftime);
-use PublicInbox::Address qw(pairs);
-use PublicInbox::Search qw(get_pct);
 
-sub _iso8601 ($) { strftime('%Y-%m-%dT%H:%M:%SZ', gmtime($_[0])) }
+sub prep_ext { # externals_each callback
+       my ($lxs, $exclude, $loc) = @_;
+       $lxs->prepare_external($loc) unless $exclude->{$loc};
+}
+
+sub _start_query { # used by "lei q" and "lei up"
+       my ($self) = @_;
+       require PublicInbox::LeiOverview;
+       PublicInbox::LeiOverview->new($self) or return;
+       my $opt = $self->{opt};
+       my ($xj, $mj) = split(/,/, $opt->{jobs} // '');
+       (defined($xj) && $xj ne '' && $xj !~ /\A[1-9][0-9]*\z/) and
+               die "`$xj' search jobs must be >= 1\n";
+       my $lxs = $self->{lxs};
+       $xj ||= $lxs->concurrency($opt); # allow: "--jobs ,$WRITER_ONLY"
+       my $nproc = $lxs->detect_nproc || 1; # don't memoize, schedtool(1) exists
+       $xj = $nproc if $xj > $nproc;
+       $lxs->{-wq_nr_workers} = $xj;
+       (defined($mj) && $mj !~ /\A[1-9][0-9]*\z/) and
+               die "`$mj' writer jobs must be >= 1\n";
+       my $l2m = $self->{l2m};
+       # we use \1 (a ref) to distinguish between default vs. user-supplied
+       if ($l2m && grep { $opt->{$_} //= \1 } (qw(mail-sync import-remote
+                                                       import-before))) {
+               $self->_lei_store(1)->write_prepare($self);
+               if ($opt->{'mail-sync'}) {
+                       my $lms = $l2m->{-lms_rw} = $self->lms(1);
+                       $lms->lms_write_prepare->lms_pause; # just create
+               }
+       }
+       $l2m and $l2m->{-wq_nr_workers} //= $mj //
+               int($nproc * 0.75 + 0.5); # keep some CPU for git
 
-# prepares an smsg for JSON
-sub _smsg_unbless ($) {
-       my ($smsg) = @_;
+       # descending docid order is cheapest, MUA controls sorting order
+       $self->{mset_opt}->{relevance} //= -2 if $l2m || $opt->{threads};
 
-       delete @$smsg{qw(lines bytes)};
-       $smsg->{rcvd} = _iso8601(delete $smsg->{ts}); # JMAP receivedAt
-       $smsg->{dt} = _iso8601(delete $smsg->{ds}); # JMAP UTCDate
+       my $tot = $self->{mset_opt}->{total} //= $self->{opt}->{limit} // 10000;
+       $self->{mset_opt}->{limit} = $tot > 10000 ? 10000 : $tot;
+       $self->{mset_opt}->{offset} //= 0;
+       $self->{mset_opt}->{threads} //= $opt->{threads};
 
-       if (my $r = delete $smsg->{references}) {
-               $smsg->{references} = [
-                               map { "<$_>" } ($r =~ m/$MID_EXTRACT/go) ];
-       }
-       if (my $m = delete($smsg->{mid})) {
-               $smsg->{'m'} = "<$m>";
+       if ($self->{net}) {
+               require PublicInbox::LeiAuth;
+               $self->{auth} = PublicInbox::LeiAuth->new
        }
-       # XXX breaking to/cc, into structured arrays or tables which
-       # distinguish "$phrase <$address>" causes pretty printing JSON
-       # to take up too much vertical space.  I can't get either
-       # Cpanel::JSON::XS or JSON::XS or jq(1) only indent when
-       # wrapping is necessary, rather than blindly indenting and
-       # adding vertical space everywhere.
-       for my $f (qw(from to cc)) {
-               my $v = delete $smsg->{$f} or next;
-               $smsg->{substr($f, 0, 1)} = $v;
-       }
-       $smsg->{'s'} = delete $smsg->{subject};
-       # can we be bothered to parse From/To/Cc into arrays?
-       scalar { %$smsg }; # unbless
+       $lxs->do_query($self);
+}
+
+sub qstr_add { # PublicInbox::InputPipe::consume callback for --stdin
+       my ($lei) = @_; # $_[1] = $rbuf
+       $_[1] // $lei->fail("error reading stdin: $!");
+       return $lei->{mset_opt}->{qstr} .= $_[1] if $_[1] ne '';
+       eval {
+               $lei->fchdir;
+               $lei->{mset_opt}->{q_raw} = $lei->{mset_opt}->{qstr};
+               $lei->{lse}->query_approxidate($lei->{lse}->git,
+                                               $lei->{mset_opt}->{qstr});
+               _start_query($lei);
+       };
+       $lei->fail($@) if $@;
 }
 
-sub _vivify_external { # _externals_each callback
-       my ($src, $dir) = @_;
-       if (-f "$dir/ei.lock") {
-               require PublicInbox::ExtSearch;
-               push @$src, PublicInbox::ExtSearch->new($dir);
-       } elsif (-f "$dir/inbox.lock" || -d "$dir/public-inbox") { # v2, v1
-               require PublicInbox::Inbox;
-               push @$src, bless { inboxdir => $dir }, 'PublicInbox::Inbox';
+sub lxs_prepare {
+       my ($self) = @_;
+       require PublicInbox::LeiXSearch;
+       # prepare any number of LeiXSearch || LeiSearch || Inbox || URL
+       my $lxs = $self->{lxs} = PublicInbox::LeiXSearch->new;
+       my $opt = $self->{opt};
+       my @only = @{$opt->{only} // []};
+       # --local is enabled by default unless --only is used
+       # we'll allow "--only $LOCATION --local"
+       my $sto = $self->_lei_store(1);
+       $self->{lse} = $sto->search;
+       if ($opt->{'local'} //= scalar(@only) ? 0 : 1) {
+               $lxs->prepare_external($self->{lse});
+       }
+       if (@only) {
+               for my $loc (@only) {
+                       my @loc = $self->get_externals($loc) or return;
+                       $lxs->prepare_external($_) for @loc;
+               }
        } else {
-               warn "W: ignoring $dir, unable to determine type\n";
+               my (@ilocals, @iremotes);
+               for my $loc (@{$opt->{include} // []}) {
+                       my @loc = $self->get_externals($loc) or return;
+                       $lxs->prepare_external($_) for @loc;
+                       @ilocals = @{$lxs->{locals} // []};
+                       @iremotes = @{$lxs->{remotes} // []};
+               }
+               # --external is enabled by default, but allow --no-external
+               if ($opt->{external} //= 1) {
+                       my $ex = $self->canonicalize_excludes($opt->{exclude});
+                       $self->externals_each(\&prep_ext, $lxs, $ex);
+                       $opt->{remote} //= !($lxs->locals - $opt->{'local'});
+                       $lxs->{locals} = \@ilocals if !$opt->{'local'};
+                       $lxs->{remotes} = \@iremotes if !$opt->{remote};
+               }
        }
+       ($lxs->locals || $lxs->remotes) ? ($self->{lxs} = $lxs) :
+               die("no local or remote inboxes to search\n");
 }
 
 # the main "lei q SEARCH_TERMS" method
 sub lei_q {
        my ($self, @argv) = @_;
-       my $sto = $self->_lei_store(1);
-       my $cfg = $self->_lei_cfg(1);
+       PublicInbox::Config->json; # preload before forking
+       my $lxs = lxs_prepare($self) or return;
+       $self->ale->refresh_externals($lxs, $self);
        my $opt = $self->{opt};
-       my $qstr = join(' ', map {;
-               # Consider spaces in argv to be for phrase search in Xapian.
-               # In other words, the users should need only care about
-               # normal shell quotes and not have to learn Xapian quoting.
-               /\s/ ? (s/\A(\w+:)// ? qq{$1"$_"} : qq{"$_"}) : $_
-       } @argv);
-       $opt->{limit} //= 10000;
-       my $lxs;
-
-       # --local is enabled by default
-       my @src = $opt->{'local'} ? ($sto->search) : ();
-
-       # --external is enabled by default, but allow --no-external
-       if ($opt->{external} // 1) {
-               $self->_externals_each(\&_vivify_external, \@src);
-               # {tid} is not unique between indices, so we have to search
-               # each src individually
-               if (!$opt->{thread}) {
-                       require PublicInbox::LeiXSearch;
-                       my $lxs = PublicInbox::LeiXSearch->new;
-                       # local is always first
-                       $lxs->attach_external($_) for @src;
-                       @src = ($lxs);
-               }
-       }
-       my $out = $self->{output} // '-';
-       $out = 'json:/dev/stdout' if $out eq '-';
-       my $isatty = -t $self->{1};
-       $self->start_pager if $isatty;
-       my $json = substr($out, 0, 5) eq 'json:' ?
-               ref(PublicInbox::Config->json)->new : undef;
-       if ($json) {
-               if ($opt->{pretty} //= $isatty) {
-                       $json->pretty(1)->space_before(0);
-                       $json->indent_length($opt->{indent} // 2);
-               }
-               $json->utf8; # avoid Wide character in print warnings
-               $json->ascii(1) if $opt->{ascii}; # for "\uXXXX"
-               $json->canonical;
-       }
-
-       # src: LeiXSearch || LeiSearch || Inbox
-       my %mset_opt = map { $_ => $opt->{$_} } qw(thread limit offset);
-       delete $mset_opt{limit} if $opt->{limit} < 0;
+       my %mset_opt;
        $mset_opt{asc} = $opt->{'reverse'} ? 1 : 0;
        if (defined(my $sort = $opt->{'sort'})) {
                if ($sort eq 'relevance') {
@@ -116,61 +128,97 @@ sub lei_q {
                } else {
                        die "unrecognized --sort=$sort\n";
                }
+               $opt->{save} and return
+                       $self->fail('--save and --sort are incompatible');
        }
-       # $self->out($json->encode(\%mset_opt));
-       # descending docid order
-       $mset_opt{relevance} //= -2 if $opt->{thread};
-       # my $wcb = PublicInbox::LeiToMail->write_cb($out, $self);
+       $self->{mset_opt} = \%mset_opt;
 
-       # even w/o pretty, do the equivalent of a --pretty=oneline
-       # output so "lei q SEARCH_TERMS | wc -l" can be useful:
-       my $ORS = $json ? ($opt->{pretty} ? ', ' : ",\n") : "\n";
-       my $buf;
+       if ($opt->{stdin}) {
+               return $self->fail(<<'') if @argv;
+no query allowed on command-line with --stdin
 
-       # we can generate too many records to hold in RAM, so we stream
-       # and fake a JSON array starting here:
-       $self->out('[') if $json;
-       my $emit_cb = sub {
-               my ($smsg) = @_;
-               delete @$smsg{qw(tid num)}; # only makes sense if single src
-               chomp($buf = $json->encode(_smsg_unbless($smsg)));
-       };
-       for my $src (@src) {
-               my $srch = $src->search;
-               my $over = $src->over;
-               my $smsg_for = $src->can('smsg_for'); # LeiXSearch
-               my $mo = { %mset_opt };
-               my $mset = $srch->mset($qstr, $mo);
-               my $ctx = {};
-               if ($smsg_for) {
-                       for my $it ($mset->items) {
-                               my $smsg = $smsg_for->($srch, $it) or next;
-                               $self->out($buf .= $ORS) if defined $buf;
-                               $smsg->{relevance} = get_pct($it);
-                               $emit_cb->($smsg);
-                       }
-               } else { # --thread
-                       my $ids = $srch->mset_to_artnums($mset, $mo);
-                       $ctx->{ids} = $ids;
-                       my $i = 0;
-                       my %n2p = map {
-                               ($ids->[$i++], get_pct($_));
-                       } $mset->items;
-                       undef $mset;
-                       while ($over && $over->expand_thread($ctx)) {
-                               for my $n (@{$ctx->{xids}}) {
-                                       my $t = $over->get_art($n) or next;
-                                       if (my $p = delete $n2p{$t->{num}}) {
-                                               $t->{relevance} = $p;
-                                       }
-                                       $self->out($buf .= $ORS);
-                                       $emit_cb->($t);
+               require PublicInbox::InputPipe;
+               PublicInbox::InputPipe::consume($self->{0}, \&qstr_add, $self);
+               return;
+       }
+       $mset_opt{q_raw} = [ @argv ]; # copy
+       $mset_opt{qstr} =
+               $self->{lse}->query_argv_to_string($self->{lse}->git, \@argv);
+       _start_query($self);
+}
+
+# shell completion helper called by lei__complete
+sub _complete_q {
+       my ($self, @argv) = @_;
+       my @cur;
+       my $cb = $self->lazy_cb(qw(forget-external _complete_));
+       while (@argv) {
+               if ($argv[-1] =~ /\A(?:-I|(?:--(?:include|exclude|only)))\z/) {
+                       my @c = $cb->($self, @cur);
+                       # try basename match:
+                       if (scalar(@cur) == 1 && index($cur[0], '/') < 0) {
+                               my $all = $self->externals_each;
+                               my %bn;
+                               for my $loc (keys %$all) {
+                                       my $bn = (split(m!/!, $loc))[-1];
+                                       ++$bn{$bn};
                                }
-                               @{$ctx->{xids}} = ();
+                               push @c, grep {
+                                       $bn{$_} == 1 && /\A\Q$cur[0]/
+                               } keys %bn;
                        }
+                       return @c if @c;
                }
+               unshift(@cur, pop @argv);
        }
-       $self->out($buf .= "]\n"); # done
+       ();
+}
+
+# Stuff we may pass through to curl (as of 7.64.0), see curl manpage for
+# details, so most options which make sense for HTTP/HTTPS (including proxy
+# support for Tor and other methods of getting past weird networks).
+# Most of these are untested by us, some may not make sense for our use case
+# and typos below are likely.
+# n.b. some short options (-$NUMBER) are not supported since they conflict
+# with other "lei q" switches.
+# FIXME: Getopt::Long doesn't easily let us support support options with
+# '.' in them (e.g. --http1.1)
+# TODO: should we depend on "-c http.*" options for things which have
+# analogues in git(1)? that would reduce likelyhood of conflicts with
+# our other CLI options
+# Note: some names are renamed to avoid potential conflicts,
+# see %lei2curl in lib/PublicInbox/LeiCurl.pm
+sub curl_opt { qw(
+       curl-config=s@
+       abstract-unix-socket=s anyauth basic cacert=s capath=s
+       cert-status cert-type cert=s ciphers=s
+       connect-timeout=s connect-to=s cookie-jar=s cookie=s crlfile=s
+       digest disable dns-interface=s dns-ipv4-addr=s dns-ipv6-addr=s
+       dns-servers=s doh-url=s egd-file=s engine=s false-start
+       happy-eyeballs-timeout-ms=s haproxy-protocol header=s@
+       http2-prior-knowledge http2 insecure
+       interface=s ipv4 ipv6 junk-session-cookies
+       key-type=s key=s limit-rate=s local-port=s location-trusted location
+       max-redirs=i max-time=s negotiate netrc-file=s netrc-optional netrc
+       no-alpn no-buffer no-npn no-sessionid noproxy=s ntlm-wb ntlm
+       pass=s pinnedpubkey=s post301 post302 post303 preproxy=s
+       proxy-anyauth proxy-basic proxy-cacert=s proxy-capath=s
+       proxy-cert-type=s proxy-cert=s proxy-ciphers=s proxy-crlfile=s
+       proxy-digest proxy-header=s@ proxy-insecure
+       proxy-key-type=s proxy-key proxy-negotiate proxy-ntlm proxy-pass=s
+       proxy-pinnedpubkey=s proxy-service-name=s proxy-ssl-allow-beast
+       proxy-tls13-ciphers=s proxy-tlsauthtype=s proxy-tlspassword=s
+       proxy-tlsuser=s proxy-tlsv1 proxy-user=s proxy=s
+       proxytunnel=s pubkey=s random-file=s referer=s resolve=s
+       retry-connrefused retry-delay=s retry-max-time=s retry=i
+       sasl-ir service-name=s socks4=s socks4a=s socks5-basic
+       socks5-gssapi-service-name=s socks5-gssapi socks5-hostname=s socks5=s
+       speed-limit speed-type ssl-allow-beast sslv2 sslv3
+       suppress-connect-headers tcp-fastopen tls-max=s
+       tls13-ciphers=s tlsauthtype=s tlspassword=s tlsuser=s
+       tlsv1 trace-ascii=s trace-time trace=s
+       unix-socket=s user-agent=s user=s
+)
 }
 
 1;