use bytes::{Buf, BufMut}; use crate::coding::{Decode, DecodeError, Encode, EncodeError, VarInt}; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Role { Publisher, Subscriber, Both, } impl Role { pub fn is_publisher(&self) -> bool { match self { Self::Publisher | Self::Both => true, Self::Subscriber => false, } } pub fn is_subscriber(&self) -> bool { match self { Self::Subscriber | Self::Both => true, Self::Publisher => false, } } pub fn compatible(&self, other: Role) -> bool { self.is_publisher() == other.is_subscriber() && self.is_subscriber() == other.is_publisher() } } impl From for VarInt { fn from(r: Role) -> Self { VarInt::from_u32(match r { Role::Publisher => 0x0, Role::Subscriber => 0x1, Role::Both => 0x2, }) } } impl TryFrom for Role { type Error = DecodeError; fn try_from(v: VarInt) -> Result { match v.into_inner() { 0x0 => Ok(Self::Publisher), 0x1 => Ok(Self::Subscriber), 0x2 => Ok(Self::Both), _ => Err(DecodeError::InvalidType(v)), } } } impl Decode for Role { fn decode(r: &mut R) -> Result { let v = VarInt::decode(r)?; v.try_into() } } impl Encode for Role { fn encode(&self, w: &mut W) -> Result<(), EncodeError> { VarInt::from(*self).encode(w) } }