use crate::{Packed, View};
use std::{any, borrow::Borrow, fmt, hash, marker};
pub struct Packet<T> {
boxed: Box<[u8]>,
marker: marker::PhantomData<T>,
}
impl<T> Packet<T>
where
T: Packed,
{
#[inline]
pub(crate) fn new(boxed: Box<[u8]>) -> Self {
Self {
boxed,
marker: marker::PhantomData,
}
}
#[inline]
pub fn view(&self) -> View<'_, T> {
View::new(self.boxed.as_ref())
}
pub fn pack(packed: &T) -> Self {
let mut boxed = vec![0; <T as Packed>::SIZE];
packed.unchecked_write_to_slice(&mut boxed);
Self::new(boxed.into_boxed_slice())
}
#[inline]
#[must_use = "this will clone data from the slice, it is often expensive"]
pub fn unpack(&self) -> T {
self.view().unpack()
}
}
impl<T> Borrow<[u8]> for Packet<T> {
#[inline]
fn borrow(&self) -> &[u8] {
self.boxed.borrow()
}
}
impl<T> Clone for Packet<T> {
#[inline]
fn clone(&self) -> Self {
Self {
boxed: self.boxed.clone(),
marker: self.marker,
}
}
}
impl<T> AsRef<[u8]> for Packet<T> {
#[inline]
fn as_ref(&self) -> &[u8] {
self.boxed.as_ref()
}
}
impl<T, U> PartialEq<Packet<U>> for Packet<T> {
#[inline]
fn eq(&self, other: &Packet<U>) -> bool {
self.boxed.eq(&other.boxed)
}
}
impl<T> Eq for Packet<T> {}
impl<T, U> PartialOrd<Packet<U>> for Packet<T> {
#[inline]
fn partial_cmp(&self, other: &Packet<U>) -> Option<std::cmp::Ordering> {
self.boxed.partial_cmp(&other.boxed)
}
}
impl<T> Ord for Packet<T> {
#[inline]
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.boxed.cmp(&other.boxed)
}
}
impl<T> hash::Hash for Packet<T> {
#[inline]
fn hash<H: hash::Hasher>(&self, state: &mut H) {
self.boxed.hash(state);
self.marker.hash(state);
}
}
impl<T> fmt::Debug for Packet<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let ty = any::type_name::<T>();
f.debug_struct(&format!("Packet<{}>", ty))
.field("slice", &self.boxed)
.field("marker", &self.marker)
.finish()
}
}