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
238
239
240
241
242
243
244
245
246
247
//! Implement common traits for binary representable data.
//!
//! Use the `impl_hex` macro to implement the `ToHex`, `FromHex`, `Display`, `FromStr`, `Serialize` and `Deserialize` traits.
//!
//! This can be done by returning a reference to some bytes:
//! ```
//! struct Test([u8; 42]);
//!
//! hexutil::impl_hex!(Test, 42, |&self| &self.0, |data| Ok(Self(data)));
//! ```
//!
//! Or by returning some bytes by value:
//! ```
//! struct Test(u128);
//!
//! hexutil::impl_hex!(Test, 16, |self| self.0.to_le_bytes(), |data| Ok(Self(
//! u128::from_le_bytes(data)
//! )));
//! ```
//! # Example
//! ```
//! # use hexutil::{ParseHex, ToHex, FromHex};
//! # #[derive(Debug, PartialEq, Eq)]
//! struct Test(u16);
//!
//! hexutil::impl_hex!(Test, 2, |self| self.0.to_le_bytes(), |data| Ok(Self(
//! u16::from_le_bytes(data)
//! )));
//!
//! let test = Test(0x1234);
//!
//! // std::fmt::Display
//! assert_eq!(format!("{}", test), "3412");
//!
//! // std::string::ToString
//! let hex = test.to_string();
//! assert_eq!(hex, "3412");
//!
//! // std::convert::FromStr
//! let test: Test = hex.parse().unwrap();
//! assert_eq!(test, Test(0x1234));
//!
//! // hexutil::ToHex
//! let hex = test.to_hex();
//! assert_eq!(hex, "3412");
//!
//! // hexutil::FromHex
//! let test = Test::from_hex(hex.as_bytes()).unwrap();
//! assert_eq!(test, Test(0x1234));
//!
//! // hexutil::ParseHex
//! let test: Test = hex.parse_hex().unwrap();
//! assert_eq!(test, Test(0x1234));
//!
//! // serde::Serialize (with serializer.is_human_readable() == true)
//! let json = serde_json::to_string(&test).unwrap();
//! assert_eq!(json, r#""3412""#);
//!
//! // serde::Deserialize (with deserializer.is_human_readable() == true)
//! let test: Test = serde_json::from_str(&json).unwrap();
//! assert_eq!(test, Test(0x1234));
//!
//! // serde::Serialize (with serializer.is_human_readable() == false)
//! let bin = bincode::serialize(&test).unwrap();
//! assert_eq!(bin, [0x34, 0x12]);
//!
//! // serde::Deserialize (with deserializer.is_human_readable() == false)
//! let test: Test = bincode::deserialize(&bin).unwrap();
//! assert_eq!(test, Test(0x1234));
//! ```
//!
//! # Presets
//! You can append a list of presets what do derive:
//!
//! Name | Desciption
//! -|-
//! `default` | `convert` and `serde`
//! `convert` | `Display` and `FromStr`
//! `Display` | Implement the `std::fmt::Display` trait (enables the `to_string()` method)
//! `FromStr` | Implement the `std::convert::FromStr` trait (enables the `str.parse()` method)
//! `serde` | `Serialize` and `Deserialize`
//! `Serialize` | Implement the `serde::Serialize` trait
//! `Deserialize` | Implement the `serde::Deserialize` trait
//!
//! Derive only the `ToHex`, `FromHex`, `Serialize` and `Deserialize` traits:
//! ```
//! struct Test([u8; 42]);
//!
//! hexutil::impl_hex!(Test, 42, |self| self.0, |data| Ok(Self(data)), [serde]);
//! ```
//!
//! # `FromHex` Error
//! The second function returns a `Result<Self, FromHexError>`:
//! ```
//! # use hexutil::FromHexError;
//! struct Test([u8; 42]);
//!
//! hexutil::impl_hex!(Test, 42, |self| self.0, |data| {
//! Err(FromHexError::CustomStr("can't create this from hex"))
//! });
//! ```
//! Or use `FromHexError::InvalidValue` to display a default message:
//! ```
//! # use hexutil::FromHexError;
//! struct Test([u8; 42]);
//!
//! hexutil::impl_hex!(Test, 42, |self| self.0, |data| Err(
//! FromHexError::InvalidValue
//! ));
//! ```
//!
//! # One direction only
//! You can also implement only one direction:
//! ```
//! struct Test([u8; 42]);
//!
//! hexutil::impl_to_hex!(Test, 42, |self| self.0);
//! ```
//! ```
//! struct Test([u8; 42]);
//!
//! hexutil::impl_from_hex!(Test, 42, |data| Ok(Self(data)));
//! ```
use Error;
extern crate alloc;
use ;
/// A type that can be converted to a hexadecimal representation.
/// A type that can be created from a hexadecimal representation.
/// Parse a hexadecimal value.
///
/// ```
/// # use hexutil::ParseHex;
/// # #[derive(Debug, PartialEq, Eq)]
/// struct Test(u16);
///
/// hexutil::impl_from_hex!(Test, 2, |data| Ok(Self(u16::from_le_bytes(data))));
///
/// let test: Test = "3412".parse_hex().unwrap();
/// assert_eq!(test, Test(0x1234));
/// ```
/// An error occured while converting from a hexadecimal value.