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
use hash_db::HashDBRef;
use crate::nibble::NibbleSlice;
use crate::node::{Node, NodeHandle, decode_hash};
use crate::node_codec::NodeCodec;
use crate::rstd::boxed::Box;
use super::{DBValue, Result, TrieError, Query, TrieLayout, CError, TrieHash};
pub struct Lookup<'a, L: TrieLayout, Q: Query<L::Hash>> {
pub db: &'a dyn HashDBRef<L::Hash, DBValue>,
pub query: Q,
pub hash: TrieHash<L>,
}
impl<'a, L, Q> Lookup<'a, L, Q>
where
L: TrieLayout,
Q: Query<L::Hash>,
{
pub fn look_up(
mut self,
key: NibbleSlice,
) -> Result<Option<Q::Item>, TrieHash<L>, CError<L>> {
let mut partial = key;
let mut hash = self.hash;
let mut key_nibbles = 0;
for depth in 0.. {
let node_data = match self.db.get(&hash, key.mid(key_nibbles).left()) {
Some(value) => value,
None => return Err(Box::new(match depth {
0 => TrieError::InvalidStateRoot(hash),
_ => TrieError::IncompleteDatabase(hash),
})),
};
self.query.record(&hash, &node_data, depth);
let mut node_data = &node_data[..];
loop {
let decoded = match L::Codec::decode(node_data) {
Ok(node) => node,
Err(e) => {
return Err(Box::new(TrieError::DecoderError(hash, e)))
}
};
let next_node = match decoded {
Node::Leaf(slice, value) => {
return Ok(match slice == partial {
true => Some(self.query.decode(value)),
false => None,
})
}
Node::Extension(slice, item) => {
if partial.starts_with(&slice) {
partial = partial.mid(slice.len());
key_nibbles += slice.len();
item
} else {
return Ok(None)
}
}
Node::Branch(children, value) => match partial.is_empty() {
true => return Ok(value.map(move |val| self.query.decode(val))),
false => match children[partial.at(0) as usize] {
Some(x) => {
partial = partial.mid(1);
key_nibbles += 1;
x
}
None => return Ok(None)
}
},
Node::NibbledBranch(slice, children, value) => {
if !partial.starts_with(&slice) {
return Ok(None)
}
match partial.len() == slice.len() {
true => return Ok(value.map(move |val| self.query.decode(val))),
false => match children[partial.at(slice.len()) as usize] {
Some(x) => {
partial = partial.mid(slice.len() + 1);
key_nibbles += slice.len() + 1;
x
}
None => return Ok(None)
}
}
},
Node::Empty => return Ok(None),
};
match next_node {
NodeHandle::Hash(data) => {
hash = decode_hash::<L::Hash>(data)
.ok_or_else(|| Box::new(TrieError::InvalidHash(hash, data.to_vec())))?;
break;
},
NodeHandle::Inline(data) => {
node_data = data;
},
}
}
}
Ok(None)
}
}