'K=i', # timeout kill after i seconds
'O=s', # eidx_key
'T=i', # threadid
+ 'Q=s@', # query prefixes "$user_prefix[:=]$XPREFIX"
);
sub load_xapian () {
$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};
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,
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);
$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}
}
}
+sub srch_init_extra ($) {
+ my ($req) = @_;
+ my $qp = $req->{srch}->{qp};
+ for (@{$req->{Q}}) {
+ my ($upfx, $m, $xpfx) = split /([:=])/;
+ $xpfx // die "E: bad -Q $_";
+ $m = $m eq '=' ? 'add_boolean_prefix' : 'add_prefix';
+ $qp->$m($upfx, $xpfx);
+ }
+ $req->{srch}->{qp_extra_done} = 1;
+}
+
sub dispatch {
my ($req, $cmd, @argv) = @_;
my $fn = $req->can("cmd_$cmd") or return;
$new->{qp} = $new->qparse_new;
$new;
};
+ $req->{Q} && !$req->{srch}->{qp_extra_done} and
+ srch_init_extra $req;
my $timeo = $req->{K};
alarm($timeo) if $timeo;
$fn->($req, @argv);
struct srch {
int paths_len; // int for comparisons
unsigned qp_flags;
+ bool qp_extra_done;
Xapian::Database *db;
Xapian::QueryParser *qp;
char paths[]; // $shard_path0\0$shard_path1\0...
struct req { // argv and pfxv point into global rbuf
char *argv[MY_ARG_MAX];
char *pfxv[MY_ARG_MAX]; // -A <prefix>
+ char *qpfxv[MY_ARG_MAX]; // -Q <user_prefix>[:=]<INTERNAL_PREFIX>
size_t *lenv; // -A <prefix>LENGTH
struct srch *srch;
char *Pgit_dir;
long sort_col; // value column, negative means BoolWeight
int argc;
int pfxc;
+ int qpfxc;
FILE *fp[2]; // [0] response pipe or sock, [1] status/errors (optional)
bool has_input; // fp[0] is bidirectional
bool collapse_threads;
return true;
}
+// setup query parser for altid and arbitrary headers
+static void srch_init_extra(struct req *req)
+{
+ const char *XPFX;
+ for (int i = 0; i < req->qpfxc; i++) {
+ size_t len = strlen(req->qpfxv[i]);
+ char *c = (char *)memchr(req->qpfxv[i], '=', len);
+
+ if (c) { // it's boolean "gmane=XGMANE"
+ XPFX = c + 1;
+ *c = 0;
+ req->srch->qp->add_boolean_prefix(req->qpfxv[i], XPFX);
+ continue;
+ }
+ // maybe it's a non-boolean prefix "blob:XBLOBID"
+ c = (char *)memchr(req->qpfxv[i], ':', len);
+ if (!c)
+ errx(EXIT_FAILURE, "bad -Q %s", req->qpfxv[i]);
+ XPFX = c + 1;
+ *c = 0;
+ req->srch->qp->add_prefix(req->qpfxv[i], XPFX);
+ }
+ req->srch->qp_extra_done = true;
+}
+
static void free_srch(void *p) // tdestroy
{
struct srch *srch = (struct srch *)p;
if (*end || req->threadid == ULLONG_MAX)
ABORT("-T %s", optarg);
break;
+ case 'Q':
+ req->qpfxv[req->qpfxc++] = optarg;
+ if (MY_ARG_MAX == req->qpfxc) ABORT("too many -Q");
+ break;
default: ABORT("bad switch `-%c'", c);
}
}
ERR_CLOSE(kfp, EXIT_FAILURE); // may ENOMEM, sets kbuf.srch
kbuf.srch->db = NULL;
kbuf.srch->qp = NULL;
+ kbuf.srch->qp_extra_done = false;
kbuf.srch->paths_len = size - offsetof(struct srch, paths);
if (kbuf.srch->paths_len <= 0)
ABORT("no -d args");
free_srch(kbuf.srch);
goto cmd_err; // srch_init already warned
}
+ if (req->qpfxc && !req->srch->qp_extra_done)
+ srch_init_extra(req);
if (req->timeout_sec)
alarm(req->timeout_sec > UINT_MAX ?
UINT_MAX : (unsigned)req->timeout_sec);
use PublicInbox::Spawn qw(spawn);
require_cmd('sqlite3');
require_mods(qw(DBD::SQLite HTTP::Request::Common Plack::Test URI::Escape
- Plack::Builder IO::Uncompress::Gunzip));
+ Plack::Builder IO::Uncompress::Gunzip Xapian));
use_ok($_) for qw(Plack::Test HTTP::Request::Common);
require_ok 'PublicInbox::Msgmap';
require_ok 'PublicInbox::AltId';
my ($tmpdir, $for_destroy) = tmpdir();
my $aid = 'xyz';
my $cfgpath;
-my $ibx = create_inbox 'test', indexlevel => 'basic', sub {
+my $spec = "serial:$aid:file=blah.sqlite3";
+my $ibx = create_inbox 'test-altid', indexlevel => 'medium',
+ altid => [ $spec ], sub {
my ($im, $ibx) = @_;
- $im->add(PublicInbox::Eml->new(<<'EOF')) or BAIL_OUT;
-From: a@example.com
-Message-Id: <a@example.com>
-
-EOF
- # $im->done;
- my $spec = "serial:$aid:file=blah.sqlite3";
my $altid = PublicInbox::AltId->new($ibx, $spec, 1);
$altid->mm_alt->mid_set(1, 'a@example.com');
+ undef $altid;
$cfgpath = "$ibx->{inboxdir}/cfg";
open my $fh, '>', $cfgpath or BAIL_OUT "open $cfgpath: $!";
print $fh <<EOF or BAIL_OUT $!;
url = http://example.com/test
EOF
close $fh or BAIL_OUT $!;
+ $im->add(PublicInbox::Eml->new(<<'EOF')) or BAIL_OUT;
+From: a@example.com
+Message-Id: <a@example.com>
+
+EOF
};
$cfgpath //= "$ibx->{inboxdir}/cfg";
my $cfg = PublicInbox::Config->new($cfgpath);
is($mm_cmp->mid_for(1), 'a@example.com', 'sqlite3 dump valid');
$mm_cmp = undef;
unlink $cmpfile or die;
+
+ $res = $cb->(GET('/test/?q=xyz:1'));
+ is $res->code, 200, 'altid search hit';
+ $res = $cb->(GET('/test/?q=xyz:10'));
+ is $res->code, 404, 'altid search miss';
};
test_psgi(sub { $www->call(@_) }, $client);
SKIP: {