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
use std::collections::{VecDeque, HashSet};

use crate::{cbor_encodable::CBOREncodable, CBORDecodable, error::Error};

use super::{cbor::CBOR, varint::{EncodeVarInt, MajorType}};

impl<T> CBOREncodable for Vec<T> where T: CBOREncodable {
    fn cbor(&self) -> CBOR {
        CBOR::Array(self.iter().map(|x| x.cbor()).collect())
    }

    fn cbor_data(&self) -> Vec<u8> {
        let mut buf = self.len().encode_varint(MajorType::Array);
        for item in self {
            buf.extend(item.cbor_data());
        }
        buf
    }
}

impl<T> TryFrom<CBOR> for Vec<T> where T: CBORDecodable + Clone {
    type Error = Error;

    fn try_from(cbor: CBOR) -> Result<Self, Self::Error> {
        match cbor {
            CBOR::Array(cbor_array) => {
                let mut result = Vec::new();
                for cbor in cbor_array {
                    let element = T::from_cbor(&cbor)?;
                    result.push(element.clone());
                }
                Ok(result)
            },
            _ => Err(Error::WrongType)
        }
    }
}

impl<T> From<&[T]> for CBOR where T: CBOREncodable {
    fn from(array: &[T]) -> Self {
        CBOR::Array(array.iter().map(|x| x.cbor()).collect())
    }
}

impl<T> CBORDecodable for Vec<T> where T: CBORDecodable + Clone {
    fn from_cbor(cbor: &CBOR) -> Result<Self, Error> {
        match cbor {
            CBOR::Array(cbor_array) => {
                let mut result = Vec::new();
                for cbor in cbor_array {
                    let element = T::from_cbor(cbor)?;
                    result.push(element.clone());
                }
                Ok(result)
            },
            _ => Err(Error::WrongType)
        }
    }
}

impl<T, const N: usize> CBOREncodable for [T; N] where T: CBOREncodable {
    fn cbor(&self) -> CBOR {
        CBOR::Array(self.iter().map(|x| x.cbor()).collect())
    }

    fn cbor_data(&self) -> Vec<u8> {
        let mut buf = self.len().encode_varint(MajorType::Array);
        for item in self {
            buf.extend(item.cbor_data());
        }
        buf
    }
}

impl<T> CBOREncodable for VecDeque<T> where T: CBOREncodable {
    fn cbor(&self) -> CBOR {
        CBOR::Array(self.iter().map(|x| x.cbor()).collect())
    }

    fn cbor_data(&self) -> Vec<u8> {
        let mut buf = self.len().encode_varint(MajorType::Array);
        for item in self {
            buf.extend(item.cbor_data());
        }
        buf
    }
}

impl<T> TryFrom<CBOR> for VecDeque<T> where T: CBORDecodable + Clone {
    type Error = Error;

    fn try_from(cbor: CBOR) -> Result<Self, Self::Error> {
        match cbor {
            CBOR::Array(cbor_array) => {
                let mut result = VecDeque::new();
                for cbor in cbor_array {
                    let element = T::from_cbor(&cbor)?;
                    result.push_back(element.clone());
                }
                Ok(result)
            },
            _ => Err(Error::WrongType)
        }
    }
}

impl<T> From<&VecDeque<T>> for CBOR where T: CBOREncodable {
    fn from(array: &VecDeque<T>) -> Self {
        CBOR::Array(array.iter().map(|x| x.cbor()).collect())
    }
}

impl<T> CBOREncodable for HashSet<T> where T: CBOREncodable {
    fn cbor(&self) -> CBOR {
        CBOR::Array(self.iter().map(|x| x.cbor()).collect())
    }

    fn cbor_data(&self) -> Vec<u8> {
        let mut buf = self.len().encode_varint(MajorType::Array);
        for item in self {
            buf.extend(item.cbor_data());
        }
        buf
    }
}

impl<T> TryFrom<CBOR> for HashSet<T> where T: CBORDecodable + Eq + std::hash::Hash + Clone {
    type Error = Error;

    fn try_from(cbor: CBOR) -> Result<Self, Self::Error> {
        match cbor {
            CBOR::Array(cbor_array) => {
                let mut result = HashSet::new();
                for cbor in cbor_array {
                    let element = T::from_cbor(&cbor)?;
                    result.insert(element.clone());
                }
                Ok(result)
            },
            _ => Err(Error::WrongType)
        }
    }
}