]> Sergey Matveev's repositories - public-inbox.git/commitdiff
msgmap: add tmp_clone to create an anonymous copy
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>
Wed, 21 Mar 2018 08:29:25 +0000 (08:29 +0000)
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>
Thu, 22 Mar 2018 00:12:43 +0000 (00:12 +0000)
This will be used to keep track of Message-ID <-> NNTP Article
numbers to prevent article number reuse when reindexing.

lib/PublicInbox/Inbox.pm
lib/PublicInbox/Msgmap.pm
t/msgmap.t

index b9cd4c40a6dc7541f799f0da8b520e426af7df4d..f307038399b77437b8e5a94ed163e01559959466 100644 (file)
@@ -75,7 +75,7 @@ sub new {
        _set_uint($opts, 'feedmax', 25);
        $opts->{nntpserver} ||= $pi_config->{'publicinbox.nntpserver'};
        my $dir = $opts->{mainrepo};
-       if (defined $dir && -f "$dir/msgmap.sqlite3") { # XXX DIRTY
+       if (defined $dir && -f "$dir/inbox.lock") {
                $opts->{version} = 2;
        }
        bless $opts, $class;
index 8e81fba08d12b81ba6b1ead7709881f137c38ff4..78922d3693c9647e0b11c3dc7fc300ce1a985147 100644 (file)
@@ -12,6 +12,7 @@ use strict;
 use warnings;
 use DBI;
 use DBD::SQLite;
+use File::Temp qw(tempfile);
 
 sub new {
        my ($class, $git_dir, $writable) = @_;
@@ -45,6 +46,18 @@ sub new_file {
        $self;
 }
 
+# used to keep track of used numeric mappings for v2 reindex
+sub tmp_clone {
+       my ($self) = @_;
+       my ($fh, $fn) = tempfile(EXLOCK => 0);
+       $self->{dbh}->sqlite_backup_to_file($fn);
+       my $tmp = ref($self)->new_file($fn, 1);
+       $tmp->{dbh}->do('PRAGMA synchronous = OFF');
+       $tmp->{tmp_name} = $fn; # SQLite won't work if unlinked, apparently
+       $fh = undef;
+       $tmp;
+}
+
 # n.b. invoked directly by scripts/xhdr-num2mid
 sub meta_accessor {
        my ($self, $key, $value) = @_;
@@ -189,4 +202,10 @@ sub mid_set {
        $sth->execute($num, $mid);
 }
 
+sub DESTROY {
+       my ($self) = @_;
+       delete $self->{dbh};
+       unlink $self->{tmp_name} if defined $self->{tmp_name};
+}
+
 1;
index bc22137dd00ca770b31d84c88e6ad0d6aaff0cc2..dce98f46b6f57e48a90653ceba659a3665db247d 100644 (file)
@@ -65,4 +65,8 @@ my $orig = $d->mid_insert('spam@1');
 $d->mid_delete('spam@1');
 is($d->mid_insert('spam@2'), 1 + $orig, "last number not recycled");
 
+my $tmp = $d->tmp_clone;
+is_deeply([$d->minmax], [$tmp->minmax], 'Cloned temporary DB matches');
+ok($tmp->mid_delete('spam@2'), 'temporary DB is writable');
+
 done_testing();