#[derive(Debug, Copy, Clone, Eq, PartialEq, PartialOrd, Ord, Hash)]
pub struct StandardId(u16);
impl StandardId {
pub const ZERO: Self = Self(0);
pub const MAX: Self = Self(0x7FF);
#[inline]
pub const fn new(raw: u16) -> Option<Self> {
if raw <= 0x7FF {
Some(Self(raw))
} else {
None
}
}
#[inline]
pub const unsafe fn new_unchecked(raw: u16) -> Self {
Self(raw)
}
#[inline]
pub fn as_raw(&self) -> u16 {
self.0
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, PartialOrd, Ord, Hash)]
pub struct ExtendedId(u32);
impl ExtendedId {
pub const ZERO: Self = Self(0);
pub const MAX: Self = Self(0x1FFF_FFFF);
#[inline]
pub const fn new(raw: u32) -> Option<Self> {
if raw <= 0x1FFF_FFFF {
Some(Self(raw))
} else {
None
}
}
#[inline]
pub const unsafe fn new_unchecked(raw: u32) -> Self {
Self(raw)
}
#[inline]
pub fn as_raw(&self) -> u32 {
self.0
}
pub fn standard_id(&self) -> StandardId {
StandardId((self.0 >> 18) as u16)
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum Id {
Standard(StandardId),
Extended(ExtendedId),
}
impl Ord for Id {
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
let split_id = |id: &Id| {
let (standard_id_part, ide_bit, extended_id_part) = match id {
Id::Standard(StandardId(x)) => (*x, 0, 0),
Id::Extended(x) => (
x.standard_id().0,
1,
x.0 & ((1 << 18) - 1), ),
};
(standard_id_part, ide_bit, extended_id_part)
};
split_id(self).cmp(&split_id(other))
}
}
impl PartialOrd for Id {
fn partial_cmp(&self, other: &Id) -> Option<core::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl From<StandardId> for Id {
#[inline]
fn from(id: StandardId) -> Self {
Id::Standard(id)
}
}
impl From<ExtendedId> for Id {
#[inline]
fn from(id: ExtendedId) -> Self {
Id::Extended(id)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn standard_id_new() {
assert_eq!(
StandardId::new(StandardId::MAX.as_raw()),
Some(StandardId::MAX)
);
}
#[test]
fn standard_id_new_out_of_range() {
assert_eq!(StandardId::new(StandardId::MAX.as_raw() + 1), None);
}
#[test]
fn standard_id_new_unchecked_out_of_range() {
let id = StandardId::MAX.as_raw() + 1;
assert_eq!(unsafe { StandardId::new_unchecked(id) }, StandardId(id));
}
#[test]
fn extended_id_new() {
assert_eq!(
ExtendedId::new(ExtendedId::MAX.as_raw()),
Some(ExtendedId::MAX)
);
}
#[test]
fn extended_id_new_out_of_range() {
assert_eq!(ExtendedId::new(ExtendedId::MAX.as_raw() + 1), None);
}
#[test]
fn extended_id_new_unchecked_out_of_range() {
let id = ExtendedId::MAX.as_raw() + 1;
assert_eq!(unsafe { ExtendedId::new_unchecked(id) }, ExtendedId(id));
}
#[test]
fn get_standard_id_from_extended_id() {
assert_eq!(
Some(ExtendedId::MAX.standard_id()),
StandardId::new((ExtendedId::MAX.0 >> 18) as u16)
);
}
#[test]
fn cmp_id() {
assert!(StandardId::ZERO < StandardId::MAX);
assert!(ExtendedId::ZERO < ExtendedId::MAX);
assert!(Id::Standard(StandardId::ZERO) < Id::Extended(ExtendedId::ZERO));
assert!(Id::Extended(ExtendedId::ZERO) < Id::Extended(ExtendedId::MAX));
assert!(Id::Extended(ExtendedId((1 << 11) - 1)) < Id::Standard(StandardId(1)));
assert!(Id::Standard(StandardId(1)) < Id::Extended(ExtendedId::MAX));
}
}