array_bytes/hex/
hexify.rs

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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
// core
use core::{mem, str};
// self
use crate::prelude::*;

const HEX_CHARS: &[u8; 16] = b"0123456789abcdef";
const HEX_CHARS_UPPER: &[u8; 16] = b"0123456789ABCDEF";

/// Hexify `Self`.
///
/// # Examples
/// ```
/// use array_bytes::Hexify;
///
/// // Unsigned.
/// assert_eq!(52_u8.hexify(), "34");
/// assert_eq!(520_u16.hexify_upper(), "208");
/// assert_eq!(5_201_314_u32.hexify_prefixed(), "0x4f5da2");
/// assert_eq!(5_201_314_u64.hexify_prefixed_upper(), "0x4F5DA2");
/// assert_eq!(5_201_314_u128.hexify(), "4f5da2");
/// assert_eq!(5_201_314_usize.hexify_upper(), "4F5DA2");
/// // `[u8; N]`.
/// assert_eq!(*b"Love Jane Forever".hexify(), String::from("4c6f7665204a616e6520466f7265766572"));
/// // `&[u8; N]`.
/// assert_eq!(
/// 	b"Love Jane Forever".hexify_upper(),
/// 	String::from("4C6F7665204A616E6520466F7265766572")
/// );
/// // `&[u8]`.
/// assert_eq!(
/// 	b"Love Jane Forever".as_slice().hexify_prefixed(),
/// 	String::from("0x4c6f7665204a616e6520466f7265766572")
/// );
/// // `Vec<u8>`.
/// assert_eq!(
/// 	b"Love Jane Forever".to_vec().hexify_prefixed_upper(),
/// 	String::from("0x4C6F7665204A616E6520466F7265766572")
/// );
/// // `&Vec<u8>`.
/// assert_eq!(
/// 	(&b"Love Jane Forever".to_vec()).hexify(),
/// 	String::from("4c6f7665204a616e6520466f7265766572")
/// );
/// ```
pub trait Hexify {
	/// Hexify `Self`.
	fn hexify(self) -> String;

	/// Hexify `Self` with uppercase.
	fn hexify_upper(self) -> String;

	/// Hexify `Self` with `0x` prefix.
	fn hexify_prefixed(self) -> String;

	/// Hexify `Self` with `0x` prefix and uppercase.
	fn hexify_prefixed_upper(self) -> String;
}
macro_rules! hexify_unsigned {
	($self:expr, $map:expr) => {{
		match $self.highest_set_bit() {
			None => "0".into(),
			Some(high_bit) => {
				let high_nibble = high_bit / 4;
				let nibble_count = high_nibble + 1;
				let mut hex = String::with_capacity(nibble_count as _);

				for nibble in (0..=high_nibble).rev() {
					let shift = nibble * 4;
					let digit = (($self >> shift) & 0xF) as usize;

					hex.push($map[digit] as _);
				}

				hex
			},
		}
	}};
}
macro_rules! hexify_unsigned_prefixed {
	($self:expr, $map:expr) => {{
		match $self.highest_set_bit() {
			None => "0x0".into(),
			Some(high_bit) => {
				let high_nibble = high_bit / 4;
				let nibble_count = high_nibble + 1;
				let mut hex = String::with_capacity(2 + nibble_count as usize);

				hex.push_str("0x");

				for nibble in (0..=high_nibble).rev() {
					let shift = nibble * 4;
					let digit = (($self >> shift) & 0xF) as usize;

					hex.push($map[digit] as _);
				}

				hex
			},
		}
	}};
}
macro_rules! impl_hexify_for_unsigned {
	($($t:ty,)+) => {
		$(
			impl Hexify for $t {
				fn hexify(self) -> String {
					hexify_unsigned!(self, HEX_CHARS)
				}

				fn hexify_upper(self) -> String {
					hexify_unsigned!(self, HEX_CHARS_UPPER)
				}

				fn hexify_prefixed(self) -> String {
					hexify_unsigned_prefixed!(self, HEX_CHARS)
				}

				fn hexify_prefixed_upper(self) -> String {
					hexify_unsigned_prefixed!(self, HEX_CHARS_UPPER)
				}
			}

			impl Hexify for &$t {
				fn hexify(self) -> String {
					(*self).hexify()
				}

				fn hexify_upper(self) -> String {
					(*self).hexify_upper()
				}

				fn hexify_prefixed(self) -> String {
					(*self).hexify_prefixed()
				}

				fn hexify_prefixed_upper(self) -> String {
					(*self).hexify_prefixed_upper()
				}
			}
		)+
	};
}
impl_hexify_for_unsigned! {
	usize,
	u8,
	u16,
	u32,
	u64,
	u128,
}
macro_rules! hexify {
	($self:expr, $map:expr) => {{
		let cap = $self.len() * 2;
		let mut hex_bytes = <SmallVec<[u8; 128]>>::with_capacity(cap);

		// The capacity is fixed, it's safe to set the length; qed.
		unsafe {
			hex_bytes.set_len(cap);
		}

		let hex_ptr = hex_bytes.as_mut_ptr();

		for (i, &byte) in $self.iter().enumerate() {
			let high = $map[(byte >> 4) as usize];
			let low = $map[(byte & 0x0f) as usize];

			unsafe {
				*hex_ptr.add(i * 2) = high;
				*hex_ptr.add(i * 2 + 1) = low;
			}
		}

		// All the bytes are looked up in the map, it's safe to convert to string; qed.
		unsafe { String::from_utf8_unchecked(hex_bytes.into_vec()) }
	}};
}
macro_rules! hexify_prefixed {
	($self:expr, $map:expr) => {{
		let cap = 2 + $self.len() * 2;
		let mut hex_bytes = <SmallVec<[u8; 128]>>::with_capacity(cap);

		hex_bytes.extend_from_slice(b"0x");

		// The capacity is fixed, it's safe to set the length; qed.
		unsafe {
			hex_bytes.set_len(cap);
		}

		let hex_ptr = unsafe { hex_bytes.as_mut_ptr().add(2) };

		for (i, &byte) in $self.iter().enumerate() {
			let high = $map[(byte >> 4) as usize];
			let low = $map[(byte & 0x0f) as usize];

			unsafe {
				*hex_ptr.add(i * 2) = high;
				*hex_ptr.add(i * 2 + 1) = low;
			}
		}

		// All the bytes are looked up in the map, it's safe to convert to string; qed.
		unsafe { String::from_utf8_unchecked(hex_bytes.into_vec()) }
	}};
}
impl<const N: usize> Hexify for [u8; N] {
	fn hexify(self) -> String {
		hexify!(self, HEX_CHARS)
	}

	fn hexify_upper(self) -> String {
		hexify!(self, HEX_CHARS_UPPER)
	}

	fn hexify_prefixed(self) -> String {
		hexify_prefixed!(self, HEX_CHARS)
	}

	fn hexify_prefixed_upper(self) -> String {
		hexify_prefixed!(self, HEX_CHARS_UPPER)
	}
}
impl<const N: usize> Hexify for &[u8; N] {
	fn hexify(self) -> String {
		hexify!(self, HEX_CHARS)
	}

	fn hexify_upper(self) -> String {
		hexify!(self, HEX_CHARS_UPPER)
	}

	fn hexify_prefixed(self) -> String {
		hexify_prefixed!(self, HEX_CHARS)
	}

	fn hexify_prefixed_upper(self) -> String {
		hexify_prefixed!(self, HEX_CHARS_UPPER)
	}
}
impl Hexify for &[u8] {
	fn hexify(self) -> String {
		hexify!(self, HEX_CHARS)
	}

	fn hexify_upper(self) -> String {
		hexify!(self, HEX_CHARS_UPPER)
	}

	fn hexify_prefixed(self) -> String {
		hexify_prefixed!(self, HEX_CHARS)
	}

	fn hexify_prefixed_upper(self) -> String {
		hexify_prefixed!(self, HEX_CHARS_UPPER)
	}
}
impl Hexify for Vec<u8> {
	fn hexify(self) -> String {
		hexify!(self, HEX_CHARS)
	}

	fn hexify_upper(self) -> String {
		hexify!(self, HEX_CHARS_UPPER)
	}

	fn hexify_prefixed(self) -> String {
		hexify_prefixed!(self, HEX_CHARS)
	}

	fn hexify_prefixed_upper(self) -> String {
		hexify_prefixed!(self, HEX_CHARS_UPPER)
	}
}
impl Hexify for &Vec<u8> {
	fn hexify(self) -> String {
		hexify!(self, HEX_CHARS)
	}

	fn hexify_upper(self) -> String {
		hexify!(self, HEX_CHARS_UPPER)
	}

	fn hexify_prefixed(self) -> String {
		hexify_prefixed!(self, HEX_CHARS)
	}

	fn hexify_prefixed_upper(self) -> String {
		hexify_prefixed!(self, HEX_CHARS_UPPER)
	}
}
#[test]
fn hexify_should_work() {
	// Unsigned.
	assert_eq!(52_u8.hexify(), "34");
	assert_eq!(520_u16.hexify_upper(), "208");
	assert_eq!(5_201_314_u32.hexify_prefixed(), "0x4f5da2");
	assert_eq!(5_201_314_u64.hexify_prefixed_upper(), "0x4F5DA2");
	assert_eq!(5_201_314_u128.hexify(), "4f5da2");
	assert_eq!(5_201_314_usize.hexify_upper(), "4F5DA2");
	// `[u8; N]`.
	assert_eq!(*b"Love Jane Forever".hexify(), String::from("4c6f7665204a616e6520466f7265766572"));
	// `&[u8; N]`.
	assert_eq!(
		b"Love Jane Forever".hexify_upper(),
		String::from("4C6F7665204A616E6520466F7265766572")
	);
	// `&[u8]`.
	assert_eq!(
		b"Love Jane Forever".as_slice().hexify_prefixed(),
		String::from("0x4c6f7665204a616e6520466f7265766572")
	);
	// `Vec<u8>`.
	assert_eq!(
		b"Love Jane Forever".to_vec().hexify_prefixed_upper(),
		String::from("0x4C6F7665204A616E6520466F7265766572")
	);
	// `&Vec<u8>`.
	assert_eq!(
		(&b"Love Jane Forever".to_vec()).hexify(),
		String::from("4c6f7665204a616e6520466f7265766572")
	);
}

trait HighestSetBit {
	fn highest_set_bit(self) -> Option<u32>;
}
macro_rules! impl_highest_set_bit {
	($($t:ty),+ $(,)?) => {
		$(
			impl HighestSetBit for $t {
				fn highest_set_bit(self) -> Option<u32> {
					if self == 0 {
						None
					} else {
						let n_bits = (mem::size_of::<$t>() as u32) * 8;

						Some(n_bits - 1 - self.leading_zeros())
					}
				}
			}
		)+
	}
}
impl_highest_set_bit! {
	u8,
	u16,
	u32,
	u64,
	u128,
	usize
}
#[test]
fn highest_set_bit_should_work() {
	assert_eq!(0_u8.highest_set_bit(), None);
	assert_eq!(1_u16.highest_set_bit(), Some(0));
	assert_eq!(2_u32.highest_set_bit(), Some(1));
	assert_eq!(4_u64.highest_set_bit(), Some(2));
	assert_eq!(8_u128.highest_set_bit(), Some(3));
	assert_eq!(16_usize.highest_set_bit(), Some(4));
}

/// Hexify the bytes which are already in hex.
///
/// This is useful when you are interacting with IO.
///
/// # Examples
/// ```
/// assert_eq!(
/// 	array_bytes::hexify_hex_bytes(b"4c6f7665204a616e6520466f7265766572"),
/// 	Ok("4c6f7665204a616e6520466f7265766572"),
/// );
/// ```
pub fn hexify_hex_bytes(bytes: &[u8]) -> Result<&str> {
	for (i, byte) in bytes.iter().enumerate().skip(if bytes.starts_with(b"0x") { 2 } else { 0 }) {
		if !byte.is_ascii_hexdigit() {
			Err(Error::InvalidCharacter { character: *byte as _, index: i })?;
		}
	}

	Ok(
		// Validated in previous step, never fails here; qed.
		unsafe { str::from_utf8_unchecked(bytes) },
	)
}
#[test]
fn hexify_hex_bytes_should_work() {
	assert_eq!(
		hexify_hex_bytes(b"4c6f7665204a616e6520466f7265766572"),
		Ok("4c6f7665204a616e6520466f7265766572"),
	);
	assert_eq!(
		hexify_hex_bytes(b"4C6F7665204A616E6520466F7265766572"),
		Ok("4C6F7665204A616E6520466F7265766572"),
	);
	assert_eq!(
		hexify_hex_bytes(b"0x4c6f7665204a616e6520466f7265766572"),
		Ok("0x4c6f7665204a616e6520466f7265766572"),
	);
	assert_eq!(
		hexify_hex_bytes(b"0x4C6F7665204A616E6520466F7265766572"),
		Ok("0x4C6F7665204A616E6520466F7265766572"),
	);
}