#![cfg_attr(not(feature = "std"), no_std)]
use codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
use sp_timestamp::Timestamp;
#[derive(Debug, Encode, MaxEncodedLen, Decode, Eq, Clone, Copy, Default, Ord, Hash, TypeInfo)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(transparent)]
pub struct Slot(u64);
impl core::ops::Deref for Slot {
type Target = u64;
fn deref(&self) -> &u64 {
&self.0
}
}
impl core::ops::Add for Slot {
type Output = Self;
fn add(self, other: Self) -> Self {
Self(self.0 + other.0)
}
}
impl core::ops::Sub for Slot {
type Output = Self;
fn sub(self, other: Self) -> Self {
Self(self.0 - other.0)
}
}
impl core::ops::AddAssign for Slot {
fn add_assign(&mut self, rhs: Self) {
self.0 += rhs.0
}
}
impl core::ops::SubAssign for Slot {
fn sub_assign(&mut self, rhs: Self) {
self.0 -= rhs.0
}
}
impl core::ops::Add<u64> for Slot {
type Output = Self;
fn add(self, other: u64) -> Self {
Self(self.0 + other)
}
}
impl<T: Into<u64> + Copy> core::cmp::PartialEq<T> for Slot {
fn eq(&self, eq: &T) -> bool {
self.0 == (*eq).into()
}
}
impl<T: Into<u64> + Copy> core::cmp::PartialOrd<T> for Slot {
fn partial_cmp(&self, other: &T) -> Option<core::cmp::Ordering> {
self.0.partial_cmp(&(*other).into())
}
}
impl Slot {
pub const fn from_timestamp(timestamp: Timestamp, slot_duration: SlotDuration) -> Self {
Slot(timestamp.as_millis() / slot_duration.as_millis())
}
pub fn timestamp(&self, slot_duration: SlotDuration) -> Option<Timestamp> {
slot_duration.as_millis().checked_mul(self.0).map(Timestamp::new)
}
pub fn saturating_add<T: Into<u64>>(self, rhs: T) -> Self {
Self(self.0.saturating_add(rhs.into()))
}
pub fn saturating_sub<T: Into<u64>>(self, rhs: T) -> Self {
Self(self.0.saturating_sub(rhs.into()))
}
}
#[cfg(feature = "std")]
impl std::fmt::Display for Slot {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<u64> for Slot {
fn from(slot: u64) -> Slot {
Slot(slot)
}
}
impl From<Slot> for u64 {
fn from(slot: Slot) -> u64 {
slot.0
}
}
#[derive(
Clone,
Copy,
Debug,
Encode,
Decode,
MaxEncodedLen,
Hash,
PartialOrd,
Ord,
PartialEq,
Eq,
TypeInfo,
)]
#[repr(transparent)]
pub struct SlotDuration(u64);
impl SlotDuration {
pub const fn from_millis(millis: u64) -> Self {
Self(millis)
}
}
impl SlotDuration {
pub const fn as_millis(&self) -> u64 {
self.0
}
}
#[cfg(feature = "std")]
impl SlotDuration {
pub const fn as_duration(&self) -> core::time::Duration {
core::time::Duration::from_millis(self.0)
}
}
#[derive(Clone, Debug, Decode, Encode, PartialEq, TypeInfo, Eq)]
pub struct EquivocationProof<Header, Id> {
pub offender: Id,
pub slot: Slot,
pub first_header: Header,
pub second_header: Header,
}