public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob eb2ecf2f237077613be48e5ecbbee1d347b93c13 1474 bytes (raw)
$ git show v1.4.0:lib/PublicInbox/MultiMidQueue.pm	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
# Copyright (C) 2020 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# temporary queue for public-inbox-index to support multi-Message-ID
# messages on mirrors of v2 inboxes
package PublicInbox::MultiMidQueue;
use strict;
use SDBM_File; # part of Perl standard library
use Fcntl qw(O_RDWR O_CREAT);
use File::Temp 0.19 (); # 0.19 for ->newdir
my %e = (
	freebsd => 0x100000,
	linux => 0x80000,
	netbsd => 0x400000,
	openbsd => 0x10000,
);
my $O_CLOEXEC = $e{$^O} // 0;

sub new {
	my ($class) = @_;
	my $tmpdir = File::Temp->newdir('multi-mid-q-XXXXXX', TMPDIR => 1);
	my $base = $tmpdir->dirname . '/q';
	my %sdbm;
	my $flags = O_RDWR|O_CREAT;
	if (!tie(%sdbm, 'SDBM_File', $base, $flags|$O_CLOEXEC, 0600)) {
		if (!tie(%sdbm, 'SDBM_File', $base, $flags, 0600)) {
			die "could not tie ($base): $!";
		}
		$O_CLOEXEC = 0;
	}

	bless {
		cur => 1,
		min => 1,
		max => 0,
		sdbm => \%sdbm,
		tmpdir => $tmpdir,
	}, $class;
}

sub set_oid {
	my ($self, $i, $oid, $v2w) = @_;
	$self->{max} = $i if $i > $self->{max};
	$self->{min} = $i if $i < $self->{min};
	$self->{sdbm}->{$i} = "$oid\t$v2w->{autime}\t$v2w->{cotime}";
}

sub get_oid {
	my ($self, $i, $v2w) = @_;
	my $rec = $self->{sdbm}->{$i} or return;
	my ($oid, $autime, $cotime) = split(/\t/, $rec);
	$v2w->{autime} = $autime;
	$v2w->{cotime} = $cotime;
	$oid
}

sub push_oid {
	my ($self, $oid, $v2w) = @_;
	set_oid($self, $self->{cur}++, $oid, $v2w);
}

1;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git