summaryrefslogtreecommitdiff
path: root/obnamlib/fmt_ga/cowtree.py
blob: 7f84d8e1a8a085f9e9a79d2efe1bd442125c9a53 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright 2016-2017  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=


import obnamlib


class CowTree(object):

    def __init__(self):
        self._store = None
        self._leaf_list = obnamlib.LeafList()
        self._delta = obnamlib.CowDelta()
        self._max_keys_per_leaf = 1024  # FIXME: This should be configurable?

    def set_leaf_store(self, leaf_store):
        self._store = leaf_store

    def set_list_node(self, leaf_id):
        fake_leaf = self._store.get_leaf(leaf_id)
        serialised = fake_leaf.lookup('leaf_list')
        self._leaf_list = obnamlib.LeafList.unserialise(serialised)

    def set_max_leaf_size(self, max_keys):
        assert max_keys >= 2
        self._max_keys_per_leaf = max_keys

    def lookup(self, key):
        if key in self._delta:
            value = self._delta.get(key)
            if value is obnamlib.removed_key:
                return None
            return value

        leaf_id = self._leaf_list.find_leaf(key)
        if leaf_id is None:
            return None

        leaf = self._store.get_leaf(leaf_id)
        assert leaf is not None
        return leaf.lookup(key)

    def insert(self, key, value):
        self._delta.set(key, value)

    def remove(self, key):
        self._delta.remove(key)

    def keys(self):
        delta_keys = set(self._delta.keys())
        for key in delta_keys:
            if self._delta.get(key) != obnamlib.removed_key:
                yield key

        leaf_ids = self._leaf_list.leaves()
        for leaf_id in leaf_ids:
            leaf = self._store.get_leaf(leaf_id)
            for key in leaf.keys():
                if key not in delta_keys:
                    yield key

    def commit(self):
        keys = sorted(self.keys())
        leaf = obnamlib.CowLeaf()
        leaf_list = obnamlib.LeafList()
        for key in keys:
            assert len(leaf) < self._max_keys_per_leaf
            leaf.insert(key, self.lookup(key))
            if len(leaf) == self._max_keys_per_leaf:
                self._add_leaf(leaf_list, leaf)
                leaf = obnamlib.CowLeaf()
        if len(leaf) > 0:
            self._add_leaf(leaf_list, leaf)
        leaf_id = self._put_leaf_list(leaf_list)
        return leaf_id

    def _add_leaf(self, leaf_list, leaf):
        leaf_id = self._store.put_leaf(leaf)
        keys = leaf.keys()
        leaf_list.add(leaf_id, keys[0], keys[-1])

    def _put_leaf_list(self, leaf_list):
        fake_leaf = obnamlib.CowLeaf()
        fake_leaf.insert('leaf_list', leaf_list.serialise())
        list_id = self._store.put_leaf(fake_leaf)
        self._store.flush()
        return list_id