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
use std::borrow::Cow;
use std::error::Error;
use std::ops::{Deref, DerefMut};
pub type MerkleRoot = [u8; 32];
pub trait Storage<K, V>
where
V: Clone,
{
type Error: Error;
fn insert(&mut self, key: &K, value: &V) -> Result<Option<V>, Self::Error>;
fn remove(&mut self, key: &K) -> Result<Option<V>, Self::Error>;
fn get<'a>(&'a self, key: &K) -> Result<Option<Cow<'a, V>>, Self::Error>;
fn contains_key(&self, key: &K) -> Result<bool, Self::Error>;
}
impl<K, V, S> Storage<K, V> for &mut S
where
V: Clone,
S: Storage<K, V>,
{
type Error = S::Error;
fn insert(&mut self, key: &K, value: &V) -> Result<Option<V>, S::Error> {
<S as Storage<K, V>>::insert(self.deref_mut(), key, value)
}
fn remove(&mut self, key: &K) -> Result<Option<V>, S::Error> {
<S as Storage<K, V>>::remove(self.deref_mut(), key)
}
fn get(&self, key: &K) -> Result<Option<Cow<'_, V>>, S::Error> {
<S as Storage<K, V>>::get(self.deref(), key)
}
fn contains_key(&self, key: &K) -> Result<bool, S::Error> {
<S as Storage<K, V>>::contains_key(self.deref(), key)
}
}
pub trait MerkleStorage<P, K, V>
where
V: Clone,
{
type Error: Error;
fn insert(&mut self, parent: &P, key: &K, value: &V) -> Result<Option<V>, Self::Error>;
fn remove(&mut self, parent: &P, key: &K) -> Result<Option<V>, Self::Error>;
fn get<'a>(&'a self, parent: &P, key: &K) -> Result<Option<Cow<'a, V>>, Self::Error>;
fn contains_key(&self, parent: &P, key: &K) -> Result<bool, Self::Error>;
fn root(&mut self, parent: &P) -> Result<MerkleRoot, Self::Error>;
}
impl<P, K, V, S> MerkleStorage<P, K, V> for &mut S
where
V: Clone,
S: MerkleStorage<P, K, V>,
{
type Error = S::Error;
fn insert(&mut self, parent: &P, key: &K, value: &V) -> Result<Option<V>, S::Error> {
<S as MerkleStorage<P, K, V>>::insert(self.deref_mut(), parent, key, value)
}
fn remove(&mut self, parent: &P, key: &K) -> Result<Option<V>, S::Error> {
<S as MerkleStorage<P, K, V>>::remove(self.deref_mut(), parent, key)
}
fn get(&self, parent: &P, key: &K) -> Result<Option<Cow<'_, V>>, S::Error> {
<S as MerkleStorage<P, K, V>>::get(self.deref(), parent, key)
}
fn contains_key(&self, parent: &P, key: &K) -> Result<bool, S::Error> {
<S as MerkleStorage<P, K, V>>::contains_key(self.deref(), parent, key)
}
fn root(&mut self, parent: &P) -> Result<MerkleRoot, S::Error> {
<S as MerkleStorage<P, K, V>>::root(self.deref_mut(), parent)
}
}