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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#[cfg(test)]
mod state_store_test;
use crate::{
change_set::ChangeSet,
ledger_counters::LedgerCounter,
schema::{
jellyfish_merkle_node::JellyfishMerkleNodeSchema, stale_node_index::StaleNodeIndexSchema,
},
};
use anyhow::Result;
use diem_crypto::HashValue;
use diem_jellyfish_merkle::{node_type::NodeKey, JellyfishMerkleTree, TreeReader, TreeWriter};
use diem_types::{
account_address::{AccountAddress, HashAccountAddress},
account_state_blob::AccountStateBlob,
nibble::{nibble_path::NibblePath, ROOT_NIBBLE_HEIGHT},
proof::{SparseMerkleProof, SparseMerkleRangeProof},
transaction::Version,
};
use schemadb::{SchemaBatch, DB};
use std::{collections::HashMap, sync::Arc};
type LeafNode = diem_jellyfish_merkle::node_type::LeafNode<AccountStateBlob>;
type Node = diem_jellyfish_merkle::node_type::Node<AccountStateBlob>;
type NodeBatch = diem_jellyfish_merkle::NodeBatch<AccountStateBlob>;
#[derive(Debug)]
pub(crate) struct StateStore {
db: Arc<DB>,
}
impl StateStore {
pub fn new(db: Arc<DB>) -> Self {
Self { db }
}
pub fn get_account_state_with_proof_by_version(
&self,
address: AccountAddress,
version: Version,
) -> Result<(
Option<AccountStateBlob>,
SparseMerkleProof<AccountStateBlob>,
)> {
JellyfishMerkleTree::new(self).get_with_proof(address.hash(), version)
}
pub fn get_account_state_range_proof(
&self,
rightmost_key: HashValue,
version: Version,
) -> Result<SparseMerkleRangeProof> {
JellyfishMerkleTree::new(self).get_range_proof(rightmost_key, version)
}
pub fn put_account_state_sets(
&self,
account_state_sets: Vec<HashMap<AccountAddress, AccountStateBlob>>,
node_hashes: Option<Vec<&HashMap<NibblePath, HashValue>>>,
first_version: Version,
cs: &mut ChangeSet,
) -> Result<Vec<HashValue>> {
let blob_sets = account_state_sets
.into_iter()
.map(|account_states| {
account_states
.into_iter()
.map(|(addr, blob)| (addr.hash(), blob))
.collect::<Vec<_>>()
})
.collect::<Vec<_>>();
let (new_root_hash_vec, tree_update_batch) = JellyfishMerkleTree::new(self)
.batch_put_value_sets(blob_sets, node_hashes, first_version)?;
let num_versions = new_root_hash_vec.len();
assert_eq!(num_versions, tree_update_batch.node_stats.len());
tree_update_batch
.node_stats
.iter()
.enumerate()
.for_each(|(i, stats)| {
let counter_bumps = cs.counter_bumps(first_version + i as u64);
counter_bumps.bump(LedgerCounter::NewStateNodes, stats.new_nodes);
counter_bumps.bump(LedgerCounter::NewStateLeaves, stats.new_leaves);
counter_bumps.bump(LedgerCounter::StaleStateNodes, stats.stale_nodes);
counter_bumps.bump(LedgerCounter::StaleStateLeaves, stats.stale_leaves);
});
add_node_batch(&mut cs.batch, &tree_update_batch.node_batch)?;
tree_update_batch
.stale_node_index_batch
.iter()
.map(|row| cs.batch.put::<StaleNodeIndexSchema>(row, &()))
.collect::<Result<Vec<()>>>()?;
Ok(new_root_hash_vec)
}
pub fn get_root_hash(&self, version: Version) -> Result<HashValue> {
JellyfishMerkleTree::new(self).get_root_hash(version)
}
pub fn get_root_hash_option(&self, version: Version) -> Result<Option<HashValue>> {
JellyfishMerkleTree::new(self).get_root_hash_option(version)
}
#[cfg(test)]
pub fn get_rightmost_leaf_naive(&self) -> Result<Option<(NodeKey, LeafNode)>> {
let mut ret = None;
let mut iter = self
.db
.iter::<JellyfishMerkleNodeSchema>(Default::default())?;
iter.seek_to_first();
while let Some((node_key, node)) = iter.next().transpose()? {
if let Node::Leaf(leaf_node) = node {
match ret {
None => ret = Some((node_key, leaf_node)),
Some(ref other) => {
if leaf_node.account_key() > other.1.account_key() {
ret = Some((node_key, leaf_node));
}
}
}
}
}
Ok(ret)
}
}
impl TreeReader<AccountStateBlob> for StateStore {
fn get_node_option(&self, node_key: &NodeKey) -> Result<Option<Node>> {
self.db.get::<JellyfishMerkleNodeSchema>(node_key)
}
fn get_rightmost_leaf(&self) -> Result<Option<(NodeKey, LeafNode)>> {
let mut iter = self
.db
.iter::<JellyfishMerkleNodeSchema>(Default::default())?;
iter.seek_to_first();
let version = match iter.next().transpose()? {
Some((node_key, _node)) => node_key.version(),
None => return Ok(None),
};
let mut ret = None;
for num_nibbles in 1..=ROOT_NIBBLE_HEIGHT + 1 {
let mut iter = self
.db
.iter::<JellyfishMerkleNodeSchema>(Default::default())?;
let seek_key = (version, num_nibbles as u8);
iter.seek_for_prev(&seek_key)?;
if let Some((node_key, node)) = iter.next().transpose()? {
debug_assert_eq!(node_key.version(), version);
debug_assert!(node_key.nibble_path().num_nibbles() < num_nibbles);
if let Node::Leaf(leaf_node) = node {
match ret {
None => ret = Some((node_key, leaf_node)),
Some(ref other) => {
if leaf_node.account_key() > other.1.account_key() {
ret = Some((node_key, leaf_node));
}
}
}
}
}
}
Ok(ret)
}
}
impl TreeWriter<AccountStateBlob> for StateStore {
fn write_node_batch(&self, node_batch: &NodeBatch) -> Result<()> {
let mut batch = SchemaBatch::new();
add_node_batch(&mut batch, node_batch)?;
self.db.write_schemas(batch)
}
}
fn add_node_batch(batch: &mut SchemaBatch, node_batch: &NodeBatch) -> Result<()> {
node_batch
.iter()
.map(|(node_key, node)| batch.put::<JellyfishMerkleNodeSchema>(node_key, node))
.collect::<Result<Vec<_>>>()?;
Ok(())
}