Crates.io | async-condvar-fair |
lib.rs | async-condvar-fair |
version | 1.0.1 |
source | src |
created_at | 2021-07-05 15:49:27.249502 |
updated_at | 2024-02-20 21:07:25.11735 |
description | Condition variables for async Rust |
homepage | |
repository | https://salsa.debian.org/iwj/rust-async-condvar-fair |
max_upload_size | |
id | 419048 |
size | 107,334 |
Condition variables for async Rust. Features:
Fair. [notify_one
] always wakes up the longest-waiting waiter.
Novel [Baton
] facility to help avoid dropped notifications
which can otherwise arise through async task cancellation.
Works with any async runtime.
Can work with any kind of mutex (sync or async).
100% safe code. (Uses parking_lot
and dlv-list
internally.)
Can handle multiple different mutexes interacting with multiple different condvars, if you like that kind of thing.
The main entrypoint to this library is [Condvar
].
See its documentation for details of the constructors and
methods available.
// async-condvar-fair = { version = "0.2", features = "parking_lot_0_12" }
// parking_lot = { version = "0.12", features = ["send_guard"] }
# #[cfg(feature = "parking_lot_0_12")] mod demo {
use std::collections::VecDeque;
use async_condvar_fair::{Condvar, BatonExt};
use parking_lot::Mutex;
struct Shared {
cv: Condvar,
queue: Mutex<VecDeque<String>>,
}
impl Shared {
pub async fn procssor(&self) {
let mut guard = self.queue.lock();
let mut baton = None;
loop {
while let Some(entry) = guard.pop_front() {
println!("processing {:?}", &entry);
}
baton.dispose();
let got = self.cv.wait_baton(guard).await;
guard = got.0;
baton = got.1;
}
}
}
# }
Note that it can make perfect sense to have an async condvar, but protect the shared state with a sync mutex. If the operations which occur while holding the mutex are fast (and, in particular, do not perform IO), this is usually the best choice.
[parking_lot::Mutex
] is a good choice for such a sync mutex, and is
conveniently supported by async-condvar-fair
. You will probably
want to enable parking_lot
's send_guard
feature.
If you use a sync mutex, you probably don't intend to be awaiting with
the mutex held, so you can probably use plain [wait
] (rather than
[wait_baton
]).
If the operations you do while holding the mutex are slow, you should
use the async mutex supplied with your async runtime. In this case,
if you are using [notify_one
] you should consider using
[wait_baton
] to avoid task cancellation causing lost notifications:
see [Baton
].
Send
ing between threadsIn a multithreaded async runtime, tasks can move between threads.
This means the mutex guard needs to be Send
. Async mutex guards
supplied with multithreaded async runtimes are all Send
. Sync mutex
guards often aren't.
For example, [std::sync::MutexGuard
], which can only be used with
Condvar
with a non-multithreaded runtime, because futures which have
a local variable with such a guard will not be Send
. Use
[parking_lot
] with send_guard
enabled, instead.
wait_baton
et al[Condvar::wait_baton
] and [wait
] can in principle work with any mutex.
But they need to know how to relock the mutex.
For the most convenient mutexes, like [parking_lot::Mutex
], you can
just pass the guard to wait
. Condvar
will use the guard to unlock
the mutex, and then to relock it again during wakeup.
But for many mutexes, this is not possible, because the guard type
does not provide a way to get back to the unlocked mutex reference.
This is the case, for example, for [std::sync::Mutex
].
For these inconvenient mutexes, you can pass a tuple to [wait_baton
]
or [wait
], or use [wait_no_relock
] and relock the mutex yourself.
async-condvar-fair
crate featuresfeature | mutex type | pass to [wait ] / [wait_baton ] |
---|---|---|
always enabled | [std::sync::Mutex ] |
(MutexGuard, &Mutex) [2] |
parking_lot_N |
[parking_lot::Mutex ] |
MutexGuard [1] |
parking_lot_N |
[parking_lot::FairMutex ] |
FairMutexGuard [1] |
tokio |
[tokio::sync::Mutex ] |
(MutexGuard, &Mutex) |
tokio |
[Arc ]< [tokio::sync::Mutex ]> |
(OwnedMutexGuard, Arc<Mutex>) |
tokio |
[tokio::sync::RwLock ] |
(RwLockReadGuard, &Mutex) |
tokio |
[tokio::sync::RwLock ] |
(RwLockWriteGuard, &Mutex) |
tokio |
[Arc ]< [tokio::sync::RwLock ]> |
(OwnedRwLockReadGuard, Arc<RwLock>) |
tokio |
[Arc ]< [tokio::sync::RwLock ]> |
(OwnedRwLockWriteGuard, Arc<RwLock>) |
smol |
[smol::lock::Mutex ] |
MutexGuard |
smol |
[smol::lock::RwLock ] |
(RwLockReadGuard, &RwLock) |
smol |
[smol::lock::RwLock ] |
(RwLockWriteGuard, &RwLock) |
smol |
[Arc ]< [smol::lock::Mutex ]> |
MutexGuardArc |
Notes: 0. None of these are not enabled by default, since each one implies a dependency on the corresponding crate.
parking_lot_N
feature corresponding to the parking_lot
version you are using (as specified in your Cargo.toml
).
Enable parking_lot
's send_guard
feature for use with a
multithreaded runtime.The support listed above is all achieved through provided
implementations of the [RelockMutexGuard
] trait.
If you want to use a mutex type without builtin support in
async-condvar-wait
, use the [RelockMutexGuard!
] macro to define a
suitable impl, define that impl by hand, or use [wait_no_relock
] and
relock the mutex yourself each time.
# fn main() {
# #[cfg(feature = "parking_lot_0_12")] {
# use std::collections::VecDeque;
# use async_condvar_fair::{Condvar, BatonExt};
use std::sync::Mutex;
struct Shared {
cv: Condvar,
queue: Mutex<VecDeque<String>>,
}
#
# impl Shared {
# pub async fn procssor(&self) {
# let mut guard = self.queue.lock().unwrap();
# let mut baton = None;
loop {
while let Some(entry) = guard.pop_front() {
println!("processing {:?}", &entry);
if entry.is_empty() { break }
}
baton.dispose();
let got = self.cv.wait_baton((guard, &self.queue)).await;
guard = got.0;
baton = got.1;
}
# }
# } } }
1.0.1 2024-02-20:
dlv-list
dependencies (both upwards and downwards).1.0.0 2022-10-11:
dlv-list
dependency. No API or functional changes.0.2.2 2022-03-27:
dlv-list
dependency. No API or functional changes.0.2.1 2022-03-27:
parking_lot_N
features for providing RelockMutexGuard
impls for specific parking_lot
versions.
When upgrading from 0.1.0, specify the new feature parking_lot_0_11
.parking_lot
0.9, 0.10, 0.12.0.2.0: version number not used.
0.1.0, 2021-07-05
Initial release.
Copyright Ian Jackson and contributors
to the Rust package async-condvar-fair.
There is NO WARRANTY.
See the files GPL-3
and LICENCE
in the source tree.
SPDX-License-Identifier: GPL-3.0-or-later