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
use std::error::Error; use rand::distributions::Alphanumeric; use rand::{thread_rng, Rng}; use std::convert::TryInto; pub trait Encoder: Send { fn calculate_max_decoded_size(&self, max_encoded_size: usize) -> usize; fn encode(&self, data: &[u8]) -> Result<String, Box<dyn Error>>; } pub trait Decoder: Send { fn decode(&self, data: &str) -> Result<Vec<u8>, Box<dyn Error>>; } pub struct HexEncoder {} impl Encoder for HexEncoder { fn calculate_max_decoded_size(&self, max_encoded_size: usize) -> usize { max_encoded_size / 2 } fn encode(&self, data: &[u8]) -> Result<String, Box<dyn Error>> { Ok(hex::encode(data)) } } pub struct HexDecoder {} impl Decoder for HexDecoder { fn decode(&self, data: &str) -> Result<Vec<u8>, Box<dyn Error>> { match hex::decode(data) { Ok(v) => Ok(v), Err(e) => Err(e.into()), } } } pub const CLIENT_ID_SIZE_IN_BYTES: usize = 4; pub type ClientId = [u8; CLIENT_ID_SIZE_IN_BYTES]; pub fn new_client_id() -> ClientId { let values: Vec<u8> = thread_rng() .sample_iter(&Alphanumeric) .take(CLIENT_ID_SIZE_IN_BYTES) .collect(); values.try_into().unwrap() } pub struct ClientIdSuffixEncoder<E: Encoder> { encoder: E, } impl<E: Encoder> ClientIdSuffixEncoder<E> { pub fn new(encoder: E) -> Self { ClientIdSuffixEncoder { encoder } } } impl<E: Encoder> Encoder for ClientIdSuffixEncoder<E> { fn calculate_max_decoded_size(&self, max_encoded_size: usize) -> usize { self.encoder.calculate_max_decoded_size(max_encoded_size) - CLIENT_ID_SIZE_IN_BYTES } fn encode(&self, data: &[u8]) -> Result<String, Box<dyn Error>> { if data.len() < CLIENT_ID_SIZE_IN_BYTES { return Err(String::from("not enough data to encode").into()); } let (data, client_id) = data.split_at(data.len() - CLIENT_ID_SIZE_IN_BYTES); let mut res = self.encoder.encode(data)?; let encoded_client_id = std::str::from_utf8(client_id).unwrap(); res.push_str(encoded_client_id); Ok(res) } } pub struct ClientIdSuffixDecoder<D: Decoder> { decoder: D, } impl<D: Decoder> ClientIdSuffixDecoder<D> { pub fn new(decoder: D) -> Self { ClientIdSuffixDecoder { decoder } } } impl<D: Decoder> Decoder for ClientIdSuffixDecoder<D> { fn decode(&self, data: &str) -> Result<Vec<u8>, Box<dyn Error>> { if data.len() < CLIENT_ID_SIZE_IN_BYTES { return Err(String::from("not enough data to decode").into()); } let (data, client_id) = data.split_at(data.len() - CLIENT_ID_SIZE_IN_BYTES); let mut res = self.decoder.decode(data)?; let decoded_client_id = client_id.as_bytes(); res.extend_from_slice(decoded_client_id); Ok(res) } } #[cfg(test)] mod tests { use mockall::mock; use super::*; mock! { Encoder{} impl Encoder for Encoder { fn calculate_max_decoded_size(&self, max_encoded_size: usize) -> usize; fn encode(&self, data: &[u8]) -> Result<String, Box<dyn Error>>; } } mock! { Decoder{} impl Decoder for Decoder { fn decode(&self, data: &str) -> Result<Vec<u8>, Box<dyn Error>>; } } #[test] fn client_id_suffix_encoder_not_enough_data() -> Result<(), Box<dyn Error>> { let encoder_mock = MockEncoder::new(); let encoder = ClientIdSuffixEncoder::new(encoder_mock); let res = encoder.encode(b"123"); assert!(res.is_err()); Ok(()) } #[test] fn client_id_suffix_encoder_internal_encoder_failed() -> Result<(), Box<dyn Error>> { let mut encoder_mock = MockEncoder::new(); encoder_mock .expect_encode() .returning(|_| Err(String::from("bla").into())); let encoder = ClientIdSuffixEncoder::new(encoder_mock); let res = encoder.encode(b"bla1234"); assert!(res.is_err()); Ok(()) } #[test] fn client_id_suffix_encoder_success() -> Result<(), Box<dyn Error>> { let mut encoder_mock = MockEncoder::new(); encoder_mock .expect_encode() .returning(|_| Ok(String::from("encoded"))); let encoder = ClientIdSuffixEncoder::new(encoder_mock); let res = encoder.encode(b"bla1234")?; assert_eq!("encoded1234", res); Ok(()) } #[test] fn client_id_suffix_decoder_not_enough_data() -> Result<(), Box<dyn Error>> { let decoder_mock = MockDecoder::new(); let decoder = ClientIdSuffixDecoder::new(decoder_mock); let res = decoder.decode("123"); assert!(res.is_err()); Ok(()) } #[test] fn client_id_suffix_decoder_internal_decoder_failed() -> Result<(), Box<dyn Error>> { let mut decoder_mock = MockDecoder::new(); decoder_mock .expect_decode() .returning(|_| Err(String::from("bla").into())); let decoder = ClientIdSuffixDecoder::new(decoder_mock); let res = decoder.decode("bla1234"); assert!(res.is_err()); Ok(()) } #[test] fn client_id_suffix_decoder_success() -> Result<(), Box<dyn Error>> { let mut decoder_mock = MockDecoder::new(); decoder_mock .expect_decode() .returning(|_| Ok(String::from("decoded").into_bytes())); let decoder = ClientIdSuffixDecoder::new(decoder_mock); let res = decoder.decode("bla1234")?; assert_eq!(b"decoded1234", res.as_slice()); Ok(()) } }