forked from RGB-WG/rgb-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstash.rs
245 lines (217 loc) · 7.21 KB
/
stash.rs
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// RGB standard library
// Written in 2020 by
// Dr. Maxim Orlovsky <[email protected]>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to
// the public domain worldwide. This software is distributed without
// any warranty.
//
// You should have received a copy of the MIT License
// along with this software.
// If not, see <https://opensource.org/licenses/MIT>.
use std::collections::VecDeque;
use lnpbp::bp::blind::OutpointHash;
use lnpbp::hashes::Hash;
use lnpbp::rgb::{
Anchor, AutoConceal, Consignment, ContractId, Disclosure, Extension,
Genesis, Node, NodeId, SchemaId, Stash, Transition,
};
use super::index::Index;
use super::storage::Store;
use super::Runtime;
#[derive(Clone, PartialEq, Eq, Debug, Display, From, Error)]
#[display(Debug)]
pub enum Error {
#[from(super::storage::DiskStorageError)]
StorageError,
#[from(super::index::BTreeIndexError)]
IndexError,
AnchorParameterIsRequired,
GenesisNode,
}
pub struct DumbIter<T>(std::marker::PhantomData<T>);
impl<T> Iterator for DumbIter<T> {
type Item = T;
fn next(&mut self) -> Option<Self::Item> {
unimplemented!()
}
}
impl Stash for Runtime {
type Error = Error;
type GenesisIterator = DumbIter<Genesis>;
type AnchorIterator = DumbIter<Anchor>;
type TransitionIterator = DumbIter<Transition>;
type ExtensionIterator = DumbIter<Extension>;
type NidIterator = DumbIter<NodeId>;
fn get_schema(
&self,
_schema_id: SchemaId,
) -> Result<SchemaId, Self::Error> {
unimplemented!()
}
fn get_genesis(
&self,
_contract_id: ContractId,
) -> Result<Genesis, Self::Error> {
unimplemented!()
}
fn get_transition(
&self,
_node_id: NodeId,
) -> Result<Transition, Self::Error> {
unimplemented!()
}
fn get_extension(
&self,
_node_id: NodeId,
) -> Result<Extension, Self::Error> {
unimplemented!()
}
fn get_anchor(
&self,
_anchor_id: ContractId,
) -> Result<Anchor, Self::Error> {
unimplemented!()
}
fn genesis_iter(&self) -> Self::GenesisIterator {
unimplemented!()
}
fn anchor_iter(&self) -> Self::AnchorIterator {
unimplemented!()
}
fn transition_iter(&self) -> Self::TransitionIterator {
unimplemented!()
}
fn extension_iter(&self) -> Self::ExtensionIterator {
unimplemented!()
}
fn consign(
&self,
contract_id: ContractId,
node: &impl Node,
anchor: Option<&Anchor>,
expose: &Vec<OutpointHash>,
) -> Result<Consignment, Error> {
let genesis = self.storage.genesis(&contract_id)?;
let mut state_transitions = vec![];
let mut state_extensions: Vec<Extension> = vec![];
if let Some(transition) =
node.as_any().downcast_ref::<Transition>().clone()
{
let mut transition = transition.clone();
transition.conceal_except(&expose);
let anchor = anchor.ok_or(Error::AnchorParameterIsRequired)?;
state_transitions.push((anchor.clone(), transition.clone()));
} else if let Some(extension) =
node.as_any().downcast_ref::<Extension>().clone()
{
let mut extension = extension.clone();
extension.conceal_except(&expose);
state_extensions.push(extension.clone());
} else {
Err(Error::GenesisNode)?;
}
let mut sources = VecDeque::<NodeId>::new();
sources
.extend(node.parent_owned_rights().into_iter().map(|(id, _)| id));
sources
.extend(node.parent_public_rights().into_iter().map(|(id, _)| id));
while let Some(node_id) = sources.pop_front() {
if node_id.into_inner() == genesis.contract_id().into_inner() {
continue;
}
let anchor_id = self.indexer.anchor_id_by_transition_id(node_id)?;
let anchor = self.storage.anchor(&anchor_id)?;
// TODO: (new) Improve this logic
match (
self.storage.transition(&node_id),
self.storage.extension(&node_id),
) {
(Ok(mut transition), Err(_)) => {
transition.conceal_all();
state_transitions.push((anchor, transition.clone()));
sources.extend(
transition
.parent_owned_rights()
.into_iter()
.map(|(id, _)| id),
);
sources.extend(
transition
.parent_public_rights()
.into_iter()
.map(|(id, _)| id),
);
}
(Err(_), Ok(mut extension)) => {
extension.conceal_all();
state_extensions.push(extension.clone());
sources.extend(
extension
.parent_owned_rights()
.into_iter()
.map(|(id, _)| id),
);
sources.extend(
extension
.parent_public_rights()
.into_iter()
.map(|(id, _)| id),
);
}
_ => Err(Error::StorageError)?,
}
}
let node_id = node.node_id();
let extended_endpoints =
expose.iter().map(|op| (node_id, *op)).collect();
Ok(Consignment::with(
genesis,
extended_endpoints,
state_transitions,
state_extensions,
))
}
fn merge(
&mut self,
consignment: Consignment,
) -> Result<Vec<Box<dyn Node>>, Error> {
let mut nodes: Vec<Box<dyn Node>> = vec![];
consignment.state_transitions.into_iter().try_for_each(
|(anchor, transition)| -> Result<(), Error> {
if self.storage.add_transition(&transition)? {
nodes.push(Box::new(transition));
}
self.storage.add_anchor(&anchor)?;
self.indexer.index_anchor(&anchor)?;
Ok(())
},
)?;
consignment.state_extensions.into_iter().try_for_each(
|extension| -> Result<(), Error> {
if self.storage.add_extension(&extension)? {
nodes.push(Box::new(extension));
}
Ok(())
},
)?;
let genesis = consignment.genesis;
if self.storage.add_genesis(&genesis)? {
nodes.push(Box::new(genesis));
}
Ok(nodes)
}
fn forget(
&mut self,
_consignment: Consignment,
) -> Result<usize, Self::Error> {
unimplemented!()
}
fn prune(&mut self) -> Result<usize, Self::Error> {
unimplemented!()
}
fn disclose(&self) -> Result<Disclosure, Self::Error> {
unimplemented!()
}
}