stack_cell_ref/lib.rs
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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
//! Share a reference in thread inner.
//!
//! # Examples
//! ```
//! use std::cell::Cell;
//!
//! use stack_cell_ref::CellOptionRef;
//!
//! struct Foo {
//! x: Cell<i32>,
//! }
//!
//! thread_local! {
//! static S: CellOptionRef<Foo> = CellOptionRef::new();
//! }
//!
//! fn set_foo(x: i32) {
//! S.with(|c| {
//! c.read(|f| {
//! f.unwrap().x.set(x);
//! });
//! });
//! }
//!
//! let foo = Foo { x: Cell::new(0) };
//!
//! S.with(|c| {
//! c.with(Some(&foo), || {
//! set_foo(1);
//! });
//! assert_eq!(c.get_ptr(), None);
//! });
//! assert_eq!(foo.x.get(), 1);
//! ```
//!
#![no_std]
use core::cell::Cell;
use core::fmt::{Debug, Formatter};
use core::hash::{Hash, Hasher};
use core::ptr::NonNull;
/// A [`Cell`] that stores immutable references.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellRef;
///
/// let cell = CellRef::new_with(&0);
/// let foo = 1;
/// cell.with(&foo, || {
/// cell.read(|r| {
/// assert_eq!(*r, 1);
/// });
/// });
/// assert_eq!(unsafe { *cell.get_ptr().as_ref() }, 0);
/// ```
#[repr(transparent)]
pub struct CellRef<T: ?Sized>(Cell<NonNull<T>>);
impl<T: ?Sized> CellRef<T> {
/// Creates a new [`CellRef`] containing None.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellRef;
///
/// let c = CellRef::<i32>::new_with(&0);
/// ```
pub const fn new_with(r: &T) -> Self {
// TODO: use [`NonNull::from_ref`]
// Safety: the r is non-null.
unsafe { Self(Cell::new(NonNull::new_unchecked(r as *const T as *mut T))) }
}
/// Returns the contained pointer.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellRef;
///
/// let c = CellRef::<i32>::new_with(&0);
/// let ptr_to_zero = c.get_ptr();
/// ```
pub fn get_ptr(&self) -> NonNull<T> {
self.0.get()
}
/// Read the cell ref.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellRef;
///
/// let cell = CellRef::new_with(&0);
/// let foo = 1;
/// cell.with(&foo, || {
/// cell.read(|r| {
/// assert_eq!(*r, 1);
/// // ...
/// });
/// });
/// ```
pub fn read<F: FnOnce(&T) -> R, R>(&self, f: F) -> R {
// Safety: CellRef not Send/Sync
f(unsafe { self.get_ptr().as_ref() })
}
/// Set the cell pointer then run fn.
///
/// # Examples
/// ```
/// use std::ptr::NonNull;
///
/// use stack_cell_ref::CellRef;
///
/// let cell = CellRef::new_with(&0);
/// let foo = 1;
/// cell.with(&foo, || {
/// assert_eq!(cell.get_ptr(), NonNull::from(&foo));
/// // ...
/// });
/// assert_eq!(unsafe { *cell.get_ptr().as_ref() }, 0);
/// ```
pub fn with<F: FnOnce() -> R, R>(&self, r: &T, f: F) -> R {
struct Guard<'s, T: ?Sized> {
this: &'s CellRef<T>,
ptr: NonNull<T>,
}
impl<'s, T: ?Sized> Drop for Guard<'s, T> {
fn drop(&mut self) {
self.this.0.set(self.ptr);
}
}
let _guard = Guard {
this: &self,
ptr: self.0.replace(NonNull::from(r)),
};
f()
}
}
impl<T: Debug + ?Sized> Debug for CellRef<T> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
self.read(|s| Debug::fmt(&s, f))
}
}
impl<T: PartialEq + ?Sized> PartialEq for CellRef<T> {
fn eq(&self, other: &Self) -> bool {
self.read(|s| other.read(|r| PartialEq::eq(&s, &r)))
}
fn ne(&self, other: &Self) -> bool {
self.read(|s| other.read(|r| PartialEq::ne(&s, &r)))
}
}
impl<T: Eq + ?Sized> Eq for CellRef<T> {}
impl<T: Hash + ?Sized> Hash for CellRef<T> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.read(|s| Hash::hash(&s, state));
}
}
/// A [`Cell`] that stores option immutable references.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellOptionRef;
///
/// let cell = CellOptionRef::new();
/// let foo = 1;
/// cell.with(Some(&foo), || {
/// cell.read(|r| {
/// assert_eq!(*r.unwrap(), 1);
/// });
/// });
/// assert_eq!(cell.get_ptr(), None);
/// ```
#[repr(transparent)]
pub struct CellOptionRef<T: ?Sized>(Cell<Option<NonNull<T>>>);
impl<T: ?Sized> CellOptionRef<T> {
/// Creates a new [`CellOptionRef`] containing None.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellOptionRef;
///
/// let c = CellOptionRef::<i32>::new();
/// ```
pub const fn new() -> Self {
Self(Cell::new(None))
}
/// Returns the contained pointer.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellOptionRef;
///
/// let c = CellOptionRef::<i32>::new();
/// let none = c.get_ptr();
/// ```
pub fn get_ptr(&self) -> Option<NonNull<T>> {
self.0.get()
}
/// Read the cell ref.
///
/// # Examples
/// ```
/// use stack_cell_ref::CellOptionRef;
///
/// let cell = CellOptionRef::new();
/// let foo = 1;
/// cell.with(Some(&foo), || {
/// cell.read(|r| {
/// assert_eq!(*r.unwrap(), 1);
/// // ...
/// });
/// });
/// ```
pub fn read<F: FnOnce(Option<&T>) -> R, R>(&self, f: F) -> R {
// Safety: CellRef not Send/Sync
f(unsafe { self.get_ptr().map(|r| r.as_ref()) })
}
/// Set the cell pointer then run fn.
///
/// # Examples
/// ```
/// use std::ptr::NonNull;
///
/// use stack_cell_ref::CellOptionRef;
///
/// let cell = CellOptionRef::new();
/// let foo = 1;
/// cell.with(Some(&foo), || {
/// assert_eq!(cell.get_ptr(), Some(NonNull::from(&foo)));
/// // ...
/// });
/// assert_eq!(cell.get_ptr(), None);
/// ```
pub fn with<F: FnOnce() -> R, R>(&self, r: Option<&T>, f: F) -> R {
struct Guard<'s, T: ?Sized> {
this: &'s CellOptionRef<T>,
ptr: Option<NonNull<T>>,
}
impl<'s, T: ?Sized> Drop for Guard<'s, T> {
fn drop(&mut self) {
self.this.0.set(self.ptr);
}
}
let _guard = Guard {
this: &self,
ptr: self.0.replace(r.map(NonNull::from)),
};
f()
}
}
impl<T: ?Sized> Default for CellOptionRef<T> {
fn default() -> Self {
Self::new()
}
}
impl<T: Debug + ?Sized> Debug for CellOptionRef<T> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
self.read(|s| Debug::fmt(&s, f))
}
}
impl<T: PartialEq + ?Sized> PartialEq for CellOptionRef<T> {
fn eq(&self, other: &Self) -> bool {
self.read(|s| other.read(|r| PartialEq::eq(&s, &r)))
}
fn ne(&self, other: &Self) -> bool {
self.read(|s| other.read(|r| PartialEq::ne(&s, &r)))
}
}
impl<T: Eq + ?Sized> Eq for CellOptionRef<T> {}
impl<T: Hash + ?Sized> Hash for CellOptionRef<T> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.read(|s| Hash::hash(&s, state));
}
}