]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Search.pm
de296e1a73a4341daff3bd7e55b1c6a1e28be60f
[public-inbox.git] / lib / PublicInbox / Search.pm
1 # Copyright (C) 2015-2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 # based on notmuch, but with no concept of folders, files or flags
4 #
5 # Read-only search interface for use by the web and NNTP interfaces
6 package PublicInbox::Search;
7 use strict;
8 use warnings;
9
10 # values for searching
11 use constant DS => 0; # Date: header in Unix time
12 use constant NUM => 1; # NNTP article number
13 use constant BYTES => 2; # :bytes as defined in RFC 3977
14 use constant LINES => 3; # :lines as defined in RFC 3977
15 use constant TS => 4;  # Received: header in Unix time
16 use constant YYYYMMDD => 5; # for searching in the WWW UI
17
18 use Search::Xapian qw/:standard/;
19 use PublicInbox::SearchMsg;
20 use PublicInbox::MIME;
21 use PublicInbox::MID qw/id_compress/;
22
23 # This is English-only, everything else is non-standard and may be confused as
24 # a prefix common in patch emails
25 our $REPLY_RE = qr/^re:\s+/i;
26 our $LANG = 'english';
27
28 use constant {
29         # SCHEMA_VERSION history
30         # 0 - initial
31         # 1 - subject_path is lower-cased
32         # 2 - subject_path is id_compress in the index, only
33         # 3 - message-ID is compressed if it includes '%' (hack!)
34         # 4 - change "Re: " normalization, avoid circular Reference ghosts
35         # 5 - subject_path drops trailing '.'
36         # 6 - preserve References: order in document data
37         # 7 - remove references and inreplyto terms
38         # 8 - remove redundant/unneeded document data
39         # 9 - disable Message-ID compression (SHA-1)
40         # 10 - optimize doc for NNTP overviews
41         # 11 - merge threads when vivifying ghosts
42         # 12 - change YYYYMMDD value column to numeric
43         # 13 - fix threading for empty References/In-Reply-To
44         #      (commit 83425ef12e4b65cdcecd11ddcb38175d4a91d5a0)
45         # 14 - fix ghost root vivification
46         SCHEMA_VERSION => 14,
47
48         # n.b. FLAG_PURE_NOT is expensive not suitable for a public website
49         # as it could become a denial-of-service vector
50         QP_FLAGS => FLAG_PHRASE|FLAG_BOOLEAN|FLAG_LOVEHATE|FLAG_WILDCARD,
51 };
52
53 # setup prefixes
54 my %bool_pfx_internal = (
55         type => 'T', # "mail" or "ghost"
56         thread => 'G', # newsGroup (or similar entity - e.g. a web forum name)
57 );
58
59 my %bool_pfx_external = (
60         mid => 'Q', # Message-ID (full/exact), this is mostly uniQue
61 );
62
63 my $non_quoted_body = 'XNQ XDFN XDFA XDFB XDFHH XDFCTX XDFPRE XDFPOST';
64 my %prob_prefix = (
65         # for mairix compatibility
66         s => 'S',
67         m => 'XM', # 'mid:' (bool) is exact, 'm:' (prob) can do partial
68         f => 'A',
69         t => 'XTO',
70         tc => 'XTO XCC',
71         c => 'XCC',
72         tcf => 'XTO XCC A',
73         a => 'XTO XCC A',
74         b => $non_quoted_body . ' XQUOT',
75         bs => $non_quoted_body . ' XQUOT S',
76         n => 'XFN',
77
78         q => 'XQUOT',
79         nq => $non_quoted_body,
80         dfn => 'XDFN',
81         dfa => 'XDFA',
82         dfb => 'XDFB',
83         dfhh => 'XDFHH',
84         dfctx => 'XDFCTX',
85         dfpre => 'XDFPRE',
86         dfpost => 'XDFPOST',
87         dfblob => 'XDFPRE XDFPOST',
88
89         # default:
90         '' => 'XM S A XQUOT XFN ' . $non_quoted_body,
91 );
92
93 # not documenting m: and mid: for now, the using the URLs works w/o Xapian
94 our @HELP = (
95         's:' => 'match within Subject  e.g. s:"a quick brown fox"',
96         'd:' => <<EOF,
97 date range as YYYYMMDD  e.g. d:19931002..20101002
98 Open-ended ranges such as d:19931002.. and d:..20101002
99 are also supported
100 EOF
101         'b:' => 'match within message body, including text attachments',
102         'nq:' => 'match non-quoted text within message body',
103         'q:' => 'match quoted text within message body',
104         'n:' => 'match filename of attachment(s)',
105         't:' => 'match within the To header',
106         'c:' => 'match within the Cc header',
107         'f:' => 'match within the From header',
108         'a:' => 'match within the To, Cc, and From headers',
109         'tc:' => 'match within the To and Cc headers',
110         'bs:' => 'match within the Subject and body',
111         'dfn:' => 'match filename from diff',
112         'dfa:' => 'match diff removed (-) lines',
113         'dfb:' => 'match diff added (+) lines',
114         'dfhh:' => 'match diff hunk header context (usually a function name)',
115         'dfctx:' => 'match diff context lines',
116         'dfpre:' => 'match pre-image git blob ID',
117         'dfpost:' => 'match post-image git blob ID',
118         'dfblob:' => 'match either pre or post-image git blob ID',
119 );
120 chomp @HELP;
121
122 my $mail_query = Search::Xapian::Query->new('T' . 'mail');
123
124 sub xdir {
125         my ($self) = @_;
126         if ($self->{version} == 1) {
127                 "$self->{mainrepo}/public-inbox/xapian" . SCHEMA_VERSION;
128         } else {
129                 my $dir = "$self->{mainrepo}/xap" . SCHEMA_VERSION;
130                 my $part = $self->{partition};
131                 defined $part or die "partition not given";
132                 $dir .= "/$part";
133         }
134 }
135
136 sub new {
137         my ($class, $mainrepo, $altid) = @_;
138         my $version = 1;
139         my $ibx = $mainrepo;
140         if (ref $ibx) {
141                 $version = $ibx->{version} || 1;
142                 $mainrepo = $ibx->{mainrepo};
143         }
144         my $self = bless {
145                 mainrepo => $mainrepo,
146                 altid => $altid,
147                 version => $version,
148         }, $class;
149         if ($version >= 2) {
150                 my $dir = "$self->{mainrepo}/xap" . SCHEMA_VERSION;
151                 my $xdb;
152                 my $parts = 0;
153                 foreach my $part (<$dir/*>) {
154                         -d $part && $part =~ m!/\d+\z! or next;
155                         $parts++;
156                         my $sub = Search::Xapian::Database->new($part);
157                         if ($xdb) {
158                                 $xdb->add_database($sub);
159                         } else {
160                                 $xdb = $sub;
161                         }
162                 }
163                 $self->{xdb} = $xdb;
164                 $self->{skel} = Search::Xapian::Database->new("$dir/skel");
165         } else {
166                 $self->{xdb} = Search::Xapian::Database->new($self->xdir);
167         }
168         $self;
169 }
170
171 sub reopen {
172         my ($self) = @_;
173         $self->{xdb}->reopen;
174         if (my $skel = $self->{skel}) {
175                 $skel->reopen;
176         }
177         $self; # make chaining easier
178 }
179
180 # read-only
181 sub query {
182         my ($self, $query_string, $opts) = @_;
183         my $query;
184
185         $opts ||= {};
186         unless ($query_string eq '') {
187                 $query = $self->qp->parse_query($query_string, QP_FLAGS);
188                 $opts->{relevance} = 1 unless exists $opts->{relevance};
189         }
190
191         _do_enquire($self, $query, $opts);
192 }
193
194 sub get_thread {
195         my ($self, $mid, $opts) = @_;
196         my $smsg = first_smsg_by_mid($self, $mid) or
197                         return { total => 0, msgs => [] };
198         my $qtid = Search::Xapian::Query->new('G' . $smsg->thread_id);
199         my $path = $smsg->path;
200         if (defined $path && $path ne '') {
201                 my $path = id_compress($smsg->path);
202                 my $qsub = Search::Xapian::Query->new('XPATH' . $path);
203                 $qtid = Search::Xapian::Query->new(OP_OR, $qtid, $qsub);
204         }
205         $opts ||= {};
206         $opts->{limit} ||= 1000;
207
208         # always sort threads by timestamp, this makes life easier
209         # for the threading algorithm (in SearchThread.pm)
210         $opts->{asc} = 1;
211         $opts->{enquire} = enquire_skel($self);
212         _do_enquire($self, $qtid, $opts);
213 }
214
215 sub retry_reopen {
216         my ($self, $cb) = @_;
217         my $ret;
218         for my $i (1..10) {
219                 eval { $ret = $cb->() };
220                 return $ret unless $@;
221                 # Exception: The revision being read has been discarded -
222                 # you should call Xapian::Database::reopen()
223                 if (ref($@) eq 'Search::Xapian::DatabaseModifiedError') {
224                         warn "reopen try #$i on $@\n";
225                         reopen($self);
226                 } else {
227                         warn "ref: ", ref($@), "\n";
228                         die;
229                 }
230         }
231         die "Too many Xapian database modifications in progress\n";
232 }
233
234 sub _do_enquire {
235         my ($self, $query, $opts) = @_;
236         retry_reopen($self, sub { _enquire_once($self, $query, $opts) });
237 }
238
239 sub _enquire_once {
240         my ($self, $query, $opts) = @_;
241         my $enquire = $opts->{enquire} || enquire($self);
242         if (defined $query) {
243                 $query = Search::Xapian::Query->new(OP_AND,$query,$mail_query);
244         } else {
245                 $query = $mail_query;
246         }
247         $enquire->set_query($query);
248         $opts ||= {};
249         my $desc = !$opts->{asc};
250         if ($opts->{relevance}) {
251                 $enquire->set_sort_by_relevance_then_value(TS, $desc);
252         } elsif ($opts->{num}) {
253                 $enquire->set_sort_by_value(NUM, 0);
254         } else {
255                 $enquire->set_sort_by_value_then_relevance(TS, $desc);
256         }
257         my $offset = $opts->{offset} || 0;
258         my $limit = $opts->{limit} || 50;
259         my $mset = $enquire->get_mset($offset, $limit);
260         return $mset if $opts->{mset};
261         my @msgs = map {
262                 PublicInbox::SearchMsg->load_doc($_->get_document);
263         } $mset->items;
264
265         { total => $mset->get_matches_estimated, msgs => \@msgs }
266 }
267
268 # read-write
269 sub stemmer { Search::Xapian::Stem->new($LANG) }
270
271 # read-only
272 sub qp {
273         my ($self) = @_;
274
275         my $qp = $self->{query_parser};
276         return $qp if $qp;
277
278         # new parser
279         $qp = Search::Xapian::QueryParser->new;
280         $qp->set_default_op(OP_AND);
281         $qp->set_database($self->{xdb});
282         $qp->set_stemmer($self->stemmer);
283         $qp->set_stemming_strategy(STEM_SOME);
284         $qp->add_valuerangeprocessor(
285                 Search::Xapian::NumberValueRangeProcessor->new(YYYYMMDD, 'd:'));
286
287         while (my ($name, $prefix) = each %bool_pfx_external) {
288                 $qp->add_boolean_prefix($name, $prefix);
289         }
290
291         # we do not actually create AltId objects,
292         # just parse the spec to avoid the extra DB handles for now.
293         if (my $altid = $self->{altid}) {
294                 my $user_pfx = $self->{-user_pfx} ||= [];
295                 for (@$altid) {
296                         # $_ = 'serial:gmane:/path/to/gmane.msgmap.sqlite3'
297                         /\Aserial:(\w+):/ or next;
298                         my $pfx = $1;
299                         push @$user_pfx, "$pfx:", <<EOF;
300 alternate serial number  e.g. $pfx:12345 (boolean)
301 EOF
302                         # gmane => XGMANE
303                         $qp->add_boolean_prefix($pfx, 'X'.uc($pfx));
304                 }
305                 chomp @$user_pfx;
306         }
307
308         while (my ($name, $prefix) = each %prob_prefix) {
309                 $qp->add_prefix($name, $_) foreach split(/ /, $prefix);
310         }
311
312         $self->{query_parser} = $qp;
313 }
314
315 sub num_range_processor {
316         $_[0]->{nrp} ||= Search::Xapian::NumberValueRangeProcessor->new(NUM);
317 }
318
319 # only used for NNTP server
320 sub query_xover {
321         my ($self, $beg, $end, $offset) = @_;
322         my $qp = Search::Xapian::QueryParser->new;
323         $qp->set_database($self->{skel} || $self->{xdb});
324         $qp->add_valuerangeprocessor($self->num_range_processor);
325         my $query = $qp->parse_query("$beg..$end", QP_FLAGS);
326
327         my $opts = {
328                 enquire => enquire_skel($self),
329                 num => 1,
330                 limit => 200,
331                 offset => $offset,
332         };
333         _do_enquire($self, $query, $opts);
334 }
335
336 sub query_ts {
337         my ($self, $ts, $opts) = @_;
338         my $qp = $self->{qp_ts} ||= eval {
339                 my $q = Search::Xapian::QueryParser->new;
340                 $q->set_database($self->{skel} || $self->{xdb});
341                 $q->add_valuerangeprocessor(
342                         Search::Xapian::NumberValueRangeProcessor->new(TS));
343                 $q
344         };
345         my $query = $qp->parse_query($ts, QP_FLAGS);
346         $opts->{enquire} = enquire_skel($self);
347         _do_enquire($self, $query, $opts);
348 }
349
350 sub first_smsg_by_mid {
351         my ($self, $mid) = @_;
352         my $smsg;
353         retry_reopen($self, sub {
354                 each_smsg_by_mid($self, $mid, sub { $smsg = $_[0]; undef });
355         });
356         $smsg;
357 }
358
359 sub lookup_article {
360         my ($self, $num) = @_;
361         my $term = 'XNUM'.$num;
362         my $db = $self->{skel} || $self->{xdb};
363         retry_reopen($self, sub {
364                 my $head = $db->postlist_begin($term);
365                 my $tail = $db->postlist_end($term);
366                 return if $head->equal($tail);
367                 my $doc_id = $head->get_docid;
368                 return unless defined $doc_id;
369                 $head->inc;
370                 if ($head->nequal($tail)) {
371                         my $loc= $self->{mainrepo} .
372                                 ($self->{skel} ? 'skel' : 'xdb');
373                         warn "article #$num is not unique in $loc\n";
374                 }
375                 # raises on error:
376                 my $doc = $db->get_document($doc_id);
377                 my $smsg = PublicInbox::SearchMsg->wrap($doc);
378                 $smsg->{doc_id} = $doc_id;
379                 $smsg->load_expand;
380         });
381 }
382
383 sub each_smsg_by_mid {
384         my ($self, $mid, $cb) = @_;
385         # XXX retry_reopen isn't necessary for V2Writable, but the PSGI
386         # interface will need it...
387         my $db = $self->{skel} || $self->{xdb};
388         my $term = 'Q' . $mid;
389         my $head = $db->postlist_begin($term);
390         my $tail = $db->postlist_end($term);
391         if ($head == $tail) {
392                 $db->reopen;
393                 $head = $db->postlist_begin($term);
394                 $tail = $db->postlist_end($term);
395         }
396         return ($head, $tail, $db) if wantarray;
397         for (; $head->nequal($tail); $head->inc) {
398                 my $doc_id = $head->get_docid;
399                 my $doc = $db->get_document($doc_id);
400                 my $smsg = PublicInbox::SearchMsg->wrap($doc, $mid);
401                 $smsg->{doc_id} = $doc_id;
402                 $cb->($smsg) or return;
403         }
404 }
405
406 # normalize subjects so they are suitable as pathnames for URLs
407 # XXX: consider for removal
408 sub subject_path {
409         my $subj = pop;
410         $subj = subject_normalized($subj);
411         $subj =~ s![^a-zA-Z0-9_\.~/\-]+!_!g;
412         lc($subj);
413 }
414
415 sub subject_normalized {
416         my $subj = pop;
417         $subj =~ s/\A\s+//s; # no leading space
418         $subj =~ s/\s+\z//s; # no trailing space
419         $subj =~ s/\s+/ /gs; # no redundant spaces
420         $subj =~ s/\.+\z//; # no trailing '.'
421         $subj =~ s/$REPLY_RE//igo; # remove reply prefix
422         $subj;
423 }
424
425 sub enquire {
426         my ($self) = @_;
427         $self->{enquire} ||= Search::Xapian::Enquire->new($self->{xdb});
428 }
429
430 sub enquire_skel {
431         my ($self) = @_;
432         if (my $skel = $self->{skel}) {
433                 $self->{enquire_skel} ||= Search::Xapian::Enquire->new($skel);
434         } else {
435                 enquire($self);
436         }
437 }
438
439 sub help {
440         my ($self) = @_;
441         $self->qp; # parse altids
442         my @ret = @HELP;
443         if (my $user_pfx = $self->{-user_pfx}) {
444                 push @ret, @$user_pfx;
445         }
446         \@ret;
447 }
448
449 1;