2023-04-30 23:19:35 +00:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
//! Implements `Weight` and associated features.
|
|
|
|
|
|
|
|
use core::fmt;
|
2023-02-21 23:01:26 +00:00
|
|
|
use core::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Sub, SubAssign};
|
2023-02-06 20:01:48 +00:00
|
|
|
|
2023-02-06 06:15:47 +00:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
/// Represents block weight - the weight of a transaction or block.
|
|
|
|
///
|
|
|
|
/// This is an integer newtype representing weigth in `wu`. It provides protection against mixing
|
|
|
|
/// up the types as well as basic formatting features.
|
|
|
|
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
|
|
|
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
|
|
|
|
#[cfg_attr(feature = "serde", serde(transparent))]
|
|
|
|
pub struct Weight(u64);
|
|
|
|
|
|
|
|
impl Weight {
|
|
|
|
/// 0 wu.
|
|
|
|
///
|
|
|
|
/// Equivalent to [`MIN`](Self::MIN), may better express intent in some contexts.
|
|
|
|
pub const ZERO: Weight = Weight(0);
|
|
|
|
|
|
|
|
/// Minimum possible value (0 wu).
|
|
|
|
///
|
|
|
|
/// Equivalent to [`ZERO`](Self::ZERO), may better express intent in some contexts.
|
2023-05-02 22:16:20 +00:00
|
|
|
pub const MIN: Weight = Weight(u64::MIN);
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Maximum possible value.
|
2023-05-02 22:16:20 +00:00
|
|
|
pub const MAX: Weight = Weight(u64::MAX);
|
2023-02-06 20:01:48 +00:00
|
|
|
|
2023-05-01 08:26:11 +00:00
|
|
|
/// The maximum allowed weight for a block, see BIP 141 (network rule).
|
|
|
|
pub const MAX_BLOCK: Weight = Weight(4_000_000);
|
|
|
|
|
|
|
|
/// The minimum transaction weight for a valid serialized transaction.
|
|
|
|
pub const MIN_TRANSACTION: Weight = Weight(4 * 60);
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
/// Directly constructs `Weight` from weight units.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn from_wu(wu: u64) -> Self { Weight(wu) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
2023-03-22 16:43:33 +00:00
|
|
|
/// Constructs `Weight` from kilo weight units returning `None` if overflow occurred.
|
|
|
|
pub fn from_kwu(wu: u64) -> Option<Self> { wu.checked_mul(1000).map(Weight) }
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
/// Constructs `Weight` from virtual bytes.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Returns `None` on overflow.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub fn from_vb(vb: u64) -> Option<Self> { vb.checked_mul(4).map(Weight::from_wu) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Constructs `Weight` from virtual bytes without overflow check.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn from_vb_unchecked(vb: u64) -> Self { Weight::from_wu(vb * 4) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Constructs `Weight` from witness size.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn from_witness_data_size(witness_size: u64) -> Self { Weight(witness_size) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Constructs `Weight` from non-witness size.
|
|
|
|
pub const fn from_non_witness_data_size(non_witness_size: u64) -> Self {
|
|
|
|
Weight(non_witness_size * 4)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns raw weight units.
|
|
|
|
///
|
|
|
|
/// Can be used instead of `into()` to avoid inference issues.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn to_wu(self) -> u64 { self.0 }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
2023-03-22 16:43:33 +00:00
|
|
|
/// Converts to kilo weight units rounding down.
|
|
|
|
pub const fn to_kwu_floor(self) -> u64 { self.0 / 1000 }
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
/// Converts to vB rounding down.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn to_vbytes_floor(self) -> u64 { self.0 / 4 }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Converts to vB rounding up.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub const fn to_vbytes_ceil(self) -> u64 { (self.0 + 3) / 4 }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Checked addition.
|
|
|
|
///
|
|
|
|
/// Computes `self + rhs` returning `None` if overflow occurred.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub fn checked_add(self, rhs: Self) -> Option<Self> { self.0.checked_add(rhs.0).map(Self) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Checked subtraction.
|
|
|
|
///
|
|
|
|
/// Computes `self - rhs` returning `None` if overflow occurred.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub fn checked_sub(self, rhs: Self) -> Option<Self> { self.0.checked_sub(rhs.0).map(Self) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Checked multiplication.
|
|
|
|
///
|
|
|
|
/// Computes `self * rhs` returning `None` if overflow occurred.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub fn checked_mul(self, rhs: u64) -> Option<Self> { self.0.checked_mul(rhs).map(Self) }
|
2023-02-06 20:01:48 +00:00
|
|
|
|
|
|
|
/// Checked division.
|
|
|
|
///
|
|
|
|
/// Computes `self / rhs` returning `None` if `rhs == 0`.
|
2023-02-21 23:01:26 +00:00
|
|
|
pub fn checked_div(self, rhs: u64) -> Option<Self> { self.0.checked_div(rhs).map(Self) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Alternative will display the unit.
|
|
|
|
impl fmt::Display for Weight {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
if f.alternate() {
|
|
|
|
write!(f, "{} wu", self.0)
|
|
|
|
} else {
|
|
|
|
fmt::Display::fmt(&self.0, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-08 11:07:18 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2023-03-09 15:11:44 +00:00
|
|
|
fn weight_constructor_test() {
|
|
|
|
assert_eq!(Weight::ZERO, Weight::from_wu(0));
|
|
|
|
}
|
|
|
|
|
2023-03-22 16:43:33 +00:00
|
|
|
#[test]
|
|
|
|
fn kilo_weight_constructor_test() {
|
|
|
|
assert_eq!(Weight(1_000), Weight::from_kwu(1).expect("expected weight unit"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn kilo_weight_constructor_panic_test() {
|
2023-05-02 22:16:20 +00:00
|
|
|
Weight::from_kwu(u64::MAX).expect("expected weight unit");
|
2023-03-22 16:43:33 +00:00
|
|
|
}
|
|
|
|
|
2023-03-09 15:11:44 +00:00
|
|
|
#[test]
|
|
|
|
fn from_vb_test() {
|
|
|
|
let vb = Weight::from_vb(1).expect("expected weight unit");
|
|
|
|
assert_eq!(Weight(4), vb);
|
|
|
|
|
2023-05-02 22:16:20 +00:00
|
|
|
let vb = Weight::from_vb(u64::MAX);
|
2023-03-09 15:11:44 +00:00
|
|
|
assert_eq!(None, vb);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_vb_unchecked_test() {
|
|
|
|
let vb = Weight::from_vb_unchecked(1);
|
|
|
|
assert_eq!(Weight(4), vb);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
2023-05-02 22:16:20 +00:00
|
|
|
fn from_vb_unchecked_panic_test() { Weight::from_vb_unchecked(u64::MAX); }
|
2023-03-09 15:11:44 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_witness_data_size_test() {
|
|
|
|
let witness_data_size = 1;
|
|
|
|
assert_eq!(Weight(witness_data_size), Weight::from_witness_data_size(witness_data_size));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_non_witness_data_size_test() {
|
|
|
|
assert_eq!(Weight(4), Weight::from_non_witness_data_size(1));
|
|
|
|
}
|
|
|
|
|
2023-03-22 16:43:33 +00:00
|
|
|
#[test]
|
|
|
|
fn to_kwu_floor_test() {
|
|
|
|
assert_eq!(1, Weight(1_000).to_kwu_floor());
|
|
|
|
}
|
|
|
|
|
2023-03-09 15:11:44 +00:00
|
|
|
#[test]
|
|
|
|
fn to_vb_floor_test() {
|
|
|
|
assert_eq!(1, Weight(4).to_vbytes_floor());
|
|
|
|
assert_eq!(1, Weight(5).to_vbytes_floor());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn to_vb_ceil_test() {
|
|
|
|
assert_eq!(1, Weight(4).to_vbytes_ceil());
|
|
|
|
assert_eq!(2, Weight(5).to_vbytes_ceil());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn checked_add_test() {
|
|
|
|
let result = Weight(1).checked_add(Weight(1)).expect("expected weight unit");
|
|
|
|
assert_eq!(Weight(2), result);
|
|
|
|
|
|
|
|
let result = Weight::MAX.checked_add(Weight(1));
|
|
|
|
assert_eq!(None, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn checked_sub_test() {
|
2023-03-08 11:07:18 +00:00
|
|
|
let result = Weight(1).checked_sub(Weight(1)).expect("expected weight unit");
|
|
|
|
assert_eq!(Weight::ZERO, result);
|
|
|
|
|
|
|
|
let result = Weight::MIN.checked_sub(Weight(1));
|
|
|
|
assert_eq!(None, result);
|
|
|
|
}
|
2023-03-09 15:11:44 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn checked_mul_test() {
|
|
|
|
let result = Weight(2).checked_mul(2).expect("expected weight unit");
|
|
|
|
assert_eq!(Weight(4), result);
|
|
|
|
|
|
|
|
let result = Weight::MAX.checked_mul(2);
|
|
|
|
assert_eq!(None, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn checked_div_test() {
|
|
|
|
let result = Weight(2).checked_div(2).expect("expected weight unit");
|
|
|
|
assert_eq!(Weight(1), result);
|
|
|
|
|
|
|
|
let result = Weight(2).checked_div(0);
|
|
|
|
assert_eq!(None, result);
|
|
|
|
}
|
2023-03-08 11:07:18 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
impl From<Weight> for u64 {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn from(value: Weight) -> Self { value.to_wu() }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Add for Weight {
|
|
|
|
type Output = Weight;
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
fn add(self, rhs: Weight) -> Self::Output { Weight(self.0 + rhs.0) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AddAssign for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn add_assign(&mut self, rhs: Self) { self.0 += rhs.0 }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Sub for Weight {
|
|
|
|
type Output = Weight;
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
fn sub(self, rhs: Weight) -> Self::Output { Weight(self.0 - rhs.0) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SubAssign for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn sub_assign(&mut self, rhs: Self) { self.0 -= rhs.0 }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<u64> for Weight {
|
|
|
|
type Output = Weight;
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
fn mul(self, rhs: u64) -> Self::Output { Weight(self.0 * rhs) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<Weight> for u64 {
|
|
|
|
type Output = Weight;
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
fn mul(self, rhs: Weight) -> Self::Output { Weight(self * rhs.0) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MulAssign<u64> for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn mul_assign(&mut self, rhs: u64) { self.0 *= rhs }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Div<u64> for Weight {
|
|
|
|
type Output = Weight;
|
|
|
|
|
2023-02-21 23:01:26 +00:00
|
|
|
fn div(self, rhs: u64) -> Self::Output { Weight(self.0 / rhs) }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
2023-05-01 08:26:11 +00:00
|
|
|
impl Div<Weight> for Weight {
|
|
|
|
type Output = u64;
|
|
|
|
|
|
|
|
fn div(self, rhs: Weight) -> Self::Output { self.to_wu() / rhs.to_wu() }
|
|
|
|
}
|
|
|
|
|
2023-02-06 20:01:48 +00:00
|
|
|
impl DivAssign<u64> for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn div_assign(&mut self, rhs: u64) { self.0 /= rhs }
|
2023-02-06 20:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl core::iter::Sum for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn sum<I>(iter: I) -> Self
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Self>,
|
|
|
|
{
|
2023-02-06 20:01:48 +00:00
|
|
|
Weight(iter.map(Weight::to_wu).sum())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> core::iter::Sum<&'a Weight> for Weight {
|
2023-02-21 23:01:26 +00:00
|
|
|
fn sum<I>(iter: I) -> Self
|
|
|
|
where
|
|
|
|
I: Iterator<Item = &'a Weight>,
|
|
|
|
{
|
2023-02-06 20:01:48 +00:00
|
|
|
iter.cloned().sum()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-06 06:15:47 +00:00
|
|
|
crate::parse::impl_parse_str_from_int_infallible!(Weight, u64, from_wu);
|