]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Msgmap.pm
wwwstream: drop tor2web URL
[public-inbox.git] / lib / PublicInbox / Msgmap.pm
index 192e311aec2b1d459407e0853cfcecb26c2f0448..d474badef16b06a9bf74b63f80224860598d406c 100644 (file)
@@ -50,6 +50,10 @@ sub new_file {
                create_tables($dbh);
                $dbh->begin_work;
                $self->created_at(time) unless $self->created_at;
+
+               my (undef, $max) = $self->minmax();
+               $max ||= 0;
+               $self->num_highwater($max);
                $dbh->commit;
        }
        $self;
@@ -107,6 +111,17 @@ sub created_at {
        $self->meta_accessor('created_at', $second);
 }
 
+sub num_highwater {
+       my ($self, $num) = @_;
+       my $high = $self->{num_highwater} ||=
+           $self->meta_accessor('num_highwater');
+       if (defined($num) && (!defined($high) || ($num > $high))) {
+               $self->{num_highwater} = $num;
+               $self->meta_accessor('num_highwater', $num);
+       }
+       $self->{num_highwater};
+}
+
 sub mid_insert {
        my ($self, $mid) = @_;
        my $dbh = $self->{dbh};
@@ -114,7 +129,9 @@ sub mid_insert {
 INSERT OR IGNORE INTO msgmap (mid) VALUES (?)
 
        return if $sth->execute($mid) == 0;
-       $dbh->last_insert_id(undef, undef, 'msgmap', 'num');
+       my $num = $dbh->last_insert_id(undef, undef, 'msgmap', 'num');
+       $self->num_highwater($num) unless !defined($num);
+       $num;
 }
 
 sub mid_for {
@@ -199,7 +216,7 @@ sub msg_range {
        my $attr = { Columns => [] };
        my $mids = $dbh->selectall_arrayref(<<'', $attr, $$beg, $end);
 SELECT num,mid FROM msgmap WHERE num >= ? AND num <= ?
-ORDER BY num ASC
+ORDER BY num ASC LIMIT 1000
 
        $$beg = $mids->[-1]->[0] + 1 if @$mids;
        $mids
@@ -213,7 +230,9 @@ sub mid_set {
                $self->{dbh}->prepare(
                        'INSERT OR IGNORE INTO msgmap (num,mid) VALUES (?,?)');
        };
-       $sth->execute($num, $mid);
+       my $result = $sth->execute($num, $mid);
+       $self->num_highwater($num) if (defined($result) && $result == 1);
+       $result;
 }
 
 sub DESTROY {