[][src]Struct crossbeam_utils::sync::ShardedLock

pub struct ShardedLock<T: ?Sized> { /* fields omitted */ }

A sharded reader-writer lock.

This lock is equivalent to RwLock, except read operations are faster and write operations are slower.

A ShardedLock is internally made of a list of shards, each being a RwLock occupying a single cache line. Read operations will pick one of the shards depending on the current thread and lock it. Write operations need to lock all shards in succession.

By splitting the lock into shards, concurrent read operations will in most cases choose different shards and thus update different cache lines, which is good for scalability. However, write operations need to do more work and are therefore slower than usual.

The priority policy of the lock is dependent on the underlying operating system's implementation, and this type does not guarantee that any particular policy will be used.

Poisoning

A ShardedLock, like RwLock, will become poisoned on a panic. Note that it may only be poisoned if a panic occurs while a write operation is in progress. If a panic occurs in any read operation, the lock will not be poisoned.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(5);

// Any number of read locks can be held at once.
{
    let r1 = lock.read().unwrap();
    let r2 = lock.read().unwrap();
    assert_eq!(*r1, 5);
    assert_eq!(*r2, 5);
} // Read locks are dropped at this point.

// However, only one write lock may be held.
{
    let mut w = lock.write().unwrap();
    *w += 1;
    assert_eq!(*w, 6);
} // Write lock is dropped here.

Methods

impl<T> ShardedLock<T>
[src]

pub fn new(value: T) -> ShardedLock<T>
[src]

Creates a new sharded reader-writer lock.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(5);

pub fn into_inner(self) -> LockResult<T>
[src]

Consumes this lock, returning the underlying data.

This method will return an error if the lock is poisoned. A lock gets poisoned when a write operation panics.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(String::new());
{
    let mut s = lock.write().unwrap();
    *s = "modified".to_owned();
}
assert_eq!(lock.into_inner().unwrap(), "modified");

impl<T: ?Sized> ShardedLock<T>
[src]

pub fn is_poisoned(&self) -> bool
[src]

Returns true if the lock is poisoned.

If another thread can still access the lock, it may become poisoned at any time. A false result should not be trusted without additional synchronization.

Examples

use crossbeam_utils::sync::ShardedLock;
use std::sync::Arc;
use std::thread;

let lock = Arc::new(ShardedLock::new(0));
let c_lock = lock.clone();

let _ = thread::spawn(move || {
    let _lock = c_lock.write().unwrap();
    panic!(); // the lock gets poisoned
}).join();
assert_eq!(lock.is_poisoned(), true);

pub fn get_mut(&mut self) -> LockResult<&mut T>
[src]

Returns a mutable reference to the underlying data.

Since this call borrows the lock mutably, no actual locking needs to take place.

This method will return an error if the lock is poisoned. A lock gets poisoned when a write operation panics.

Examples

use crossbeam_utils::sync::ShardedLock;

let mut lock = ShardedLock::new(0);
*lock.get_mut().unwrap() = 10;
assert_eq!(*lock.read().unwrap(), 10);

pub fn try_read(&self) -> TryLockResult<ShardedLockReadGuard<T>>
[src]

Attempts to acquire this lock with shared read access.

If the access could not be granted at this time, an error is returned. Otherwise, a guard is returned which will release the shared access when it is dropped. This method does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

This method will return an error if the lock is poisoned. A lock gets poisoned when a write operation panics.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(1);

match lock.try_read() {
    Ok(n) => assert_eq!(*n, 1),
    Err(_) => unreachable!(),
};

pub fn read(&self) -> LockResult<ShardedLockReadGuard<T>>
[src]

Locks with shared read access, blocking the current thread until it can be acquired.

The calling thread will be blocked until there are no more writers which hold the lock. There may be other readers currently inside the lock when this method returns. This method does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

Returns a guard which will release the shared access when dropped.

Examples

use crossbeam_utils::sync::ShardedLock;
use std::sync::Arc;
use std::thread;

let lock = Arc::new(ShardedLock::new(1));
let c_lock = lock.clone();

let n = lock.read().unwrap();
assert_eq!(*n, 1);

thread::spawn(move || {
    let r = c_lock.read();
    assert!(r.is_ok());
}).join().unwrap();

pub fn try_write(&self) -> TryLockResult<ShardedLockWriteGuard<T>>
[src]

Attempts to acquire this lock with exclusive write access.

If the access could not be granted at this time, an error is returned. Otherwise, a guard is returned which will release the exclusive access when it is dropped. This method does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

This method will return an error if the lock is poisoned. A lock gets poisoned when a write operation panics.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(1);

let n = lock.read().unwrap();
assert_eq!(*n, 1);

assert!(lock.try_write().is_err());

pub fn write(&self) -> LockResult<ShardedLockWriteGuard<T>>
[src]

Locks with exclusive write access, blocking the current thread until it can be acquired.

The calling thread will be blocked until there are no more writers which hold the lock. There may be other readers currently inside the lock when this method returns. This method does not provide any guarantees with respect to the ordering of whether contentious readers or writers will acquire the lock first.

Returns a guard which will release the exclusive access when dropped.

Examples

use crossbeam_utils::sync::ShardedLock;

let lock = ShardedLock::new(1);

let mut n = lock.write().unwrap();
*n = 2;

assert!(lock.try_read().is_err());

Trait Implementations

impl<T> From<T> for ShardedLock<T>
[src]

impl<T: ?Sized + Send> Send for ShardedLock<T>
[src]

impl<T: ?Sized + Send + Sync> Sync for ShardedLock<T>
[src]

impl<T: Default> Default for ShardedLock<T>
[src]

impl<T: ?Sized + Debug> Debug for ShardedLock<T>
[src]

impl<T: ?Sized> UnwindSafe for ShardedLock<T>
[src]

impl<T: ?Sized> RefUnwindSafe for ShardedLock<T>
[src]

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]