use alloc::vec::Vec;
use core::fmt;
#[cfg(feature = "datasize")]
use datasize::DataSize;
use serde::{Deserialize, Serialize};
use crate::{
bytesrepr::{self, FromBytes, ToBytes},
Gas, U512,
};
#[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize)]
#[cfg_attr(feature = "datasize", derive(DataSize))]
pub struct Motes(U512);
impl Motes {
pub const MAX: Motes = Motes(U512::MAX);
pub fn new<T: Into<U512>>(value: T) -> Self {
Motes(value.into())
}
pub const fn zero() -> Self {
Motes(U512::zero())
}
pub fn checked_add(&self, rhs: Self) -> Option<Self> {
self.0.checked_add(rhs.value()).map(Self::new)
}
pub fn checked_sub(&self, rhs: Self) -> Option<Self> {
self.0.checked_sub(rhs.value()).map(Self::new)
}
pub fn checked_mul(&self, rhs: Self) -> Option<Self> {
self.0.checked_mul(rhs.value()).map(Self::new)
}
pub fn checked_div(&self, rhs: Self) -> Option<Self> {
self.0.checked_div(rhs.value()).map(Self::new)
}
pub fn value(&self) -> U512 {
self.0
}
pub fn from_gas(gas: Gas, conv_rate: u8) -> Option<Self> {
gas.value()
.checked_mul(U512::from(conv_rate))
.map(Self::new)
}
pub fn from_price(amount: U512, price: u8) -> Option<Self> {
amount.checked_mul(U512::from(price)).map(Self::new)
}
}
impl fmt::Display for Motes {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl ToBytes for Motes {
fn to_bytes(&self) -> Result<Vec<u8>, bytesrepr::Error> {
self.0.to_bytes()
}
fn serialized_length(&self) -> usize {
self.0.serialized_length()
}
}
impl FromBytes for Motes {
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), bytesrepr::Error> {
let (value, remainder) = FromBytes::from_bytes(bytes)?;
Ok((Motes(value), remainder))
}
}
#[cfg(test)]
mod tests {
use crate::U512;
use crate::{Gas, Motes};
#[test]
fn should_be_able_to_get_instance_of_motes() {
let initial_value = 1;
let motes = Motes::new(initial_value);
assert_eq!(
initial_value,
motes.value().as_u64(),
"should have equal value"
)
}
#[test]
fn should_be_able_to_compare_two_instances_of_motes() {
let left_motes = Motes::new(1);
let right_motes = Motes::new(1);
assert_eq!(left_motes, right_motes, "should be equal");
let right_motes = Motes::new(2);
assert_ne!(left_motes, right_motes, "should not be equal")
}
#[test]
fn should_be_able_to_add_two_instances_of_motes() {
let left_motes = Motes::new(1);
let right_motes = Motes::new(1);
let expected_motes = Motes::new(2);
assert_eq!(
left_motes.checked_add(right_motes),
Some(expected_motes),
"should be equal"
)
}
#[test]
fn should_be_able_to_subtract_two_instances_of_motes() {
let left_motes = Motes::new(1);
let right_motes = Motes::new(1);
let expected_motes = Motes::new(0);
assert_eq!(
left_motes.checked_sub(right_motes),
Some(expected_motes),
"should be equal"
)
}
#[test]
fn should_be_able_to_multiply_two_instances_of_motes() {
let left_motes = Motes::new(100);
let right_motes = Motes::new(10);
let expected_motes = Motes::new(1000);
assert_eq!(
left_motes.checked_mul(right_motes),
Some(expected_motes),
"should be equal"
)
}
#[test]
fn should_be_able_to_divide_two_instances_of_motes() {
let left_motes = Motes::new(1000);
let right_motes = Motes::new(100);
let expected_motes = Motes::new(10);
assert_eq!(
left_motes.checked_div(right_motes),
Some(expected_motes),
"should be equal"
)
}
#[test]
fn should_be_able_to_convert_from_motes() {
let gas = Gas::new(100);
let motes = Motes::from_gas(gas, 10).expect("should have value");
let expected_motes = Motes::new(1000);
assert_eq!(motes, expected_motes, "should be equal")
}
#[test]
fn should_be_able_to_default() {
let motes = Motes::default();
let expected_motes = Motes::new(0);
assert_eq!(motes, expected_motes, "should be equal")
}
#[test]
fn should_be_able_to_compare_relative_value() {
let left_motes = Motes::new(100);
let right_motes = Motes::new(10);
assert!(left_motes > right_motes, "should be gt");
let right_motes = Motes::new(100);
assert!(left_motes >= right_motes, "should be gte");
assert!(left_motes <= right_motes, "should be lte");
let left_motes = Motes::new(10);
assert!(left_motes < right_motes, "should be lt");
}
#[test]
fn should_default() {
let left_motes = Motes::new(0);
let right_motes = Motes::default();
assert_eq!(left_motes, right_motes, "should be equal");
let u512 = U512::zero();
assert_eq!(left_motes.value(), u512, "should be equal");
}
#[test]
fn should_support_checked_mul_from_gas() {
let gas = Gas::new(U512::MAX);
let conv_rate = 10;
let maybe = Motes::from_gas(gas, conv_rate);
assert!(maybe.is_none(), "should be none due to overflow");
}
}