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
// Copyright 2016 Amanieu d'Antras
//
// 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 std::cell::UnsafeCell;
use std::ops::Deref;
use std::time::{Duration, Instant};
use std::fmt;
use std::marker::PhantomData;
use raw_remutex::RawReentrantMutex;
#[cfg(feature = "owning_ref")]
use owning_ref::StableAddress;
/// A mutex which can be recursively locked by a single thread.
///
/// This type is identical to `Mutex` except for the following points:
///
/// - Locking multiple times from the same thread will work correctly instead of
/// deadlocking.
/// - `ReentrantMutexGuard` does not give mutable references to the locked data.
/// Use a `RefCell` if you need this.
/// - `ReentrantMutexGuard` is not `Send`.
///
/// See [`Mutex`](struct.Mutex.html) for more details about the underlying mutex
/// primitive.
pub struct ReentrantMutex<T: ?Sized> {
raw: RawReentrantMutex,
data: UnsafeCell<T>,
}
unsafe impl<T: Send> Send for ReentrantMutex<T> {}
unsafe impl<T: Send> Sync for ReentrantMutex<T> {}
/// An RAII implementation of a "scoped lock" of a reentrant mutex. When this structure
/// is dropped (falls out of scope), the lock will be unlocked.
///
/// The data protected by the mutex can be accessed through this guard via its
/// `Deref` implementation.
#[must_use]
pub struct ReentrantMutexGuard<'a, T: ?Sized + 'a> {
mutex: &'a ReentrantMutex<T>,
// The raw pointer here ensures that ReentrantMutexGuard is !Send
marker: PhantomData<(&'a T, *mut ())>,
}
unsafe impl<'a, T: ?Sized + 'a + Sync> Sync for ReentrantMutexGuard<'a, T> {}
impl<T> ReentrantMutex<T> {
/// Creates a new reentrant mutex in an unlocked state ready for use.
#[cfg(feature = "nightly")]
#[inline]
pub const fn new(val: T) -> ReentrantMutex<T> {
ReentrantMutex {
data: UnsafeCell::new(val),
raw: RawReentrantMutex::new(),
}
}
/// Creates a new reentrant mutex in an unlocked state ready for use.
#[cfg(not(feature = "nightly"))]
#[inline]
pub fn new(val: T) -> ReentrantMutex<T> {
ReentrantMutex {
data: UnsafeCell::new(val),
raw: RawReentrantMutex::new(),
}
}
/// Consumes this reentrant mutex, returning the underlying data.
#[inline]
pub fn into_inner(self) -> T {
unsafe { self.data.into_inner() }
}
}
impl<T: ?Sized> ReentrantMutex<T> {
/// Acquires a reentrant mutex, blocking the current thread until it is able
/// to do so.
///
/// If the mutex is held by another thread then this function will block the
/// local thread until it is available to acquire the mutex. If the mutex is
/// already held by the current thread then this function will increment the
/// lock reference count and return immediately. Upon returning,
/// the thread is the only thread with the mutex held. An RAII guard is
/// returned to allow scoped unlock of the lock. When the guard goes out of
/// scope, the mutex will be unlocked.
#[inline]
pub fn lock(&self) -> ReentrantMutexGuard<T> {
self.raw.lock();
ReentrantMutexGuard {
mutex: self,
marker: PhantomData,
}
}
/// Attempts to acquire this lock.
///
/// If the lock could not be acquired at this time, then `None` is returned.
/// Otherwise, an RAII guard is returned. The lock will be unlocked when the
/// guard is dropped.
///
/// This function does not block.
#[inline]
pub fn try_lock(&self) -> Option<ReentrantMutexGuard<T>> {
if self.raw.try_lock() {
Some(ReentrantMutexGuard {
mutex: self,
marker: PhantomData,
})
} else {
None
}
}
/// Attempts to acquire this lock until a timeout is reached.
///
/// If the lock could not be acquired before the timeout expired, then
/// `None` is returned. Otherwise, an RAII guard is returned. The lock will
/// be unlocked when the guard is dropped.
#[inline]
pub fn try_lock_for(&self, timeout: Duration) -> Option<ReentrantMutexGuard<T>> {
if self.raw.try_lock_for(timeout) {
Some(ReentrantMutexGuard {
mutex: self,
marker: PhantomData,
})
} else {
None
}
}
/// Attempts to acquire this lock until a timeout is reached.
///
/// If the lock could not be acquired before the timeout expired, then
/// `None` is returned. Otherwise, an RAII guard is returned. The lock will
/// be unlocked when the guard is dropped.
#[inline]
pub fn try_lock_until(&self, timeout: Instant) -> Option<ReentrantMutexGuard<T>> {
if self.raw.try_lock_until(timeout) {
Some(ReentrantMutexGuard {
mutex: self,
marker: PhantomData,
})
} else {
None
}
}
/// Returns a mutable reference to the underlying data.
///
/// Since this call borrows the `ReentrantMutex` mutably, no actual locking needs to
/// take place---the mutable borrow statically guarantees no locks exist.
#[inline]
pub fn get_mut(&mut self) -> &mut T {
unsafe { &mut *self.data.get() }
}
/// Releases the mutex.
///
/// # Safety
///
/// This function must only be called if the mutex was locked using
/// `raw_lock` or `raw_try_lock`, or if a `ReentrantMutexGuard` from this mutex was
/// leaked (e.g. with `mem::forget`). The mutex must be locked.
#[inline]
pub unsafe fn raw_unlock(&self) {
self.raw.unlock(false);
}
/// Releases the mutex using a fair unlock protocol.
///
/// See `ReentrantMutexGuard::unlock_fair`.
///
/// # Safety
///
/// This function must only be called if the mutex was locked using
/// `raw_lock` or `raw_try_lock`, or if a `ReentrantMutexGuard` from this mutex was
/// leaked (e.g. with `mem::forget`). The mutex must be locked.
#[inline]
pub unsafe fn raw_unlock_fair(&self) {
self.raw.unlock(true);
}
}
impl ReentrantMutex<()> {
/// Acquires a mutex, blocking the current thread until it is able to do so.
///
/// This is similar to `lock`, except that a `ReentrantMutexGuard` is not returned.
/// Instead you will need to call `raw_unlock` to release the mutex.
#[inline]
pub fn raw_lock(&self) {
self.raw.lock();
}
/// Attempts to acquire this lock.
///
/// This is similar to `try_lock`, except that a `ReentrantMutexGuard` is not
/// returned. Instead you will need to call `raw_unlock` to release the
/// mutex.
#[inline]
pub fn raw_try_lock(&self) -> bool {
self.raw.try_lock()
}
}
impl<T: ?Sized + Default> Default for ReentrantMutex<T> {
#[inline]
fn default() -> ReentrantMutex<T> {
ReentrantMutex::new(Default::default())
}
}
impl<T: ?Sized + fmt::Debug> fmt::Debug for ReentrantMutex<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.try_lock() {
Some(guard) => write!(f, "ReentrantMutex {{ data: {:?} }}", &*guard),
None => write!(f, "ReentrantMutex {{ <locked> }}"),
}
}
}
impl<'a, T: ?Sized + 'a> ReentrantMutexGuard<'a, T> {
/// Unlocks the mutex using a fair unlock protocol.
///
/// By default, mutexes are unfair and allow the current thread to re-lock
/// the mutex before another has the chance to acquire the lock, even if
/// that thread has been blocked on the mutex for a long time. This is the
/// default because it allows much higher throughput as it avoids forcing a
/// context switch on every mutex unlock. This can result in one thread
/// acquiring a mutex many more times than other threads.
///
/// However in some cases it can be beneficial to ensure fairness by forcing
/// the lock to pass on to a waiting thread if there is one. This is done by
/// using this method instead of dropping the `ReentrantMutexGuard` normally.
#[inline]
pub fn unlock_fair(self) {
self.mutex.raw.unlock(true);
}
}
impl<'a, T: ?Sized + 'a> Deref for ReentrantMutexGuard<'a, T> {
type Target = T;
#[inline]
fn deref(&self) -> &T {
unsafe { &*self.mutex.data.get() }
}
}
impl<'a, T: ?Sized + 'a> Drop for ReentrantMutexGuard<'a, T> {
#[inline]
fn drop(&mut self) {
self.mutex.raw.unlock(false);
}
}
#[cfg(feature = "owning_ref")]
unsafe impl<'a, T: ?Sized> StableAddress for ReentrantMutexGuard<'a, T> {}
#[cfg(test)]
mod tests {
use std::cell::RefCell;
use std::sync::Arc;
use std::thread;
use ReentrantMutex;
#[test]
fn smoke() {
let m = ReentrantMutex::new(());
{
let a = m.lock();
{
let b = m.lock();
{
let c = m.lock();
assert_eq!(*c, ());
}
assert_eq!(*b, ());
}
assert_eq!(*a, ());
}
}
#[test]
fn is_mutex() {
let m = Arc::new(ReentrantMutex::new(RefCell::new(0)));
let m2 = m.clone();
let lock = m.lock();
let child = thread::spawn(move || {
let lock = m2.lock();
assert_eq!(*lock.borrow(), 4950);
});
for i in 0..100 {
let lock = m.lock();
*lock.borrow_mut() += i;
}
drop(lock);
child.join().unwrap();
}
#[test]
fn trylock_works() {
let m = Arc::new(ReentrantMutex::new(()));
let m2 = m.clone();
let _lock = m.try_lock();
let _lock2 = m.try_lock();
thread::spawn(move || {
let lock = m2.try_lock();
assert!(lock.is_none());
}).join().unwrap();
let _lock3 = m.try_lock();
}
}