use std::fmt;
use crate::annex_a2::AnnexA2;
#[derive(Clone)]
pub struct DescDVB0x4D<'buf> {
buf: &'buf [u8],
}
impl<'buf> DescDVB0x4D<'buf> {
const HEADER_SZ: usize = 4;
#[inline(always)]
pub fn new(buf: &'buf [u8]) -> DescDVB0x4D<'buf> {
DescDVB0x4D { buf }
}
#[inline(always)]
fn buf_pos_event_name(&self) -> usize {
Self::HEADER_SZ
}
#[inline(always)]
fn buf_pos_text_length(&self) -> usize {
self.buf_pos_event_name() + (self.event_name_length() as usize)
}
#[inline(always)]
fn buf_pos_text(&self) -> usize {
self.buf_pos_text_length() + 1
}
#[inline(always)]
fn event_name_length(&self) -> u8 {
self.buf[3]
}
#[inline(always)]
pub fn event_name(&self) -> &'buf [u8] {
&self.buf[self.buf_pos_event_name()..self.buf_pos_text_length()]
}
#[inline(always)]
fn text_length(&self) -> u8 {
self.buf[self.buf_pos_text_length()]
}
#[inline(always)]
pub fn text(&self) -> &'buf [u8] {
let lft = self.buf_pos_text();
let rght = lft + (self.text_length() as usize);
&self.buf[lft..rght]
}
}
impl<'buf> fmt::Debug for DescDVB0x4D<'buf> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, ":dvb-0x4d (")?;
let mut dst_buf = [0u8; 256];
let mut dst_str = std::str::from_utf8_mut(&mut dst_buf).unwrap();
write!(f, ":event-name")?;
match AnnexA2::decode(self.event_name(), &mut dst_str) {
Ok(..) => write!(f, r#" "{}""#, dst_str),
Err(err) => write!(f, " (error: {:?})", err),
}?;
dst_buf = [0u8; 256];
dst_str = std::str::from_utf8_mut(&mut dst_buf).unwrap();
write!(f, " :text")?;
match AnnexA2::decode(self.text(), &mut dst_str) {
Ok(..) => write!(f, r#" "{}""#, dst_str),
Err(err) => write!(f, " (error: {})", err),
}?;
write!(f, ")")
}
}