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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
// Copyright 2016 Amanieu d'Antras
// Copyright 2020 Amari Robinson
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
use crate::link_ops::LinkOps;
use crate::pointer_ops::PointerOps;
/// Trait for a adapter which allows a type to be inserted into an intrusive
/// collection.
///
/// `LinkOps` implements the collection-specific operations which
/// allows an object to be inserted into an intrusive collection. This type
/// needs to implement the appropriate trait for the collection type
/// (eg. `LinkedListOps` for inserting into a `LinkedList`).
/// `LinkOps` type may be stateful, allowing custom link types.
///
/// `PointerOps` implements the collection-specific pointer conversions which
/// allow an object to be inserted into an intrusive collection.
/// `PointerOps` type may be stateful, allowing custom pointer types.
///
/// A single object type may have multiple adapters, which allows it to be part
/// of multiple intrusive collections simultaneously.
///
/// In most cases you do not need to implement this trait manually: the
/// `intrusive_adapter!` macro will generate the necessary implementation for a
/// given type and its link field. However it is possible to implement it
/// manually if the intrusive link is not a direct field of the object type.
///
/// It is also possible to create stateful adapters.
/// This allows links and containers to be separated and avoids the need for objects to be modified to
/// contain a link.
///
/// # Safety
///
/// It must be possible to get back a reference to the container by passing a
/// pointer returned by `get_link` to `get_container`.
pub unsafe trait Adapter {
/// Collection-specific link operations which allow an object to be inserted in
/// an intrusive collection.
type LinkOps: LinkOps;
/// Collection-specific pointer conversions which allow an object to
/// be inserted in an intrusive collection.
type PointerOps: PointerOps;
/// Gets a reference to an object from a reference to a link in that object.
///
/// # Safety
///
/// `link` must be a valid pointer previously returned by `get_link`.
unsafe fn get_value(
&self,
link: <Self::LinkOps as LinkOps>::LinkPtr,
) -> *const <Self::PointerOps as PointerOps>::Value;
/// Gets a reference to the link for the given object.
///
/// # Safety
///
/// `value` must be a valid pointer.
unsafe fn get_link(
&self,
value: *const <Self::PointerOps as PointerOps>::Value,
) -> <Self::LinkOps as LinkOps>::LinkPtr;
/// Returns a reference to the link operations.
fn link_ops(&self) -> &Self::LinkOps;
/// Returns a reference to the mutable link operations.
fn link_ops_mut(&mut self) -> &mut Self::LinkOps;
/// Returns a reference to the pointer converter.
fn pointer_ops(&self) -> &Self::PointerOps;
}
/// Unsafe macro to get a raw pointer to an outer object from a pointer to one
/// of its fields.
///
/// # Examples
///
/// ```
/// use intrusive_collections::container_of;
///
/// struct S { x: u32, y: u32 };
/// let container = S { x: 1, y: 2 };
/// let field = &container.x;
/// let container2: *const S = unsafe { container_of!(field, S, x) };
/// assert_eq!(&container as *const S, container2);
/// ```
///
/// # Safety
///
/// This is unsafe because it assumes that the given expression is a valid
/// pointer to the specified field of some container type.
#[macro_export]
macro_rules! container_of {
($ptr:expr, $container:path, $field:ident) => {
#[allow(clippy::cast_ptr_alignment)]
{
($ptr as *const _ as *const u8).sub($crate::offset_of!($container, $field))
as *const $container
}
};
}
/// Macro to generate an implementation of `Adapter` for a given set of types.
/// In particular this will automatically generate implementations of the
/// `get_value` and `get_link` methods for a given named field in a struct.
///
/// The basic syntax to create an adapter is:
///
/// ```rust,ignore
/// intrusive_adapter!(Adapter = Pointer: Value { link_field: LinkType });
/// ```
///
/// You can create a new instance of an adapter using the `new` method or the
/// `NEW` associated constant. The adapter also implements the `Default` trait.
///
/// # Generics
///
/// This macro supports generic arguments:
///
/// ```rust,ignore
/// intrusive_adapter!(
/// Adapter<'lifetime, Type, Type2> =
/// Pointer: Value {
/// link_field: LinkType
/// }
/// where
/// Type: Copy,
/// Type2: ?Sized + 'lifetime
/// );
/// ```
///
/// Note that due to macro parsing limitations, `T: Trait` bounds are not
/// supported in the generic argument list. You must list any trait bounds in
/// a separate `where` clause at the end of the macro.
///
/// # Examples
///
/// ```
/// use intrusive_collections::{LinkedListLink, RBTreeLink};
/// use intrusive_collections::intrusive_adapter;
///
/// pub struct Test {
/// link: LinkedListLink,
/// link2: RBTreeLink,
/// }
/// intrusive_adapter!(MyAdapter = Box<Test>: Test { link: LinkedListLink });
/// intrusive_adapter!(pub MyAdapter2 = Box<Test>: Test { link2: RBTreeLink });
/// intrusive_adapter!(pub(crate) MyAdapter3 = Box<Test>: Test { link2: RBTreeLink });
///
/// pub struct Test2<T>
/// where T: Clone + ?Sized
/// {
/// link: LinkedListLink,
/// val: T,
/// }
/// intrusive_adapter!(MyAdapter4<'a, T> = &'a Test2<T>: Test2<T> { link: LinkedListLink } where T: ?Sized + Clone + 'a);
/// ```
#[macro_export]
macro_rules! intrusive_adapter {
(@impl
$(#[$attr:meta])* $vis:vis $name:ident ($($args:tt),*)
= $pointer:ty: $value:path { $field:ident: $link:ty } $($where_:tt)*
) => {
#[allow(explicit_outlives_requirements)]
$(#[$attr])*
$vis struct $name<$($args),*> $($where_)* {
link_ops: <$link as $crate::DefaultLinkOps>::Ops,
pointer_ops: $crate::DefaultPointerOps<$pointer>,
}
unsafe impl<$($args),*> Send for $name<$($args),*> $($where_)* {}
unsafe impl<$($args),*> Sync for $name<$($args),*> $($where_)* {}
impl<$($args),*> Copy for $name<$($args),*> $($where_)* {}
impl<$($args),*> Clone for $name<$($args),*> $($where_)* {
#[inline]
fn clone(&self) -> Self {
*self
}
}
impl<$($args),*> Default for $name<$($args),*> $($where_)* {
#[inline]
fn default() -> Self {
Self::NEW
}
}
#[allow(dead_code)]
impl<$($args),*> $name<$($args),*> $($where_)* {
pub const NEW: Self = $name {
link_ops: <$link as $crate::DefaultLinkOps>::NEW,
pointer_ops: $crate::DefaultPointerOps::<$pointer>::new(),
};
#[inline]
pub fn new() -> Self {
Self::NEW
}
}
#[allow(dead_code, unsafe_code)]
unsafe impl<$($args),*> $crate::Adapter for $name<$($args),*> $($where_)* {
type LinkOps = <$link as $crate::DefaultLinkOps>::Ops;
type PointerOps = $crate::DefaultPointerOps<$pointer>;
#[inline]
unsafe fn get_value(&self, link: <Self::LinkOps as $crate::LinkOps>::LinkPtr) -> *const <Self::PointerOps as $crate::PointerOps>::Value {
$crate::container_of!(link.as_ptr(), $value, $field)
}
#[inline]
unsafe fn get_link(&self, value: *const <Self::PointerOps as $crate::PointerOps>::Value) -> <Self::LinkOps as $crate::LinkOps>::LinkPtr {
// We need to do this instead of just accessing the field directly
// to strictly follow the stack borrow rules.
let ptr = (value as *const u8).add($crate::offset_of!($value, $field));
core::ptr::NonNull::new_unchecked(ptr as *mut _)
}
#[inline]
fn link_ops(&self) -> &Self::LinkOps {
&self.link_ops
}
#[inline]
fn link_ops_mut(&mut self) -> &mut Self::LinkOps {
&mut self.link_ops
}
#[inline]
fn pointer_ops(&self) -> &Self::PointerOps {
&self.pointer_ops
}
}
};
(@find_generic
$(#[$attr:meta])* $vis:vis $name:ident ($($prev:tt)*) > $($rest:tt)*
) => {
intrusive_adapter!(@impl
$(#[$attr])* $vis $name ($($prev)*) $($rest)*
);
};
(@find_generic
$(#[$attr:meta])* $vis:vis $name:ident ($($prev:tt)*) $cur:tt $($rest:tt)*
) => {
intrusive_adapter!(@find_generic
$(#[$attr])* $vis $name ($($prev)* $cur) $($rest)*
);
};
(@find_if_generic
$(#[$attr:meta])* $vis:vis $name:ident < $($rest:tt)*
) => {
intrusive_adapter!(@find_generic
$(#[$attr])* $vis $name () $($rest)*
);
};
(@find_if_generic
$(#[$attr:meta])* $vis:vis $name:ident $($rest:tt)*
) => {
intrusive_adapter!(@impl
$(#[$attr])* $vis $name () $($rest)*
);
};
($(#[$attr:meta])* $vis:vis $name:ident $($rest:tt)*) => {
intrusive_adapter!(@find_if_generic
$(#[$attr])* $vis $name $($rest)*
);
};
}
#[cfg(test)]
mod tests {
use crate::LinkedListLink;
use std::rc::Rc;
struct Obj {
link: LinkedListLink,
}
intrusive_adapter! {
/// Test doc comment
ObjAdapter1 = Rc<Obj>: Obj { link: LinkedListLink }
}
}