pub struct Semaphore<Lock = Spinlock>where
Lock: RawMutex,{ /* private fields */ }
Expand description
An asynchronous counting semaphore.
A semaphore is a synchronization primitive that limits the number of tasks
that may run concurrently. It consists of a count of permits, which tasks
may acquire
in order to execute in some context. When a task acquires a
permit from the semaphore, the count of permits held by the semaphore is
decreased. When no permits remain in the semaphore, any task that wishes to
acquire a permit must (asynchronously) wait until another task has released
a permit.
The Permit
type is a RAII guard representing one or more permits
acquired from a Semaphore
. When a Permit
is dropped, the permits it
represents are released back to the Semaphore
, potentially allowing a
waiting task to acquire them.
Fairness
This semaphore is fair: as permits become available, they are assigned to
waiting tasks in the order that those tasks requested permits (first-in,
first-out). This means that all tasks waiting to acquire permits will
eventually be allowed to progress, and a single task cannot starve the
semaphore of permits (provided that permits are eventually released). The
semaphore remains fair even when a call to acquire
requests more than one
permit at a time.
Overriding the blocking mutex
This type uses a blocking Mutex
internally to
synchronize access to its wait list. By default, this is a Spinlock
. To
use an alternative RawMutex
implementation, use the
new_with_raw_mutex
constructor. See the documentation
on overriding mutex
implementations for more
details.
Note that this type currently requires that the raw mutex implement
RawMutex
rather than mutex_traits::ScopedRawMutex
!
Examples
Using a semaphore to limit concurrency:
use maitake_sync::Semaphore;
use alloc::sync::Arc;
// Allow 4 tasks to run concurrently at a time.
let semaphore = Arc::new(Semaphore::new(4));
for _ in 0..8 {
// Clone the `Arc` around the semaphore.
let semaphore = semaphore.clone();
task::spawn(async move {
// Acquire a permit from the semaphore, returning a RAII guard that
// releases the permit back to the semaphore when dropped.
//
// If all 4 permits have been acquired, the calling task will yield,
// and it will be woken when another task releases a permit.
let _permit = semaphore
.acquire(1)
.await
.expect("semaphore will not be closed");
// do some work...
});
}
A semaphore may also be used to cause a task to run once all of a set of tasks have completed. If we want some task B to run only after a fixed number n of tasks A have run, we can have task B try to acquire n permits from a semaphore with 0 permits, and have each task A add one permit to the semaphore when it completes.
For example:
use maitake_sync::Semaphore;
use alloc::sync::Arc;
// How many tasks will we be waiting for the completion of?
const TASKS: usize = 4;
// Create the semaphore with 0 permits.
let semaphore = Arc::new(Semaphore::new(0));
// Spawn the "B" task that will wait for the 4 "A" tasks to complete.
task::spawn({
let semaphore = semaphore.clone();
async move {
println!("Task B starting...");
// Since the semaphore is created with 0 permits, this will
// wait until all 4 "A" tasks have completed.
let _permit = semaphore
.acquire(TASKS)
.await
.expect("semaphore will not be closed");
// ... do some work ...
println!("Task B done!");
}
});
for i in 0..TASKS {
let semaphore = semaphore.clone();
task::spawn(async move {
println!("Task A {i} starting...");
// Add a single permit to the semaphore. Once all 4 tasks have
// completed, the semaphore will have the 4 permits required to
// wake the "B" task.
semaphore.add_permits(1);
// ... do some work ...
println!("Task A {i} done");
});
}
Implementations§
§impl Semaphore
impl Semaphore
pub const fn new(permits: usize) -> Semaphore
pub const fn new(permits: usize) -> Semaphore
Returns a new Semaphore
with permits
permits available.
Panics
If permits
is less than MAX_PERMITS
(usize::MAX
- 1).
§impl<Lock> Semaphore<Lock>where
Lock: RawMutex,
impl<Lock> Semaphore<Lock>where
Lock: RawMutex,
pub const MAX_PERMITS: usize = 18_446_744_073_709_551_614usize
pub const MAX_PERMITS: usize = 18_446_744_073_709_551_614usize
The maximum number of permits a Semaphore
may contain.
pub const fn new_with_raw_mutex(permits: usize, lock: Lock) -> Semaphore<Lock>
pub const fn new_with_raw_mutex(permits: usize, lock: Lock) -> Semaphore<Lock>
Returns a new Semaphore
with permits
permits available, using the
provided RawMutex
implementation.
This constructor allows a Semaphore
to be constructed with any type that
implements RawMutex
as the underlying raw blocking mutex
implementation. See the documentation on overriding mutex
implementations
for more details.
Panics
If permits
is less than MAX_PERMITS
(usize::MAX
- 1).
pub fn available_permits(&self) -> usize
pub fn available_permits(&self) -> usize
Returns the number of permits currently available in this semaphore, or 0 if the semaphore is closed.
pub fn acquire(&self, permits: usize) -> Acquire<'_, Lock> ⓘ
pub fn acquire(&self, permits: usize) -> Acquire<'_, Lock> ⓘ
Acquire permits
permits from the Semaphore
, waiting asynchronously
if there are insufficient permits currently available.
Returns
Ok(
Permit
)
with the requested number of permits, if the permits were acquired.Err(
Closed
)
if the semaphore was closed.
Cancellation
This method uses a queue to fairly distribute permits in the order they
were requested. If an Acquire
future is dropped before it completes,
the task will lose its place in the queue.
pub fn add_permits(&self, permits: usize)
pub fn add_permits(&self, permits: usize)
Add permits
new permits to the semaphore.
This permanently increases the number of permits available in the
semaphore. The permit count can be permanently decreased by calling
acquire
or try_acquire
, and forget
ting the returned Permit
.
Panics
If adding permits
permits would cause the permit count to overflow
MAX_PERMITS
(usize::MAX
- 1).
pub fn try_acquire(
&self,
permits: usize
) -> Result<Permit<'_, Lock>, TryAcquireError>
pub fn try_acquire( &self, permits: usize ) -> Result<Permit<'_, Lock>, TryAcquireError>
Try to acquire permits
permits from the Semaphore
, without waiting
for additional permits to become available.
Returns
Ok(
Permit
)
with the requested number of permits, if the permits were acquired.Err(
TryAcquireError::Closed
)
if the semaphore was closed.Err(
TryAcquireError::InsufficientPermits
)
if the semaphore had fewer thanpermits
permits available.
pub fn close(&self)
pub fn close(&self)
Closes the semaphore.
This wakes all tasks currently waiting on the semaphore, and prevents new permits from being acquired.
§impl<Lock> Semaphore<Lock>where
Lock: RawMutex,
impl<Lock> Semaphore<Lock>where
Lock: RawMutex,
pub fn acquire_owned(
self: &Arc<Semaphore<Lock>>,
permits: usize
) -> AcquireOwned<Lock> ⓘ
Available on crate feature alloc
only.
pub fn acquire_owned( self: &Arc<Semaphore<Lock>>, permits: usize ) -> AcquireOwned<Lock> ⓘ
alloc
only.Acquire permits
permits from the Semaphore
, waiting asynchronously
if there are insufficient permits currently available, and returning
an OwnedPermit
.
This method behaves identically to acquire
, except that it
requires the Semaphore
to be wrapped in an Arc
, and returns an
OwnedPermit
which clones the Arc
rather than borrowing the
semaphore. This allows the returned OwnedPermit
to be valid for
the 'static
lifetime.
Returns
Ok(
OwnedPermit
)
with the requested number of permits, if the permits were acquired.Err(
Closed
)
if the semaphore was closed.
Cancellation
This method uses a queue to fairly distribute permits in the order they
were requested. If an AcquireOwned
future is dropped before it
completes, the task will lose its place in the queue.
pub fn try_acquire_owned(
self: &Arc<Semaphore<Lock>>,
permits: usize
) -> Result<OwnedPermit<Lock>, TryAcquireError>
Available on crate feature alloc
only.
pub fn try_acquire_owned( self: &Arc<Semaphore<Lock>>, permits: usize ) -> Result<OwnedPermit<Lock>, TryAcquireError>
alloc
only.Try to acquire permits
permits from the Semaphore
, without waiting
for additional permits to become available, and returning an OwnedPermit
.
This method behaves identically to try_acquire
, except that it
requires the Semaphore
to be wrapped in an Arc
, and returns an
OwnedPermit
which clones the Arc
rather than borrowing the
semaphore. This allows the returned OwnedPermit
to be valid for
the 'static
lifetime.
Returns
Ok(
OwnedPermit
)
with the requested number of permits, if the permits were acquired.Err(
TryAcquireError::Closed
)
if the semaphore was closed.Err(
TryAcquireError::InsufficientPermits
)
if the semaphore had fewer thanpermits
permits available.