|
| 1 | +//! A macro for defining a new type wrappers for the given hash types. |
| 2 | +
|
| 3 | +/// Defines a new type wrapper for the given hash types. |
| 4 | +/// |
| 5 | +/// # Examples |
| 6 | +/// |
| 7 | +/// ``` |
| 8 | +/// use catalyst_types::{define_hashes, hashes::Blake2b128Hash}; |
| 9 | +/// |
| 10 | +/// define_hashes!( |
| 11 | +/// /// You can document the declared types... |
| 12 | +/// (SomeHash, Blake2b128Hash), |
| 13 | +/// // ...or not. |
| 14 | +/// (AnotherHash, Blake2b128Hash), |
| 15 | +/// ); |
| 16 | +/// |
| 17 | +/// let hash = SomeHash::new(&[1, 2, 3]); |
| 18 | +/// println!("{hash:?}"); |
| 19 | +/// ``` |
| 20 | +#[macro_export] |
| 21 | +macro_rules! define_hashes { |
| 22 | + ($($(#[$docs:meta])* ($name:ident, $inner:ty)),+ $(,)?) => { |
| 23 | + $( |
| 24 | + $(#[$docs])* |
| 25 | + #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 26 | + pub struct $name($inner); |
| 27 | + |
| 28 | + impl $name { |
| 29 | + /// Creates a new instance from the given bytes by hashing them. |
| 30 | + #[must_use] |
| 31 | + pub fn new(input_bytes: &[u8]) -> Self { |
| 32 | + Self(<$inner>::new(input_bytes)) |
| 33 | + } |
| 34 | + } |
| 35 | + |
| 36 | + impl From<$name> for Vec<u8> { |
| 37 | + fn from(value: $name) -> Self { |
| 38 | + value.0.into() |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | + impl From<$inner> for $name { |
| 43 | + fn from(value: $inner) -> Self { |
| 44 | + Self(value) |
| 45 | + } |
| 46 | + } |
| 47 | + |
| 48 | + impl TryFrom<&[u8]> for $name { |
| 49 | + type Error = $crate::hashes::Blake2bHashError; |
| 50 | + |
| 51 | + fn try_from(value: &[u8]) -> Result<Self, Self::Error> { |
| 52 | + Ok(Self(<$inner>::try_from(value)?)) |
| 53 | + } |
| 54 | + } |
| 55 | + |
| 56 | + impl TryFrom<Vec<u8>> for $name { |
| 57 | + type Error = $crate::hashes::Blake2bHashError; |
| 58 | + |
| 59 | + fn try_from(value: Vec<u8>) -> Result<Self, Self::Error> { |
| 60 | + value.as_slice().try_into() |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + impl std::str::FromStr for $name { |
| 65 | + type Err = $crate::hashes::Blake2bHashError; |
| 66 | + |
| 67 | + fn from_str(s: &str) -> Result<Self, Self::Err> { |
| 68 | + let hash: $inner = s.parse().map_err($crate::hashes::Blake2bHashError::from)?; |
| 69 | + Ok(Self(hash)) |
| 70 | + } |
| 71 | + } |
| 72 | + |
| 73 | + impl<C> minicbor::Encode<C> for $name { |
| 74 | + fn encode<W: minicbor::encode::Write>( |
| 75 | + &self, e: &mut minicbor::Encoder<W>, ctx: &mut C, |
| 76 | + ) -> Result<(), minicbor::encode::Error<W::Error>> { |
| 77 | + self.0.encode(e, ctx) |
| 78 | + } |
| 79 | + } |
| 80 | + |
| 81 | + impl<'a, C> minicbor::Decode<'a, C> for $name { |
| 82 | + fn decode( |
| 83 | + d: &mut minicbor::Decoder<'a>, ctx: &mut C, |
| 84 | + ) -> Result<Self, minicbor::decode::Error> { |
| 85 | + let hash = <$inner>::decode(d, ctx)?; |
| 86 | + Ok(Self(hash)) |
| 87 | + } |
| 88 | + } |
| 89 | + )+ |
| 90 | + }; |
| 91 | +} |
| 92 | + |
| 93 | +#[cfg(test)] |
| 94 | +mod tests { |
| 95 | + use crate::hashes::Blake2b128Hash; |
| 96 | + |
| 97 | + // Define one type without a trailing comma. |
| 98 | + define_hashes!((H1, Blake2b128Hash)); |
| 99 | + // Define one type with a trailing comma and a doc-comment. |
| 100 | + define_hashes!( |
| 101 | + /// Some documentation. |
| 102 | + (H2, Blake2b128Hash), |
| 103 | + ); |
| 104 | + // Define multiple types at once. |
| 105 | + define_hashes!( |
| 106 | + /// Documentation. |
| 107 | + (H3, Blake2b128Hash), |
| 108 | + // No documentation. |
| 109 | + (H4, Blake2b128Hash), |
| 110 | + /// More documentation. |
| 111 | + (H5, Blake2b128Hash), |
| 112 | + ); |
| 113 | + |
| 114 | + // There is little reason to check the conversion itself, it is mostly a demonstration |
| 115 | + // that the methods defined by the macro are working. |
| 116 | + #[test] |
| 117 | + fn hash_wrapper() { |
| 118 | + let hash = H1::new(&[1, 2, 3, 4, 5]); |
| 119 | + |
| 120 | + let v = Vec::from(hash); |
| 121 | + let from_slice = H1::try_from(v.as_slice()).unwrap(); |
| 122 | + assert_eq!(hash, from_slice); |
| 123 | + |
| 124 | + let from_vec = H1::try_from(v).unwrap(); |
| 125 | + assert_eq!(hash, from_vec); |
| 126 | + } |
| 127 | +} |
0 commit comments