use super::constant::{ControlMessageType, RequestErrorCode};
use super::control_message::ControlMessageTrait;
use crate::model::common::reason_phrase::ReasonPhrase;
use crate::model::common::varint::{BufMutVarIntExt, BufVarIntExt};
use crate::model::error::ParseError;
use bytes::{BufMut, Bytes, BytesMut};
#[derive(Debug, PartialEq, Clone)]
pub struct RequestError {
pub request_id: u64,
pub error_code: RequestErrorCode,
pub retry_interval: u64,
pub reason_phrase: ReasonPhrase,
}
impl RequestError {
pub fn new(
request_id: u64,
error_code: RequestErrorCode,
retry_interval: u64,
reason_phrase: ReasonPhrase,
) -> Self {
Self {
request_id,
error_code,
retry_interval,
reason_phrase,
}
}
}
impl ControlMessageTrait for RequestError {
fn serialize(&self) -> Result<Bytes, ParseError> {
let mut buf = BytesMut::new();
buf.put_vi(ControlMessageType::RequestError)?;
let mut payload = BytesMut::new();
payload.put_vi(self.request_id)?;
payload.put_vi(self.error_code as u64)?;
payload.put_vi(self.retry_interval)?;
payload.extend_from_slice(&self.reason_phrase.serialize()?);
let payload_len: u16 = payload
.len()
.try_into()
.map_err(|e: std::num::TryFromIntError| ParseError::CastingError {
context: "RequestError::serialize(payload_length)",
from_type: "usize",
to_type: "u16",
details: e.to_string(),
})?;
buf.put_u16(payload_len);
buf.extend_from_slice(&payload);
Ok(buf.freeze())
}
fn parse_payload(payload: &mut Bytes) -> Result<Box<Self>, ParseError> {
let request_id = payload.get_vi()?;
let error_code_raw = payload.get_vi()?;
let error_code = RequestErrorCode::try_from(error_code_raw)?;
let retry_interval = payload.get_vi()?;
let reason_phrase = ReasonPhrase::deserialize(payload)?;
Ok(Box::new(RequestError {
request_id,
error_code,
retry_interval,
reason_phrase,
}))
}
fn get_type(&self) -> ControlMessageType {
ControlMessageType::RequestError
}
}
#[cfg(test)]
mod tests {
use super::*;
use bytes::Buf;
#[test]
fn test_roundtrip() {
let request_id = 160669;
let error_code = RequestErrorCode::InternalError; let retry_interval = 0; let reason_phrase = ReasonPhrase::try_new("They see me rollin'".to_string()).unwrap();
let request_error = RequestError {
request_id,
error_code,
retry_interval,
reason_phrase,
};
let mut buf = request_error.serialize().unwrap();
let msg_type = buf.get_vi().unwrap();
assert_eq!(msg_type, ControlMessageType::RequestError as u64);
let msg_length = buf.get_u16();
assert_eq!(msg_length as usize, buf.remaining());
let deserialized = RequestError::parse_payload(&mut buf).unwrap();
assert_eq!(*deserialized, request_error);
assert!(!buf.has_remaining());
}
#[test]
fn test_excess_roundtrip() {
let request_id = 160669;
let error_code = RequestErrorCode::InternalError;
let retry_interval = 0;
let reason_phrase = ReasonPhrase::try_new("They see me rollin'".to_string()).unwrap();
let request_error = RequestError {
request_id,
error_code,
retry_interval,
reason_phrase,
};
let serialized = request_error.serialize().unwrap();
let mut excess = BytesMut::new();
excess.extend_from_slice(&serialized);
excess.extend_from_slice(&[9u8, 1u8, 1u8]);
let mut buf = excess.freeze();
let msg_type = buf.get_vi().unwrap();
assert_eq!(msg_type, ControlMessageType::RequestError as u64);
let msg_length = buf.get_u16();
assert_eq!(msg_length as usize, buf.remaining() - 3);
let deserialized = RequestError::parse_payload(&mut buf).unwrap();
assert_eq!(*deserialized, request_error);
assert_eq!(buf.chunk(), &[9u8, 1u8, 1u8]);
}
#[test]
fn test_partial_message() {
let request_id = 160669;
let error_code = RequestErrorCode::InternalError;
let retry_interval = 0;
let reason_phrase = ReasonPhrase::try_new("They see me rollin'".to_string()).unwrap();
let request_error = RequestError {
request_id,
error_code,
retry_interval,
reason_phrase,
};
let mut buf = request_error.serialize().unwrap();
let msg_type = buf.get_vi().unwrap();
assert_eq!(msg_type, ControlMessageType::RequestError as u64);
let msg_length = buf.get_u16();
assert_eq!(msg_length as usize, buf.remaining());
let upper = buf.remaining() / 2;
let mut partial = buf.slice(..upper);
let deserialized = RequestError::parse_payload(&mut partial);
assert!(deserialized.is_err());
}
}