use crate::error::{Error, Result};
use crate::traits::Descriptor;
use dvb_common::{Parse, Serialize};
pub const TAG: u8 = 0x09;
const HEADER_LEN: usize = 2;
const MIN_BODY_LEN: usize = 4;
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[cfg_attr(feature = "yoke", derive(yoke::Yokeable))]
pub struct CaDescriptor<'a> {
pub ca_system_id: u16,
pub ca_pid: u16,
pub private_data: &'a [u8],
}
impl<'a> Parse<'a> for CaDescriptor<'a> {
type Error = crate::error::Error;
fn parse(bytes: &'a [u8]) -> Result<Self> {
if bytes.len() < HEADER_LEN {
return Err(Error::BufferTooShort {
need: HEADER_LEN,
have: bytes.len(),
what: "CaDescriptor header",
});
}
if bytes[0] != TAG {
return Err(Error::InvalidDescriptor {
tag: bytes[0],
reason: "unexpected tag for CA_descriptor",
});
}
let length = bytes[1] as usize;
if length < MIN_BODY_LEN {
return Err(Error::InvalidDescriptor {
tag: TAG,
reason: "CA_descriptor length too short for mandatory fields",
});
}
let total = HEADER_LEN + length;
if bytes.len() < total {
return Err(Error::BufferTooShort {
need: total,
have: bytes.len(),
what: "CaDescriptor body",
});
}
let body = &bytes[HEADER_LEN..total];
let ca_system_id = u16::from_be_bytes([body[0], body[1]]);
let ca_pid = ((u16::from(body[2]) & 0x1F) << 8) | u16::from(body[3]);
let private_data = if body.len() > MIN_BODY_LEN {
&body[MIN_BODY_LEN..]
} else {
&[]
};
Ok(Self {
ca_system_id,
ca_pid,
private_data,
})
}
}
impl Serialize for CaDescriptor<'_> {
type Error = crate::error::Error;
fn serialized_len(&self) -> usize {
HEADER_LEN + MIN_BODY_LEN + self.private_data.len()
}
fn serialize_into(&self, buf: &mut [u8]) -> Result<usize> {
let len = self.serialized_len();
if buf.len() < len {
return Err(Error::OutputBufferTooSmall {
need: len,
have: buf.len(),
});
}
buf[0] = TAG;
buf[1] = (len - HEADER_LEN) as u8;
buf[2] = (self.ca_system_id >> 8) as u8;
buf[3] = (self.ca_system_id & 0xFF) as u8;
buf[4] = 0xE0 | ((self.ca_pid >> 8) as u8);
buf[5] = (self.ca_pid & 0xFF) as u8;
if !self.private_data.is_empty() {
buf[HEADER_LEN + MIN_BODY_LEN..len].copy_from_slice(self.private_data);
}
Ok(len)
}
}
impl<'a> Descriptor<'a> for CaDescriptor<'a> {
const TAG: u8 = TAG;
fn descriptor_length(&self) -> u8 {
(self.serialized_len() - HEADER_LEN) as u8
}
}
impl<'a> crate::traits::DescriptorDef<'a> for CaDescriptor<'a> {
const TAG: u8 = TAG;
const NAME: &'static str = "CA";
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_viaccess_ecm_pid() {
let bytes = [TAG, 4, 0x05, 0x00, 0xE1, 0x01];
let d = CaDescriptor::parse(&bytes).unwrap();
assert_eq!(d.ca_system_id, 0x0500);
assert_eq!(d.ca_pid, 0x0101);
assert!(d.private_data.is_empty());
}
#[test]
fn parse_with_private_data() {
let bytes = [TAG, 6, 0x05, 0x00, 0xE1, 0x01, 0xAA, 0xBB];
let d = CaDescriptor::parse(&bytes).unwrap();
assert_eq!(d.ca_system_id, 0x0500);
assert_eq!(d.ca_pid, 0x0101);
assert_eq!(d.private_data, &[0xAA, 0xBB]);
}
#[test]
fn parse_rejects_wrong_tag() {
let err = CaDescriptor::parse(&[0x0A, 4, 0x05, 0x00, 0xE1, 0x01]).unwrap_err();
assert!(matches!(err, Error::InvalidDescriptor { tag: 0x0A, .. }));
}
#[test]
fn parse_rejects_short_header() {
let err = CaDescriptor::parse(&[TAG]).unwrap_err();
assert!(matches!(err, Error::BufferTooShort { .. }));
}
#[test]
fn parse_rejects_length_too_short() {
let bytes = [TAG, 3, 0x05, 0x00, 0xE1];
let err = CaDescriptor::parse(&bytes).unwrap_err();
assert!(matches!(err, Error::InvalidDescriptor { tag: TAG, .. }));
}
#[test]
fn parse_rejects_length_overflow() {
let bytes = [TAG, 10, 0x05, 0x00, 0xE1, 0x01];
let err = CaDescriptor::parse(&bytes).unwrap_err();
assert!(matches!(err, Error::BufferTooShort { .. }));
}
#[test]
fn serialize_round_trip() {
let d = CaDescriptor {
ca_system_id: 0x1800,
ca_pid: 0x0200,
private_data: &[0xDE, 0xAD],
};
let mut buf = vec![0u8; d.serialized_len()];
d.serialize_into(&mut buf).unwrap();
let reparsed = CaDescriptor::parse(&buf).unwrap();
assert_eq!(d, reparsed);
}
#[test]
fn serialize_round_trip_no_private_data() {
let d = CaDescriptor {
ca_system_id: 0x0500,
ca_pid: 0x0101,
private_data: &[],
};
let mut buf = vec![0u8; d.serialized_len()];
d.serialize_into(&mut buf).unwrap();
let reparsed = CaDescriptor::parse(&buf).unwrap();
assert_eq!(d, reparsed);
}
#[test]
fn serialize_rejects_small_buffer() {
let d = CaDescriptor {
ca_system_id: 0x0500,
ca_pid: 0x0101,
private_data: &[],
};
let mut tiny = vec![0u8; 3];
let err = d.serialize_into(&mut tiny).unwrap_err();
assert!(matches!(err, Error::OutputBufferTooSmall { .. }));
}
#[test]
fn descriptor_length_matches_payload() {
let d = CaDescriptor {
ca_system_id: 0x0500,
ca_pid: 0x0101,
private_data: &[0xAA],
};
assert_eq!(d.descriptor_length(), 5);
}
}