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
use core::{
array::TryFromSliceError,
borrow::{
Borrow,
BorrowMut,
},
convert::TryFrom,
fmt,
ops::{
Deref,
DerefMut,
},
str,
};
#[cfg(feature = "random")]
use rand::{
distributions::{
Distribution,
Standard,
},
Rng,
};
use crate::hex_val;
macro_rules! key {
($i:ident, $t:ty) => {
#[derive(Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
/// FuelVM atomic numeric type.
#[repr(transparent)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(transparent))]
#[cfg_attr(feature = "typescript", wasm_bindgen::prelude::wasm_bindgen)]
#[derive(
fuel_types::canonical::Serialize, fuel_types::canonical::Deserialize,
)]
pub struct $i($t);
key_methods!($i, $t);
#[cfg(feature = "random")]
impl Distribution<$i> for Standard {
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> $i {
$i(rng.gen())
}
}
};
}
macro_rules! key_methods {
($i:ident, $t:ty) => {
const _: () = {
const SIZE: usize = core::mem::size_of::<$t>();
impl $i {
/// Number constructor.
pub const fn new(number: $t) -> Self {
Self(number)
}
/// Convert to array of big endian bytes.
pub fn to_bytes(self) -> [u8; SIZE] {
self.0.to_be_bytes()
}
/// Convert to usize.
pub const fn to_usize(self) -> usize {
self.0 as usize
}
/// Convert to usize.
pub const fn as_usize(&self) -> usize {
self.0 as usize
}
}
#[cfg(feature = "typescript")]
#[wasm_bindgen::prelude::wasm_bindgen]
impl $i {
#[wasm_bindgen::prelude::wasm_bindgen(constructor)]
/// Number constructor.
pub fn from_number(number: $t) -> Self {
Self(number)
}
/// Convert to array of big endian bytes.
#[wasm_bindgen(js_name = to_bytes)]
pub fn to_bytes_typescript(self) -> Vec<u8> {
self.to_bytes().to_vec()
}
/// Convert to usize.
#[wasm_bindgen(js_name = as_usize)]
pub fn as_usize_typescript(&self) -> usize {
self.0 as usize
}
}
#[cfg(feature = "random")]
impl rand::Fill for $i {
fn try_fill<R: rand::Rng + ?Sized>(
&mut self,
rng: &mut R,
) -> Result<(), rand::Error> {
let number = rng.gen();
*self = $i(number);
Ok(())
}
}
impl Deref for $i {
type Target = $t;
fn deref(&self) -> &$t {
&self.0
}
}
impl Borrow<$t> for $i {
fn borrow(&self) -> &$t {
&self.0
}
}
impl BorrowMut<$t> for $i {
fn borrow_mut(&mut self) -> &mut $t {
&mut self.0
}
}
impl DerefMut for $i {
fn deref_mut(&mut self) -> &mut $t {
&mut self.0
}
}
impl From<[u8; SIZE]> for $i {
fn from(bytes: [u8; SIZE]) -> Self {
Self(<$t>::from_be_bytes(bytes))
}
}
impl From<$t> for $i {
fn from(value: $t) -> Self {
Self(value)
}
}
impl From<$i> for [u8; SIZE] {
fn from(salt: $i) -> [u8; SIZE] {
salt.0.to_be_bytes()
}
}
impl From<$i> for $t {
fn from(salt: $i) -> $t {
salt.0
}
}
impl TryFrom<&[u8]> for $i {
type Error = TryFromSliceError;
fn try_from(bytes: &[u8]) -> Result<$i, TryFromSliceError> {
<[u8; SIZE]>::try_from(bytes).map(|b| b.into())
}
}
impl fmt::LowerHex for $i {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if f.alternate() {
write!(f, "0x")?
}
let bytes = self.0.to_be_bytes();
match f.width() {
Some(w) if w > 0 => {
bytes.chunks(2 * bytes.len() / w).try_for_each(|c| {
write!(f, "{:02x}", c.iter().fold(0u8, |acc, x| acc ^ x))
})
}
_ => bytes.iter().try_for_each(|b| write!(f, "{:02x}", &b)),
}
}
}
impl fmt::UpperHex for $i {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if f.alternate() {
write!(f, "0x")?
}
let bytes = self.0.to_be_bytes();
match f.width() {
Some(w) if w > 0 => {
bytes.chunks(2 * bytes.len() / w).try_for_each(|c| {
write!(f, "{:02X}", c.iter().fold(0u8, |acc, x| acc ^ x))
})
}
_ => bytes.iter().try_for_each(|b| write!(f, "{:02X}", &b)),
}
}
}
impl fmt::Debug for $i {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
<Self as fmt::LowerHex>::fmt(&self, f)
}
}
impl fmt::Display for $i {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
<Self as fmt::LowerHex>::fmt(&self, f)
}
}
impl str::FromStr for $i {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, Self::Err> {
const ERR: &str = "Invalid encoded byte";
let alternate = s.starts_with("0x");
let mut b = s.bytes();
let mut ret = <[u8; SIZE]>::default();
if alternate {
b.next();
b.next();
}
for r in ret.as_mut() {
let h = b.next().and_then(hex_val).ok_or(ERR)?;
let l = b.next().and_then(hex_val).ok_or(ERR)?;
*r = h << 4 | l;
}
Ok(ret.into())
}
}
};
};
}
key!(BlockHeight, u32);
key!(ChainId, u64);
impl BlockHeight {
/// Successor, i.e. next block after this
pub fn succ(self) -> Option<BlockHeight> {
Some(Self(self.0.checked_add(1)?))
}
/// Predecessor, i.e. previous block before this
pub fn pred(self) -> Option<BlockHeight> {
Some(Self(self.0.checked_sub(1)?))
}
}