Rename WakerStore -> WakerRegistration.
This commit is contained in:
parent
ffb92731cd
commit
4783222f67
@ -26,7 +26,7 @@ use crate::pac::{uarte0, UARTE0};
|
|||||||
pub use uarte0::{baudrate::BAUDRATE_A as Baudrate, config::PARITY_A as Parity};
|
pub use uarte0::{baudrate::BAUDRATE_A as Baudrate, config::PARITY_A as Parity};
|
||||||
|
|
||||||
use embassy::io::{AsyncBufRead, AsyncWrite, Result};
|
use embassy::io::{AsyncBufRead, AsyncWrite, Result};
|
||||||
use embassy::util::WakerStore;
|
use embassy::util::WakerRegistration;
|
||||||
|
|
||||||
use crate::fmt::{assert, panic, todo, *};
|
use crate::fmt::{assert, panic, todo, *};
|
||||||
|
|
||||||
@ -147,11 +147,11 @@ pub struct UarteState<T: Instance> {
|
|||||||
|
|
||||||
rx: RingBuf,
|
rx: RingBuf,
|
||||||
rx_state: RxState,
|
rx_state: RxState,
|
||||||
rx_waker: WakerStore,
|
rx_waker: WakerRegistration,
|
||||||
|
|
||||||
tx: RingBuf,
|
tx: RingBuf,
|
||||||
tx_state: TxState,
|
tx_state: TxState,
|
||||||
tx_waker: WakerStore,
|
tx_waker: WakerRegistration,
|
||||||
|
|
||||||
_pin: PhantomPinned,
|
_pin: PhantomPinned,
|
||||||
}
|
}
|
||||||
@ -233,11 +233,11 @@ impl<T: Instance> BufferedUarte<T> {
|
|||||||
|
|
||||||
rx: RingBuf::new(),
|
rx: RingBuf::new(),
|
||||||
rx_state: RxState::Idle,
|
rx_state: RxState::Idle,
|
||||||
rx_waker: WakerStore::new(),
|
rx_waker: WakerRegistration::new(),
|
||||||
|
|
||||||
tx: RingBuf::new(),
|
tx: RingBuf::new(),
|
||||||
tx_state: TxState::Idle,
|
tx_state: TxState::Idle,
|
||||||
tx_waker: WakerStore::new(),
|
tx_waker: WakerRegistration::new(),
|
||||||
|
|
||||||
_pin: PhantomPinned,
|
_pin: PhantomPinned,
|
||||||
}),
|
}),
|
||||||
@ -327,7 +327,7 @@ impl<T: Instance> UarteState<T> {
|
|||||||
this.inner.tasks_stoprx.write(|w| unsafe { w.bits(1) });
|
this.inner.tasks_stoprx.write(|w| unsafe { w.bits(1) });
|
||||||
}
|
}
|
||||||
|
|
||||||
this.rx_waker.store(cx.waker());
|
this.rx_waker.register(cx.waker());
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -346,7 +346,7 @@ impl<T: Instance> UarteState<T> {
|
|||||||
let tx_buf = this.tx.push_buf();
|
let tx_buf = this.tx.push_buf();
|
||||||
if tx_buf.len() == 0 {
|
if tx_buf.len() == 0 {
|
||||||
trace!("poll_write: pending");
|
trace!("poll_write: pending");
|
||||||
this.tx_waker.store(cx.waker());
|
this.tx_waker.register(cx.waker());
|
||||||
return Poll::Pending;
|
return Poll::Pending;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,10 +2,10 @@ mod drop_bomb;
|
|||||||
mod forever;
|
mod forever;
|
||||||
mod portal;
|
mod portal;
|
||||||
mod signal;
|
mod signal;
|
||||||
mod waker_store;
|
mod waker;
|
||||||
|
|
||||||
pub use drop_bomb::*;
|
pub use drop_bomb::*;
|
||||||
pub use forever::*;
|
pub use forever::*;
|
||||||
pub use portal::*;
|
pub use portal::*;
|
||||||
pub use signal::*;
|
pub use signal::*;
|
||||||
pub use waker_store::*;
|
pub use waker::*;
|
||||||
|
38
embassy/src/util/waker.rs
Normal file
38
embassy/src/util/waker.rs
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
use core::task::Context;
|
||||||
|
use core::task::Waker;
|
||||||
|
|
||||||
|
/// Utility struct to register and wake a waker.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct WakerRegistration {
|
||||||
|
waker: Option<Waker>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WakerRegistration {
|
||||||
|
pub const fn new() -> Self {
|
||||||
|
Self { waker: None }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Register a waker. Overwrites the previous waker, if any.
|
||||||
|
pub fn register(&mut self, w: &Waker) {
|
||||||
|
match self.waker {
|
||||||
|
// Optimization: If both the old and new Wakers wake the same task, we can simply
|
||||||
|
// keep the old waker, skipping the clone. (In most executor implementations,
|
||||||
|
// cloning a waker is somewhat expensive, comparable to cloning an Arc).
|
||||||
|
Some(ref w2) if (w2.will_wake(w)) => {}
|
||||||
|
// In all other cases
|
||||||
|
// - we have no waker registered
|
||||||
|
// - we have a waker registered but it's for a different task.
|
||||||
|
// then clone the new waker and store it
|
||||||
|
_ => self.waker = Some(w.clone()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Wake the registered waker, if any.
|
||||||
|
pub fn wake(&mut self) {
|
||||||
|
self.waker.take().map(|w| w.wake());
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn context(&self) -> Option<Context<'_>> {
|
||||||
|
self.waker.as_ref().map(|w| Context::from_waker(w))
|
||||||
|
}
|
||||||
|
}
|
@ -1,23 +0,0 @@
|
|||||||
use core::task::Waker;
|
|
||||||
|
|
||||||
pub struct WakerStore {
|
|
||||||
waker: Option<Waker>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl WakerStore {
|
|
||||||
pub const fn new() -> Self {
|
|
||||||
Self { waker: None }
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn store(&mut self, w: &Waker) {
|
|
||||||
match self.waker {
|
|
||||||
Some(ref w2) if (w2.will_wake(w)) => {}
|
|
||||||
Some(_) => panic!("Waker overflow"),
|
|
||||||
None => self.waker = Some(w.clone()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn wake(&mut self) {
|
|
||||||
self.waker.take().map(|w| w.wake());
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user