forked from AbleOS/ableos
116 lines
3 KiB
Rust
116 lines
3 KiB
Rust
//!
|
|
|
|
use {
|
|
core::{
|
|
cmp::Ordering,
|
|
fmt::{self, Display},
|
|
},
|
|
sector::{Address, SectorSize},
|
|
};
|
|
|
|
#[derive(Clone, Copy, Debug, Hash)]
|
|
/// A size
|
|
pub enum Size<S: SectorSize> {
|
|
/// An unbounded size
|
|
Unbounded,
|
|
/// A bounded size
|
|
Bounded(Address<S>),
|
|
}
|
|
|
|
impl<S: SectorSize> Size<S> {
|
|
/// Try to get the length of the sector
|
|
pub fn try_len(&self) -> Option<Address<S>> {
|
|
match *self {
|
|
Size::Unbounded => None,
|
|
Size::Bounded(n) => Some(n),
|
|
}
|
|
}
|
|
/// Get the length of the sector unsafely
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// This function is unsafe because it does not check that the size is
|
|
/// bounded.
|
|
pub unsafe fn len(&self) -> Address<S> {
|
|
match *self {
|
|
Size::Unbounded => panic!(
|
|
"attempt to convert `Size::Unbounded` to a concrete length"
|
|
),
|
|
Size::Bounded(n) => n,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> Size<S> {
|
|
/// Check if the size is unbounded
|
|
pub fn is_bounded(&self) -> bool {
|
|
match *self {
|
|
Size::Unbounded => false,
|
|
Size::Bounded(_) => true,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> Display for Size<S> {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
match *self {
|
|
Size::Unbounded => write!(f, "Unbounded"),
|
|
Size::Bounded(n) => write!(f, "Bounded({})", n),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> PartialEq for Size<S> {
|
|
fn eq(&self, rhs: &Self) -> bool {
|
|
match (self, rhs) {
|
|
(&Size::Unbounded, _) => false,
|
|
(_, &Size::Unbounded) => false,
|
|
(&Size::Bounded(ref a), &Size::Bounded(ref b)) => a.eq(b),
|
|
}
|
|
}
|
|
|
|
fn ne(&self, rhs: &Self) -> bool {
|
|
match (self, rhs) {
|
|
(&Size::Unbounded, _) => false,
|
|
(_, &Size::Unbounded) => false,
|
|
(&Size::Bounded(ref a), &Size::Bounded(ref b)) => a.ne(b),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> PartialEq<Address<S>> for Size<S> {
|
|
fn eq(&self, rhs: &Address<S>) -> bool {
|
|
match *self {
|
|
Size::Unbounded => false,
|
|
Size::Bounded(ref n) => n.eq(rhs),
|
|
}
|
|
}
|
|
|
|
fn ne(&self, rhs: &Address<S>) -> bool {
|
|
match *self {
|
|
Size::Unbounded => false,
|
|
Size::Bounded(ref n) => n.eq(rhs),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> PartialOrd for Size<S> {
|
|
fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
|
|
match (self, rhs) {
|
|
(&Size::Unbounded, &Size::Unbounded) => None,
|
|
(&Size::Unbounded, _) => Some(Ordering::Greater),
|
|
(_, &Size::Unbounded) => Some(Ordering::Less),
|
|
(&Size::Bounded(ref a), &Size::Bounded(ref b)) => a.partial_cmp(b),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: SectorSize> PartialOrd<Address<S>> for Size<S> {
|
|
fn partial_cmp(&self, rhs: &Address<S>) -> Option<Ordering> {
|
|
match *self {
|
|
Size::Unbounded => Some(Ordering::Greater),
|
|
Size::Bounded(ref n) => n.partial_cmp(rhs),
|
|
}
|
|
}
|
|
}
|