use crate::tagged_fields::{WriteTaggedFields, read_tagged_fields, tagged_fields_len};
use crate::{DecodeBorrow, Encode, ProtocolError, UnknownTaggedFields};
use bytes::BufMut;
pub const MIN_VERSION: i16 = 0;
pub const MAX_VERSION: i16 = 0;
pub const FLEXIBLE_MIN: i16 = 0;
#[inline]
fn is_flexible(version: i16) -> bool {
version >= FLEXIBLE_MIN
}
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct RemoveTopicRecord {
pub topic_id: crate::primitives::uuid::Uuid,
pub unknown_tagged_fields: UnknownTaggedFields,
}
impl RemoveTopicRecord {
pub fn to_owned(&self) -> crate::owned::remove_topic_record::RemoveTopicRecord {
crate::owned::remove_topic_record::RemoveTopicRecord {
topic_id: (self.topic_id),
unknown_tagged_fields: self.unknown_tagged_fields.clone(),
}
}
}
impl Encode for RemoveTopicRecord {
fn encode<B: BufMut>(&self, buf: &mut B, version: i16) -> Result<(), ProtocolError> {
if !(MIN_VERSION..=MAX_VERSION).contains(&version) {
return Err(ProtocolError::SchemaMismatch(
"RemoveTopicRecord version out of range",
));
}
let flex = is_flexible(version);
if version >= 0 {
crate::primitives::uuid::put_uuid(buf, self.topic_id);
}
if flex {
let tagged = WriteTaggedFields::new();
tagged.write(buf, &self.unknown_tagged_fields);
}
Ok(())
}
fn encoded_len(&self, version: i16) -> usize {
let flex = is_flexible(version);
let mut n: usize = 0;
if version >= 0 {
n += 16;
}
if flex {
let known_pairs: Vec<(u32, usize)> = Vec::new();
n += tagged_fields_len(&known_pairs, &self.unknown_tagged_fields);
}
n
}
}
impl<'de> DecodeBorrow<'de> for RemoveTopicRecord {
fn decode_borrow(buf: &mut &'de [u8], version: i16) -> Result<Self, ProtocolError> {
if !(MIN_VERSION..=MAX_VERSION).contains(&version) {
return Err(ProtocolError::SchemaMismatch(
"RemoveTopicRecord version out of range",
));
}
let flex = is_flexible(version);
let mut out = Self::default();
if version >= 0 {
out.topic_id = crate::primitives::uuid::get_uuid(buf)?;
}
if flex {
out.unknown_tagged_fields = read_tagged_fields(buf, |_tag, _payload| Ok(false))?;
}
Ok(out)
}
}
#[cfg(test)]
impl RemoveTopicRecord {
#[must_use]
pub fn populated(version: i16) -> Self {
let mut m = Self::default();
if version >= 0 {
m.topic_id = crate::primitives::uuid::Uuid([1u8; 16]);
}
m
}
}