1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
//! Macros for internal use
/// Define a kernel object wrapper.
#[macropol::macropol] // Replace `$metavariables` in literals and doc comments
macro_rules! define_object {
(
$(#[$meta:meta])*
pub struct $Name:ident<System: _>(System::$RawId:ident);
$(#[$meta_ref:meta])*
pub struct $NameRef:ident<System: $Trait:path>(_);
pub type $StaticName:ident<System>;
pub trait $NameHandle:ident {}
pub trait $NameMethods:ident {}
) => {
#[deny(unused_macros)]
macro common_doc_owned_handle() { crate::utils::undoc!(
/// This type is ABI-compatible with `System::`[`$&RawId`][].
///
/// See [`$&NameRef`][] for the [borrowed][] counterpart.
/// **See [`$&NameMethods`][] for the operations provided by this handle
/// type.**
///
/// [`$&RawId`]: $&Trait::$&RawId
/// [`$&NameMethods`]: #impl-$&NameMethods
/// [borrowed]: crate#object-handles
) }
$(#[$meta])*
#[repr(transparent)]
pub struct $Name<System: NotSupportedYet>(<System as $Trait>::$RawId);
$(#[$meta_ref])*
///
/// This type is ABI-compatible with `System::`[`$&RawId`][]. It's
/// logically equivalent to `&'a $&Name` but instead stores `$&RawId`
/// directly.
///
/// See [`$&Name`][] for the [owned][] counterpart and the description
/// of this kernel object.
/// **See [`$&NameMethods`][] for the operations provided by this handle
/// type.**
///
/// [`$&RawId`]: $&Trait::$&RawId
/// [`$&NameMethods`]: #impl-$&NameMethods
/// [owned]: crate#object-handles
#[repr(transparent)]
pub struct $NameRef<'a, System: $Trait>(
<System as $Trait>::$RawId,
core::marker::PhantomData<&'a ()>,
);
/// A [static handle][] type: [`$&NameRef`][]`<'static, System>`
///
/// This type is ABI-compatible with `System::`[`$&RawId`][]. It's
/// logically equivalent to `&'static $&Name` but instead stores
/// `$&RawId` directly.
///
/// See [`$&Name`][] for the [owned][] counterpart and the description
/// of this kernel object.
/// **See [`$&NameMethods`][] for the operations provided by this handle
/// type.**
///
/// [`$&RawId`]: $&Trait::$&RawId
/// [`$&NameMethods`]: $&NameRef#impl-$&NameMethods
/// [Static handle]: crate#object-handles
/// [owned]: crate#object-handles
pub type $StaticName<System> = $NameRef<'static, System>;
use private::NotSupportedYet;
mod private {
use super::*;
/// Owned handles aren't supported yet.
pub trait NotSupportedYet: $Trait {}
}
/// The trait for safe wrappers of `System::`[`$&RawId`][], i.e.,
/// [`$&Name`][] and [`$&NameRef`][].
///
/// [`$&RawId`]: $&Trait::$&RawId
#[const_trait]
pub unsafe trait $NameHandle {
/// The system type this object pertains to.
type System: $Trait;
/// Construct a `$&Name` from `$&RawId`.
///
/// # Safety
///
/// This function is marked as `unsafe` to prevent safe code from
/// compromising [object safety][1].
///
/// [1]: crate#object-safety
unsafe fn from_id(id: <Self::System as $Trait>::$RawId) -> Self;
/// Get the raw `$&RawId` value representing this object.
fn id(&self) -> <Self::System as $Trait>::$RawId;
/// [Borrow][] `self` as [`$&NameRef`][].
///
/// [Borrow]: crate#object-handles
fn borrow(&self) -> $NameRef<'_, Self::System>;
}
unsafe impl<System: NotSupportedYet> const $NameHandle for $Name<System> {
type System = System;
#[inline]
unsafe fn from_id(id: <System as $Trait>::$RawId) -> Self {
Self(id)
}
#[inline]
fn id(&self) -> System::$RawId {
self.0
}
#[inline]
fn borrow(&self) -> $NameRef<'_, Self::System> {
$NameRef(self.0, core::marker::PhantomData)
}
}
unsafe impl<System: $Trait> const $NameHandle for $NameRef<'_, System> {
type System = System;
#[inline]
unsafe fn from_id(id: <System as $Trait>::$RawId) -> Self {
Self(id, core::marker::PhantomData)
}
#[inline]
fn id(&self) -> System::$RawId {
self.0
}
#[inline]
fn borrow(&self) -> $NameRef<'_, Self::System> {
*self
}
}
// `$Name` intentionally lacks support for cloning.
impl<System: NotSupportedYet> PartialEq for $Name<System> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl<System: NotSupportedYet> PartialEq<$NameRef<'_, System>> for $Name<System> {
#[inline]
fn eq(&self, other: &$NameRef<'_, System>) -> bool {
self.0 == other.0
}
}
impl<System: NotSupportedYet> Eq for $Name<System> {}
impl<System: NotSupportedYet> hash::Hash for $Name<System> {
#[inline]
fn hash<H>(&self, state: &mut H)
where
H: hash::Hasher,
{
self.borrow().hash(state)
}
}
impl<System: NotSupportedYet> fmt::Debug for $Name<System> {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.borrow().fmt(f)
}
}
impl<System: $Trait> Clone for $NameRef<'_, System> {
#[inline]
fn clone(&self) -> Self {
Self(self.0, self.1)
}
}
impl<System: $Trait> Copy for $NameRef<'_, System> {}
impl<System: $Trait> PartialEq for $NameRef<'_, System> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl<System: NotSupportedYet> PartialEq<$Name<System>> for $NameRef<'_, System> {
#[inline]
fn eq(&self, other: &$Name<System>) -> bool {
self.0 == other.0
}
}
impl<System: $Trait> Eq for $NameRef<'_, System> {}
impl<System: $Trait> hash::Hash for $NameRef<'_, System> {
#[inline]
fn hash<H>(&self, state: &mut H)
where
H: hash::Hasher,
{
hash::Hash::hash(&self.0, state);
}
}
impl<System: $Trait> fmt::Debug for $NameRef<'_, System> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("$&Name").field(&self.0).finish()
}
}
};
}