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
#![warn(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
#[cfg(feature = "serde")]
use serde::{Serialize, Deserialize};
use typenum::U32;
use generic_array::GenericArray;
use primitive_types::H256;
use digest::Digest;
pub use bm::{Backend, ReadBackend, WriteBackend, InheritedDigestConstruct,
UnitDigestConstruct, Construct, InheritedEmpty, Error, ValueOf, Value, Vector,
DanglingVector, List, Leak, NoopBackend, InMemoryBackend};
mod basic;
mod elemental_fixed;
mod elemental_variable;
mod fixed;
mod variable;
pub mod utils;
pub use elemental_fixed::{ElementalFixedVec, ElementalFixedVecRef,
IntoCompactVectorTree, FromCompactVectorTree,
IntoCompositeVectorTree, FromCompositeVectorTree};
pub use elemental_variable::{ElementalVariableVec, ElementalVariableVecRef,
IntoCompactListTree, FromCompactListTree,
IntoCompositeListTree, FromCompositeListTree};
pub use variable::MaxVec;
#[cfg(feature = "derive")]
pub use bm_le_derive::{FromTree, IntoTree};
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct End(pub [u8; 32]);
impl Default for End {
fn default() -> Self {
Self([0; 32])
}
}
impl AsRef<[u8]> for End {
fn as_ref(&self) -> &[u8] {
&self.0
}
}
impl From<GenericArray<u8, typenum::U32>> for End {
fn from(array: GenericArray<u8, typenum::U32>) -> Self {
let mut ret = [0u8; 32];
ret.copy_from_slice(array.as_slice());
Self(ret)
}
}
impl Into<GenericArray<u8, typenum::U32>> for End {
fn into(self) -> GenericArray<u8, typenum::U32> {
GenericArray::from_exact_iter(self.0.into_iter().cloned()).expect("Size equals to U32; qed")
}
}
pub type Intermediate = GenericArray<u8, U32>;
pub trait CompatibleConstruct: Construct<Intermediate=Intermediate, End=End> { }
impl<C: Construct<Intermediate=Intermediate, End=End>> CompatibleConstruct for C { }
pub trait IntoTree {
fn into_tree<DB: WriteBackend>(
&self,
db: &mut DB
) -> Result<ValueOf<DB::Construct>, Error<DB::Error>> where
DB::Construct: CompatibleConstruct;
}
pub trait FromTree: Sized {
fn from_tree<DB: ReadBackend>(
root: &ValueOf<DB::Construct>,
db: &mut DB
) -> Result<Self, Error<DB::Error>> where
DB::Construct: CompatibleConstruct;
}
#[derive(Debug, Eq, PartialEq)]
pub struct CompactRef<'a, T>(pub &'a T);
#[derive(Debug, Clone, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(transparent))]
pub struct Compact<T>(pub T);
impl<T> From<T> for Compact<T> {
fn from(t: T) -> Self {
Self(t)
}
}
pub fn tree_root<D, T>(value: &T) -> H256 where
T: IntoTree,
D: Digest<OutputSize=U32>,
{
value.into_tree(&mut NoopBackend::<InheritedDigestConstruct<D, End>>::default())
.map(|ret| H256::from_slice(ret.as_ref()))
.expect("Noop backend never fails in set; qed")
}