use crate::error::Error;
use std::convert::{TryFrom, TryInto};
use tendermint_proto::Protobuf;
use {
crate::serializers,
serde::{Deserialize, Serialize},
tendermint_proto::abci::BlockParams as RawSize,
};
#[derive(Serialize, Deserialize, Clone, Debug, Eq, PartialEq)]
pub struct Size {
#[serde(with = "serializers::from_str")]
pub max_bytes: u64,
#[serde(with = "serializers::from_str")]
pub max_gas: i64,
#[serde(with = "serializers::from_str", default = "Size::default_time_iota_ms")]
pub time_iota_ms: i64,
}
impl Size {
pub fn default_time_iota_ms() -> i64 {
1000
}
}
impl Protobuf<RawSize> for Size {}
impl TryFrom<RawSize> for Size {
type Error = Error;
fn try_from(value: RawSize) -> Result<Self, Self::Error> {
Ok(Self {
max_bytes: value
.max_bytes
.try_into()
.map_err(Error::integer_overflow)?,
max_gas: value.max_gas,
time_iota_ms: Self::default_time_iota_ms(),
})
}
}
impl From<Size> for RawSize {
fn from(value: Size) -> Self {
RawSize {
max_bytes: value.max_bytes as i64,
max_gas: value.max_gas,
}
}
}