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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
use crate::prelude::*;
use anyhow::Result;
use bech32::{self, FromBase32, ToBase32};
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
use std::borrow::Borrow;
pub trait Bech32Object<T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send>:
From<T>
+ Borrow<T>
+ Deref<Target = T>
+ Clone
+ Debug
+ Display
+ ToBytes
+ FromBytes
+ PartialEq
+ Eq
+ Serialize
+ DeserializeOwned
+ Sync
+ Send
{
fn prefix() -> String;
fn size_in_bytes() -> usize;
}
#[macro_export]
macro_rules! hrp4 {
( $persona: expr ) => {{
$crate::const_assert!($persona.len() == 4);
let p = $persona.as_bytes();
u32::from_le_bytes([p[0], p[1], p[2], p[3]])
}};
}
#[derive(Clone, PartialEq, Eq, Hash)]
pub struct AleoObject<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
>(T);
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Bech32Object<T> for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn prefix() -> String {
String::from_utf8(PREFIX.to_le_bytes().to_vec()).expect("Failed to convert prefix to string")
}
#[inline]
fn size_in_bytes() -> usize {
SIZE_IN_DATA_BYTES
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> From<T> for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn from(data: T) -> Self {
Self(data)
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> FromBytes for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn read_le<R: Read>(mut reader: R) -> IoResult<Self> {
Ok(Self(FromBytes::read_le(&mut reader)?))
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> ToBytes for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn write_le<W: Write>(&self, mut writer: W) -> IoResult<()> {
self.0.write_le(&mut writer)
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> FromStr for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
type Err = Error;
#[inline]
fn from_str(string: &str) -> Result<Self, Self::Err> {
let (hrp, data, variant) = bech32::decode(string)?;
if hrp.as_bytes() != PREFIX.to_le_bytes() {
bail!("Invalid prefix for a bech32m hash: {hrp}")
};
if data.is_empty() {
bail!("Bech32m hash data is empty")
}
if variant != bech32::Variant::Bech32m {
bail!("Hash is not a bech32m hash")
}
Ok(Self::read_le(&*Vec::from_base32(&data)?)?)
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Display for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
bech32::encode_to_fmt(
f,
&Self::prefix(),
self.0.to_bytes_le().expect("Failed to write data as bytes").to_base32(),
bech32::Variant::Bech32m,
)
.expect("Failed to encode in bech32m")
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Debug for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "AleoObject {{ hrp: {:?}, data: {:?} }}", &Self::prefix(), self.0)
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Serialize for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
match serializer.is_human_readable() {
true => serializer.collect_str(self),
false => ToBytesSerializer::serialize(self, serializer),
}
}
}
impl<
'de,
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Deserialize<'de> for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
match deserializer.is_human_readable() {
true => FromStr::from_str(&String::deserialize(deserializer)?).map_err(de::Error::custom),
false => FromBytesDeserializer::<Self>::deserialize(deserializer, &Self::prefix(), SIZE_IN_DATA_BYTES),
}
}
}
impl<
T: Default + Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Default for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
fn default() -> Self {
Self(T::default())
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Deref for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
type Target = T;
#[inline]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<
T: Clone + Debug + ToBytes + FromBytes + PartialEq + Eq + Sync + Send,
const PREFIX: u32,
const SIZE_IN_DATA_BYTES: usize,
> Borrow<T> for AleoObject<T, PREFIX, SIZE_IN_DATA_BYTES>
{
#[inline]
fn borrow(&self) -> &T {
&self.0
}
}