mod power;
pub use self::power::Power;
use crate::{account, block, Signature, Time};
#[cfg(feature = "serde")]
use {
crate::serializers,
serde::{de::Error as _, Deserialize, Deserializer, Serialize, Serializer},
};
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Clone, Debug)]
pub struct Vote {
#[cfg_attr(feature = "serde", serde(rename = "type"))]
pub vote_type: Type,
pub height: block::Height,
#[cfg_attr(
feature = "serde",
serde(
serialize_with = "serializers::serialize_u64",
deserialize_with = "serializers::parse_u64"
)
)]
pub round: u64,
pub block_id: block::Id,
pub timestamp: Time,
pub validator_address: account::Id,
#[cfg_attr(
feature = "serde",
serde(
serialize_with = "serializers::serialize_u64",
deserialize_with = "serializers::parse_u64"
)
)]
pub validator_index: u64,
pub signature: Signature,
}
impl Vote {
pub fn is_prevote(&self) -> bool {
match self.vote_type {
Type::Prevote => true,
Type::Precommit => false,
}
}
pub fn is_precommit(&self) -> bool {
match self.vote_type {
Type::Precommit => true,
Type::Prevote => false,
}
}
}
#[repr(u8)]
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
pub enum Type {
Prevote = 1,
Precommit = 2,
}
impl Type {
pub fn from_u8(byte: u8) -> Option<Type> {
match byte {
1 => Some(Type::Prevote),
2 => Some(Type::Precommit),
_ => None,
}
}
pub fn to_u8(self) -> u8 {
self as u8
}
}
#[cfg(feature = "serde")]
impl Serialize for Type {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
self.to_u8().serialize(serializer)
}
}
#[cfg(feature = "serde")]
impl<'de> Deserialize<'de> for Type {
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
let byte = u8::deserialize(deserializer)?;
Type::from_u8(byte).ok_or_else(|| D::Error::custom(format!("invalid vote type: {}", byte)))
}
}