mrkle 0.0.1-rc-0

A fast and flexible Merkle Tree library.
Documentation
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
use crate::prelude::*;

use super::Tree;
use crate::{IndexType, Node, NodeIndex, TreeView};

/// Trait defining traversal order behavior for tree iteration
pub trait TraversalOrder<Ix: IndexType> {
    /// The storage type used for this traversal order
    type Storage: Default;

    /// Add a single node to storage
    fn push(storage: &mut Self::Storage, child: NodeIndex<Ix>);

    /// Add children nodes to storage
    fn extend(storage: &mut Self::Storage, children: impl IntoIterator<Item = NodeIndex<Ix>>);

    /// Remove and return the next node from storage
    fn pop(storage: &mut Self::Storage) -> Option<NodeIndex<Ix>>;

    /// Check if storage is empty
    fn is_empty(storage: &Self::Storage) -> bool;
}

/// Breadth-First Search traversal order (Fifo)
pub struct Fifo;

impl<Ix: IndexType> TraversalOrder<Ix> for Fifo {
    type Storage = VecDeque<NodeIndex<Ix>>;

    #[inline]
    fn push(storage: &mut Self::Storage, value: NodeIndex<Ix>) {
        storage.push_back(value);
    }

    #[inline]
    fn extend(storage: &mut Self::Storage, children: impl IntoIterator<Item = NodeIndex<Ix>>) {
        storage.extend(children);
    }

    #[inline]
    fn pop(storage: &mut Self::Storage) -> Option<NodeIndex<Ix>> {
        storage.pop_front()
    }

    #[inline]
    fn is_empty(storage: &Self::Storage) -> bool {
        storage.is_empty()
    }
}

/// Depth-First Search traversal order (Lifo)
pub struct Lifo;

impl<Ix: IndexType> TraversalOrder<Ix> for Lifo {
    type Storage = Vec<NodeIndex<Ix>>;

    #[inline]
    fn push(storage: &mut Self::Storage, value: NodeIndex<Ix>) {
        storage.push(value);
    }

    #[inline]
    fn extend(storage: &mut Self::Storage, children: impl IntoIterator<Item = NodeIndex<Ix>>) {
        let children: Vec<_> = children.into_iter().collect();
        storage.extend(children.into_iter().rev());
    }

    #[inline]
    fn pop(storage: &mut Self::Storage) -> Option<NodeIndex<Ix>> {
        storage.pop()
    }

    #[inline]
    fn is_empty(storage: &Self::Storage) -> bool {
        storage.is_empty()
    }
}

struct IterState<Storage> {
    storage: Storage,
    started: bool,
}

impl<Storage: Default> IterState<Storage> {
    #[inline]
    fn new() -> Self {
        Self {
            storage: Storage::default(),
            started: false,
        }
    }

    #[inline]
    fn is_started(&self) -> bool {
        self.started
    }

    #[inline]
    fn start(&mut self) {
        self.started = true;
    }
}

/// Iterator over tree nodes in a specific traversal order
pub struct Iter<'a, N, Ix, O = Fifo>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    state: IterState<O::Storage>,
    tree: &'a Tree<N, Ix>,
}

impl<'a, N, Ix, O> Iter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    /// Creates a new iterator over the tree with the specified traversal order
    #[inline]
    pub fn new(tree: &'a Tree<N, Ix>) -> Self {
        Self {
            state: IterState::new(),
            tree,
        }
    }

    /// Returns the remaining number of nodes in the iterator (lower bound)
    #[inline]
    pub fn remaining_hint(&self) -> (usize, Option<usize>) {
        if !self.state.is_started() {
            (0, Some(self.tree.len()))
        } else {
            (0, None)
        }
    }
}

impl<'a, N, Ix, O> Iterator for Iter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    type Item = &'a N;

    fn next(&mut self) -> Option<Self::Item> {
        if !self.state.is_started() {
            if self.tree.is_empty() {
                return None;
            }

            if let Some(root) = self.tree.root {
                O::push(&mut self.state.storage, root);
                self.state.start();
            } else {
                return None;
            }
        }

        let index = O::pop(&mut self.state.storage)?;
        let node = &self.tree[index];

        // Add children to storage if not a leaf
        if !node.is_leaf() {
            O::extend(&mut self.state.storage, node.children().iter().copied());
        }

        Some(node)
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.remaining_hint()
    }
}

impl<N, Ix, O> core::iter::FusedIterator for Iter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
}

/// Iterator over tree node indices in a specific traversal order
pub struct IndexIter<'a, N, Ix, O = Fifo>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    state: IterState<O::Storage>,
    tree: &'a Tree<N, Ix>,
}

impl<'a, N, Ix, O> IndexIter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    /// Creates a new index iterator over the tree with the specified traversal order
    #[inline]
    pub fn new(tree: &'a Tree<N, Ix>) -> Self {
        Self {
            state: IterState::new(),
            tree,
        }
    }
}

impl<N, Ix, O> Iterator for IndexIter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    type Item = NodeIndex<Ix>;

    fn next(&mut self) -> Option<Self::Item> {
        if !self.state.is_started() {
            if self.tree.is_empty() {
                return None;
            }

            if let Some(root) = self.tree.root {
                O::push(&mut self.state.storage, root);
                self.state.start();
            } else {
                return None;
            }
        }

        let index = O::pop(&mut self.state.storage)?;

        self.tree
            .get(index.index())
            .filter(|&node| !node.is_leaf())
            .inspect(|&node| O::extend(&mut self.state.storage, node.children().iter().copied()));

        Some(index)
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        if !self.state.is_started() {
            (0, Some(self.tree.len()))
        } else {
            (0, None)
        }
    }
}

impl<N, Ix, O> core::iter::FusedIterator for IndexIter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
}

/// An iterator that moves Node references out of a [`TreeView`] in a specific traversal order
pub struct ViewIter<'a, N, Ix, O = Fifo>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    state: IterState<O::Storage>,
    tree: TreeView<'a, N, Ix>,
}

impl<'a, N, Ix, O> ViewIter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    /// Creates a new iterator over the tree view with the specified traversal order
    #[inline]
    pub(crate) fn new(tree: TreeView<'a, N, Ix>) -> Self {
        Self {
            state: IterState::new(),
            tree,
        }
    }
}

impl<'a, N, Ix, O> Iterator for ViewIter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    type Item = &'a N;

    fn next(&mut self) -> Option<Self::Item> {
        if !self.state.is_started() {
            if self.tree.is_empty() {
                return None;
            }
            O::push(&mut self.state.storage, self.tree.root);
            self.state.start();
        }

        let index = O::pop(&mut self.state.storage)?;
        let node = self.tree.get(&index)?;

        if !node.is_leaf() {
            O::extend(&mut self.state.storage, node.children().iter().copied());
        }

        Some(node)
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        if !self.state.is_started() {
            (0, Some(self.tree.len()))
        } else {
            (0, None)
        }
    }
}

impl<N, Ix, O> core::iter::FusedIterator for ViewIter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
}

/// An iterator that moves Node indices out of a [`TreeView`] in a specific traversal order
pub struct ViewIndexIter<'a, N, Ix, O = Fifo>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    state: IterState<O::Storage>,
    tree: TreeView<'a, N, Ix>,
}

impl<'a, N, Ix, O> ViewIndexIter<'a, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    /// Creates a new index iterator over the tree view with the specified traversal order
    #[inline]
    pub(crate) fn new(tree: TreeView<'a, N, Ix>) -> Self {
        Self {
            state: IterState::new(),
            tree,
        }
    }
}

impl<N, Ix, O> Iterator for ViewIndexIter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
    type Item = NodeIndex<Ix>;

    fn next(&mut self) -> Option<Self::Item> {
        if !self.state.is_started() {
            if self.tree.is_empty() {
                return None;
            }
            let root_index = self.tree.root;
            O::push(&mut self.state.storage, root_index);
            self.state.start();
        }

        let index = O::pop(&mut self.state.storage)?;

        self.tree
            .get(&index)
            .filter(|&node| !node.is_leaf())
            .inspect(|&node| O::extend(&mut self.state.storage, node.children().iter().copied()));

        Some(index)
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        if !self.state.is_started() {
            (0, Some(self.tree.len()))
        } else {
            (0, None)
        }
    }
}

impl<N, Ix, O> core::iter::FusedIterator for ViewIndexIter<'_, N, Ix, O>
where
    N: Node<Ix>,
    Ix: IndexType,
    O: TraversalOrder<Ix>,
{
}