about summary refs log tree commit homepage
path: root/lib/PublicInbox/Search.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2024-05-05 23:35:10 +0000
committerEric Wong <e@80x24.org>2024-05-06 06:06:09 +0000
commit34709e6f0153bd92a117f542a7bfb76e7d289d2e (patch)
tree69fdfb6579344b941e7018373ca55623519c3fe1 /lib/PublicInbox/Search.pm
parent7f3b57f4c1cbbb7ddfa41dde6d25276ee96d3fd4 (diff)
downloadpublic-inbox-34709e6f0153bd92a117f542a7bfb76e7d289d2e.tar.gz
External Xapian helper processes need to support non-standard
QueryParser prefixes.  The only way to do this is to specify
these prefixes in every `mset' request since we have no idea
if the XH worker servicing the request has initialized the
extra prefixes, yet.
Diffstat (limited to 'lib/PublicInbox/Search.pm')
-rw-r--r--lib/PublicInbox/Search.pm20
1 files changed, 15 insertions, 5 deletions
diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm
index fbdb48a3..e5c5d6ab 100644
--- a/lib/PublicInbox/Search.pm
+++ b/lib/PublicInbox/Search.pm
@@ -92,6 +92,7 @@ our @XH_SPEC = (
         'K=i', # timeout kill after i seconds
         'O=s', # eidx_key
         'T=i', # threadid
+        'Q=s@', # query prefixes "$user_prefix[:=]$XPREFIX"
 );
 
 sub load_xapian () {
@@ -435,8 +436,8 @@ sub xhc_start_maybe (@) {
         $xhc;
 }
 
-sub xh_opt ($) {
-        my ($opt) = @_;
+sub xh_opt ($$) {
+        my ($self, $opt) = @_;
         my $lim = $opt->{limit} || 50;
         my @ret;
         push @ret, '-o', $opt->{offset} if $opt->{offset};
@@ -458,7 +459,16 @@ sub xh_opt ($) {
         push @ret, '-t' if $opt->{threads};
         push @ret, '-T', $opt->{threadid} if defined $opt->{threadid};
         push @ret, '-O', $opt->{eidx_key} if defined $opt->{eidx_key};
-        @ret;
+        my $apfx = $self->{-alt_pfx} //= do {
+                my @tmp;
+                for (grep /\Aserial:/, @{$self->{altid} // []}) {
+                        my (undef, $pfx) = split /:/, $_;
+                        push @tmp, '-Q', "$pfx=X\U$pfx";
+                }
+                # TODO: arbitrary header indexing goes here
+                \@tmp;
+        };
+        (@ret, @$apfx);
 }
 
 # returns a true value if actually handled asynchronously,
@@ -467,7 +477,7 @@ sub async_mset {
         my ($self, $qry_str, $opt, $cb, @args) = @_;
         if ($XHC) { # unconditionally retrieving pct + rank for now
                 xdb($self); # populate {nshards}
-                my @margs = ($self->xh_args, xh_opt($opt));
+                my @margs = ($self->xh_args, xh_opt($self, $opt));
                 my $ret = eval {
                         my $rd = $XHC->mkreq(undef, 'mset', @margs, $qry_str);
                         PublicInbox::XhcMset->maybe_new($rd, $self, $cb, @args);
@@ -630,7 +640,7 @@ EOM
                         $ret .= qq{\tqp->add_boolean_prefix("$name", "$_");\n}
                 }
         }
-        # TODO: altid support
+        # altid support is handled in xh_opt and srch_init_extra in XH
         for my $name (sort keys %prob_prefix) {
                 for (split(/ /, $prob_prefix{$name})) {
                         $ret .= qq{\tqp->add_prefix("$name", "$_");\n}