pal_async/multi_waker.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! A multi-waker that multiplexes multiple wakers onto a single waker.
// UNSAFETY: Implementing a `RawWakerVTable`.
#![expect(unsafe_code)]
use parking_lot::Mutex;
use std::sync::Arc;
use std::task::Context;
use std::task::Poll;
use std::task::RawWaker;
use std::task::RawWakerVTable;
use std::task::Waker;
/// Object to multiplex multiple wakers onto a single waker.
#[derive(Debug)]
pub struct MultiWaker<const N: usize> {
inner: Arc<Inner<N>>,
}
#[derive(Debug)]
struct Inner<const N: usize> {
wakers: Mutex<[Option<Waker>; N]>,
}
impl<const N: usize> Inner<N> {
/// Sets the waker for index `i`.
fn set(&self, i: usize, waker: &Waker) {
let mut wakers = self.wakers.lock();
if !wakers[i].as_ref().is_some_and(|old| old.will_wake(waker)) {
let _old = wakers[i].replace(waker.clone());
drop(wakers);
}
}
/// Wakes any wakers that have been set.
fn wake(&self) {
let wakers = std::mem::replace(&mut *self.wakers.lock(), [(); N].map(|_| None));
for waker in wakers.into_iter().flatten() {
waker.wake();
}
}
}
struct Ref<'a, 'b, const N: usize> {
inner: &'a Arc<Inner<N>>,
cx_waker: &'b Waker,
index: usize,
}
impl<const N: usize> MultiWaker<N> {
/// Creates a new instance.
pub fn new() -> Self {
Self {
inner: Arc::new(Inner {
wakers: Mutex::new([(); N].map(|_| None)),
}),
}
}
/// Calls a poll function on behalf of entry `index`, passing a `Context` that
/// ensures that each index's waker is called on wake.
pub fn poll_wrapped<R>(
&self,
cx: &mut Context<'_>,
index: usize,
f: impl FnOnce(&mut Context<'_>) -> Poll<R>,
) -> Poll<R> {
let waker_ref = Ref {
inner: &self.inner,
index,
cx_waker: cx.waker(),
};
// SAFETY:
// - waker_ref and its contents are valid for the duration of the call.
// - The waker is only used for the duration of the call.
// - Ref is Send + Sync, enforced by a test.
// - All functions passed in the vtable expect a pointer to a Ref.
// - All functions passed in the vtable perform only thread-safe operations.
let waker = unsafe {
Waker::from_raw(RawWaker::new(
std::ptr::from_ref(&waker_ref).cast(),
&RawWakerVTable::new(ref_clone::<N>, ref_wake::<N>, ref_wake::<N>, ref_drop),
))
};
let mut cx = Context::from_waker(&waker);
f(&mut cx)
}
}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Ref<N>.
unsafe fn ref_clone<const N: usize>(ptr: *const ()) -> RawWaker {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Ref.
let thing: &Ref<'_, '_, N> = unsafe { &*(ptr.cast()) };
thing.inner.set(thing.index, thing.cx_waker);
let waker = thing.inner.clone();
RawWaker::new(
Arc::into_raw(waker).cast(),
&RawWakerVTable::new(
val_clone::<N>,
val_wake::<N>,
val_wake_by_ref::<N>,
val_drop::<N>,
),
)
}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Ref<N>.
unsafe fn ref_wake<const N: usize>(ptr: *const ()) {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Ref.
let thing: &Ref<'_, '_, N> = unsafe { &*(ptr.cast()) };
thing.inner.wake();
thing.cx_waker.wake_by_ref();
}
fn ref_drop(_: *const ()) {}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Arc<Inner>.
unsafe fn val_drop<const N: usize>(ptr: *const ()) {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Arc<Inner>.
unsafe { Arc::decrement_strong_count(ptr.cast::<Inner<N>>()) };
}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Arc<Inner>.
unsafe fn val_wake_by_ref<const N: usize>(ptr: *const ()) {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Arc<Inner>.
let waker = unsafe { &*ptr.cast::<Inner<N>>() };
waker.wake();
}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Arc<Inner>.
unsafe fn val_wake<const N: usize>(ptr: *const ()) {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Arc<Inner>.
let waker = unsafe { Arc::from_raw(ptr.cast::<Inner<N>>()) };
waker.wake();
}
/// # Safety
///
/// The caller must guarantee that the pointer is valid and pointing to a Arc<Inner>.
unsafe fn val_clone<const N: usize>(ptr: *const ()) -> RawWaker {
// SAFETY: This function is only called through our own waker, which guarantees that the
// pointer is valid and pointing to a Arc<Inner>.
unsafe {
Arc::increment_strong_count(ptr.cast::<Inner<N>>());
}
RawWaker::new(
ptr,
&RawWakerVTable::new(
val_clone::<N>,
val_wake::<N>,
val_wake_by_ref::<N>,
val_drop::<N>,
),
)
}
#[cfg(test)]
mod tests {
use super::MultiWaker;
use futures::executor::block_on;
use parking_lot::Mutex;
use std::future::poll_fn;
use std::sync::Arc;
use std::task::Context;
use std::task::Poll;
use std::task::Waker;
use std::time::Duration;
#[derive(Default)]
struct SlimEvent {
state: Mutex<SlimEventState>,
}
#[derive(Default)]
struct SlimEventState {
done: bool,
waker: Option<Waker>,
}
impl SlimEvent {
fn signal(&self) {
let mut state = self.state.lock();
state.done = true;
let waker = state.waker.take();
drop(state);
if let Some(waker) = waker {
waker.wake();
}
}
fn poll_wait(&self, cx: &mut Context<'_>) -> Poll<()> {
let mut state = self.state.lock();
if state.done {
Poll::Ready(())
} else {
let _old = state.waker.insert(cx.waker().clone());
drop(state);
Poll::Pending
}
}
}
#[test]
fn test_multiwaker() {
let mw = Arc::new(MultiWaker::<2>::new());
let event = Arc::new(SlimEvent::default());
let f = |index| {
let mw = mw.clone();
let event = event.clone();
move || {
block_on(async {
poll_fn(|cx| mw.poll_wrapped(cx, index, |cx| event.poll_wait(cx))).await
})
}
};
let t1 = std::thread::spawn(f(0));
let t2 = std::thread::spawn(f(1));
std::thread::sleep(Duration::from_millis(100));
event.signal();
t1.join().unwrap();
t2.join().unwrap();
}
#[test]
fn ref_is_send_sync() {
fn assert_send<T: Send>() {}
fn assert_sync<T: Sync>() {}
assert_send::<super::Ref<'_, '_, 1>>();
assert_sync::<super::Ref<'_, '_, 1>>();
}
}