2023-04-26 14:33:40 -05:00
|
|
|
use {
|
|
|
|
crate::arch::hardware_random_u64,
|
|
|
|
core::fmt::{self, Formatter},
|
|
|
|
};
|
2023-04-12 13:08:07 -05:00
|
|
|
#[derive(Debug, Eq, Hash, PartialEq, Clone, Copy)]
|
|
|
|
pub struct OSHandle {
|
|
|
|
pub id: u64,
|
|
|
|
}
|
2023-04-07 16:44:33 -05:00
|
|
|
|
2023-04-12 13:08:07 -05:00
|
|
|
impl OSHandle {
|
|
|
|
pub fn new_from_u64(id: u64) -> Self {
|
|
|
|
Self { id }
|
|
|
|
}
|
|
|
|
pub fn random_new() -> Self {
|
|
|
|
Self {
|
|
|
|
id: hardware_random_u64(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-07 16:44:33 -05:00
|
|
|
|
2023-04-12 13:08:07 -05:00
|
|
|
#[derive(Debug, Eq, Hash, PartialEq, Clone, Copy)]
|
2023-04-07 16:44:33 -05:00
|
|
|
pub struct Handle {
|
2023-04-26 14:33:40 -05:00
|
|
|
id: OSHandle,
|
2023-04-07 16:44:33 -05:00
|
|
|
perms: Permissions,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Handle {
|
|
|
|
pub fn new() -> Handle {
|
|
|
|
Handle {
|
2023-04-26 14:33:40 -05:00
|
|
|
id: OSHandle::random_new(),
|
2023-04-07 16:44:33 -05:00
|
|
|
perms: Permissions::new(),
|
|
|
|
}
|
|
|
|
}
|
2023-04-12 13:08:07 -05:00
|
|
|
|
|
|
|
pub fn as_u64(&self) -> u64 {
|
|
|
|
self.id.id
|
|
|
|
}
|
2023-04-07 16:44:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Handle {
|
|
|
|
fn fmt(&self, w: &mut Formatter<'_>) -> Result<(), core::fmt::Error> {
|
2023-05-23 05:16:14 -05:00
|
|
|
write!(w, "{:?}", self.id)?;
|
2023-04-07 16:44:33 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-12 13:08:07 -05:00
|
|
|
#[derive(PartialEq, Hash, Eq, Debug, Clone, Copy)]
|
2023-04-07 16:44:33 -05:00
|
|
|
|
|
|
|
pub struct Permissions {
|
2023-04-26 14:33:40 -05:00
|
|
|
edit_children: bool,
|
2023-04-07 16:44:33 -05:00
|
|
|
edit_attributes: bool,
|
|
|
|
}
|
|
|
|
impl Permissions {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
2023-04-26 14:33:40 -05:00
|
|
|
edit_children: true,
|
2023-04-07 16:44:33 -05:00
|
|
|
edit_attributes: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|