1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
| | # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
# Combine any combination of PublicInbox::Search,
# PublicInbox::ExtSearch, and PublicInbox::LeiSearch objects
# into one Xapian DB
package PublicInbox::LeiXSearch;
use strict;
use v5.10.1;
use parent qw(PublicInbox::LeiSearch PublicInbox::IPC);
sub new {
my ($class) = @_;
PublicInbox::Search::load_xapian();
bless {
qp_flags => $PublicInbox::Search::QP_FLAGS |
PublicInbox::Search::FLAG_PURE_NOT(),
}, $class
}
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");
my @shards = $srch->xdb_shards_flat or
return warn("$desc has no Xapian shardsXapian\n");
if (delete $self->{xdb}) { # XXX: do we need this?
# clobber existing {xdb} if amending
my $expect = delete $self->{nshard};
my $shards = delete $self->{shards_flat};
scalar(@$shards) == $expect or die
"BUG: {nshard}$expect != shards=".scalar(@$shards);
my $prev = {};
for my $old_ibxish (@{$self->{shard2ibx}}) {
next if $prev == $old_ibxish;
$prev = $old_ibxish;
my @shards = $old_ibxish->search->xdb_shards_flat;
push @{$self->{shards_flat}}, @shards;
}
my $nr = scalar(@{$self->{shards_flat}});
$nr == $expect or die
"BUG: reloaded $nr shards, expected $expect"
}
push @{$self->{shards_flat}}, @shards;
push(@{$self->{shard2ibx}}, $ibxish) for (@shards);
}
# returns a list of local inboxes (or count in scalar context)
sub locals {
my %uniq = map {; "$_" => $_ } @{$_[0]->{shard2ibx} // []};
values %uniq;
}
# called by PublicInbox::Search::xdb
sub xdb_shards_flat { @{$_[0]->{shards_flat} // []} }
# like over->get_art
sub smsg_for {
my ($self, $mitem) = @_;
# cf. https://trac.xapian.org/wiki/FAQ/MultiDatabaseDocumentID
my $nshard = $self->{nshard};
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);
$smsg->{docid} = $docid;
$smsg;
}
sub recent {
my ($self, $qstr, $opt) = @_;
$opt //= {};
$opt->{relevance} //= -2;
$self->mset($qstr //= 'bytes:1..', $opt);
}
sub over {}
sub _mset_more ($$) {
my ($mset, $mo) = @_;
my $size = $mset->size;
$size && (($mo->{offset} += $size) < ($mo->{limit} // 10000));
}
sub query_thread_mset { # for --thread
my ($self, $lei, $ibxish) = @_;
my %sig = $lei->atfork_child_wq($self);
local @SIG{keys %sig} = values %sig;
my ($srch, $over) = ($ibxish->search, $ibxish->over);
unless ($srch && $over) {
my $desc = $ibxish->{inboxdir} // $ibxish->{topdir};
warn "$desc not indexed by Xapian\n";
return;
}
my $mo = { %{$lei->{mset_opt}} };
my $mset;
my $each_smsg = $lei->{ovv}->ovv_each_smsg_cb($lei);
my $dd = $lei->{dd};
$dd->prepare_dedupe;
do {
$mset = $srch->mset($mo->{qstr}, $mo);
my $ids = $srch->mset_to_artnums($mset, $mo);
my $ctx = { ids => $ids };
my $i = 0;
my %n2item = map { ($ids->[$i++], $_) } $mset->items;
while ($over->expand_thread($ctx)) {
for my $n (@{$ctx->{xids}}) {
my $smsg = $over->get_art($n) or next;
next if $dd->is_smsg_dup($smsg);
my $mitem = delete $n2item{$smsg->{num}};
$each_smsg->($smsg, $mitem);
# $self->out($buf .= $ORS);
# $emit_cb->($smsg);
}
@{$ctx->{xids}} = ();
}
} while (_mset_more($mset, $mo));
$lei->{ovv}->ovv_atexit_child($lei);
}
sub query_mset { # non-parallel for non-"--thread" users
my ($self, $lei, $srcs) = @_;
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;
my $each_smsg = $lei->{ovv}->ovv_each_smsg_cb($lei);
my $dd = $lei->{dd};
$dd->prepare_dedupe;
do {
$mset = $self->mset($mo->{qstr}, $mo);
for my $it ($mset->items) {
my $smsg = smsg_for($self, $it) or next;
next if $dd->is_smsg_dup($smsg);
$each_smsg->($smsg, $it);
# $self->out($buf .= $ORS) if defined $buf;
#$emit_cb->($smsg);
}
} while (_mset_more($mset, $mo));
$lei->{ovv}->ovv_atexit_child($lei);
}
sub query_done { # PublicInbox::EOFpipe callback
my ($lei) = @_;
$lei->{ovv}->ovv_end($lei);
$lei->dclose;
}
sub do_query {
my ($self, $lei_orig, $srcs) = @_;
my ($lei, @io) = $lei_orig->atfork_parent_wq($self);
my $remotes = $self->{remotes} // [];
pipe(my ($eof_wait, $qry_done)) or die "pipe $!";
$io[0] = $qry_done; # don't need stdin
if ($lei->{opt}->{thread}) {
$lei->{-parallel} = scalar(@$remotes) + scalar(@$srcs) - 1;
for my $ibxish (@$srcs) {
$self->wq_do('query_thread_mset', \@io, $lei, $ibxish);
}
} else {
$lei->{-parallel} = scalar(@$remotes);
$self->wq_do('query_mset', \@io, $lei, $srcs);
}
# TODO
for my $rmt (@$remotes) {
$self->wq_do('query_thread_mbox', \@io, $lei, $rmt);
}
@io = ();
close $qry_done; # fully closed when children are done
# query_done will run when query_*mset close $qry_done
if ($lei_orig->{sock}) { # watch for client premature exit
require PublicInbox::EOFpipe;
PublicInbox::EOFpipe->new($eof_wait, \&query_done, $lei_orig);
$lei_orig->{lxs} = $self;
$lei_orig->event_step_init;
} else {
$self->wq_close;
read($eof_wait, my $buf, 1); # wait for close($lei->{0})
query_done($lei_orig); # may SIGPIPE
}
}
sub ipc_atfork_prepare {
my ($self) = @_;
$self->wq_set_recv_modes(qw[+<&= >&= >&= +<&=]);
$self->SUPER::ipc_atfork_prepare; # PublicInbox::IPC
}
1;
|