use crate::error::Error;
use crate::hash::Algorithm;
use crate::hash::SHA256_HASH_SIZE;
use crate::Hash;
use serde::{Deserialize, Serialize};
use std::convert::TryFrom;
use tendermint_proto::types::{
CanonicalPartSetHeader as RawCanonicalPartSetHeader, PartSetHeader as RawPartSetHeader,
};
use tendermint_proto::Protobuf;
#[derive(
Clone, Copy, Debug, Default, Hash, Eq, PartialEq, PartialOrd, Ord, Deserialize, Serialize,
)]
#[serde(try_from = "RawPartSetHeader", into = "RawPartSetHeader")] #[non_exhaustive]
pub struct Header {
pub total: u32,
pub hash: Hash,
}
impl Protobuf<RawPartSetHeader> for Header {}
impl TryFrom<RawPartSetHeader> for Header {
type Error = Error;
fn try_from(value: RawPartSetHeader) -> Result<Self, Self::Error> {
if !value.hash.is_empty() && value.hash.len() != SHA256_HASH_SIZE {
return Err(Error::invalid_hash_size());
}
Ok(Self {
total: value.total,
hash: Hash::from_bytes(Algorithm::Sha256, &value.hash)?,
})
}
}
impl From<Header> for RawPartSetHeader {
fn from(value: Header) -> Self {
RawPartSetHeader {
total: value.total,
hash: value.hash.into(),
}
}
}
impl TryFrom<RawCanonicalPartSetHeader> for Header {
type Error = Error;
fn try_from(value: RawCanonicalPartSetHeader) -> Result<Self, Self::Error> {
if !value.hash.is_empty() && value.hash.len() != SHA256_HASH_SIZE {
return Err(Error::invalid_hash_size());
}
Ok(Self {
total: value.total,
hash: Hash::from_bytes(Algorithm::Sha256, &value.hash)?,
})
}
}
impl From<Header> for RawCanonicalPartSetHeader {
fn from(value: Header) -> Self {
RawCanonicalPartSetHeader {
total: value.total,
hash: value.hash.into(),
}
}
}
impl Header {
pub fn new(total: u32, hash: Hash) -> Result<Self, Error> {
if total == 0 && hash != Hash::None {
return Err(Error::invalid_part_set_header(
"zero total with existing hash".to_string(),
));
}
if total != 0 && hash == Hash::None {
return Err(Error::invalid_part_set_header(
"non-zero total with empty hash".to_string(),
));
}
Ok(Header { total, hash })
}
}