2023-09-18 16:17:24 +02:00
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
use alloc::vec::Vec;
|
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
use hashbrown::HashSet;
|
2023-09-18 18:27:08 +02:00
|
|
|
use spacepackets::PacketId;
|
2023-09-18 16:17:24 +02:00
|
|
|
|
2023-09-19 00:13:55 +02:00
|
|
|
use crate::tmtc::ReceivesTcCore;
|
2023-09-18 16:17:24 +02:00
|
|
|
|
|
|
|
pub trait PacketIdLookup {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool;
|
2023-09-18 16:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
impl PacketIdLookup for Vec<u16> {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
|
|
|
self.contains(&packet_id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
2023-09-21 16:34:18 +02:00
|
|
|
impl PacketIdLookup for HashSet<u16> {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
2023-09-21 16:34:18 +02:00
|
|
|
self.contains(&packet_id)
|
2023-09-18 16:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 16:34:18 +02:00
|
|
|
impl PacketIdLookup for [u16] {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
2023-09-21 16:34:18 +02:00
|
|
|
self.binary_search(&packet_id).is_ok()
|
2023-09-18 18:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
2023-09-21 16:34:18 +02:00
|
|
|
impl PacketIdLookup for Vec<PacketId> {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
|
|
|
self.contains(&PacketId::from(packet_id))
|
2023-09-18 16:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-21 16:34:18 +02:00
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
impl PacketIdLookup for HashSet<PacketId> {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
2023-09-21 16:34:18 +02:00
|
|
|
self.contains(&PacketId::from(packet_id))
|
2023-09-18 16:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 16:34:18 +02:00
|
|
|
impl PacketIdLookup for [PacketId] {
|
2023-09-18 18:27:08 +02:00
|
|
|
fn validate(&self, packet_id: u16) -> bool {
|
2023-09-21 16:34:18 +02:00
|
|
|
self.binary_search(&PacketId::from(packet_id)).is_ok()
|
2023-09-18 18:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-21 15:11:00 +02:00
|
|
|
|
2023-09-18 16:17:24 +02:00
|
|
|
/// This function parses a given buffer for tightly packed CCSDS space packets. It uses the
|
|
|
|
/// [PacketId] field of the CCSDS packets to detect the start of a CCSDS space packet and then
|
|
|
|
/// uses the length field of the packet to extract CCSDS packets.
|
|
|
|
///
|
|
|
|
/// This function is also able to deal with broken tail packets at the end as long a the parser
|
2023-09-21 18:08:40 +02:00
|
|
|
/// can read the full 7 bytes which constitue a space packet header plus one byte minimal size.
|
|
|
|
/// If broken tail packets are detected, they are moved to the front of the buffer, and the write
|
|
|
|
/// index for future write operations will be written to the `next_write_idx` argument.
|
2023-09-18 16:17:24 +02:00
|
|
|
///
|
2023-09-21 16:34:18 +02:00
|
|
|
/// The parser will write all packets which were decoded successfully to the given `tc_receiver`
|
|
|
|
/// and return the number of packets found. If the [ReceivesTcCore::pass_tc] calls fails, the
|
|
|
|
/// error will be returned.
|
2023-09-18 16:17:24 +02:00
|
|
|
pub fn parse_buffer_for_ccsds_space_packets<E>(
|
|
|
|
buf: &mut [u8],
|
2023-09-21 16:34:18 +02:00
|
|
|
packet_id_lookup: &(impl PacketIdLookup + ?Sized),
|
2023-09-21 18:59:00 +02:00
|
|
|
tc_receiver: &mut (impl ReceivesTcCore<Error = E> + ?Sized),
|
2023-09-18 16:17:24 +02:00
|
|
|
next_write_idx: &mut usize,
|
|
|
|
) -> Result<u32, E> {
|
2023-09-21 18:08:40 +02:00
|
|
|
*next_write_idx = 0;
|
2023-09-21 16:34:18 +02:00
|
|
|
let mut packets_found = 0;
|
2023-09-18 16:17:24 +02:00
|
|
|
let mut current_idx = 0;
|
|
|
|
let buf_len = buf.len();
|
|
|
|
loop {
|
|
|
|
if current_idx + 7 >= buf.len() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
let packet_id = u16::from_be_bytes(buf[current_idx..current_idx + 2].try_into().unwrap());
|
|
|
|
if packet_id_lookup.validate(packet_id) {
|
|
|
|
let length_field =
|
|
|
|
u16::from_be_bytes(buf[current_idx + 4..current_idx + 6].try_into().unwrap());
|
|
|
|
let packet_size = length_field + 7;
|
2023-09-26 12:48:25 +02:00
|
|
|
if (current_idx + packet_size as usize) <= buf_len {
|
2023-09-18 16:17:24 +02:00
|
|
|
tc_receiver.pass_tc(&buf[current_idx..current_idx + packet_size as usize])?;
|
2023-09-21 16:34:18 +02:00
|
|
|
packets_found += 1;
|
2023-09-18 16:17:24 +02:00
|
|
|
} else {
|
|
|
|
// Move packet to start of buffer if applicable.
|
|
|
|
if current_idx > 0 {
|
|
|
|
buf.copy_within(current_idx.., 0);
|
2023-09-21 18:08:40 +02:00
|
|
|
*next_write_idx = buf.len() - current_idx;
|
2023-09-18 16:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
current_idx += packet_size as usize;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
current_idx += 1;
|
|
|
|
}
|
|
|
|
Ok(packets_found)
|
|
|
|
}
|
2023-09-20 11:45:27 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
2023-09-21 15:11:00 +02:00
|
|
|
mod tests {
|
2023-09-21 16:34:18 +02:00
|
|
|
use spacepackets::{
|
|
|
|
ecss::{tc::PusTcCreator, SerializablePusPacket},
|
|
|
|
PacketId, SpHeader,
|
|
|
|
};
|
|
|
|
|
|
|
|
use crate::encoding::tests::TcCacher;
|
|
|
|
|
|
|
|
use super::parse_buffer_for_ccsds_space_packets;
|
|
|
|
|
2023-09-21 16:44:52 +02:00
|
|
|
const TEST_APID_0: u16 = 0x02;
|
|
|
|
const TEST_APID_1: u16 = 0x10;
|
|
|
|
const TEST_PACKET_ID_0: PacketId = PacketId::const_tc(true, TEST_APID_0);
|
|
|
|
const TEST_PACKET_ID_1: PacketId = PacketId::const_tc(true, TEST_APID_1);
|
2023-09-21 15:11:00 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_basic() {
|
2023-09-21 16:44:52 +02:00
|
|
|
let mut sph = SpHeader::tc_unseg(TEST_APID_0, 0, 0).unwrap();
|
2023-09-21 16:34:18 +02:00
|
|
|
let ping_tc = PusTcCreator::new_simple(&mut sph, 17, 1, None, true);
|
|
|
|
let mut buffer: [u8; 32] = [0; 32];
|
|
|
|
let packet_len = ping_tc
|
|
|
|
.write_to_bytes(&mut buffer)
|
|
|
|
.expect("writing packet failed");
|
2023-09-21 16:44:52 +02:00
|
|
|
let valid_packet_ids = [TEST_PACKET_ID_0];
|
2023-09-21 16:34:18 +02:00
|
|
|
let mut tc_cacher = TcCacher::default();
|
|
|
|
let mut next_write_idx = 0;
|
|
|
|
let parse_result = parse_buffer_for_ccsds_space_packets(
|
|
|
|
&mut buffer,
|
|
|
|
valid_packet_ids.as_slice(),
|
|
|
|
&mut tc_cacher,
|
|
|
|
&mut next_write_idx,
|
|
|
|
);
|
|
|
|
assert!(parse_result.is_ok());
|
|
|
|
let parsed_packets = parse_result.unwrap();
|
|
|
|
assert_eq!(parsed_packets, 1);
|
|
|
|
assert_eq!(tc_cacher.tc_queue.len(), 1);
|
|
|
|
assert_eq!(
|
|
|
|
tc_cacher.tc_queue.pop_front().unwrap(),
|
|
|
|
buffer[..packet_len]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-09-21 16:44:52 +02:00
|
|
|
fn test_multi_packet() {
|
|
|
|
let mut sph = SpHeader::tc_unseg(TEST_APID_0, 0, 0).unwrap();
|
2023-09-21 16:34:18 +02:00
|
|
|
let ping_tc = PusTcCreator::new_simple(&mut sph, 17, 1, None, true);
|
|
|
|
let action_tc = PusTcCreator::new_simple(&mut sph, 8, 0, None, true);
|
|
|
|
let mut buffer: [u8; 32] = [0; 32];
|
|
|
|
let packet_len_ping = ping_tc
|
|
|
|
.write_to_bytes(&mut buffer)
|
|
|
|
.expect("writing packet failed");
|
2023-09-21 16:44:52 +02:00
|
|
|
let packet_len_action = action_tc
|
2023-09-21 16:34:18 +02:00
|
|
|
.write_to_bytes(&mut buffer[packet_len_ping..])
|
|
|
|
.expect("writing packet failed");
|
2023-09-21 16:44:52 +02:00
|
|
|
let valid_packet_ids = [TEST_PACKET_ID_0];
|
2023-09-21 16:34:18 +02:00
|
|
|
let mut tc_cacher = TcCacher::default();
|
|
|
|
let mut next_write_idx = 0;
|
|
|
|
let parse_result = parse_buffer_for_ccsds_space_packets(
|
|
|
|
&mut buffer,
|
|
|
|
valid_packet_ids.as_slice(),
|
|
|
|
&mut tc_cacher,
|
|
|
|
&mut next_write_idx,
|
|
|
|
);
|
|
|
|
assert!(parse_result.is_ok());
|
|
|
|
let parsed_packets = parse_result.unwrap();
|
2023-09-21 16:44:52 +02:00
|
|
|
assert_eq!(parsed_packets, 2);
|
2023-09-21 16:34:18 +02:00
|
|
|
assert_eq!(tc_cacher.tc_queue.len(), 2);
|
|
|
|
assert_eq!(
|
|
|
|
tc_cacher.tc_queue.pop_front().unwrap(),
|
|
|
|
buffer[..packet_len_ping]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
tc_cacher.tc_queue.pop_front().unwrap(),
|
2023-09-21 16:44:52 +02:00
|
|
|
buffer[packet_len_ping..packet_len_ping + packet_len_action]
|
2023-09-21 16:34:18 +02:00
|
|
|
);
|
2023-09-21 15:11:00 +02:00
|
|
|
}
|
2023-09-21 16:44:52 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multi_apid() {
|
|
|
|
let mut sph = SpHeader::tc_unseg(TEST_APID_0, 0, 0).unwrap();
|
|
|
|
let ping_tc = PusTcCreator::new_simple(&mut sph, 17, 1, None, true);
|
|
|
|
sph = SpHeader::tc_unseg(TEST_APID_1, 0, 0).unwrap();
|
|
|
|
let action_tc = PusTcCreator::new_simple(&mut sph, 8, 0, None, true);
|
|
|
|
let mut buffer: [u8; 32] = [0; 32];
|
|
|
|
let packet_len_ping = ping_tc
|
|
|
|
.write_to_bytes(&mut buffer)
|
|
|
|
.expect("writing packet failed");
|
|
|
|
let packet_len_action = action_tc
|
|
|
|
.write_to_bytes(&mut buffer[packet_len_ping..])
|
|
|
|
.expect("writing packet failed");
|
|
|
|
let valid_packet_ids = [TEST_PACKET_ID_0, TEST_PACKET_ID_1];
|
|
|
|
let mut tc_cacher = TcCacher::default();
|
|
|
|
let mut next_write_idx = 0;
|
|
|
|
let parse_result = parse_buffer_for_ccsds_space_packets(
|
|
|
|
&mut buffer,
|
|
|
|
valid_packet_ids.as_slice(),
|
|
|
|
&mut tc_cacher,
|
|
|
|
&mut next_write_idx,
|
|
|
|
);
|
|
|
|
assert!(parse_result.is_ok());
|
|
|
|
let parsed_packets = parse_result.unwrap();
|
|
|
|
assert_eq!(parsed_packets, 2);
|
|
|
|
assert_eq!(tc_cacher.tc_queue.len(), 2);
|
|
|
|
assert_eq!(
|
|
|
|
tc_cacher.tc_queue.pop_front().unwrap(),
|
|
|
|
buffer[..packet_len_ping]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
tc_cacher.tc_queue.pop_front().unwrap(),
|
|
|
|
buffer[packet_len_ping..packet_len_ping + packet_len_action]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-09-21 18:08:40 +02:00
|
|
|
fn test_split_packet_multi() {
|
|
|
|
let mut sph = SpHeader::tc_unseg(TEST_APID_0, 0, 0).unwrap();
|
|
|
|
let ping_tc = PusTcCreator::new_simple(&mut sph, 17, 1, None, true);
|
|
|
|
sph = SpHeader::tc_unseg(TEST_APID_1, 0, 0).unwrap();
|
|
|
|
let action_tc = PusTcCreator::new_simple(&mut sph, 8, 0, None, true);
|
|
|
|
let mut buffer: [u8; 32] = [0; 32];
|
|
|
|
let packet_len_ping = ping_tc
|
|
|
|
.write_to_bytes(&mut buffer)
|
|
|
|
.expect("writing packet failed");
|
|
|
|
let packet_len_action = action_tc
|
|
|
|
.write_to_bytes(&mut buffer[packet_len_ping..])
|
|
|
|
.expect("writing packet failed");
|
|
|
|
let valid_packet_ids = [TEST_PACKET_ID_0, TEST_PACKET_ID_1];
|
|
|
|
let mut tc_cacher = TcCacher::default();
|
|
|
|
let mut next_write_idx = 0;
|
|
|
|
let parse_result = parse_buffer_for_ccsds_space_packets(
|
|
|
|
&mut buffer[..packet_len_ping + packet_len_action - 4],
|
|
|
|
valid_packet_ids.as_slice(),
|
|
|
|
&mut tc_cacher,
|
|
|
|
&mut next_write_idx,
|
|
|
|
);
|
|
|
|
assert!(parse_result.is_ok());
|
|
|
|
let parsed_packets = parse_result.unwrap();
|
|
|
|
assert_eq!(parsed_packets, 1);
|
|
|
|
assert_eq!(tc_cacher.tc_queue.len(), 1);
|
|
|
|
// The broken packet was moved to the start, so the next write index should be after the
|
|
|
|
// last segment missing 4 bytes.
|
|
|
|
assert_eq!(next_write_idx, packet_len_action - 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_one_split_packet() {
|
|
|
|
let mut sph = SpHeader::tc_unseg(TEST_APID_0, 0, 0).unwrap();
|
|
|
|
let ping_tc = PusTcCreator::new_simple(&mut sph, 17, 1, None, true);
|
|
|
|
let mut buffer: [u8; 32] = [0; 32];
|
|
|
|
let packet_len_ping = ping_tc
|
|
|
|
.write_to_bytes(&mut buffer)
|
|
|
|
.expect("writing packet failed");
|
|
|
|
let valid_packet_ids = [TEST_PACKET_ID_0, TEST_PACKET_ID_1];
|
|
|
|
let mut tc_cacher = TcCacher::default();
|
|
|
|
let mut next_write_idx = 0;
|
|
|
|
let parse_result = parse_buffer_for_ccsds_space_packets(
|
|
|
|
&mut buffer[..packet_len_ping - 4],
|
|
|
|
valid_packet_ids.as_slice(),
|
|
|
|
&mut tc_cacher,
|
|
|
|
&mut next_write_idx,
|
|
|
|
);
|
|
|
|
assert_eq!(next_write_idx, 0);
|
|
|
|
assert!(parse_result.is_ok());
|
|
|
|
let parsed_packets = parse_result.unwrap();
|
|
|
|
assert_eq!(parsed_packets, 0);
|
|
|
|
assert_eq!(tc_cacher.tc_queue.len(), 0);
|
2023-09-21 16:44:52 +02:00
|
|
|
}
|
2023-09-21 15:11:00 +02:00
|
|
|
}
|