use core::convert::{TryFrom, TryInto};
use serde::{Deserialize, Serialize};
use tendermint_proto::{abci::BlockParams as RawAbciSize, types::BlockParams as RawSize, Protobuf};
use crate::{error::Error, serializers};
#[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: value.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,
time_iota_ms: value.time_iota_ms,
}
}
}
impl Protobuf<RawAbciSize> for Size {}
impl TryFrom<RawAbciSize> for Size {
type Error = Error;
fn try_from(value: RawAbciSize) -> 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 RawAbciSize {
fn from(value: Size) -> Self {
RawAbciSize {
max_bytes: value.max_bytes as i64,
max_gas: value.max_gas,
}
}
}