1 # Copyright (C) 2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # for XOVER, OVER in NNTP, and feeds/homepage/threads in PSGI
5 # Unlike Msgmap, this is an _UNSTABLE_ cache which can be
6 # tweaked/updated over time and rebuilt.
8 # Ghost messages (messages which are only referenced in References/In-Reply-To)
9 # are denoted by a negative NNTP article number.
10 package PublicInbox::OverIdx;
13 use base qw(PublicInbox::Over);
15 use DBI qw(:sql_types); # SQL_BLOB
16 use PublicInbox::MID qw/id_compress mids references/;
17 use PublicInbox::SearchMsg qw(subject_normalized);
18 use Compress::Zlib qw(compress);
19 use PublicInbox::Search;
23 my $dbh = $self->SUPER::dbh_new;
24 $dbh->do('PRAGMA journal_mode = TRUNCATE');
25 $dbh->do('PRAGMA cache_size = 80000');
30 sub get_counter ($$) {
32 my $sth = $dbh->prepare_cached(<<'', undef, 1);
33 SELECT val FROM counter WHERE key = ? LIMIT 1
39 sub adj_counter ($$$) {
40 my ($self, $key, $op) = @_;
41 my $dbh = $self->{dbh};
42 my $sth = $dbh->prepare_cached(<<"");
43 UPDATE counter SET val = val $op 1 WHERE key = ?
47 get_counter($dbh, $key);
50 sub next_tid { adj_counter($_[0], 'thread', '+') }
51 sub next_ghost_num { adj_counter($_[0], 'ghost', '-') }
54 my ($self, $tbl, $id_col, $val_col, $val) = @_;
55 my $dbh = $self->{dbh};
56 my $in = $dbh->prepare_cached(<<"")->execute($val);
57 INSERT OR IGNORE INTO $tbl ($val_col) VALUES (?)
60 my $sth = $dbh->prepare_cached(<<"", undef, 1);
61 SELECT $id_col FROM $tbl WHERE $val_col = ? LIMIT 1
66 $dbh->last_insert_id(undef, undef, $tbl, $id_col);
71 my ($self, $path) = @_;
72 return unless defined $path && $path ne '';
73 id_for($self, 'subject', 'sid', 'path' => $path);
77 my ($self, $mid) = @_;
78 id_for($self, 'msgid', 'id', 'mid' => $mid);
82 my ($self, $num, $tid_ref) = @_;
83 my $dbh = $self->{dbh};
85 my $sth = $dbh->prepare_cached(<<'', undef, 1);
86 SELECT tid FROM over WHERE num = ? LIMIT 1
89 $$tid_ref = $sth->fetchrow_array; # may be undef
91 foreach (qw(over id2num)) {
92 $dbh->prepare_cached(<<"")->execute($num);
93 DELETE FROM $_ WHERE num = ?
98 # this includes ghosts
100 my ($self, $mid, $cols, $cb) = @_;
101 my $dbh = $self->{dbh};
104 I originally wanted to stuff everything into a single query:
106 SELECT over.* FROM over
107 LEFT JOIN id2num ON over.num = id2num.num
108 LEFT JOIN msgid ON msgid.id = id2num.id
109 WHERE msgid.mid = ? AND over.num >= ?
110 ORDER BY over.num ASC
113 But it's faster broken out (and we're always in a
114 transaction for subroutines in this file)
117 my $sth = $dbh->prepare_cached(<<'', undef, 1);
118 SELECT id FROM msgid WHERE mid = ? LIMIT 1
121 my $id = $sth->fetchrow_array;
122 defined $id or return;
125 $cols = join(',', map { $_ } @$cols);
127 my $prev = get_counter($dbh, 'ghost');
129 $sth = $dbh->prepare_cached(<<"", undef, 1);
130 SELECT num FROM id2num WHERE id = ? AND num >= ?
134 $sth->execute($id, $prev);
135 my $nums = $sth->fetchall_arrayref;
136 my $nr = scalar(@$nums) or return;
137 $prev = $nums->[-1]->[0];
139 $sth = $dbh->prepare_cached(<<"", undef, 1);
140 SELECT $cols FROM over WHERE over.num = ? LIMIT 1
143 $sth->execute($_->[0]);
144 my $smsg = $sth->fetchrow_hashref;
145 $cb->(PublicInbox::Over::load_from_row($smsg)) or
148 return if $nr != $lim;
152 # this will create a ghost as necessary
153 sub resolve_mid_to_tid {
154 my ($self, $mid) = @_;
156 each_by_mid($self, $mid, ['tid'], sub {
158 my $cur_tid = $smsg->{tid};
160 merge_threads($self, $tid, $cur_tid);
166 defined $tid ? $tid : create_ghost($self, $mid);
170 my ($self, $mid) = @_;
171 my $id = $self->mid2id($mid);
172 my $num = $self->next_ghost_num;
173 $num < 0 or die "ghost num is non-negative: $num\n";
174 my $tid = $self->next_tid;
175 my $dbh = $self->{dbh};
176 $dbh->prepare_cached(<<'')->execute($num, $tid);
177 INSERT INTO over (num, tid) VALUES (?,?)
179 $dbh->prepare_cached(<<'')->execute($id, $num);
180 INSERT INTO id2num (id, num) VALUES (?,?)
186 my ($self, $winner_tid, $loser_tid) = @_;
187 return if $winner_tid == $loser_tid;
188 my $dbh = $self->{dbh};
189 $dbh->prepare_cached(<<'')->execute($winner_tid, $loser_tid);
190 UPDATE over SET tid = ? WHERE tid = ?
195 my ($self, $refs, $old_tid) = @_;
199 # first ref *should* be the thread root,
200 # but we can never trust clients to do the right thing
201 my $ref = $refs->[0];
202 $tid = resolve_mid_to_tid($self, $ref);
203 merge_threads($self, $tid, $old_tid) if defined $old_tid;
205 # the rest of the refs should point to this tid:
206 foreach my $i (1..$#$refs) {
208 my $ptid = resolve_mid_to_tid($self, $ref);
209 merge_threads($self, $tid, $ptid);
212 $tid = defined $old_tid ? $old_tid : $self->next_tid;
217 sub parse_references ($$$) {
218 my ($smsg, $mid0, $mids) = @_;
219 my $mime = $smsg->{mime};
220 my $hdr = $mime->header_obj;
221 my $refs = references($hdr);
222 push(@$refs, @$mids) if scalar(@$mids) > 1;
223 return $refs if scalar(@$refs) == 0;
225 # prevent circular references here:
226 my %seen = ( $mid0 => 1 );
228 foreach my $ref (@$refs) {
229 if (length($ref) > PublicInbox::MID::MAX_MID_SIZE) {
230 warn "References: <$ref> too long, ignoring\n";
233 next if $seen{$ref}++;
236 $smsg->{references} = '<'.join('> <', @keep).'>' if @keep;
240 # normalize subjects so they are suitable as pathnames for URLs
241 # XXX: consider for removal
242 sub subject_path ($) {
244 $subj = subject_normalized($subj);
245 $subj =~ s![^a-zA-Z0-9_\.~/\-]+!_!g;
250 my ($self, $mime, $bytes, $num, $oid, $mid0) = @_;
251 my $lines = $mime->body_raw =~ tr!\n!\n!;
258 }, 'PublicInbox::SearchMsg';
259 my $mids = mids($mime->header_obj);
260 my $refs = parse_references($smsg, $mid0, $mids);
261 my $subj = $smsg->subject;
264 $xpath = subject_path($subj);
265 $xpath = id_compress($xpath);
267 my $dd = $smsg->to_doc_data($oid, $mid0);
270 my $values = [ $smsg->ts, $smsg->ds, $num, $mids, $refs, $xpath, $dd ];
271 add_over($self, $values);
275 my ($self, $values) = @_;
276 my ($ts, $ds, $num, $mids, $refs, $xpath, $ddd) = @$values;
281 $self->delete_by_num($num, \$old_tid);
282 foreach my $mid (@$mids) {
284 each_by_mid($self, $mid, ['tid'], sub {
286 my $cur_tid = $cur->{tid};
288 die "num must not be zero for $mid" if !$n;
289 $old_tid = $cur_tid unless defined $old_tid;
290 if ($n > 0) { # regular mail
291 merge_threads($self, $old_tid, $cur_tid);
292 } elsif ($n < 0) { # ghost
293 link_refs($self, $refs, $old_tid);
294 $self->delete_by_num($n);
299 $v > 1 and warn "BUG: vivified multiple ($v) ghosts for $mid\n";
302 my $tid = $vivified ? $old_tid : link_refs($self, $refs, $old_tid);
303 my $sid = $self->sid($xpath);
304 my $dbh = $self->{dbh};
305 my $sth = $dbh->prepare_cached(<<'');
306 INSERT INTO over (num, tid, sid, ts, ds, ddd)
310 my @v = ($num, $tid, $sid, $ts, $ds);
311 foreach (@v) { $sth->bind_param(++$n, $_) }
312 $sth->bind_param(++$n, $ddd, SQL_BLOB);
314 $sth = $dbh->prepare_cached(<<'');
315 INSERT INTO id2num (id, num) VALUES (?,?)
317 foreach my $mid (@$mids) {
318 my $id = $self->mid2id($mid);
319 $sth->execute($id, $num);
323 sub delete_articles {
324 my ($self, $nums) = @_;
325 my $dbh = $self->connect;
326 $self->delete_by_num($_) foreach @$nums;
329 # returns number of removed messages
330 # $oid may be undef to match only on $mid
332 my ($self, $oid, $mid) = @_;
335 each_by_mid($self, $mid, ['ddd'], sub {
337 if (!defined($oid) || $smsg->{blob} eq $oid) {
338 $self->delete_by_num($smsg->{num});
350 CREATE TABLE IF NOT EXISTS over (
351 num INTEGER NOT NULL,
352 tid INTEGER NOT NULL,
356 ddd VARBINARY, /* doc-data-deflated */
360 $dbh->do('CREATE INDEX IF NOT EXISTS idx_tid ON over (tid)');
361 $dbh->do('CREATE INDEX IF NOT EXISTS idx_sid ON over (sid)');
362 $dbh->do('CREATE INDEX IF NOT EXISTS idx_ts ON over (ts)');
363 $dbh->do('CREATE INDEX IF NOT EXISTS idx_ds ON over (ds)');
366 CREATE TABLE IF NOT EXISTS counter (
367 key VARCHAR(8) PRIMARY KEY NOT NULL,
368 val INTEGER DEFAULT 0,
372 $dbh->do("INSERT OR IGNORE INTO counter (key) VALUES ('thread')");
373 $dbh->do("INSERT OR IGNORE INTO counter (key) VALUES ('ghost')");
376 CREATE TABLE IF NOT EXISTS subject (
377 sid INTEGER PRIMARY KEY AUTOINCREMENT,
378 path VARCHAR(40) NOT NULL,
383 CREATE TABLE IF NOT EXISTS id2num (
385 num INTEGER NOT NULL,
389 # performance critical:
390 $dbh->do('CREATE INDEX IF NOT EXISTS idx_inum ON id2num (num)');
391 $dbh->do('CREATE INDEX IF NOT EXISTS idx_id ON id2num (id)');
394 CREATE TABLE IF NOT EXISTS msgid (
395 id INTEGER PRIMARY KEY AUTOINCREMENT,
396 mid VARCHAR(244) NOT NULL,
404 delete $self->{txn} or return;
405 $self->{dbh}->commit;
410 return if $self->{txn};
411 my $dbh = $self->connect or return;
413 # $dbh->{Profile} = 2;
419 delete $self->{txn} or return;
420 $self->{dbh}->rollback;
425 die "in transaction" if $self->{txn};
426 $self->{dbh} = undef;
431 unless (-r $self->{filename}) {
433 require File::Basename;
434 File::Path::mkpath(File::Basename::dirname($self->{filename}));
437 PublicInbox::Over::connect($self);