summaryrefslogtreecommitdiffstats
path: root/src/types/node.rs
blob: aead32c3b239b2d76a027c0f4c94b8fd447789bb (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
#[derive(Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize, getset::Getters)]
pub struct Node {
    /// Version
    #[serde(rename = "v")]
    #[getset(get = "pub")]
    version: String,

    /// Parent Nodes, identified by cid
    parents: Vec<crate::types::encodable_cid::EncodableCid>,

    /// The actual payload of the node, which is stored in another document identified by this cid
    payload: crate::types::encodable_cid::EncodableCid,
}

impl daglib::Node for Node {
    type Id = crate::cid::Cid;

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

impl Node {
    pub fn new(version: String, parents: Vec<crate::cid::Cid>, payload: crate::cid::Cid) -> Self {
        Self {
            version,
            parents: parents.into_iter().map(crate::types::encodable_cid::EncodableCid::from).collect(),
            payload: payload.into()
        }
    }

    pub fn parents(&self) -> Vec<crate::cid::Cid> {
        self.parents
            .clone()
            .into_iter()
            .map(crate::types::encodable_cid::EncodableCid::into)
            .collect()
    }

    pub fn payload(&self) -> crate::cid::Cid {
        self.payload.clone().into()
    }
}