Skip to content
Snippets Groups Projects
Commit 2593873c authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

rust-dirstate: panic if the DirstateMap counters go below 0

When modifying the API I hit some... interesting errors (trying to allocate
178GB of RAM, for example) because I failed to keep the counters correctly
updated.

This counter underflow is likely to happen when code is changed around
and can have up to eat-your-dirstate level of consequences, which is not nice.

The very small runtime cost of checking these counters should really not be an
issue and will help us uncover bugs when/if they do appear in the future.

Differential Revision: https://phab.mercurial-scm.org/D12430
parent dd6b67d5
No related branches found
No related tags found
No related merge requests found
......@@ -831,6 +831,11 @@
)? {
dropped = d;
if dropped.had_entry {
node.descendants_with_entry_count -= 1;
node.descendants_with_entry_count = node
.descendants_with_entry_count
.checked_sub(1)
.expect(
"descendants_with_entry_count should be >= 0",
);
}
if dropped.was_tracked {
......@@ -835,6 +840,11 @@
}
if dropped.was_tracked {
node.tracked_descendants_count -= 1;
node.tracked_descendants_count = node
.tracked_descendants_count
.checked_sub(1)
.expect(
"tracked_descendants_count should be >= 0",
);
}
// Directory caches must be invalidated when removing a
......@@ -889,6 +899,9 @@
filename,
)? {
if dropped.had_entry {
map.nodes_with_entry_count -= 1
map.nodes_with_entry_count = map
.nodes_with_entry_count
.checked_sub(1)
.expect("nodes_with_entry_count should be >= 0");
}
if dropped.had_copy_source {
......@@ -893,6 +906,9 @@
}
if dropped.had_copy_source {
map.nodes_with_copy_source_count -= 1
map.nodes_with_copy_source_count = map
.nodes_with_copy_source_count
.checked_sub(1)
.expect("nodes_with_copy_source_count should be >= 0");
}
} else {
debug_assert!(!was_tracked);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment