]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Msgmap.pm
Msgmap: pass ReadOnly DBI flag for non-writable opens
[public-inbox.git] / lib / PublicInbox / Msgmap.pm
1 # Copyright (C) 2015 all contributors <meta@public-inbox.org>
2 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
3 # bidirectional Message-ID <-> Article Number mapping
4 package PublicInbox::Msgmap;
5 use strict;
6 use warnings;
7 use DBI;
8 use DBD::SQLite;
9
10 sub new {
11         my ($class, $git_dir, $writable) = @_;
12         my $d = "$git_dir/public-inbox";
13         if ($writable && !-d $d && !mkdir $d) {
14                 my $err = $!;
15                 -d $d or die "$d not created: $err";
16         }
17         my $f = "$d/msgmap.sqlite3";
18         my $dbh = DBI->connect("dbi:SQLite:dbname=$f",'','', {
19                 AutoCommit => 1,
20                 RaiseError => 1,
21                 PrintError => 0,
22                 ReadOnly => !$writable,
23                 sqlite_use_immediate_transaction => 1,
24         });
25         $dbh->do('PRAGMA case_sensitive_like = ON');
26         my $self = bless { dbh => $dbh }, $class;
27
28         if ($writable) {
29                 create_tables($dbh);
30                 $self->created_at(time) unless $self->created_at;
31         }
32         $self;
33 }
34
35 sub meta_accessor {
36         my ($self, $key, $value) = @_;
37         use constant {
38                 meta_select => 'SELECT val FROM meta WHERE key = ? LIMIT 1',
39                 meta_update => 'UPDATE meta SET val = ? WHERE key = ? LIMIT 1',
40                 meta_insert => 'INSERT INTO meta (key,val) VALUES (?,?)',
41         };
42
43         my $dbh = $self->{dbh};
44         my $prev;
45         defined $value or
46                 return $dbh->selectrow_array(meta_select, undef, $key);
47
48         $dbh->begin_work;
49         eval {
50                 $prev = $dbh->selectrow_array(meta_select, undef, $key);
51
52                 if (defined $prev) {
53                         $dbh->do(meta_update, undef, $value, $key);
54                 } else {
55                         $dbh->do(meta_insert, undef, $key, $value);
56                 }
57                 $dbh->commit;
58         };
59         my $err = $@;
60         return $prev unless $err;
61
62         $dbh->rollback;
63         die $err;
64 }
65
66 sub last_commit {
67         my ($self, $commit) = @_;
68         $self->meta_accessor('last_commit', $commit);
69 }
70
71 sub created_at {
72         my ($self, $second) = @_;
73         $self->meta_accessor('created_at', $second);
74 }
75
76 sub mid_insert {
77         my ($self, $mid) = @_;
78         my $dbh = $self->{dbh};
79         use constant MID_INSERT => 'INSERT INTO msgmap (mid) VALUES (?)';
80         my $sth = $self->{mid_insert} ||= $dbh->prepare(MID_INSERT);
81         $sth->bind_param(1, $mid);
82         $sth->execute;
83         $dbh->last_insert_id(undef, undef, 'msgmap', 'num');
84 }
85
86 sub mid_for {
87         my ($self, $num) = @_;
88         my $dbh = $self->{dbh};
89         use constant MID_FOR => 'SELECT mid FROM msgmap WHERE num = ? LIMIT 1';
90         my $sth = $self->{mid_for} ||= $dbh->prepare(MID_FOR);
91         $sth->bind_param(1, $num);
92         $sth->execute;
93         $sth->fetchrow_array;
94 }
95
96 sub num_for {
97         my ($self, $mid) = @_;
98         my $dbh = $self->{dbh};
99         use constant NUM_FOR => 'SELECT num FROM msgmap WHERE mid = ? LIMIT 1';
100         my $sth = $self->{num_for} ||= $dbh->prepare(NUM_FOR);
101         $sth->bind_param(1, $mid);
102         $sth->execute;
103         $sth->fetchrow_array;
104 }
105
106 sub minmax {
107         my ($self) = @_;
108         my $dbh = $self->{dbh};
109         use constant NUM_MINMAX => 'SELECT MIN(num),MAX(num) FROM msgmap';
110         my $sth = $self->{num_minmax} ||= $dbh->prepare(NUM_MINMAX);
111         $sth->execute;
112         $sth->fetchrow_array;
113 }
114
115 sub mid_prefixes {
116         my ($self, $pfx, $limit) = @_;
117
118         die "No prefix given" unless (defined $pfx && $pfx ne '');
119         $pfx =~ s/([%_])/\\$1/g;
120         $pfx .= '%';
121
122         $limit ||= 100;
123         $limit += 0; # force to integer
124         $limit ||= 100;
125
126         $self->{dbh}->selectcol_arrayref('SELECT mid FROM msgmap ' .
127                                          'WHERE mid LIKE ? ESCAPE ? ' .
128                                          "ORDER BY num DESC LIMIT $limit",
129                                          undef, $pfx, '\\');
130 }
131
132 sub mid_delete {
133         my ($self, $mid) = @_;
134         my $dbh = $self->{dbh};
135         use constant MID_DELETE => 'DELETE FROM msgmap WHERE mid = ?';
136         my $sth = $dbh->prepare(MID_DELETE);
137         $sth->bind_param(1, $mid);
138         $sth->execute;
139 }
140
141 sub create_tables {
142         my ($dbh) = @_;
143         my $e;
144
145         $e = eval { $dbh->selectrow_array('EXPLAIN SELECT * FROM msgmap;') };
146         defined $e or $dbh->do('CREATE TABLE msgmap (' .
147                         'num INTEGER PRIMARY KEY AUTOINCREMENT, '.
148                         'mid VARCHAR(1000) NOT NULL, ' .
149                         'UNIQUE (mid) )');
150
151         $e = eval { $dbh->selectrow_array('EXPLAIN SELECT * FROM meta') };
152         defined $e or $dbh->do('CREATE TABLE meta (' .
153                         'key VARCHAR(32) PRIMARY KEY, '.
154                         'val VARCHAR(255) NOT NULL)');
155 }
156
157 sub id_batch {
158         my ($self, $num, $cb) = @_;
159         my $dbh = $self->{dbh};
160         my $sth = $dbh->prepare('SELECT num FROM msgmap WHERE num > ? '.
161                                 'ORDER BY num ASC LIMIT 1000');
162         $sth->execute($num);
163         my $ary = $sth->fetchall_arrayref;
164         @$ary = map { $_->[0] } @$ary;
165         my $nr = scalar @$ary;
166         $cb->($ary) if $nr;
167         $nr;
168 }
169
170 1;