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
use amplify::confinement::SmallOrdMap;
use amplify::num::{u256, u4};
use amplify::Wrapper;
#[cfg(feature = "rand")]
pub use self::commit::Error;
use crate::merkle::{MerkleLeaves, MerkleNode};
use crate::mpc::atoms::Leaf;
use crate::mpc::{Commitment, Message, MessageMap, Proof, ProtocolId, LNPBP4_TAG};
use crate::{strategies, CommitStrategy, CommitmentId, Conceal, LIB_NAME_COMMIT_VERIFY};
type OrderedMap = SmallOrdMap<u16, (ProtocolId, Message)>;
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
#[derive(StrictDumb, StrictType, StrictEncode, StrictDecode)]
#[strict_type(lib = LIB_NAME_COMMIT_VERIFY)]
pub struct MerkleTree {
pub(super) depth: u4,
pub(super) entropy: u64,
pub(super) messages: MessageMap,
pub(super) map: OrderedMap,
}
impl Proof for MerkleTree {}
impl CommitStrategy for MerkleTree {
type Strategy = strategies::ConcealStrict;
}
impl CommitmentId for MerkleTree {
const TAG: [u8; 32] = *b"urn:lnpbp:lnpbp0004:tree:v01#23A";
type Id = Commitment;
}
pub struct IntoIter {
width: u16,
pos: u16,
map: OrderedMap,
entropy: u64,
}
impl Iterator for IntoIter {
type Item = Leaf;
fn next(&mut self) -> Option<Self::Item> {
if self.pos == self.width {
return None;
}
self.pos += 1;
let leaf = self
.map
.get(&self.pos)
.map(|(protocol, msg)| Leaf::inhabited(*protocol, *msg))
.unwrap_or_else(|| Leaf::entropy(self.entropy, self.pos));
Some(leaf)
}
fn size_hint(&self) -> (usize, Option<usize>) {
let remains = self.map.len() - self.pos as usize;
(remains, Some(remains))
}
}
impl ExactSizeIterator for IntoIter {}
impl MerkleLeaves for MerkleTree {
type Leaf = Leaf;
type LeafIter = IntoIter;
fn merkle_leaves(&self) -> Self::LeafIter {
IntoIter {
entropy: self.entropy,
width: self.width(),
pos: 0,
map: self.as_ordered_map().clone(), }
}
}
impl MerkleTree {
pub fn root(&self) -> MerkleNode { MerkleNode::merklize(LNPBP4_TAG, self) }
}
impl Conceal for MerkleTree {
type Concealed = MerkleNode;
fn conceal(&self) -> Self::Concealed { self.root() }
}
#[cfg(feature = "rand")]
mod commit {
use amplify::confinement::Confined;
use rand::{thread_rng, RngCore};
use super::*;
use crate::mpc::MultiSource;
use crate::{TryCommitVerify, UntaggedProtocol};
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Error, Debug, Display)]
#[display(doc_comments)]
pub enum Error {
Empty,
TooManyMessages(usize),
CantFitInMaxSlots,
}
impl TryCommitVerify<MultiSource, UntaggedProtocol> for MerkleTree {
type Error = Error;
fn try_commit(source: &MultiSource) -> Result<Self, Error> {
use std::collections::BTreeMap;
if source.min_depth == u4::ZERO && source.messages.is_empty() {
return Err(Error::Empty);
}
if source.messages.len() > 2usize.pow(u4::MAX.to_u8() as u32) {
return Err(Error::TooManyMessages(source.messages.len()));
}
let entropy = thread_rng().next_u64();
let mut map = BTreeMap::<u16, (ProtocolId, Message)>::new();
let mut depth = source.min_depth;
loop {
let width = 2usize.pow(depth.to_u8() as u32) as u16;
if source.messages.iter().all(|(protocol, message)| {
let pos = protocol_id_pos(*protocol, width);
map.insert(pos, (*protocol, *message)).is_none()
}) {
break;
}
depth += 1;
}
Ok(MerkleTree {
depth,
messages: source.messages.clone(),
entropy,
map: Confined::try_from(map).expect("MultiSource type guarantees"),
})
}
}
}
pub(super) fn protocol_id_pos(protocol_id: ProtocolId, width: u16) -> u16 {
let rem = u256::from_le_bytes((*protocol_id).into_inner()) % u256::from(width as u64);
rem.low_u64() as u16
}
impl MerkleTree {
pub fn protocol_id_pos(&self, protocol_id: ProtocolId) -> u16 {
protocol_id_pos(protocol_id, self.width())
}
pub fn width(&self) -> u16 { 2usize.pow(self.depth.to_u8() as u32) as u16 }
pub fn depth(&self) -> u4 { self.depth }
pub fn entropy(&self) -> u64 { self.entropy }
fn as_ordered_map(&self) -> &OrderedMap { &self.map }
}