use super::descriptor_body;
use crate::error::{Error, Result};
use dvb_common::{Parse, Serialize};
pub const TAG: u8 = 0x65;
const HEADER_LEN: usize = 2;
const BODY_LEN: u8 = 1;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[non_exhaustive]
pub enum ScramblingMode {
DvbCsa1,
DvbCsa2,
DvbCsa3,
DvbCissaV1,
Reserved(u8),
}
impl ScramblingMode {
#[must_use]
pub fn from_u8(v: u8) -> Self {
match v {
0x01 => Self::DvbCsa1,
0x02 => Self::DvbCsa2,
0x03 => Self::DvbCsa3,
0x10 => Self::DvbCissaV1,
v => Self::Reserved(v),
}
}
#[must_use]
pub fn to_u8(self) -> u8 {
match self {
Self::DvbCsa1 => 0x01,
Self::DvbCsa2 => 0x02,
Self::DvbCsa3 => 0x03,
Self::DvbCissaV1 => 0x10,
Self::Reserved(v) => v,
}
}
#[must_use]
pub fn name(self) -> &'static str {
match self {
Self::DvbCsa1 => "DVB-CSA1",
Self::DvbCsa2 => "DVB-CSA2",
Self::DvbCsa3 => "DVB-CSA3 (standard)",
Self::DvbCissaV1 => "DVB-CISSA v1",
Self::Reserved(_) => "reserved",
}
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
pub struct ScramblingDescriptor {
pub scrambling_mode: ScramblingMode,
}
impl<'a> Parse<'a> for ScramblingDescriptor {
type Error = crate::error::Error;
fn parse(bytes: &'a [u8]) -> Result<Self> {
let body = descriptor_body(
bytes,
TAG,
"ScramblingDescriptor",
"unexpected tag for scrambling_descriptor",
)?;
if body.len() != BODY_LEN as usize {
return Err(Error::InvalidDescriptor {
tag: TAG,
reason: "scrambling_descriptor length must equal 1",
});
}
Ok(Self {
scrambling_mode: ScramblingMode::from_u8(body[0]),
})
}
}
impl Serialize for ScramblingDescriptor {
type Error = crate::error::Error;
fn serialized_len(&self) -> usize {
HEADER_LEN + BODY_LEN as usize
}
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] = BODY_LEN;
buf[HEADER_LEN] = self.scrambling_mode.to_u8();
Ok(len)
}
}
impl<'a> crate::traits::DescriptorDef<'a> for ScramblingDescriptor {
const TAG: u8 = TAG;
const NAME: &'static str = "SCRAMBLING";
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_extracts_scrambling_mode() {
let bytes = [TAG, 1, 0x02];
let d = ScramblingDescriptor::parse(&bytes).unwrap();
assert_eq!(d.scrambling_mode, ScramblingMode::DvbCsa2);
}
#[test]
fn parse_rejects_wrong_tag() {
let err = ScramblingDescriptor::parse(&[0x66, 1, 0x02]).unwrap_err();
assert!(matches!(err, Error::InvalidDescriptor { tag: 0x66, .. }));
}
#[test]
fn parse_rejects_short_buffer() {
let err = ScramblingDescriptor::parse(&[TAG]).unwrap_err();
assert!(matches!(err, Error::BufferTooShort { .. }));
}
#[test]
fn parse_rejects_truncated_body() {
let err = ScramblingDescriptor::parse(&[TAG, 1]).unwrap_err();
assert!(matches!(err, Error::BufferTooShort { .. }));
}
#[test]
fn parse_rejects_wrong_length() {
let err = ScramblingDescriptor::parse(&[TAG, 2, 0x02, 0x03]).unwrap_err();
assert!(matches!(err, Error::InvalidDescriptor { .. }));
}
#[test]
fn serialize_round_trip() {
let d = ScramblingDescriptor {
scrambling_mode: ScramblingMode::DvbCissaV1,
};
let mut buf = vec![0u8; d.serialized_len()];
d.serialize_into(&mut buf).unwrap();
let re = ScramblingDescriptor::parse(&buf).unwrap();
assert_eq!(d, re);
}
#[test]
fn serialize_rejects_too_small_buffer() {
let d = ScramblingDescriptor {
scrambling_mode: ScramblingMode::DvbCsa3,
};
let mut tiny = [0u8; 1];
let err = d.serialize_into(&mut tiny).unwrap_err();
assert!(matches!(err, Error::OutputBufferTooSmall { .. }));
}
#[test]
fn descriptor_length_matches_payload() {
let d = ScramblingDescriptor {
scrambling_mode: ScramblingMode::DvbCsa1,
};
assert_eq!(d.serialized_len() - 2, 1);
}
#[cfg(feature = "serde")]
#[test]
fn serde_round_trip() {
let d = ScramblingDescriptor {
scrambling_mode: ScramblingMode::DvbCsa2,
};
let json = serde_json::to_string(&d).unwrap();
let _v: serde_json::Value = serde_json::from_str(&json).unwrap();
}
#[test]
fn scrambling_mode_full_range_round_trip() {
for b in 0..=0xFF_u8 {
let sm = ScramblingMode::from_u8(b);
assert_eq!(sm.to_u8(), b, "round-trip failed for byte 0x{b:02X}");
}
}
#[test]
fn scrambling_mode_name_for_known() {
assert_eq!(ScramblingMode::DvbCsa1.name(), "DVB-CSA1");
assert_eq!(ScramblingMode::DvbCsa3.name(), "DVB-CSA3 (standard)");
assert_eq!(ScramblingMode::DvbCissaV1.name(), "DVB-CISSA v1");
assert_eq!(ScramblingMode::Reserved(0x55).name(), "reserved");
}
#[test]
fn scrambling_mode_0x04_0x05_are_reserved() {
assert_eq!(
ScramblingMode::from_u8(0x04),
ScramblingMode::Reserved(0x04)
);
assert_eq!(
ScramblingMode::from_u8(0x05),
ScramblingMode::Reserved(0x05)
);
}
}