]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiXSearch.pm
lei query + pagination sorta working
[public-inbox.git] / lib / PublicInbox / LeiXSearch.pm
1 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # Combine any combination of PublicInbox::Search,
5 # PublicInbox::ExtSearch, and PublicInbox::LeiSearch objects
6 # into one Xapian DB
7 package PublicInbox::LeiXSearch;
8 use strict;
9 use v5.10.1;
10 use parent qw(PublicInbox::LeiSearch);
11
12 sub new {
13         my ($class) = @_;
14         PublicInbox::Search::load_xapian();
15         bless {
16                 qp_flags => $PublicInbox::Search::QP_FLAGS |
17                                 PublicInbox::Search::FLAG_PURE_NOT(),
18         }, $class
19 }
20
21 sub attach_external {
22         my ($self, $ibxish) = @_; # ibxish = ExtSearch or Inbox
23
24         if (!$ibxish->can('over') || !$ibxish->over) {
25                 return push(@{$self->{remotes}}, $ibxish)
26         }
27         my $desc = $ibxish->{inboxdir} // $ibxish->{topdir};
28         my $srch = $ibxish->search or
29                 return warn("$desc not indexed for Xapian\n");
30         my @shards = $srch->xdb_shards_flat or
31                 return warn("$desc has no Xapian shardsXapian\n");
32
33         if (delete $self->{xdb}) { # XXX: do we need this?
34                 # clobber existing {xdb} if amending
35                 my $expect = delete $self->{nshard};
36                 my $shards = delete $self->{shards_flat};
37                 scalar(@$shards) == $expect or die
38                         "BUG: {nshard}$expect != shards=".scalar(@$shards);
39
40                 my $prev = {};
41                 for my $old_ibxish (@{$self->{shard2ibx}}) {
42                         next if $prev == $old_ibxish;
43                         $prev = $old_ibxish;
44                         my @shards = $old_ibxish->search->xdb_shards_flat;
45                         push @{$self->{shards_flat}}, @shards;
46                 }
47                 my $nr = scalar(@{$self->{shards_flat}});
48                 $nr == $expect or die
49                         "BUG: reloaded $nr shards, expected $expect"
50         }
51         push @{$self->{shards_flat}}, @shards;
52         push(@{$self->{shard2ibx}}, $ibxish) for (@shards);
53 }
54
55 # returns a list of local inboxes (or count in scalar context)
56 sub locals {
57         my %uniq = map {; "$_" => $_ } @{$_[0]->{shard2ibx} // []};
58         values %uniq;
59 }
60
61 # called by PublicInbox::Search::xdb
62 sub xdb_shards_flat { @{$_[0]->{shards_flat} // []} }
63
64 # like over->get_art
65 sub smsg_for {
66         my ($self, $mitem) = @_;
67         # cf. https://trac.xapian.org/wiki/FAQ/MultiDatabaseDocumentID
68         my $nshard = $self->{nshard};
69         my $docid = $mitem->get_docid;
70         my $shard = ($docid - 1) % $nshard;
71         my $num = int(($docid - 1) / $nshard) + 1;
72         my $smsg = $self->{shard2ibx}->[$shard]->over->get_art($num);
73         $smsg->{docid} = $docid;
74         $smsg;
75 }
76
77 sub recent {
78         my ($self, $qstr, $opt) = @_;
79         $opt //= {};
80         $opt->{relevance} //= -2;
81         $self->mset($qstr //= 'bytes:1..', $opt);
82 }
83
84 sub over {}
85
86 1;