use super::{Decode, DecodeError, Encode, EncodeError, TupleField};
use core::hash::{Hash, Hasher};
use std::convert::TryFrom;
use std::fmt;
use thiserror::Error;
#[derive(Debug, Clone, Error, PartialEq, Eq)]
pub enum TrackNamespaceError {
#[error("too many fields: {0} exceeds maximum of {1}")]
TooManyFields(usize, usize),
#[error("field too large: {0} bytes exceeds maximum of {1}")]
FieldTooLarge(usize, usize),
}
#[derive(Clone, Default, Eq, PartialEq)]
pub struct TrackNamespace {
pub fields: Vec<TupleField>,
}
impl TrackNamespace {
pub const MAX_FIELDS: usize = 32;
pub fn new() -> Self {
Self::default()
}
pub fn add(&mut self, field: TupleField) {
self.fields.push(field);
}
pub fn clear(&mut self) {
self.fields.clear();
}
pub fn from_utf8_path(path: &str) -> Self {
let mut tuple = TrackNamespace::new();
for part in path.split('/') {
tuple.add(TupleField::from_utf8(part));
}
tuple
}
pub fn to_utf8_path(&self) -> String {
let mut path = String::new();
for field in &self.fields {
path.push('/');
path.push_str(&String::from_utf8_lossy(&field.value));
}
path
}
}
impl Hash for TrackNamespace {
fn hash<H: Hasher>(&self, state: &mut H) {
self.fields.hash(state);
}
}
impl Decode for TrackNamespace {
fn decode<R: bytes::Buf>(r: &mut R) -> Result<Self, DecodeError> {
let count = usize::decode(r)?;
if count > Self::MAX_FIELDS {
return Err(DecodeError::FieldBoundsExceeded(
"TrackNamespace tuples".to_string(),
));
}
let mut fields = Vec::new();
for _ in 0..count {
fields.push(TupleField::decode(r)?);
}
Ok(Self { fields })
}
}
impl Encode for TrackNamespace {
fn encode<W: bytes::BufMut>(&self, w: &mut W) -> Result<(), EncodeError> {
if self.fields.len() > Self::MAX_FIELDS {
return Err(EncodeError::FieldBoundsExceeded(
"TrackNamespace tuples".to_string(),
));
}
self.fields.len().encode(w)?;
for field in &self.fields {
field.encode(w)?;
}
Ok(())
}
}
impl fmt::Debug for TrackNamespace {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{self}")
}
}
impl fmt::Display for TrackNamespace {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{0}", self.to_utf8_path())
}
}
impl TryFrom<Vec<TupleField>> for TrackNamespace {
type Error = TrackNamespaceError;
fn try_from(fields: Vec<TupleField>) -> Result<Self, Self::Error> {
if fields.len() > Self::MAX_FIELDS {
return Err(TrackNamespaceError::TooManyFields(
fields.len(),
Self::MAX_FIELDS,
));
}
for field in &fields {
if field.value.len() > TupleField::MAX_VALUE_SIZE {
return Err(TrackNamespaceError::FieldTooLarge(
field.value.len(),
TupleField::MAX_VALUE_SIZE,
));
}
}
Ok(Self { fields })
}
}
impl TryFrom<&str> for TrackNamespace {
type Error = TrackNamespaceError;
fn try_from(path: &str) -> Result<Self, Self::Error> {
let fields: Vec<TupleField> = path
.split('/')
.filter(|s| !s.is_empty())
.map(TupleField::from_utf8)
.collect();
Self::try_from(fields)
}
}
impl TryFrom<String> for TrackNamespace {
type Error = TrackNamespaceError;
fn try_from(path: String) -> Result<Self, Self::Error> {
Self::try_from(path.as_str())
}
}
impl TryFrom<Vec<&str>> for TrackNamespace {
type Error = TrackNamespaceError;
fn try_from(parts: Vec<&str>) -> Result<Self, Self::Error> {
let fields: Vec<TupleField> = parts.into_iter().map(TupleField::from_utf8).collect();
Self::try_from(fields)
}
}
impl TryFrom<Vec<String>> for TrackNamespace {
type Error = TrackNamespaceError;
fn try_from(parts: Vec<String>) -> Result<Self, Self::Error> {
let fields: Vec<TupleField> = parts.iter().map(|s| TupleField::from_utf8(s)).collect();
Self::try_from(fields)
}
}
#[cfg(test)]
mod tests {
use super::*;
use bytes::Bytes;
use bytes::BytesMut;
use std::convert::TryInto;
#[test]
fn encode_decode() {
let mut buf = BytesMut::new();
let t = TrackNamespace::from_utf8_path("test/path/to/resource");
t.encode(&mut buf).unwrap();
#[rustfmt::skip]
assert_eq!(
buf.to_vec(),
vec![
0x04, 0x04, 0x74, 0x65, 0x73, 0x74,
0x04, 0x70, 0x61, 0x74, 0x68,
0x02, 0x74, 0x6f,
0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65
]
);
let decoded = TrackNamespace::decode(&mut buf).unwrap();
assert_eq!(decoded, t);
let mut t = TrackNamespace::new();
t.add(TupleField::from_utf8("test"));
t.encode(&mut buf).unwrap();
assert_eq!(
buf.to_vec(),
vec![
0x01, 0x04, 0x74, 0x65, 0x73, 0x74
]
);
let decoded = TrackNamespace::decode(&mut buf).unwrap();
assert_eq!(decoded, t);
}
#[test]
fn encode_too_large() {
let mut buf = BytesMut::new();
let mut t = TrackNamespace::new();
for i in 0..TrackNamespace::MAX_FIELDS + 1 {
t.add(TupleField::from_utf8(&format!("field{}", i)));
}
let encoded = t.encode(&mut buf);
assert!(matches!(
encoded.unwrap_err(),
EncodeError::FieldBoundsExceeded(_)
));
}
#[test]
fn decode_too_large() {
let mut data: Vec<u8> = vec![0x00; 256]; data[0] = (TrackNamespace::MAX_FIELDS + 1) as u8; let mut buf: Bytes = data.into();
let decoded = TrackNamespace::decode(&mut buf);
assert!(matches!(
decoded.unwrap_err(),
DecodeError::FieldBoundsExceeded(_)
));
}
#[test]
fn try_from_str() {
let ns: TrackNamespace = "test/path/to/resource".try_into().unwrap();
assert_eq!(ns.fields.len(), 4);
assert_eq!(ns.to_utf8_path(), "/test/path/to/resource");
}
#[test]
fn try_from_string() {
let path = String::from("test/path");
let ns: TrackNamespace = path.try_into().unwrap();
assert_eq!(ns.fields.len(), 2);
assert_eq!(ns.to_utf8_path(), "/test/path");
}
#[test]
fn try_from_vec_str() {
let parts = vec!["test", "path", "to", "resource"];
let ns: TrackNamespace = parts.try_into().unwrap();
assert_eq!(ns.fields.len(), 4);
assert_eq!(ns.to_utf8_path(), "/test/path/to/resource");
}
#[test]
fn try_from_vec_string() {
let parts = vec![String::from("test"), String::from("path")];
let ns: TrackNamespace = parts.try_into().unwrap();
assert_eq!(ns.fields.len(), 2);
assert_eq!(ns.to_utf8_path(), "/test/path");
}
#[test]
fn try_from_vec_tuple_field() {
let fields = vec![TupleField::from_utf8("test"), TupleField::from_utf8("path")];
let ns: TrackNamespace = fields.try_into().unwrap();
assert_eq!(ns.fields.len(), 2);
assert_eq!(ns.to_utf8_path(), "/test/path");
}
#[test]
fn try_from_too_many_fields() {
let mut fields = Vec::new();
for i in 0..TrackNamespace::MAX_FIELDS + 1 {
fields.push(TupleField::from_utf8(&format!("field{}", i)));
}
let result: Result<TrackNamespace, _> = fields.try_into();
assert!(matches!(
result.unwrap_err(),
TrackNamespaceError::TooManyFields(33, 32)
));
}
#[test]
fn try_from_field_too_large() {
let large_value = "x".repeat(TupleField::MAX_VALUE_SIZE + 1);
let fields = vec![TupleField {
value: large_value.into_bytes(),
}];
let result: Result<TrackNamespace, _> = fields.try_into();
assert!(matches!(
result.unwrap_err(),
TrackNamespaceError::FieldTooLarge(4097, 4096)
));
}
}