2021-02-19 18:12:30 +01:00
|
|
|
use core::cell::Cell;
|
2020-12-26 22:27:59 +01:00
|
|
|
use core::fmt;
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use core::task::Waker;
|
2019-11-14 13:38:24 +01:00
|
|
|
|
|
|
|
/// A synchronization primitive for task wakeup.
|
|
|
|
///
|
|
|
|
/// Sometimes the task interested in a given event will change over time.
|
|
|
|
/// An `LocalWaker` can coordinate concurrent notifications with the consumer
|
|
|
|
/// potentially "updating" the underlying task to wake up. This is useful in
|
|
|
|
/// scenarios where a computation completes in another task and wants to
|
|
|
|
/// notify the consumer, but the consumer is in the process of being migrated to
|
|
|
|
/// a new logical task.
|
|
|
|
///
|
|
|
|
/// Consumers should call `register` before checking the result of a computation
|
|
|
|
/// and producers should call `wake` after producing the computation (this
|
|
|
|
/// differs from the usual `thread::park` pattern). It is also permitted for
|
|
|
|
/// `wake` to be called **before** `register`. This results in a no-op.
|
|
|
|
///
|
|
|
|
/// A single `AtomicWaker` may be reused for any number of calls to `register` or
|
|
|
|
/// `wake`.
|
2019-12-02 17:30:09 +01:00
|
|
|
#[derive(Default)]
|
2019-11-14 13:38:24 +01:00
|
|
|
pub struct LocalWaker {
|
2021-02-19 18:12:30 +01:00
|
|
|
pub(crate) waker: Cell<Option<Waker>>,
|
2020-12-26 22:27:59 +01:00
|
|
|
// mark LocalWaker as a !Send type.
|
|
|
|
_t: PhantomData<*const ()>,
|
2019-11-14 13:38:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LocalWaker {
|
|
|
|
/// Create an `LocalWaker`.
|
|
|
|
pub fn new() -> Self {
|
|
|
|
LocalWaker {
|
2021-02-19 18:12:30 +01:00
|
|
|
waker: Cell::new(None),
|
2019-11-14 13:38:24 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Registers the waker to be notified on calls to `wake`.
|
2019-12-20 04:13:11 +01:00
|
|
|
///
|
|
|
|
/// Returns `true` if waker was registered before.
|
2021-01-26 10:45:43 +01:00
|
|
|
#[inline]
|
2019-12-20 04:13:11 +01:00
|
|
|
pub fn register(&self, waker: &Waker) -> bool {
|
2021-02-19 18:12:30 +01:00
|
|
|
let last_waker = self.waker.replace(Some(waker.clone()));
|
|
|
|
last_waker.is_some()
|
2019-11-14 13:38:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Calls `wake` on the last `Waker` passed to `register`.
|
|
|
|
///
|
|
|
|
/// If `register` has not been called yet, then this does nothing.
|
2021-01-26 10:45:43 +01:00
|
|
|
#[inline]
|
2019-11-14 13:38:24 +01:00
|
|
|
pub fn wake(&self) {
|
|
|
|
if let Some(waker) = self.take() {
|
|
|
|
waker.wake();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the last `Waker` passed to `register`, so that the user can wake it.
|
|
|
|
///
|
|
|
|
/// If a waker has not been registered, this returns `None`.
|
2021-01-26 10:45:43 +01:00
|
|
|
#[inline]
|
2019-11-14 13:38:24 +01:00
|
|
|
pub fn take(&self) -> Option<Waker> {
|
2021-02-19 18:12:30 +01:00
|
|
|
self.waker.take()
|
2019-11-14 13:38:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for LocalWaker {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
write!(f, "LocalWaker")
|
|
|
|
}
|
|
|
|
}
|