codas_flow/lib.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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
#![no_std]
// Use the README file as the root-level
// docs for this library.
#![doc = include_str!("../README.md")]
extern crate alloc;
use core::{
cell::UnsafeCell,
fmt::Debug,
ops::{Deref, DerefMut, Range},
sync::atomic::{AtomicU64, Ordering},
};
use alloc::{
boxed::Box,
sync::{Arc, Weak},
vec::Vec,
};
use snafu::Snafu;
pub mod async_support;
/// Bounded queue for publishing and receiving
/// data from (a)synchronous tasks.
///
/// Refer to the [crate] docs for more info.
#[derive(Debug, Clone)]
pub struct Flow<T: Flows> {
state: Arc<FlowState<T>>,
}
impl<T: Flows> Flow<T> {
/// Returns a tuple of `(flow, [subscribers])`,
/// where `capacity` is the maximum capacity
/// of the flow.
///
/// Returns `Err` iff `capacity` is _not_ a power
/// of two (like `2`, `32`, `256`, and so on).
pub fn new<const SUB: usize>(
capacity: usize,
) -> Result<(Self, [FlowSubscriber<T>; SUB]), Error> {
// Check capacity.
if capacity & (capacity - 1) != 0 {
return Err(Error::UnsupportedCapacity { capacity });
}
// Allocate the flow buffer.
let mut buffer = Vec::with_capacity(capacity);
for _ in 0..capacity {
buffer.push(UnsafeCell::new(T::default()));
}
let buffer = buffer.into_boxed_slice();
// Build the flow state.
let mut flow_state = FlowState {
buffer,
next_writable_seq: AtomicU64::new(0),
next_publishable_seq: AtomicU64::new(0),
next_receivable_seqs: Default::default(),
};
// Add subscribers to the state.
let mut subscriber_seqs = Vec::with_capacity(SUB);
for _ in 0..SUB {
subscriber_seqs.push(flow_state.add_subscriber_seq());
}
// Finalize flow state and wrap subscriber
// sequences in the subscriber API.
let flow_state = Arc::new(flow_state);
let subscribers: Vec<FlowSubscriber<T>> = subscriber_seqs
.into_iter()
.map(|seq| FlowSubscriber {
flow_state: flow_state.clone(),
next_receivable_seq: seq,
})
.collect();
Ok((Self { state: flow_state }, subscribers.try_into().unwrap()))
}
/// Tries to claim the next publishable
/// sequence in the flow, returning
/// a [`UnpublishedData`] iff successful.
pub fn try_next(&mut self) -> Result<UnpublishedData<T>, Error> {
if let Some(next) = self.state.try_claim_publishable() {
let next_item = UnpublishedData {
flow: self,
sequence: next,
data: unsafe { self.state.get_mut(next) },
};
Ok(next_item)
} else {
Err(Error::Full)
}
}
/// Awaits and claims the next publishable sequence
/// in the flow, returning a [`UnpublishedData`]
/// iff successful.
pub async fn next(&mut self) -> Result<UnpublishedData<T>, Error> {
loop {
if let Some(next) = self.state.try_claim_publishable() {
let next_item = UnpublishedData {
flow: self,
sequence: next,
data: unsafe { self.state.get_mut(next) },
};
return Ok(next_item);
} else {
crate::async_support::yield_now().await;
}
}
}
#[cfg(feature = "dynamic-sub")]
/// Connects a new subscription to an _active_ flow.
pub fn subscribe(&self) -> FlowSubscriber<T> {
FlowSubscriber {
flow_state: self.state.clone(),
next_receivable_seq: self.state.add_subscriber_seq_dyn(),
}
}
}
/// Internal state of a [`Flow`].
///
/// This state is placed in a separate data
/// structure from the rest of a [`Flow`]
/// to simplify sharing references to the state
/// between a flow and it's subscribers.
struct FlowState<T: Flows> {
/// Pre-allocated contiguous buffer of
/// data entries in the flow.
///
/// This buffer is a ring buffer: When it
/// is full, writes "wrap" around to the
/// beginning of the buffer, overwriting
/// the oldest data.
///
/// Each data entry in the buffer is
/// wrapped in an [`UnsafeCell`], enabling
/// concurrent tasks to immutably read
/// the same data at the same time.
buffer: Box<[UnsafeCell<T>]>,
/// The sequence number that will be assigned
/// to the _next_ data entry written into the flow.
next_writable_seq: AtomicU64,
/// The sequence number of the next data entry
/// that will become readable by this barrier's
/// subscriber(s).
///
/// All data entries with sequences less than
/// this number are assumed to be readable.
next_publishable_seq: AtomicU64,
/// The sequence numbers of the next data entry
/// that will be read by each of the flow's
/// subscriber(s).
///
/// All data entries with sequences less than
/// the _lowest_ of these sequence numbers are
/// assumed to be overwritable.
#[cfg(not(feature = "dynamic-sub"))]
next_receivable_seqs: Vec<Weak<AtomicU64>>,
#[cfg(feature = "dynamic-sub")]
next_receivable_seqs: spin::RwLock<Vec<Weak<AtomicU64>>>,
}
impl<T> FlowState<T>
where
T: Flows,
{
#[cfg(feature = "dynamic-sub")]
/// Adds and returns a new subscriber sequence
/// number to a potentially active flow.
fn add_subscriber_seq_dyn(&self) -> Arc<AtomicU64> {
let next_receivable_seq = Arc::new(AtomicU64::new(0));
self.next_receivable_seqs
.write()
.push(Arc::downgrade(&next_receivable_seq));
next_receivable_seq
}
/// Adds and returns a new subscriber sequence
/// number to the flow.
fn add_subscriber_seq(&mut self) -> Arc<AtomicU64> {
let next_receivable_seq = Arc::new(AtomicU64::new(0));
// Lock-free path.
#[cfg(not(feature = "dynamic-sub"))]
self.next_receivable_seqs
.push(Arc::downgrade(&next_receivable_seq));
// Spin-locking path.
#[cfg(feature = "dynamic-sub")]
self.next_receivable_seqs
.write()
.push(Arc::downgrade(&next_receivable_seq));
next_receivable_seq
}
/// Tries to claim and return the next
/// publishable data sequence in the flow.
///
/// Iff `Some(sequence)` is returned, the
/// sequence _must_ be published via
/// [`Self::try_publish`], or the flow
/// will stall from backpressure.
///
/// Iff `None` is returned, the flow is full.
#[inline(always)]
fn try_claim_publishable(&self) -> Option<u64> {
let next_writable = self.next_writable_seq.load(DEFAULT_ATOMIC_ORDERING);
// Calculate the minimum receivable sequence
// across all subscribers, defaulting to the
// current sequence that's publishable.
let mut min_receivable_seq = self.next_publishable_seq.load(DEFAULT_ATOMIC_ORDERING);
// Lock-free path.
#[cfg(not(feature = "dynamic-sub"))]
for next_received_seq in self.next_receivable_seqs.iter() {
if let Some(seq) = next_received_seq.upgrade() {
min_receivable_seq = min_receivable_seq.min(seq.load(DEFAULT_ATOMIC_ORDERING));
}
}
// Spin-locking path.
#[cfg(feature = "dynamic-sub")]
for next_received_seq in self.next_receivable_seqs.read().iter() {
if let Some(seq) = next_received_seq.upgrade() {
min_receivable_seq = min_receivable_seq.min(seq.load(DEFAULT_ATOMIC_ORDERING));
}
}
// Only claim if there's space.
if min_receivable_seq + self.buffer.len() as u64 > next_writable
&& self
.next_writable_seq
.compare_exchange(
next_writable,
next_writable + 1,
DEFAULT_ATOMIC_ORDERING,
DEFAULT_ATOMIC_ORDERING,
)
.is_ok()
{
return Some(next_writable);
}
None
}
/// Tries to publish `sequence`, returning
/// true iff the sequence was published.
#[inline(always)]
fn try_publish(&self, sequence: u64) -> bool {
self.next_publishable_seq
.compare_exchange_weak(
sequence,
sequence + 1,
DEFAULT_ATOMIC_ORDERING,
DEFAULT_ATOMIC_ORDERING,
)
.is_ok()
}
/// Returns a reference to the data at `sequence`.
///
/// Refer to [`Self::get_mut`] for information
/// on the safety properties of this function.
///
/// # Panics
///
/// Iff any other thread attemps to acquire a _mutable_
/// reference to `sequence` at the same time.
#[allow(clippy::mut_from_ref)]
#[inline(always)]
unsafe fn get(&self, sequence: u64) -> &T {
// Convert sequence to an queue index.
let index = (self.buffer.len() - 1) & sequence as usize;
// Array access will always be within bounds.
&*self.buffer.get_unchecked(index).get()
}
/// Returns a mutable reference to the data at `sequence`.
///
/// # Safety
///
/// This function is unsafe because it _can_ return
/// multiple mutable references to the sae data.
///
/// This function _is_ safe to call from any task which
/// has successfully claimed a sequence number via
/// [`Self::try_claim_publishable`] and
/// has not yet published that sequence number
/// via [`Self::try_publish`]. In this scenario,
/// the task is guaranteed to be the only one with
/// read/write access to the data.
///
/// This function's behavior is undefined if the task
/// (having claimed a sequence number via
/// [`Self::try_claim_publishable`]) calls this
/// function _repeatedly_ with the same sequence number.
///
/// # Panics
///
/// Iff the same or different tasks attempt to acquire
/// more than one _mutable_ reference to `sequence`.
#[allow(clippy::mut_from_ref)]
#[inline(always)]
unsafe fn get_mut(&self, sequence: u64) -> &mut T {
// Convert sequence to an queue index.
let index = (self.buffer.len() - 1) & sequence as usize;
// Array access will always be within bounds.
&mut *self.buffer.get_unchecked(index).get()
}
}
impl<T> Debug for FlowState<T>
where
T: Flows,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Flow")
.field("capacity", &self.buffer.len())
.field("next_writable_seq", &self.next_writable_seq)
.field("next_publishable_seq", &self.next_publishable_seq)
.field("next_receivable_seqs", &self.next_receivable_seqs)
.finish()
}
}
/// Subscriber which receives data from a [`Flow`].
pub struct FlowSubscriber<T: Flows> {
flow_state: Arc<FlowState<T>>,
/// See [`FlowState::next_receivable_seqs`].
next_receivable_seq: Arc<AtomicU64>,
}
impl<T: Flows> FlowSubscriber<T> {
/// Tries to receive the next message from
/// the flow, returning a [`PublishedData`]
/// iff successful.
pub fn try_next(&mut self) -> Result<PublishedData<T>, Error> {
if let Some(next) = self.receivable_seqs().next() {
let data = PublishedData {
subscription: self,
sequence: next,
data: unsafe { self.flow_state.get(next) },
};
Ok(data)
} else {
Err(Error::Ahead)
}
}
/// Awaits and receives the next message from
/// the flow, returning a [`PublishedData`]
/// iff successful.
pub async fn next(&mut self) -> Result<PublishedData<T>, Error> {
loop {
if let Some(next) = self.receivable_seqs().next() {
let data = PublishedData {
subscription: self,
sequence: next,
data: unsafe { self.flow_state.get(next) },
};
return Ok(data);
} else {
crate::async_support::yield_now().await;
}
}
}
/// Returns the range of data sequence numbers
/// that are receivable by this subscriber.
#[inline(always)]
fn receivable_seqs(&self) -> Range<u64> {
self.next_receivable_seq.load(DEFAULT_ATOMIC_ORDERING)
..self
.flow_state
.next_publishable_seq
.load(DEFAULT_ATOMIC_ORDERING)
}
/// Marks all sequences up to (and including)
/// `sequence` as received by this subscriber.
#[inline(always)]
fn receive_up_to(&self, sequence: u64) {
self.next_receivable_seq
.fetch_max(sequence + 1, DEFAULT_ATOMIC_ORDERING);
}
}
impl<T> Debug for FlowSubscriber<T>
where
T: Flows,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("OutBarrier")
.field("flow_state", &self.flow_state)
.field("next_receivable_seq", &self.next_receivable_seq)
.finish()
}
}
// Flow states may be sent between threads and
// safely accessed concurrently.
unsafe impl<T> Send for FlowState<T> where T: Flows {}
unsafe impl<T> Sync for FlowState<T> where T: Flows {}
/// Blanket trait for data in a [`Flow`].
pub trait Flows: Default + Send + Sync + 'static {}
impl<T> Flows for T where T: Default + Send + Sync + 'static {}
/// Reference to mutable, unpublished data in a [`Flow`].
///
/// When this reference is dropped, the data
/// is marked as published into the [`Flow`].
#[derive(Debug)]
pub struct UnpublishedData<'a, T: Flows> {
flow: &'a Flow<T>,
sequence: u64,
data: &'a mut T,
}
impl<'a, T: Flows> UnpublishedData<'a, T> {
/// Returns the data's sequence number.
pub fn sequence(&self) -> u64 {
self.sequence
}
/// Publishes `data` into this sequence.
pub fn publish(self, data: T) {
*self.data = data;
drop(self)
}
}
impl<'a, T: Flows> Deref for UnpublishedData<'a, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
self.data
}
}
impl<'a, T: Flows> DerefMut for UnpublishedData<'a, T> {
fn deref_mut(&mut self) -> &mut Self::Target {
self.data
}
}
impl<'a, T: Flows> Drop for UnpublishedData<'a, T> {
fn drop(&mut self) {
while !self.flow.state.try_publish(self.sequence) {}
}
}
/// Reference to immutable, published data in a [`Flow`].
///
/// When this reference is dropped, the data
/// is marked as received from the [`Flow`].
#[derive(Debug)]
pub struct PublishedData<'a, T: Flows> {
subscription: &'a FlowSubscriber<T>,
sequence: u64,
data: &'a T,
}
impl<'a, T: Flows> PublishedData<'a, T> {
/// Returns the data's sequence number.
pub fn sequence(&self) -> u64 {
self.sequence
}
}
impl<'a, T: Flows> Deref for PublishedData<'a, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
self.data
}
}
impl<'a, T: Flows> Drop for PublishedData<'a, T> {
fn drop(&mut self) {
self.subscription.receive_up_to(self.sequence);
}
}
/// Enumeration of non-retryable errors
/// that may happen while using flows.
#[derive(Debug, Snafu)]
pub enum Error {
/// Flow buffers _must_ be a power of two
/// (e.g., `2`, `4`, `256`, `2048`...).
UnsupportedCapacity { capacity: usize },
/// Publishing is temporarily impossible:
/// the flow is full of unreceived data.
Full,
/// The flow may or may not contain data, but the
/// subscriber has already read all data presently
/// in the flow.
Ahead,
}
/// The default atomic operation ordering we use
/// when we're not sure which to use.
const DEFAULT_ATOMIC_ORDERING: Ordering = Ordering::SeqCst;
#[cfg(test)]
mod test {
use super::*;
/// Tests basic API functionality.
#[test]
fn pubs_and_subs() -> Result<(), crate::Error> {
// Prepare pubsub.
let (mut publisher, [mut subscriber]) = Flow::new(2)?;
// Publish some data.
let mut data = publisher.try_next().unwrap();
*data = 42u32;
assert_eq!(0, data.sequence());
drop(data);
// Check barrier sequences.
assert_eq!(0..1, subscriber.receivable_seqs());
// Receive some data.
let data = subscriber.try_next().unwrap();
assert!(42u32 == *data);
drop(data);
// Check barrier sequences.
assert_eq!(1..1, subscriber.receivable_seqs());
Ok(())
}
}