use crate::error::{Error, ErrorKind};
#[cfg(feature = "serde")]
use serde::{de::Error as _, Deserialize, Deserializer, Serialize, Serializer};
use std::{
fmt::{self, Debug, Display},
str::FromStr,
};
#[derive(Copy, Clone, Eq, Hash, PartialEq, PartialOrd, Ord)]
pub struct Height(u64);
impl Height {
pub fn try_from_u64(n: u64) -> Result<Self, Error> {
if n > 0 {
Ok(Height(n))
} else {
Err(ErrorKind::OutOfRange.into())
}
}
pub fn try_from_i64(n: i64) -> Result<Self, Error> {
Self::try_from_u64(n as u64)
}
pub fn value(self) -> u64 {
self.0
}
pub fn increment(self) -> Self {
Height(self.0.checked_add(1).unwrap())
}
}
impl Debug for Height {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "block::Height({})", self.0)
}
}
impl Default for Height {
fn default() -> Self {
Height(1)
}
}
impl Display for Height {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<i64> for Height {
fn from(n: i64) -> Height {
Self::try_from_i64(n).unwrap()
}
}
impl From<u64> for Height {
fn from(n: u64) -> Height {
Self::try_from_u64(n).unwrap()
}
}
impl From<Height> for u64 {
fn from(height: Height) -> u64 {
height.0
}
}
impl From<Height> for i64 {
fn from(height: Height) -> i64 {
height.0 as i64
}
}
impl FromStr for Height {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Error> {
Self::try_from_u64(s.parse::<u64>().map_err(|_| ErrorKind::Parse)?)
}
}
#[cfg(feature = "serde")]
impl<'de> Deserialize<'de> for Height {
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
Ok(Self::from_str(&String::deserialize(deserializer)?)
.map_err(|e| D::Error::custom(format!("{}", e)))?)
}
}
#[cfg(feature = "serde")]
impl Serialize for Height {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
self.to_string().serialize(serializer)
}
}
pub trait ParseHeight {
fn parse_block_height(&self) -> Result<Height, Error>;
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn increment_by_one() {
assert_eq!(Height::default().increment().value(), 2);
}
}