1use crate::{ffi, storage::StorageValue, Asm};
3use paste::paste;
4
5macro_rules! impl_bytes {
6 ($count:expr) => {
7 paste! {
8 #[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
9 pub struct [<Bytes $count>] (
10 #[allow(unused)]
11 #[cfg(target_family = "wasm")] pub i32,
12 #[cfg(not(target_family = "wasm"))] pub [u8; $count],
13 );
14
15 impl [<Bytes $count>] {
16 #[cfg(target_family = "wasm")]
18 pub const fn empty() -> Self {
19 [<Bytes $count>](0)
20 }
21
22 #[cfg(not(target_family = "wasm"))]
23 pub const fn empty() -> Self {
24 [<Bytes $count>]([0; $count])
25 }
26
27 #[allow(clippy::should_implement_trait)]
29 #[inline(always)]
30 pub fn eq(self, other: Self) -> bool {
31 paste::paste! {
32 unsafe { ffi::bytes::[< bytes $count _eq >](self, other) }
33 }
34 }
35 }
36
37 impl Asm for [<Bytes $count>] {
38 fn push(self) {
39 unsafe { ffi::bytes::[<push_bytes $count>](self) }
40 }
41
42 #[cfg(not(target_family = "wasm"))]
43 fn bytes32(&self) -> [u8; 32] {
44 let mut output = [0; 32];
45 output[(32-$count)..].copy_from_slice(&self.0);
46 output
47 }
48 }
49
50 impl StorageValue for [<Bytes $count>] {
51 fn sload() -> Self {
52 unsafe { ffi::bytes::[<sload_bytes $count>]() }
53 }
54 }
55 }
56 };
57 ($($count:expr),+) => {
58 $(impl_bytes!($count);)+
59 };
60}
61
62impl_bytes! {
63 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
64 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32
65}