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
use std::marker::PhantomData;
use std::collections::HashMap;
use std::hash::Hash;

pub trait HeaderHash<H: Copy> {
    fn parent_hash(&self) -> Option<H>;
    fn header_hash(&self) -> H;
}

pub trait HeaderStore {
    type Hash: Copy;
    type Header: HeaderHash<Self::Hash> + Ord;

    fn fetch(&self, hash: Self::Hash) -> Option<&Self::Header>;
    fn put(&mut self, block: Self::Header);
}

impl<Ha: Copy + Eq + Hash, He: HeaderHash<Ha> + Ord> HeaderStore for HashMap<Ha, He> {
    type Hash = Ha;
    type Header = He;

    fn fetch(&self, hash: Ha) -> Option<&He> {
        self.get(&hash)
    }

    fn put(&mut self, header: He) {
        self.insert(header.header_hash(), header);
    }
}

pub struct Chain<H, B, S> {
    best_hash: H,
    store: S,
    _block_marker: PhantomData<B>,
}

impl<H: Copy, B: HeaderHash<H> + Ord, S: HeaderStore<Hash=H, Header=B> + Default> Chain<H, B, S> {
    pub fn new(genesis: B) -> Self {
        assert!(genesis.parent_hash().is_none());

        let best_hash = genesis.header_hash();
        let mut store = S::default();
        store.put(genesis);

        Self {
            best_hash, store,
            _block_marker: PhantomData,
        }
    }

    pub fn best(&self) -> &B {
        let best_hash = self.best_hash;
        self.fetch(best_hash).unwrap()
    }

    pub fn fetch(&self, hash: H) -> Option<&B> {
        self.store.fetch(hash)
    }

    pub fn put(&mut self, block: B) -> bool {
        if block.parent_hash().is_none() || self.fetch(block.parent_hash().unwrap()).is_none() {
            return false;
        }

        let extern_hash = block.header_hash();
        let local_hash = self.best_hash;
        let best_hash = if &block > self.best() {
            extern_hash
        } else {
            local_hash
        };
        self.store.put(block);
        self.best_hash = best_hash;

        return true;
    }

    pub fn last_hashes(&self, len: usize) -> Vec<H> {
        let mut ret = Vec::new();
        let mut current = self.best();

        'a: while ret.len() < len {
            ret.push(current.header_hash());

            match current.parent_hash() {
                Some(parent_hash) => {
                    current = self.fetch(parent_hash).unwrap();
                },
                None => break 'a,
            }
        }

        ret
    }
}