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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
use ckb_chain_spec::consensus::ProposalWindow;
use ckb_types::{core::BlockNumber, packed::ProposalShortId};
use std::collections::{BTreeMap, HashSet};
use std::ops::Bound;
#[cfg(test)]
mod tests;
#[derive(Default, Clone, Debug)]
pub struct ProposalView {
pub(crate) gap: HashSet<ProposalShortId>,
pub(crate) set: HashSet<ProposalShortId>,
}
impl ProposalView {
pub fn new(gap: HashSet<ProposalShortId>, set: HashSet<ProposalShortId>) -> ProposalView {
ProposalView { gap, set }
}
pub fn gap(&self) -> &HashSet<ProposalShortId> {
&self.gap
}
pub fn set(&self) -> &HashSet<ProposalShortId> {
&self.set
}
pub fn contains_proposed(&self, id: &ProposalShortId) -> bool {
self.set.contains(id)
}
pub fn contains_gap(&self, id: &ProposalShortId) -> bool {
self.gap.contains(id)
}
}
#[derive(Debug, PartialEq, Clone, Eq)]
pub struct ProposalTable {
pub(crate) table: BTreeMap<BlockNumber, HashSet<ProposalShortId>>,
pub(crate) proposal_window: ProposalWindow,
}
impl ProposalTable {
pub fn new(proposal_window: ProposalWindow) -> Self {
ProposalTable {
proposal_window,
table: BTreeMap::default(),
}
}
pub fn insert(&mut self, number: BlockNumber, ids: HashSet<ProposalShortId>) -> bool {
self.table.insert(number, ids).is_none()
}
pub fn remove(&mut self, number: BlockNumber) -> Option<HashSet<ProposalShortId>> {
self.table.remove(&number)
}
pub fn all(&self) -> &BTreeMap<BlockNumber, HashSet<ProposalShortId>> {
&self.table
}
pub fn finalize(
&mut self,
origin: &ProposalView,
number: BlockNumber,
) -> (HashSet<ProposalShortId>, ProposalView) {
let candidate_number = number + 1;
let proposal_start = candidate_number.saturating_sub(self.proposal_window.farthest());
let proposal_end = candidate_number.saturating_sub(self.proposal_window.closest());
if proposal_start > 1 {
self.table = self.table.split_off(&proposal_start);
}
ckb_logger::trace!("[proposal_finalize] table {:?}", self.table);
let (new_ids, gap) = if candidate_number <= self.proposal_window.closest() {
(
HashSet::new(),
self.table
.range((Bound::Unbounded, Bound::Included(&number)))
.map(|pair| pair.1)
.cloned()
.flatten()
.collect(),
)
} else {
(
self.table
.range((
Bound::Included(&proposal_start),
Bound::Included(&proposal_end),
))
.map(|pair| pair.1)
.cloned()
.flatten()
.collect(),
self.table
.range((Bound::Excluded(&proposal_end), Bound::Included(&number)))
.map(|pair| pair.1)
.cloned()
.flatten()
.collect(),
)
};
let removed_ids: HashSet<ProposalShortId> =
origin.set().difference(&new_ids).cloned().collect();
ckb_logger::trace!(
"[proposal_finalize] number {} proposal_start {}----proposal_end {}",
number,
proposal_start,
proposal_end
);
ckb_logger::trace!(
"[proposal_finalize] number {} new_ids {:?}----removed_ids {:?}",
number,
new_ids,
removed_ids
);
(removed_ids, ProposalView::new(gap, new_ids))
}
}