summaryrefslogtreecommitdiff
path: root/larch
diff options
context:
space:
mode:
Diffstat (limited to 'larch')
-rw-r--r--larch/refcountstore.py21
-rw-r--r--larch/refcountstore_tests.py4
2 files changed, 14 insertions, 11 deletions
diff --git a/larch/refcountstore.py b/larch/refcountstore.py
index 18fb9e7..6a9411f 100644
--- a/larch/refcountstore.py
+++ b/larch/refcountstore.py
@@ -24,12 +24,10 @@ import tracing
import larch
-def encode_refcounts(refcounts, start_id, how_many):
+def encode_refcounts(refcounts, start_id, how_many, keys):
fmt = '!QH' + 'H' * how_many
args = [start_id, how_many] + ([0] * how_many)
- keys = set(refcounts.keys())
- wanted = set(range(start_id, start_id + how_many))
- for key in wanted.intersection(keys):
+ for key in keys:
args[2 + key - start_id] = refcounts[key]
return struct.pack(fmt, *args)
@@ -91,13 +89,19 @@ class RefcountStore(object):
if not self.node_store.journal.exists(dirname):
self.node_store.journal.makedirs(dirname)
ids = sorted(self.dirty)
+ all_ids_in_memory = set(self.refcounts.keys())
for start_id in range(self._start_id(ids[0]),
self._start_id(ids[-1]) + 1,
self.per_group):
- encoded = encode_refcounts(self.refcounts, start_id,
- self.per_group)
- filename = self._group_filename(start_id)
- self.node_store.journal.overwrite_file(filename, encoded)
+
+ all_ids_in_group = set(
+ range(start_id, start_id + self.per_group))
+ keys = all_ids_in_group.intersection(all_ids_in_memory)
+ if keys:
+ encoded = encode_refcounts(
+ self.refcounts, start_id, self.per_group, keys)
+ filename = self._group_filename(start_id)
+ self.node_store.journal.overwrite_file(filename, encoded)
# We re-initialize these so that they don't grow indefinitely.
self.refcounts = dict()
@@ -115,4 +119,3 @@ class RefcountStore(object):
def _start_id(self, node_id):
return (node_id / self.per_group) * self.per_group
-
diff --git a/larch/refcountstore_tests.py b/larch/refcountstore_tests.py
index f18e29b..c38f120 100644
--- a/larch/refcountstore_tests.py
+++ b/larch/refcountstore_tests.py
@@ -91,8 +91,8 @@ class RefcountStoreTests(unittest.TestCase):
refs = range(2048)
for ref in refs:
self.rs.set_refcount(ref, ref)
- encoded = larch.refcountstore.encode_refcounts(self.rs.refcounts,
- 0, 1024)
+ encoded = larch.refcountstore.encode_refcounts(
+ self.rs.refcounts, 0, 1024, range(1024))
decoded = larch.refcountstore.decode_refcounts(encoded)
self.assertEqual(decoded, [(x, x) for x in refs[:1024]])