2022-12-11 18:46:42 +00:00
|
|
|
//! A reimplementation of the currently unstable [`std::sync::Exclusive`]
|
|
|
|
//!
|
|
|
|
//! [`std::sync::Exclusive`]: https://doc.rust-lang.org/nightly/std/sync/struct.Exclusive.html
|
|
|
|
|
2024-09-18 16:00:03 +00:00
|
|
|
use core::ptr;
|
2024-02-11 23:19:36 +00:00
|
|
|
|
2022-09-12 04:15:55 +00:00
|
|
|
/// See [`Exclusive`](https://github.com/rust-lang/rust/issues/98407) for stdlib's upcoming implementation,
|
|
|
|
/// which should replace this one entirely.
|
|
|
|
///
|
|
|
|
/// Provides a wrapper that allows making any type unconditionally [`Sync`] by only providing mutable access.
|
|
|
|
#[repr(transparent)]
|
|
|
|
pub struct SyncCell<T: ?Sized> {
|
|
|
|
inner: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Sized> SyncCell<T> {
|
|
|
|
/// Construct a new instance of a `SyncCell` from the given value.
|
|
|
|
pub fn new(inner: T) -> Self {
|
|
|
|
Self { inner }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deconstruct this `SyncCell` into its inner value.
|
|
|
|
pub fn to_inner(Self { inner }: Self) -> T {
|
|
|
|
inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ?Sized> SyncCell<T> {
|
|
|
|
/// Get a reference to this `SyncCell`'s inner value.
|
|
|
|
pub fn get(&mut self) -> &mut T {
|
|
|
|
&mut self.inner
|
|
|
|
}
|
|
|
|
|
2023-02-17 00:22:57 +00:00
|
|
|
/// For types that implement [`Sync`], get shared access to this `SyncCell`'s inner value.
|
|
|
|
pub fn read(&self) -> &T
|
|
|
|
where
|
|
|
|
T: Sync,
|
|
|
|
{
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
2022-09-12 04:15:55 +00:00
|
|
|
/// Build a mutable reference to a `SyncCell` from a mutable reference
|
|
|
|
/// to its inner value, to skip constructing with [`new()`](SyncCell::new()).
|
|
|
|
pub fn from_mut(r: &'_ mut T) -> &'_ mut SyncCell<T> {
|
|
|
|
// SAFETY: repr is transparent, so refs have the same layout; and `SyncCell` properties are `&mut`-agnostic
|
2024-02-11 23:19:36 +00:00
|
|
|
unsafe { &mut *(ptr::from_mut(r) as *mut SyncCell<T>) }
|
2022-09-12 04:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SAFETY: `Sync` only allows multithreaded access via immutable reference.
|
2023-02-17 00:22:57 +00:00
|
|
|
// As `SyncCell` requires an exclusive reference to access the wrapped value for `!Sync` types,
|
2023-02-20 22:56:57 +00:00
|
|
|
// marking this type as `Sync` does not actually allow unsynchronized access to the inner value.
|
2022-09-12 04:15:55 +00:00
|
|
|
unsafe impl<T: ?Sized> Sync for SyncCell<T> {}
|