summaryrefslogtreecommitdiffstats
path: root/src/test_impl.rs
blob: 672c3fc652d7f42963abce0dacacbd6f171f5034 (plain)
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
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//

use std::sync::Arc;
use std::sync::RwLock;

use anyhow::Result;
use async_trait::async_trait;

#[derive(Copy, Clone, Eq, PartialEq, std::hash::Hash, Debug)]
pub struct Id(pub(crate) usize);

impl crate::NodeId for Id {}

#[derive(Clone, Debug)]
pub struct Node {
    pub(crate) parents: Vec<Id>,
    // data the node holds, used to create the ID in tests as "hashing" for unique id
    pub(crate) data: usize,
}

impl crate::Node for Node {
    type Id = Id;

    fn parent_ids(&self) -> Vec<Self::Id> {
        self.parents.clone()
    }
}

/// The backend for the tests
///
/// This is `Clone` because we can test branching only with a clonable backend.
/// A real backend would not implement the storage itself, but rather a way to retrieve the data
/// from some storage mechansim (think IPFS), and thus `Clone`ing a backend is nothing esotheric.
#[derive(Clone, Debug)]
pub struct Backend(pub(crate) Arc<RwLock<Vec<Option<Node>>>>);

impl Backend {
    pub fn new(v: Vec<Option<Node>>) -> Self {
        Backend(Arc::new(RwLock::new(v)))
    }
}

#[async_trait]
impl crate::DagBackend<Id, Node> for Backend {
    async fn get(&self, id: Id) -> Result<Option<(Id, Node)>> {
        if self.0.read().unwrap().len() < id.0 + 1 {
            Ok(None)
        } else {
            Ok(self.0.read().unwrap()[id.0].clone().map(|node| (id, node)))
        }
    }

    async fn put(&mut self, node: Node) -> Result<Id> {
        while self.0.read().unwrap().len() < node.data + 1 {
            self.0.write().unwrap().push(None)
        }

        let idx = node.data;
        self.0.write().unwrap()[idx] = Some(node);
        Ok(Id(idx))
    }
}