use bytes::{BufMut, Bytes};
use crate::primitives::fixed::{get_i16, get_i64, put_i16, put_i64};
use crate::primitives::string_bytes::{
compact_nullable_string_len, nullable_string_len, put_compact_nullable_string,
put_nullable_string,
};
use crate::primitives::string_bytes::{put_bytes, put_compact_bytes};
use crate::primitives::string_bytes_borrowed::{get_bytes_borrowed, get_compact_bytes_borrowed};
use crate::primitives::string_bytes_borrowed::{
get_compact_nullable_string_borrowed, get_nullable_string_borrowed,
};
use crate::tagged_fields::{WriteTaggedFields, read_tagged_fields, tagged_fields_len};
use crate::{DecodeBorrow, Encode, ProtocolError, UnknownTaggedFields};
pub const API_KEY: i16 = 36;
pub const MIN_VERSION: i16 = 0;
pub const MAX_VERSION: i16 = 2;
pub const FLEXIBLE_MIN: i16 = 2;
#[inline]
fn is_flexible(version: i16) -> bool {
version >= FLEXIBLE_MIN
}
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct SaslAuthenticateResponse<'a> {
pub error_code: i16,
pub error_message: Option<&'a str>,
pub auth_bytes: &'a [u8],
pub session_lifetime_ms: i64,
pub unknown_tagged_fields: UnknownTaggedFields,
}
impl SaslAuthenticateResponse<'_> {
pub fn to_owned(&self) -> crate::owned::sasl_authenticate_response::SaslAuthenticateResponse {
crate::owned::sasl_authenticate_response::SaslAuthenticateResponse {
error_code: (self.error_code),
error_message: (self.error_message).map(std::string::ToString::to_string),
auth_bytes: Bytes::copy_from_slice(self.auth_bytes),
session_lifetime_ms: (self.session_lifetime_ms),
unknown_tagged_fields: self.unknown_tagged_fields.clone(),
}
}
}
impl Encode for SaslAuthenticateResponse<'_> {
fn encode<B: BufMut>(&self, buf: &mut B, version: i16) -> Result<(), ProtocolError> {
if !(MIN_VERSION..=MAX_VERSION).contains(&version) {
return Err(ProtocolError::UnsupportedVersion {
api_key: API_KEY,
version,
});
}
let flex = is_flexible(version);
if version >= 0 {
put_i16(buf, self.error_code);
}
if version >= 0 {
if flex {
put_compact_nullable_string(buf, self.error_message);
} else {
put_nullable_string(buf, self.error_message);
}
}
if version >= 0 {
if flex {
put_compact_bytes(buf, self.auth_bytes);
} else {
put_bytes(buf, self.auth_bytes);
}
}
if version >= 1 {
put_i64(buf, self.session_lifetime_ms);
}
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 += 2;
}
if version >= 0 {
n += if flex {
compact_nullable_string_len(self.error_message)
} else {
nullable_string_len(self.error_message)
};
}
if version >= 0 {
n += if flex {
crate::primitives::varint::uvarint_len(
u32::try_from((self.auth_bytes).len() + 1).unwrap(),
) + (self.auth_bytes).len()
} else {
4 + (self.auth_bytes).len()
};
}
if version >= 1 {
n += 8;
}
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 SaslAuthenticateResponse<'de> {
fn decode_borrow(buf: &mut &'de [u8], version: i16) -> Result<Self, ProtocolError> {
if !(MIN_VERSION..=MAX_VERSION).contains(&version) {
return Err(ProtocolError::UnsupportedVersion {
api_key: API_KEY,
version,
});
}
let flex = is_flexible(version);
let mut out = Self::default();
if version >= 0 {
out.error_code = get_i16(buf)?;
}
if version >= 0 {
out.error_message = if flex {
get_compact_nullable_string_borrowed(buf)?
} else {
get_nullable_string_borrowed(buf)?
};
}
if version >= 0 {
out.auth_bytes = if flex {
get_compact_bytes_borrowed(buf)?
} else {
get_bytes_borrowed(buf)?
};
}
if version >= 1 {
out.session_lifetime_ms = get_i64(buf)?;
}
if flex {
out.unknown_tagged_fields = read_tagged_fields(buf, |_tag, _payload| Ok(false))?;
}
Ok(out)
}
}
#[cfg(test)]
impl SaslAuthenticateResponse<'_> {
#[must_use]
pub fn populated(version: i16) -> Self {
let mut m = Self::default();
if version >= 0 {
m.error_code = 1i16;
}
if version >= 0 {
m.error_message = Some("x");
}
if version >= 0 {
m.auth_bytes = &b"x"[..];
}
if version >= 1 {
m.session_lifetime_ms = 1i64;
}
m
}
}