summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bloomfilter.pm
blob: 0d329b2ead1811c61bb17d4594f5a70010ac9e5e (plain)
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
63
64
65
66
67
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Bloomfilter;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Constants;
use Algorithm::BloomFilter;
use File::Temp qw(tempfile);

sub _new_bloom_filter {
    my ($n) = @_;
    my $p = 0.01;
    my $m = $n * abs(log $p) / log(2) ** 2;
    my $k = $m / $n * log(2);
    return Algorithm::BloomFilter->new($m, $k);
}

sub _filename {
    my ($name) = @_;

    my $datadir = bz_locations->{datadir};
    return sprintf("%s/%s.bloom", $datadir, $name);
}

sub populate {
    my ($class, $name, $items) = @_;
    my $memcached = Bugzilla->memcached;

    my $filter = _new_bloom_filter(@$items + 0);
    foreach my $item (@$items) {
        $filter->add($item);
    }

    my ($fh, $filename) = tempfile( "${name}XXXXXX", DIR => bz_locations->{datadir}, UNLINK => 0);
    binmode $fh, ':bytes';
    print $fh $filter->serialize;
    close $fh;
    rename($filename, _filename($name)) or die "failed to rename $filename: $!";
    $memcached->clear_bloomfilter({name => $name});
}

sub lookup {
    my ($class, $name) = @_;
    my $memcached   = Bugzilla->memcached;
    my $filename    = _filename($name);
    my $filter_data = $memcached->get_bloomfilter( { name => $name } );

    if (!$filter_data && -f $filename) {
        open my $fh, '<:bytes', $filename;
        local $/ = undef;
        $filter_data = <$fh>;
        close $fh;
        $memcached->set_bloomfilter({ name => $name, filter => $filter_data });
    }

    return Algorithm::BloomFilter->deserialize($filter_data);
}

1;