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
|
//! A "latest only" value store with unlimited writers and async waiting.
use core::{cell::UnsafeCell, future::poll_fn, task::Poll};
use rtic_common::waker_registration::CriticalSectionWakerRegistration;
/// Basically an Option but for indicating
/// whether the store has been set or not
#[derive(Clone, Copy)]
enum Store<T> {
Set(T),
Unset,
}
/// A "latest only" value store with unlimited writers and async waiting.
pub struct Signal<T: Copy> {
waker: CriticalSectionWakerRegistration,
store: UnsafeCell<Store<T>>,
}
impl<T: Copy> Default for Signal<T> {
fn default() -> Self {
Self::new()
}
}
unsafe impl<T: Copy> Send for Signal<T> {}
unsafe impl<T: Copy> Sync for Signal<T> {}
impl<T: Copy> Signal<T> {
/// Create a new signal.
pub const fn new() -> Self {
Self {
waker: CriticalSectionWakerRegistration::new(),
store: UnsafeCell::new(Store::Unset),
}
}
/// Split the signal into a writer and reader.
pub fn split(&self) -> (SignalWriter<T>, SignalReader<T>) {
(SignalWriter { parent: self }, SignalReader { parent: self })
}
}
/// Fascilitates the writing of values to a Signal.
#[derive(Clone)]
pub struct SignalWriter<'a, T: Copy> {
parent: &'a Signal<T>,
}
impl<'a, T: Copy> SignalWriter<'a, T> {
/// Write a raw Store value to the Signal.
fn write_inner(&mut self, value: Store<T>) {
critical_section::with(|_| {
// SAFETY: in a cs: exclusive access
unsafe { self.parent.store.get().replace(value) };
});
self.parent.waker.wake();
}
/// Write a value to the Signal.
pub fn write(&mut self, value: T) {
self.write_inner(Store::Set(value));
}
/// Clear the stored value in the Signal (if any).
pub fn clear(&mut self) {
self.write_inner(Store::Unset);
}
}
/// Fascilitates the async reading of values from the Signal.
pub struct SignalReader<'a, T: Copy> {
parent: &'a Signal<T>,
}
impl<'a, T: Copy> SignalReader<'a, T> {
/// Immediately read and evict the latest value stored in the Signal.
fn take(&mut self) -> Store<T> {
critical_section::with(|_| {
// SAFETY: in a cs: exclusive access
unsafe { self.parent.store.get().replace(Store::Unset) }
})
}
/// Returns a pending value if present, or None if no value is available.
///
/// Upon read, the stored value is evicted.
pub fn try_read(&mut self) -> Option<T> {
match self.take() {
Store::Unset => None,
Store::Set(value) => Some(value),
}
}
/// Wait for a new value to be written and read it.
///
/// If a value is already pending it will be returned immediately.
///
/// Upon read, the stored value is evicted.
pub async fn wait(&mut self) -> T {
poll_fn(|ctx| {
self.parent.waker.register(ctx.waker());
match self.take() {
Store::Unset => Poll::Pending,
Store::Set(value) => Poll::Ready(value),
}
})
.await
}
/// Wait for a new value to be written and read it.
///
/// If a value is already pending, it will be evicted and a new
/// value must be written for the wait to resolve.
///
/// Upon read, the stored value is evicted.
pub async fn wait_fresh(&mut self) -> T {
self.take();
self.wait().await
}
}
/// Convenience macro for creating a Signal.
#[macro_export]
macro_rules! make_signal {
( $T:ty ) => {{
static SIGNAL: Signal<$T> = Signal::new();
SIGNAL.split()
}};
}
#[cfg(test)]
mod tests {
use static_cell::StaticCell;
use super::*;
#[test]
fn empty() {
let (_writer, mut reader) = make_signal!(u32);
assert!(reader.try_read().is_none());
}
#[test]
fn ping_pong() {
let (mut writer, mut reader) = make_signal!(u32);
writer.write(0xde);
assert!(reader.try_read().is_some_and(|value| value == 0xde));
}
#[test]
fn latest() {
let (mut writer, mut reader) = make_signal!(u32);
writer.write(0xde);
writer.write(0xad);
writer.write(0xbe);
writer.write(0xef);
assert!(reader.try_read().is_some_and(|value| value == 0xef));
}
#[test]
fn consumption() {
let (mut writer, mut reader) = make_signal!(u32);
writer.write(0xaa);
assert!(reader.try_read().is_some_and(|value| value == 0xaa));
assert!(reader.try_read().is_none());
}
#[tokio::test]
async fn pending() {
let (mut writer, mut reader) = make_signal!(u32);
writer.write(0xaa);
assert_eq!(reader.wait().await, 0xaa);
}
#[tokio::test]
async fn waiting() {
static READER: StaticCell<SignalReader<u32>> = StaticCell::new();
let (mut writer, reader) = make_signal!(u32);
writer.write(0xaa);
let reader = READER.init(reader);
let handle = tokio::spawn(reader.wait_fresh());
tokio::task::yield_now().await; // encourage tokio executor to poll reader future
assert!(!handle.is_finished()); // verify reader future did not resolve after poll
writer.write(0xab);
assert!(handle.await.is_ok_and(|value| value == 0xab));
}
}
|