mutex.rs 22.4 KB
Newer Older
T
Taiki Endo 已提交
1 2 3 4 5 6 7
use crate::cell::UnsafeCell;
use crate::fmt;
use crate::mem;
use crate::ops::{Deref, DerefMut};
use crate::ptr;
use crate::sys_common::mutex as sys;
use crate::sys_common::poison::{self, TryLockError, TryLockResult, LockResult};
8 9 10

/// A mutual exclusion primitive useful for protecting shared data
///
A
Alex Crichton 已提交
11
/// This mutex will block threads waiting for the lock to become available. The
G
Guillaume Gomez 已提交
12
/// mutex can also be statically initialized or created via a [`new`]
A
Alex Crichton 已提交
13 14
/// constructor. Each mutex has a type parameter which represents the data that
/// it is protecting. The data can only be accessed through the RAII guards
G
Guillaume Gomez 已提交
15
/// returned from [`lock`] and [`try_lock`], which guarantees that the data is only
A
Alex Crichton 已提交
16 17 18 19
/// ever accessed when the mutex is locked.
///
/// # Poisoning
///
20 21
/// The mutexes in this module implement a strategy called "poisoning" where a
/// mutex is considered poisoned whenever a thread panics while holding the
G
Guillaume Gomez 已提交
22
/// mutex. Once a mutex is poisoned, all other threads are unable to access the
23 24
/// data by default as it is likely tainted (some invariant is not being
/// upheld).
25
///
G
Guillaume Gomez 已提交
26 27 28
/// For a mutex, this means that the [`lock`] and [`try_lock`] methods return a
/// [`Result`] which indicates whether a mutex has been poisoned or not. Most
/// usage of a mutex will simply [`unwrap()`] these results, propagating panics
29 30 31
/// among threads to ensure that a possibly invalid invariant is not witnessed.
///
/// A poisoned mutex, however, does not prevent all access to the underlying
G
Guillaume Gomez 已提交
32
/// data. The [`PoisonError`] type has an [`into_inner`] method which will return
33 34 35
/// the guard that would have otherwise been returned on a successful lock. This
/// allows access to the data, despite the lock being poisoned.
///
G
Guillaume Gomez 已提交
36 37 38 39 40 41 42 43
/// [`new`]: #method.new
/// [`lock`]: #method.lock
/// [`try_lock`]: #method.try_lock
/// [`Result`]: ../../std/result/enum.Result.html
/// [`unwrap()`]: ../../std/result/enum.Result.html#method.unwrap
/// [`PoisonError`]: ../../std/sync/struct.PoisonError.html
/// [`into_inner`]: ../../std/sync/struct.PoisonError.html#method.into_inner
///
44
/// # Examples
45
///
46
/// ```
A
Alex Crichton 已提交
47
/// use std::sync::{Arc, Mutex};
A
Aaron Turon 已提交
48
/// use std::thread;
49
/// use std::sync::mpsc::channel;
50
///
N
Nick Cameron 已提交
51
/// const N: usize = 10;
52
///
A
Alex Crichton 已提交
53 54 55
/// // Spawn a few threads to increment a shared variable (non-atomically), and
/// // let the main thread know once all increments are done.
/// //
56
/// // Here we're using an Arc to share memory among threads, and the data inside
A
Alex Crichton 已提交
57 58 59 60
/// // the Arc is protected with a mutex.
/// let data = Arc::new(Mutex::new(0));
///
/// let (tx, rx) = channel();
G
Geoffry Song 已提交
61
/// for _ in 0..N {
62
///     let (data, tx) = (Arc::clone(&data), tx.clone());
A
Aaron Turon 已提交
63
///     thread::spawn(move || {
64
///         // The shared state can only be accessed once the lock is held.
A
Alex Crichton 已提交
65 66
///         // Our non-atomic increment is safe because we're the only thread
///         // which can access the shared state when the lock is held.
67 68
///         //
///         // We unwrap() the return value to assert that we are not expecting
69
///         // threads to ever fail while holding the lock.
70
///         let mut data = data.lock().unwrap();
A
Alex Crichton 已提交
71 72
///         *data += 1;
///         if *data == N {
73
///             tx.send(()).unwrap();
A
Alex Crichton 已提交
74 75
///         }
///         // the lock is unlocked here when `data` goes out of scope.
A
Aaron Turon 已提交
76
///     });
A
Alex Crichton 已提交
77 78
/// }
///
79
/// rx.recv().unwrap();
80
/// ```
81 82 83
///
/// To recover from a poisoned mutex:
///
84
/// ```
85
/// use std::sync::{Arc, Mutex};
A
Aaron Turon 已提交
86
/// use std::thread;
87
///
88
/// let lock = Arc::new(Mutex::new(0_u32));
89 90
/// let lock2 = lock.clone();
///
A
Aaron Turon 已提交
91
/// let _ = thread::spawn(move || -> () {
92 93
///     // This thread will acquire the mutex first, unwrapping the result of
///     // `lock` because the lock has not been poisoned.
94
///     let _guard = lock2.lock().unwrap();
95 96 97 98 99 100 101 102 103 104
///
///     // This panic while holding the lock (`_guard` is in scope) will poison
///     // the mutex.
///     panic!();
/// }).join();
///
/// // The lock is poisoned by this point, but the returned result can be
/// // pattern matched on to return the underlying guard on both branches.
/// let mut guard = match lock.lock() {
///     Ok(guard) => guard,
105
///     Err(poisoned) => poisoned.into_inner(),
106 107 108 109
/// };
///
/// *guard += 1;
/// ```
B
Brian Anderson 已提交
110
#[stable(feature = "rust1", since = "1.0.0")]
111
pub struct Mutex<T: ?Sized> {
A
Alex Crichton 已提交
112 113 114
    // Note that this mutex is in a *box*, not inlined into the struct itself.
    // Once a native mutex has been used once, its address can never change (it
    // can't be moved). This mutex type can be safely moved at any time, so to
G
Guillaume Gomez 已提交
115
    // ensure that the native mutex is used correctly we box the inner mutex to
A
Alex Crichton 已提交
116 117 118
    // give it a constant address.
    inner: Box<sys::Mutex>,
    poison: poison::Flag,
119
    data: UnsafeCell<T>,
120 121
}

122 123
// these are the only places where `T: Send` matters; all other
// functionality works fine on a single thread.
124
#[stable(feature = "rust1", since = "1.0.0")]
125
unsafe impl<T: ?Sized + Send> Send for Mutex<T> { }
126
#[stable(feature = "rust1", since = "1.0.0")]
127
unsafe impl<T: ?Sized + Send> Sync for Mutex<T> { }
F
Flavio Percoco 已提交
128

129 130
/// An RAII implementation of a "scoped lock" of a mutex. When this structure is
/// dropped (falls out of scope), the lock will be unlocked.
A
Alex Crichton 已提交
131
///
S
ScottAbbey 已提交
132
/// The data protected by the mutex can be accessed through this guard via its
133
/// [`Deref`] and [`DerefMut`] implementations.
134
///
135
/// This structure is created by the [`lock`] and [`try_lock`] methods on
136 137
/// [`Mutex`].
///
138 139
/// [`Deref`]: ../../std/ops/trait.Deref.html
/// [`DerefMut`]: ../../std/ops/trait.DerefMut.html
140 141
/// [`lock`]: struct.Mutex.html#method.lock
/// [`try_lock`]: struct.Mutex.html#method.try_lock
142
/// [`Mutex`]: struct.Mutex.html
143
#[must_use = "if unused the Mutex will immediately unlock"]
B
Brian Anderson 已提交
144
#[stable(feature = "rust1", since = "1.0.0")]
145
pub struct MutexGuard<'a, T: ?Sized + 'a> {
A
Alex Crichton 已提交
146 147
    // funny underscores due to how Deref/DerefMut currently work (they
    // disregard field privacy).
A
Alex Crichton 已提交
148
    __lock: &'a Mutex<T>,
149
    __poison: poison::Guard,
150 151
}

152
#[stable(feature = "rust1", since = "1.0.0")]
153
impl<T: ?Sized> !Send for MutexGuard<'_, T> { }
154
#[stable(feature = "mutexguard", since = "1.19.0")]
155
unsafe impl<T: ?Sized + Sync> Sync for MutexGuard<'_, T> { }
156

157
impl<T> Mutex<T> {
A
Alex Crichton 已提交
158
    /// Creates a new mutex in an unlocked state ready for use.
159 160 161 162 163 164 165 166
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Mutex;
    ///
    /// let mutex = Mutex::new(0);
    /// ```
B
Brian Anderson 已提交
167
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
168
    pub fn new(t: T) -> Mutex<T> {
169
        let mut m = Mutex {
A
Alex Crichton 已提交
170 171
            inner: box sys::Mutex::new(),
            poison: poison::Flag::new(),
172
            data: UnsafeCell::new(t),
173 174
        };
        unsafe {
A
Alex Crichton 已提交
175
            m.inner.init();
A
Alex Crichton 已提交
176
        }
177
        m
A
Alex Crichton 已提交
178
    }
179
}
A
Alex Crichton 已提交
180

181
impl<T: ?Sized> Mutex<T> {
182
    /// Acquires a mutex, blocking the current thread until it is able to do so.
A
Alex Crichton 已提交
183
    ///
184
    /// This function will block the local thread until it is available to acquire
G
Guillaume Gomez 已提交
185
    /// the mutex. Upon returning, the thread is the only thread with the lock
A
Alex Crichton 已提交
186 187 188
    /// 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.
    ///
189
    /// The exact behavior on locking a mutex in the thread which already holds
190 191
    /// the lock is left unspecified. However, this function will not return on
    /// the second call (it might panic or deadlock, for example).
192
    ///
193
    /// # Errors
A
Alex Crichton 已提交
194 195
    ///
    /// If another user of this mutex panicked while holding the mutex, then
196
    /// this call will return an error once the mutex is acquired.
197 198 199 200 201
    ///
    /// # Panics
    ///
    /// This function might panic when called if the lock is already held by
    /// the current thread.
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::{Arc, Mutex};
    /// use std::thread;
    ///
    /// let mutex = Arc::new(Mutex::new(0));
    /// let c_mutex = mutex.clone();
    ///
    /// thread::spawn(move || {
    ///     *c_mutex.lock().unwrap() = 10;
    /// }).join().expect("thread::spawn failed");
    /// assert_eq!(*mutex.lock().unwrap(), 10);
    /// ```
B
Brian Anderson 已提交
217
    #[stable(feature = "rust1", since = "1.0.0")]
218
    pub fn lock(&self) -> LockResult<MutexGuard<'_, T>> {
219
        unsafe {
220
            self.inner.raw_lock();
A
Alex Crichton 已提交
221
            MutexGuard::new(self)
222
        }
A
Alex Crichton 已提交
223 224 225 226
    }

    /// Attempts to acquire this lock.
    ///
G
Guillaume Gomez 已提交
227
    /// If the lock could not be acquired at this time, then [`Err`] is returned.
A
Alex Crichton 已提交
228 229 230 231 232
    /// Otherwise, an RAII guard is returned. The lock will be unlocked when the
    /// guard is dropped.
    ///
    /// This function does not block.
    ///
233
    /// # Errors
A
Alex Crichton 已提交
234 235
    ///
    /// If another user of this mutex panicked while holding the mutex, then
236
    /// this call will return failure if the mutex would otherwise be
A
Alex Crichton 已提交
237
    /// acquired.
238
    ///
G
Guillaume Gomez 已提交
239 240
    /// [`Err`]: ../../std/result/enum.Result.html#variant.Err
    ///
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
    /// # Examples
    ///
    /// ```
    /// use std::sync::{Arc, Mutex};
    /// use std::thread;
    ///
    /// let mutex = Arc::new(Mutex::new(0));
    /// let c_mutex = mutex.clone();
    ///
    /// thread::spawn(move || {
    ///     let mut lock = c_mutex.try_lock();
    ///     if let Ok(ref mut mutex) = lock {
    ///         **mutex = 10;
    ///     } else {
    ///         println!("try_lock failed");
    ///     }
    /// }).join().expect("thread::spawn failed");
    /// assert_eq!(*mutex.lock().unwrap(), 10);
    /// ```
B
Brian Anderson 已提交
260
    #[stable(feature = "rust1", since = "1.0.0")]
261
    pub fn try_lock(&self) -> TryLockResult<MutexGuard<'_, T>> {
262
        unsafe {
A
Alex Crichton 已提交
263 264
            if self.inner.try_lock() {
                Ok(MutexGuard::new(self)?)
265 266 267
            } else {
                Err(TryLockError::WouldBlock)
            }
A
Alex Crichton 已提交
268
        }
269
    }
270

G
Guillaume Gomez 已提交
271
    /// Determines whether the mutex is poisoned.
272
    ///
G
Guillaume Gomez 已提交
273
    /// If another thread is active, the mutex can still become poisoned at any
274
    /// time. You should not trust a `false` value for program correctness
275
    /// without additional synchronization.
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::{Arc, Mutex};
    /// use std::thread;
    ///
    /// let mutex = Arc::new(Mutex::new(0));
    /// let c_mutex = mutex.clone();
    ///
    /// let _ = thread::spawn(move || {
    ///     let _lock = c_mutex.lock().unwrap();
    ///     panic!(); // the mutex gets poisoned
    /// }).join();
    /// assert_eq!(mutex.is_poisoned(), true);
    /// ```
292
    #[inline]
293
    #[stable(feature = "sync_poison", since = "1.2.0")]
294
    pub fn is_poisoned(&self) -> bool {
A
Alex Crichton 已提交
295
        self.poison.get()
296
    }
297 298 299

    /// Consumes this mutex, returning the underlying data.
    ///
300
    /// # Errors
301 302 303
    ///
    /// If another user of this mutex panicked while holding the mutex, then
    /// this call will return an error instead.
304 305 306 307 308 309 310 311 312
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Mutex;
    ///
    /// let mutex = Mutex::new(0);
    /// assert_eq!(mutex.into_inner().unwrap(), 0);
    /// ```
313
    #[stable(feature = "mutex_into_inner", since = "1.6.0")]
314 315
    pub fn into_inner(self) -> LockResult<T> where T: Sized {
        // We know statically that there are no outstanding references to
G
Guillaume Gomez 已提交
316
        // `self` so there's no need to lock the inner mutex.
317 318 319 320 321
        //
        // To get the inner value, we'd like to call `data.into_inner()`,
        // but because `Mutex` impl-s `Drop`, we can't move out of it, so
        // we'll have to destructure it manually instead.
        unsafe {
A
Alex Crichton 已提交
322 323 324 325
            // Like `let Mutex { inner, poison, data } = self`.
            let (inner, poison, data) = {
                let Mutex { ref inner, ref poison, ref data } = self;
                (ptr::read(inner), ptr::read(poison), ptr::read(data))
326 327
            };
            mem::forget(self);
A
Alex Crichton 已提交
328 329
            inner.destroy();  // Keep in sync with the `Drop` impl.
            drop(inner);
330

A
Alex Crichton 已提交
331
            poison::map_result(poison.borrow(), |_| data.into_inner())
332 333 334 335 336 337
        }
    }

    /// Returns a mutable reference to the underlying data.
    ///
    /// Since this call borrows the `Mutex` mutably, no actual locking needs to
A
Alexander Regueiro 已提交
338
    /// take place -- the mutable borrow statically guarantees no locks exist.
339
    ///
340
    /// # Errors
341 342 343
    ///
    /// If another user of this mutex panicked while holding the mutex, then
    /// this call will return an error instead.
344 345 346 347 348 349 350 351 352 353
    ///
    /// # Examples
    ///
    /// ```
    /// use std::sync::Mutex;
    ///
    /// let mut mutex = Mutex::new(0);
    /// *mutex.get_mut().unwrap() = 10;
    /// assert_eq!(*mutex.lock().unwrap(), 10);
    /// ```
354
    #[stable(feature = "mutex_get_mut", since = "1.6.0")]
355 356
    pub fn get_mut(&mut self) -> LockResult<&mut T> {
        // We know statically that there are no other references to `self`, so
G
Guillaume Gomez 已提交
357
        // there's no need to lock the inner mutex.
358
        let data = unsafe { &mut *self.data.get() };
A
Alex Crichton 已提交
359
        poison::map_result(self.poison.borrow(), |_| data )
360
    }
A
Alex Crichton 已提交
361
}
362

B
Brian Anderson 已提交
363
#[stable(feature = "rust1", since = "1.0.0")]
364
unsafe impl<#[may_dangle] T: ?Sized> Drop for Mutex<T> {
A
Alex Crichton 已提交
365 366 367 368
    fn drop(&mut self) {
        // This is actually safe b/c we know that there is no further usage of
        // this mutex (it's up to the user to arrange for a mutex to get
        // dropped, that's not our job)
369 370
        //
        // IMPORTANT: This code must be kept in sync with `Mutex::into_inner`.
A
Alex Crichton 已提交
371
        unsafe { self.inner.destroy() }
A
Alex Crichton 已提交
372 373 374
    }
}

375
#[stable(feature = "mutex_from", since = "1.24.0")]
E
Eduardo Pinho 已提交
376 377 378 379 380 381 382 383
impl<T> From<T> for Mutex<T> {
    /// Creates a new mutex in an unlocked state ready for use.
    /// This is equivalent to [`Mutex::new`].
    fn from(t: T) -> Self {
        Mutex::new(t)
    }
}

384
#[stable(feature = "mutex_default", since = "1.10.0")]
385
impl<T: ?Sized + Default> Default for Mutex<T> {
386
    /// Creates a `Mutex<T>`, with the `Default` value for T.
387 388 389 390 391
    fn default() -> Mutex<T> {
        Mutex::new(Default::default())
    }
}

392
#[stable(feature = "rust1", since = "1.0.0")]
393
impl<T: ?Sized + fmt::Debug> fmt::Debug for Mutex<T> {
394
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
395
        match self.try_lock() {
396
            Ok(guard) => f.debug_struct("Mutex").field("data", &&*guard).finish(),
397
            Err(TryLockError::Poisoned(err)) => {
398
                f.debug_struct("Mutex").field("data", &&**err.get_ref()).finish()
399
            },
400 401 402
            Err(TryLockError::WouldBlock) => {
                struct LockedPlaceholder;
                impl fmt::Debug for LockedPlaceholder {
403 404 405
                    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                        f.write_str("<locked>")
                    }
406 407 408 409
                }

                f.debug_struct("Mutex").field("data", &LockedPlaceholder).finish()
            }
410 411 412 413
        }
    }
}

414
impl<'mutex, T: ?Sized> MutexGuard<'mutex, T> {
A
Alex Crichton 已提交
415
    unsafe fn new(lock: &'mutex Mutex<T>) -> LockResult<MutexGuard<'mutex, T>> {
416 417 418 419 420 421 422
        poison::map_result(lock.poison.borrow(), |guard| {
            MutexGuard {
                __lock: lock,
                __poison: guard,
            }
        })
    }
A
Alex Crichton 已提交
423
}
424

B
Brian Anderson 已提交
425
#[stable(feature = "rust1", since = "1.0.0")]
426
impl<T: ?Sized> Deref for MutexGuard<'_, T> {
427 428
    type Target = T;

A
Alex Crichton 已提交
429 430 431
    fn deref(&self) -> &T {
        unsafe { &*self.__lock.data.get() }
    }
A
Alex Crichton 已提交
432
}
433

B
Brian Anderson 已提交
434
#[stable(feature = "rust1", since = "1.0.0")]
435
impl<T: ?Sized> DerefMut for MutexGuard<'_, T> {
A
Alex Crichton 已提交
436 437 438
    fn deref_mut(&mut self) -> &mut T {
        unsafe { &mut *self.__lock.data.get() }
    }
A
Alex Crichton 已提交
439 440
}

B
Brian Anderson 已提交
441
#[stable(feature = "rust1", since = "1.0.0")]
442
impl<T: ?Sized> Drop for MutexGuard<'_, T> {
443
    #[inline]
444 445 446
    fn drop(&mut self) {
        unsafe {
            self.__lock.poison.done(&self.__poison);
447
            self.__lock.inner.raw_unlock();
448 449 450 451
        }
    }
}

452
#[stable(feature = "std_debug", since = "1.16.0")]
453
impl<T: ?Sized + fmt::Debug> fmt::Debug for MutexGuard<'_, T> {
454
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
455
        fmt::Debug::fmt(&**self, f)
456 457 458
    }
}

459
#[stable(feature = "std_guard_impls", since = "1.20.0")]
460
impl<T: ?Sized + fmt::Display> fmt::Display for MutexGuard<'_, T> {
461
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
462 463 464 465
        (**self).fmt(f)
    }
}

466
pub fn guard_lock<'a, T: ?Sized>(guard: &MutexGuard<'a, T>) -> &'a sys::Mutex {
A
Alex Crichton 已提交
467
    &guard.__lock.inner
468 469
}

470
pub fn guard_poison<'a, T: ?Sized>(guard: &MutexGuard<'a, T>) -> &'a poison::Flag {
471
    &guard.__lock.poison
472 473
}

474
#[cfg(all(test, not(target_os = "emscripten")))]
475
mod tests {
T
Taiki Endo 已提交
476 477 478 479
    use crate::sync::mpsc::channel;
    use crate::sync::{Arc, Mutex, Condvar};
    use crate::sync::atomic::{AtomicUsize, Ordering};
    use crate::thread;
480

481
    struct Packet<T>(Arc<(Mutex<T>, Condvar)>);
482

483 484 485
    #[derive(Eq, PartialEq, Debug)]
    struct NonCopy(i32);

486 487
    #[test]
    fn smoke() {
A
Alex Crichton 已提交
488
        let m = Mutex::new(());
489 490
        drop(m.lock().unwrap());
        drop(m.lock().unwrap());
491 492 493 494
    }

    #[test]
    fn lots_and_lots() {
495 496
        const J: u32 = 1000;
        const K: u32 = 3;
497

A
Alex Crichton 已提交
498 499 500
        let m = Arc::new(Mutex::new(0));

        fn inc(m: &Mutex<u32>) {
501
            for _ in 0..J {
A
Alex Crichton 已提交
502
                *m.lock().unwrap() += 1;
503 504 505
            }
        }

506
        let (tx, rx) = channel();
507
        for _ in 0..K {
508
            let tx2 = tx.clone();
A
Alex Crichton 已提交
509 510
            let m2 = m.clone();
            thread::spawn(move|| { inc(&m2); tx2.send(()).unwrap(); });
511
            let tx2 = tx.clone();
A
Alex Crichton 已提交
512 513
            let m2 = m.clone();
            thread::spawn(move|| { inc(&m2); tx2.send(()).unwrap(); });
514 515
        }

516
        drop(tx);
517
        for _ in 0..2 * K {
518
            rx.recv().unwrap();
519
        }
A
Alex Crichton 已提交
520
        assert_eq!(*m.lock().unwrap(), J * K * 2);
521 522 523
    }

    #[test]
A
Alex Crichton 已提交
524 525
    fn try_lock() {
        let m = Mutex::new(());
526
        *m.try_lock().unwrap() = ();
527
    }
A
Alex Crichton 已提交
528

529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
    #[test]
    fn test_into_inner() {
        let m = Mutex::new(NonCopy(10));
        assert_eq!(m.into_inner().unwrap(), NonCopy(10));
    }

    #[test]
    fn test_into_inner_drop() {
        struct Foo(Arc<AtomicUsize>);
        impl Drop for Foo {
            fn drop(&mut self) {
                self.0.fetch_add(1, Ordering::SeqCst);
            }
        }
        let num_drops = Arc::new(AtomicUsize::new(0));
        let m = Mutex::new(Foo(num_drops.clone()));
        assert_eq!(num_drops.load(Ordering::SeqCst), 0);
        {
            let _inner = m.into_inner().unwrap();
            assert_eq!(num_drops.load(Ordering::SeqCst), 0);
        }
        assert_eq!(num_drops.load(Ordering::SeqCst), 1);
    }

    #[test]
    fn test_into_inner_poison() {
        let m = Arc::new(Mutex::new(NonCopy(10)));
        let m2 = m.clone();
        let _ = thread::spawn(move || {
            let _lock = m2.lock().unwrap();
            panic!("test panic in inner thread to poison mutex");
        }).join();

        assert!(m.is_poisoned());
        match Arc::try_unwrap(m).unwrap().into_inner() {
            Err(e) => assert_eq!(e.into_inner(), NonCopy(10)),
            Ok(x) => panic!("into_inner of poisoned Mutex is Ok: {:?}", x),
        }
    }

    #[test]
    fn test_get_mut() {
        let mut m = Mutex::new(NonCopy(10));
        *m.get_mut().unwrap() = NonCopy(20);
        assert_eq!(m.into_inner().unwrap(), NonCopy(20));
    }

    #[test]
    fn test_get_mut_poison() {
        let m = Arc::new(Mutex::new(NonCopy(10)));
        let m2 = m.clone();
        let _ = thread::spawn(move || {
            let _lock = m2.lock().unwrap();
            panic!("test panic in inner thread to poison mutex");
        }).join();

        assert!(m.is_poisoned());
        match Arc::try_unwrap(m).unwrap().get_mut() {
            Err(e) => assert_eq!(*e.into_inner(), NonCopy(10)),
            Ok(x) => panic!("get_mut of poisoned Mutex is Ok: {:?}", x),
        }
    }

A
Alex Crichton 已提交
592 593
    #[test]
    fn test_mutex_arc_condvar() {
594 595
        let packet = Packet(Arc::new((Mutex::new(false), Condvar::new())));
        let packet2 = Packet(packet.0.clone());
A
Alex Crichton 已提交
596
        let (tx, rx) = channel();
A
Aaron Turon 已提交
597
        let _t = thread::spawn(move|| {
A
Alex Crichton 已提交
598
            // wait until parent gets in
599
            rx.recv().unwrap();
600
            let &(ref lock, ref cvar) = &*packet2.0;
601
            let mut lock = lock.lock().unwrap();
A
Alex Crichton 已提交
602 603 604 605
            *lock = true;
            cvar.notify_one();
        });

606
        let &(ref lock, ref cvar) = &*packet.0;
607
        let mut lock = lock.lock().unwrap();
608
        tx.send(()).unwrap();
A
Alex Crichton 已提交
609 610
        assert!(!*lock);
        while !*lock {
611
            lock = cvar.wait(lock).unwrap();
A
Alex Crichton 已提交
612 613 614 615 616
        }
    }

    #[test]
    fn test_arc_condvar_poison() {
T
Tobias Bucher 已提交
617
        let packet = Packet(Arc::new((Mutex::new(1), Condvar::new())));
618
        let packet2 = Packet(packet.0.clone());
A
Alex Crichton 已提交
619 620
        let (tx, rx) = channel();

A
Aaron Turon 已提交
621
        let _t = thread::spawn(move || -> () {
622
            rx.recv().unwrap();
623
            let &(ref lock, ref cvar) = &*packet2.0;
624
            let _g = lock.lock().unwrap();
A
Alex Crichton 已提交
625 626 627 628 629
            cvar.notify_one();
            // Parent should fail when it wakes up.
            panic!();
        });

630
        let &(ref lock, ref cvar) = &*packet.0;
631
        let mut lock = lock.lock().unwrap();
632
        tx.send(()).unwrap();
A
Alex Crichton 已提交
633
        while *lock == 1 {
634 635 636 637 638 639 640
            match cvar.wait(lock) {
                Ok(l) => {
                    lock = l;
                    assert_eq!(*lock, 1);
                }
                Err(..) => break,
            }
A
Alex Crichton 已提交
641 642 643 644 645
        }
    }

    #[test]
    fn test_mutex_arc_poison() {
T
Tobias Bucher 已提交
646
        let arc = Arc::new(Mutex::new(1));
647
        assert!(!arc.is_poisoned());
A
Alex Crichton 已提交
648
        let arc2 = arc.clone();
A
Aaron Turon 已提交
649
        let _ = thread::spawn(move|| {
650
            let lock = arc2.lock().unwrap();
A
Alex Crichton 已提交
651
            assert_eq!(*lock, 2);
A
Aaron Turon 已提交
652
        }).join();
653
        assert!(arc.lock().is_err());
654
        assert!(arc.is_poisoned());
A
Alex Crichton 已提交
655 656 657 658 659 660
    }

    #[test]
    fn test_mutex_arc_nested() {
        // Tests nested mutexes and access
        // to underlying data.
T
Tobias Bucher 已提交
661
        let arc = Arc::new(Mutex::new(1));
A
Alex Crichton 已提交
662 663
        let arc2 = Arc::new(Mutex::new(arc));
        let (tx, rx) = channel();
A
Aaron Turon 已提交
664
        let _t = thread::spawn(move|| {
665
            let lock = arc2.lock().unwrap();
666
            let lock2 = lock.lock().unwrap();
A
Alex Crichton 已提交
667
            assert_eq!(*lock2, 1);
668
            tx.send(()).unwrap();
A
Alex Crichton 已提交
669
        });
670
        rx.recv().unwrap();
A
Alex Crichton 已提交
671 672 673 674
    }

    #[test]
    fn test_mutex_arc_access_in_unwind() {
T
Tobias Bucher 已提交
675
        let arc = Arc::new(Mutex::new(1));
A
Alex Crichton 已提交
676
        let arc2 = arc.clone();
A
Aaron Turon 已提交
677
        let _ = thread::spawn(move|| -> () {
A
Alex Crichton 已提交
678
            struct Unwinder {
N
Nick Cameron 已提交
679
                i: Arc<Mutex<i32>>,
A
Alex Crichton 已提交
680 681 682
            }
            impl Drop for Unwinder {
                fn drop(&mut self) {
683
                    *self.i.lock().unwrap() += 1;
A
Alex Crichton 已提交
684 685 686 687
                }
            }
            let _u = Unwinder { i: arc2 };
            panic!();
A
Aaron Turon 已提交
688
        }).join();
689
        let lock = arc.lock().unwrap();
A
Alex Crichton 已提交
690 691
        assert_eq!(*lock, 2);
    }
692

693 694 695 696 697 698 699 700 701 702 703
    #[test]
    fn test_mutex_unsized() {
        let mutex: &Mutex<[i32]> = &Mutex::new([1, 2, 3]);
        {
            let b = &mut *mutex.lock().unwrap();
            b[0] = 4;
            b[2] = 5;
        }
        let comp: &[i32] = &[4, 2, 5];
        assert_eq!(&*mutex.lock().unwrap(), comp);
    }
704
}