maitake_sync/rwlock/owned.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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
use super::*;
use crate::Semaphore;
use alloc::sync::Arc;
/// Owned [RAII] structure used to release the shared read access of a
/// [`RwLock`] when dropped.
///
/// This type is similar to the [`RwLockReadGuard`] type, but it is only
/// returned by an [`RwLock`] that is wrapped in an an [`Arc`]. Instead
/// of borrowing the [`RwLock`], this guard holds an [`Arc`] clone of
/// the [`RwLock`], incrementing its reference count. Therefore, this
/// type can outlive the [`RwLock`] that created it, and it is valid for
/// the `'static` lifetime. Beyond this, it is identical to the
/// [`RwLockReadGuard`] type.
///
/// The data protected by the [`RwLock`] can be accessed through this
/// guard via its [`Deref`](#impl-Deref) implementation.
///
/// This guard can be held across any `.await` point, as it implements
/// [`Send`].
///
/// This structure is created by the [`read_owned`] and
/// [`try_read_owned`] methods on [`Arc`]`<`[`RwLock`]`>`.
///
/// [RAII]: https://rust-unofficial.github.io/patterns/patterns/behavioural/RAII.html
/// [`read_owned`]: RwLock::read_owned
/// [`try_read_owned`]: RwLock::try_read_owned
#[must_use = "if unused, the `RwLock` will immediately unlock"]
pub struct OwnedRwLockReadGuard<T: ?Sized> {
/// /!\ WARNING: semi-load-bearing drop order /!\
///
/// This struct's field ordering is important for Loom tests; the `ConstPtr`
/// must be dropped before the semaphore permit is released back to the
/// semaphore, as this may wake another task that wants to mutably access
/// the cell. However, Loom will still consider the data to be "immutably
/// accessed" until the ConstPtr` is dropped, so we must drop the `ConstPtr`
/// first.
///
/// This isn't actually a bug in "real life", because we're not going to
/// actually *read* the data through the `ConstPtr` in the guard's `Drop`
/// impl, but Loom considers us to be "accessing" it as long as the
/// `ConstPtr` exists.
data: cell::ConstPtr<T>,
_lock: AddPermits<1, T>,
}
/// Owned [RAII] structure used to release the exclusive write access of a
/// [`RwLock`] when dropped.
///
/// This type is similar to the [`RwLockWriteGuard`] type, but it is
/// only returned by an [`RwLock`] that is wrapped in an an [`Arc`].
/// Instead of borrowing the [`RwLock`], this guard holds an [`Arc`]
/// clone of the [`RwLock`], incrementing its reference count.
/// Therefore, this type can outlive the [`RwLock`] that created it, and
/// it is valid for the `'static` lifetime. Beyond this, is identical to
/// the [`RwLockWriteGuard`] type.
///
/// The data protected by the [`RwLock`] can be accessed through this
/// guard via its [`Deref`](#impl-Deref) and [`DerefMut`](#impl-Deref)
/// implementations.
///
/// This guard can be held across any `.await` point, as it implements
/// [`Send`].
///
/// This structure is created by the [`read_owned`] and
/// [`try_read_owned`] methods on [`Arc`]`<`[`RwLock`]`>`.
///
/// [RAII]: https://rust-unofficial.github.io/patterns/patterns/behavioural/RAII.html
/// [`read_owned`]: RwLock::read_owned
/// [`try_read_owned`]: RwLock::try_read_owned
#[must_use = "if unused, the `RwLock` will immediately unlock"]
pub struct OwnedRwLockWriteGuard<T: ?Sized> {
/// /!\ WARNING: semi-load-bearing drop order /!\
///
/// This struct's field ordering is important for Loom tests; the `MutPtr`
/// must be dropped before the semaphore permits are released back to the
/// semaphore, as this may wake another task that wants to access the cell.
/// However, Loom will still consider the data to be "mutably accessed"
/// until the `MutPtr` is dropped, so we must drop the `MutPtr` first.
///
/// This isn't actually a bug in "real life", because we're not going to
/// actually read or write the data through the `MutPtr` in the guard's
/// `Drop` impl, but Loom considers us to be "accessing" it as long as the
/// `MutPtr` exists.
data: cell::MutPtr<T>,
_lock: AddPermits<{ Semaphore::MAX_PERMITS }, T>,
}
/// A wrapper around an `RwLock` `Arc` clone that releases a fixed number of
/// permits when it's dropped.
///
/// This is factored out to a separate type to ensure that it's dropped *after*
/// the `MutPtr`/`ConstPtr`s are dropped, to placate `loom`.
struct AddPermits<const PERMITS: usize, T: ?Sized>(Arc<RwLock<T>>);
// === impl RwLock ===
impl<T: ?Sized> RwLock<T> {
/// Locks this `RwLock` with shared read access, returning an [owned RAII
/// guard][guard].
///
/// This method is identical to [`RwLock::read`], execept that it requires
/// the `RwLock` to be wrapped in an [`Arc`], and returns an
/// [`OwnedRwLockReadGuard`][guard] that clones the [`Arc`] rather than
/// borrowing the lock. Therefore, the returned guard is valid for the
/// `'static` lifetime.
///
/// If the lock is locked for write access, the calling task will yield and
/// wait until there are no writers which hold the lock. There may be other
/// readers inside the lock when the task resumes.
///
/// Note that under the [priority policy] of [`RwLock`], read locks are not
/// granted until prior write locks, to prevent starvation. Therefore
/// deadlock may occur if a read lock is held by the current task, a write
/// lock attempt is made, and then a subsequent read lock attempt is made
/// by the current task.
///
/// Returns [an RAII guard][guard] which will release this read access of the
/// `RwLock` when dropped.
///
/// # Cancellation
///
/// This method [uses a queue to fairly distribute locks][priority policy]
/// in the order they were requested. Cancelling a call to `read` results
/// in the calling task losing its place in the queue.
///
/// # Examples
///
/// ```
/// # use tokio::task;
/// # #[tokio::main(flavor = "current_thread")]
/// # async fn test() {
/// # // since we are targeting no-std, it makes more sense to use `alloc`
/// # // in these examples, rather than `std`...but i don't want to make
/// # // the tests actually `#![no_std]`...
/// # use std as alloc;
/// use maitake_sync::RwLock;
/// use alloc::sync::Arc;
///
/// let lock = Arc::new(RwLock::new(1));
/// // hold the lock for reading in `main`.
/// let n = lock
/// .try_read()
/// .expect("read lock must be acquired, as the lock is unlocked");
/// assert_eq!(*n, 1);
///
/// # let task =
/// task::spawn({
/// let lock = lock.clone();
/// async move {
/// // While main has an active read lock, this task can acquire
/// // one too.
/// let n = lock.read_owned().await;
/// assert_eq!(*n, 1);
/// }
/// });
/// # task.await.unwrap();
/// # }
/// # test();
/// ```
///
/// [priority policy]: Self#priority-policy
/// [guard]: OwnedRwLockReadGuard
pub async fn read_owned(self: &Arc<Self>) -> OwnedRwLockReadGuard<T> {
let guard = self.read().await;
OwnedRwLockReadGuard::from_borrowed(self.clone(), guard)
}
/// Locks this `RwLock` with exclusive write access,returning an [owned RAII
/// guard][guard].
///
/// This method is identical to [`RwLock::write`], execept that it requires
/// the `RwLock` to be wrapped in an [`Arc`], and returns an
/// [`OwnedRwLockWriteGuard`][guard] that clones the [`Arc`] rather than
/// borrowing the lock. Therefore, the returned guard is valid for the
/// `'static` lifetime.
///
/// # Returns
///
/// If other tasks are holding a read or write lock, the calling task will
/// wait until the write lock or all read locks are released.
///
/// Returns [an RAII guard][guard] which will release the write access of this
/// `RwLock` when dropped.
///
/// # Cancellation
///
/// This method [uses a queue to fairly distribute
/// locks](Self#priority-policy) in the order they were requested.
/// Cancelling a call to `write` results in the calling task losing its place
/// in the queue.
///
/// # Examples
///
/// ```
/// # use tokio::task;
/// # #[tokio::main(flavor = "current_thread")]
/// # async fn test() {
/// # // since we are targeting no-std, it makes more sense to use `alloc`
/// # // in these examples, rather than `std`...but i don't want to make
/// # // the tests actually `#![no_std]`...
/// # use std as alloc;
/// use maitake_sync::RwLock;
/// use alloc::sync::Arc;
///
/// let lock = Arc::new(RwLock::new(1));
///
/// # let task =
/// task::spawn(async move {
/// let mut guard = lock.write_owned().await;
/// *guard += 1;
/// });
/// # task.await.unwrap();
/// # }
/// # test();
/// ```
///
/// [guard]: OwnedRwLockWriteGuard
pub async fn write_owned(self: &Arc<Self>) -> OwnedRwLockWriteGuard<T> {
let guard = self.write().await;
OwnedRwLockWriteGuard::from_borrowed(self.clone(), guard)
}
/// Attempts to acquire this `RwLock` for shared read access, without
/// waiting, and returning an [owned RAII guard][guard].
///
/// This method is identical to [`RwLock::try_read`], execept that it requires
/// the `RwLock` to be wrapped in an [`Arc`], and returns an
/// [`OwnedRwLockReadGuard`][guard] that clones the [`Arc`] rather than
/// borrowing the lock. Therefore, the returned guard is valid for the
/// `'static` lifetime.
///
/// # Returns
///
/// If the access couldn't be acquired immediately, this method returns
/// [`None`] rather than waiting.
///
/// Otherwise, [an RAII guard][guard] is returned, which allows read access to the
/// protected data and will release that access when dropped.
///
/// # Examples
///
/// ```
/// # fn main() {
/// # // since we are targeting no-std, it makes more sense to use `alloc`
/// # // in these examples, rather than `std`...but i don't want to make
/// # // the tests actually `#![no_std]`...
/// # use std as alloc;
/// use maitake_sync::RwLock;
/// use alloc::sync::Arc;
///
/// let lock = Arc::new(RwLock::new(1));
///
/// let mut write_guard = lock
/// .try_write()
/// .expect("lock is unlocked, so write access should be acquired");
/// *write_guard += 1;
///
/// // because a write guard is held, we cannot acquire the read lock, so
/// // this will return `None`.
/// assert!(lock.try_read_owned().is_none());
/// # }
/// ```
///
/// [guard]: OwnedRwLockReadGuard
pub fn try_read_owned(self: &Arc<Self>) -> Option<OwnedRwLockReadGuard<T>> {
self.try_read()
.map(|guard| OwnedRwLockReadGuard::from_borrowed(self.clone(), guard))
}
/// Attempts to acquire this `RwLock` for exclusive write access, without
/// waiting, and returning an [owned RAII guard][guard].
///
/// This method is identical to [`RwLock::try_write`], execept that it requires
/// the `RwLock` to be wrapped in an [`Arc`], and returns an
/// [`OwnedRwLockWriteGuard`][guard] that clones the [`Arc`] rather than
/// borrowing the lock. Therefore, the returned guard is valid for the
/// `'static` lifetime.
///
/// # Returns
///
/// If the access couldn't be acquired immediately, this method returns
/// [`None`] rather than waiting.
///
/// Otherwise, [an RAII guard][guard] is returned, which allows write access to the
/// protected data and will release that access when dropped.
///
/// # Examples
///
/// ```
/// # fn main() {
/// # // since we are targeting no-std, it makes more sense to use `alloc`
/// # // in these examples, rather than `std`...but i don't want to make
/// # // the tests actually `#![no_std]`...
/// # use std as alloc;
/// use maitake_sync::RwLock;
/// use alloc::sync::Arc;
///
/// let lock = Arc::new(RwLock::new(1));
///
/// let read_guard = lock
/// .try_read()
/// .expect("lock is unlocked, so read access should be acquired");
/// assert_eq!(*read_guard, 1);
///
/// // because a read guard is held, we cannot acquire the write lock, so
/// // this will return `None`.
/// assert!(lock.try_write_owned().is_none());
/// # }
/// ```
///
/// [guard]: OwnedRwLockWriteGuard
pub fn try_write_owned(self: &Arc<Self>) -> Option<OwnedRwLockWriteGuard<T>> {
self.try_write()
.map(|guard| OwnedRwLockWriteGuard::from_borrowed(self.clone(), guard))
}
}
// === impl OwnedRwLockReadGuard ===
impl<T: ?Sized> OwnedRwLockReadGuard<T> {
fn from_borrowed(
lock: Arc<RwLock<T>>,
RwLockReadGuard { data, _permit }: RwLockReadGuard<'_, T>,
) -> Self {
// forget the semaphore permit, as it has a lifetime tied to the
// borrowed semaphore. we'll manually release the permit in
// `OwnedRwLockReadGuard`'s `Drop` impl.
_permit.forget();
Self {
_lock: AddPermits(lock),
data,
}
}
}
impl<T: ?Sized> Deref for OwnedRwLockReadGuard<T> {
type Target = T;
#[inline]
fn deref(&self) -> &Self::Target {
unsafe {
// safety: we are holding the semaphore permit that ensures the lock
// cannot be accessed mutably.
self.data.deref()
}
}
}
impl<T: ?Sized + fmt::Debug> fmt::Debug for OwnedRwLockReadGuard<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.deref().fmt(f)
}
}
// Safety: A read guard can be shared or sent between threads as long as `T` is
// `Sync`. It can implement `Send` even if `T` does not implement `Send`, as
// long as `T` is `Sync`, because the read guard only permits borrowing the `T`.
unsafe impl<T> Send for OwnedRwLockReadGuard<T> where T: ?Sized + Sync {}
unsafe impl<T> Sync for OwnedRwLockReadGuard<T> where T: ?Sized + Send + Sync {}
// === impl OwnedRwLockWriteGuard ===
impl<T: ?Sized> OwnedRwLockWriteGuard<T> {
fn from_borrowed(
lock: Arc<RwLock<T>>,
RwLockWriteGuard { data, _permit }: RwLockWriteGuard<'_, T>,
) -> Self {
// forget the semaphore permit, as it has a lifetime tied to the
// borrowed semaphore. we'll manually release the permit in
// `OwnedRwLockWriteGuard`'s `Drop` impl.
_permit.forget();
Self {
_lock: AddPermits(lock),
data,
}
}
}
impl<T: ?Sized> Deref for OwnedRwLockWriteGuard<T> {
type Target = T;
#[inline]
fn deref(&self) -> &Self::Target {
unsafe {
// safety: we are holding all the semaphore permits, so the data
// inside the lock cannot be accessed by another thread.
self.data.deref()
}
}
}
impl<T: ?Sized> DerefMut for OwnedRwLockWriteGuard<T> {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe {
// safety: we are holding all the semaphore permits, so the data
// inside the lock cannot be accessed by another thread.
self.data.deref()
}
}
}
impl<T: ?Sized + fmt::Debug> fmt::Debug for OwnedRwLockWriteGuard<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.deref().fmt(f)
}
}
// Safety: Unlike the read guard, `T` must be both `Send` and `Sync` for the
// write guard to be `Send`, because the mutable access provided by the write
// guard can be used to `mem::replace` or `mem::take` the value, transferring
// ownership of it across threads.
unsafe impl<T> Send for OwnedRwLockWriteGuard<T> where T: ?Sized + Send + Sync {}
unsafe impl<T> Sync for OwnedRwLockWriteGuard<T> where T: ?Sized + Send + Sync {}
// === impl AddPermits ===
impl<const PERMITS: usize, T: ?Sized> Drop for AddPermits<PERMITS, T> {
fn drop(&mut self) {
self.0.sem.add_permits(PERMITS);
}
}