use super::*;
use bytes::{Buf, BufMut, Bytes, BytesMut};
#[derive(Debug, Clone, Copy, PartialEq)]
#[repr(u8)]
pub enum PubCompReason {
Success = 0,
PacketIdentifierNotFound = 146,
}
#[derive(Debug, Clone, PartialEq)]
pub struct PubComp {
pub pkid: u16,
pub reason: PubCompReason,
pub properties: Option<PubCompProperties>,
}
impl PubComp {
pub fn new(pkid: u16) -> PubComp {
PubComp {
pkid,
reason: PubCompReason::Success,
properties: None,
}
}
fn len(&self) -> usize {
let mut len = 2 + 1;
if self.reason == PubCompReason::Success && self.properties.is_none() {
return 2;
}
if let Some(properties) = &self.properties {
let properties_len = properties.len();
let properties_len_len = len_len(properties_len);
len += properties_len_len + properties_len;
}
len
}
pub fn read(fixed_header: FixedHeader, mut bytes: Bytes) -> Result<Self, Error> {
let variable_header_index = fixed_header.fixed_header_len;
bytes.advance(variable_header_index);
let pkid = read_u16(&mut bytes)?;
if fixed_header.remaining_len == 2 {
return Ok(PubComp {
pkid,
reason: PubCompReason::Success,
properties: None,
});
}
let ack_reason = read_u8(&mut bytes)?;
if fixed_header.remaining_len < 4 {
return Ok(PubComp {
pkid,
reason: reason(ack_reason)?,
properties: None,
});
}
let puback = PubComp {
pkid,
reason: reason(ack_reason)?,
properties: PubCompProperties::extract(&mut bytes)?,
};
Ok(puback)
}
pub fn write(&self, buffer: &mut BytesMut) -> Result<usize, Error> {
let len = self.len();
buffer.put_u8(0x70);
let count = write_remaining_length(buffer, len)?;
buffer.put_u16(self.pkid);
if self.reason == PubCompReason::Success && self.properties.is_none() {
return Ok(4);
}
buffer.put_u8(self.reason as u8);
if let Some(properties) = &self.properties {
properties.write(buffer)?;
}
Ok(1 + count + len)
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct PubCompProperties {
pub reason_string: Option<String>,
pub user_properties: Vec<(String, String)>,
}
impl PubCompProperties {
pub fn len(&self) -> usize {
let mut len = 0;
if let Some(reason) = &self.reason_string {
len += 1 + 2 + reason.len();
}
for (key, value) in self.user_properties.iter() {
len += 1 + 2 + key.len() + 2 + value.len();
}
len
}
pub fn extract(mut bytes: &mut Bytes) -> Result<Option<PubCompProperties>, Error> {
let mut reason_string = None;
let mut user_properties = Vec::new();
let (properties_len_len, properties_len) = length(bytes.iter())?;
bytes.advance(properties_len_len);
if properties_len == 0 {
return Ok(None);
}
let mut cursor = 0;
while cursor < properties_len {
let prop = read_u8(&mut bytes)?;
cursor += 1;
match property(prop)? {
PropertyType::ReasonString => {
let reason = read_mqtt_string(&mut bytes)?;
cursor += 2 + reason.len();
reason_string = Some(reason);
}
PropertyType::UserProperty => {
let key = read_mqtt_string(&mut bytes)?;
let value = read_mqtt_string(&mut bytes)?;
cursor += 2 + key.len() + 2 + value.len();
user_properties.push((key, value));
}
_ => return Err(Error::InvalidPropertyType(prop)),
}
}
Ok(Some(PubCompProperties {
reason_string,
user_properties,
}))
}
fn write(&self, buffer: &mut BytesMut) -> Result<(), Error> {
let len = self.len();
write_remaining_length(buffer, len)?;
if let Some(reason) = &self.reason_string {
buffer.put_u8(PropertyType::ReasonString as u8);
write_mqtt_string(buffer, reason);
}
for (key, value) in self.user_properties.iter() {
buffer.put_u8(PropertyType::UserProperty as u8);
write_mqtt_string(buffer, key);
write_mqtt_string(buffer, value);
}
Ok(())
}
}
fn reason(num: u8) -> Result<PubCompReason, Error> {
let code = match num {
0 => PubCompReason::Success,
146 => PubCompReason::PacketIdentifierNotFound,
num => return Err(Error::InvalidConnectReturnCode(num)),
};
Ok(code)
}
#[cfg(test)]
mod test {
use super::*;
use alloc::vec;
use bytes::BytesMut;
use pretty_assertions::assert_eq;
fn sample() -> PubComp {
let properties = PubCompProperties {
reason_string: Some("test".to_owned()),
user_properties: vec![("test".to_owned(), "test".to_owned())],
};
PubComp {
pkid: 42,
reason: PubCompReason::PacketIdentifierNotFound,
properties: Some(properties),
}
}
fn sample_bytes() -> Vec<u8> {
vec![
0x70, 0x18, 0x00, 0x2a, 0x92, 0x14, 0x1f, 0x00, 0x04, 0x74, 0x65, 0x73, 0x74, 0x26, 0x00, 0x04, 0x74, 0x65, 0x73, 0x74, 0x00, 0x04, 0x74, 0x65, 0x73,
0x74, ]
}
#[test]
fn pubcomp_parsing_works_correctly() {
let mut stream = bytes::BytesMut::new();
let packetstream = &sample_bytes();
stream.extend_from_slice(&packetstream[..]);
let fixed_header = parse_fixed_header(stream.iter()).unwrap();
let pubcomp_bytes = stream.split_to(fixed_header.frame_length()).freeze();
let pubcomp = PubComp::read(fixed_header, pubcomp_bytes).unwrap();
assert_eq!(pubcomp, sample());
}
#[test]
fn pubcomp_encoding_works_correctly() {
let pubcomp = sample();
let mut buf = BytesMut::new();
pubcomp.write(&mut buf).unwrap();
assert_eq!(&buf[..], sample_bytes());
}
}