2022-04-06 00:00:29 +02:00
|
|
|
//! A queue for sending values between asynchronous tasks.
|
|
|
|
//!
|
|
|
|
//! It can be used concurrently by multiple producers (senders) and multiple
|
|
|
|
//! consumers (receivers), i.e. it is an "MPMC channel".
|
|
|
|
//!
|
2022-06-03 14:27:33 +02:00
|
|
|
//! Receivers are competing for messages. So a message that is received by
|
|
|
|
//! one receiver is not received by any other.
|
|
|
|
//!
|
2022-04-06 00:00:29 +02:00
|
|
|
//! This queue takes a Mutex type so that various
|
|
|
|
//! targets can be attained. For example, a ThreadModeMutex can be used
|
|
|
|
//! for single-core Cortex-M targets where messages are only passed
|
|
|
|
//! between tasks running in thread mode. Similarly, a CriticalSectionMutex
|
|
|
|
//! can also be used for single-core targets where messages are to be
|
|
|
|
//! passed from exception mode e.g. out of an interrupt handler.
|
|
|
|
//!
|
|
|
|
//! This module provides a bounded channel that has a limit on the number of
|
|
|
|
//! messages that it can store, and if this limit is reached, trying to send
|
|
|
|
//! another message will result in an error being returned.
|
|
|
|
//!
|
|
|
|
|
|
|
|
use core::cell::RefCell;
|
2022-07-29 21:58:35 +02:00
|
|
|
use core::future::Future;
|
2022-04-06 00:00:29 +02:00
|
|
|
use core::pin::Pin;
|
2022-06-12 22:15:44 +02:00
|
|
|
use core::task::{Context, Poll};
|
2022-04-06 00:00:29 +02:00
|
|
|
|
|
|
|
use heapless::Deque;
|
|
|
|
|
|
|
|
use crate::blocking_mutex::raw::RawMutex;
|
|
|
|
use crate::blocking_mutex::Mutex;
|
|
|
|
use crate::waitqueue::WakerRegistration;
|
|
|
|
|
|
|
|
/// Send-only access to a [`Channel`].
|
|
|
|
pub struct Sender<'ch, M, T, const N: usize>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
channel: &'ch Channel<M, T, N>,
|
|
|
|
}
|
|
|
|
|
2022-04-07 15:15:44 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Clone for Sender<'ch, M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
fn clone(&self) -> Self {
|
2022-06-12 22:15:44 +02:00
|
|
|
Sender { channel: self.channel }
|
2022-04-07 15:15:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 11:22:01 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Copy for Sender<'ch, M, T, N> where M: RawMutex {}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Sender<'ch, M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
/// Sends a value.
|
|
|
|
///
|
|
|
|
/// See [`Channel::send()`]
|
|
|
|
pub fn send(&self, message: T) -> SendFuture<'ch, M, T, N> {
|
|
|
|
self.channel.send(message)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately send a message.
|
|
|
|
///
|
|
|
|
/// See [`Channel::send()`]
|
|
|
|
pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> {
|
|
|
|
self.channel.try_send(message)
|
|
|
|
}
|
2023-08-09 11:50:26 +02:00
|
|
|
|
|
|
|
/// Allows a poll_fn to poll until the channel is ready to send
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_ready_to_send()`]
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
self.channel.poll_ready_to_send(cx)
|
|
|
|
}
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 08:57:15 +02:00
|
|
|
/// Send-only access to a [`Channel`] without knowing channel size.
|
2022-04-11 13:33:48 +02:00
|
|
|
pub struct DynamicSender<'ch, T> {
|
|
|
|
channel: &'ch dyn DynamicChannel<T>,
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> Clone for DynamicSender<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
fn clone(&self) -> Self {
|
2022-06-12 22:15:44 +02:00
|
|
|
DynamicSender { channel: self.channel }
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 11:22:01 +02:00
|
|
|
impl<'ch, T> Copy for DynamicSender<'ch, T> {}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, M, T, const N: usize> From<Sender<'ch, M, T, N>> for DynamicSender<'ch, T>
|
2022-04-11 08:57:15 +02:00
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
fn from(s: Sender<'ch, M, T, N>) -> Self {
|
|
|
|
Self { channel: s.channel }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> DynamicSender<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
/// Sends a value.
|
|
|
|
///
|
|
|
|
/// See [`Channel::send()`]
|
2022-04-11 13:33:48 +02:00
|
|
|
pub fn send(&self, message: T) -> DynamicSendFuture<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
DynamicSendFuture {
|
|
|
|
channel: self.channel,
|
|
|
|
message: Some(message),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately send a message.
|
|
|
|
///
|
|
|
|
/// See [`Channel::send()`]
|
|
|
|
pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> {
|
|
|
|
self.channel.try_send_with_context(message, None)
|
|
|
|
}
|
2023-08-09 11:50:26 +02:00
|
|
|
|
|
|
|
/// Allows a poll_fn to poll until the channel is ready to send
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_ready_to_send()`]
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
self.channel.poll_ready_to_send(cx)
|
|
|
|
}
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
/// Receive-only access to a [`Channel`].
|
|
|
|
pub struct Receiver<'ch, M, T, const N: usize>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
channel: &'ch Channel<M, T, N>,
|
|
|
|
}
|
|
|
|
|
2022-04-07 15:15:44 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Clone for Receiver<'ch, M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
fn clone(&self) -> Self {
|
2022-06-12 22:15:44 +02:00
|
|
|
Receiver { channel: self.channel }
|
2022-04-07 15:15:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 11:22:01 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Copy for Receiver<'ch, M, T, N> where M: RawMutex {}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Receiver<'ch, M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
/// Receive the next value.
|
|
|
|
///
|
2023-08-11 11:58:22 +02:00
|
|
|
/// See [`Channel::receive()`].
|
|
|
|
pub fn receive(&self) -> ReceiveFuture<'_, M, T, N> {
|
|
|
|
self.channel.receive()
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately receive the next value.
|
|
|
|
///
|
2023-08-11 11:58:22 +02:00
|
|
|
/// See [`Channel::try_receive()`]
|
|
|
|
pub fn try_receive(&self) -> Result<T, TryReceiveError> {
|
|
|
|
self.channel.try_receive()
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
2023-08-09 11:50:26 +02:00
|
|
|
|
|
|
|
/// Allows a poll_fn to poll until the channel is ready to receive
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_ready_to_receive()`]
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
self.channel.poll_ready_to_receive(cx)
|
|
|
|
}
|
2023-08-11 11:30:29 +02:00
|
|
|
|
|
|
|
/// Poll the channel for the next item
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_receive()`]
|
|
|
|
pub fn poll_receive(&self, cx: &mut Context<'_>) -> Poll<T> {
|
|
|
|
self.channel.poll_receive(cx)
|
|
|
|
}
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 08:57:15 +02:00
|
|
|
/// Receive-only access to a [`Channel`] without knowing channel size.
|
2022-04-11 13:33:48 +02:00
|
|
|
pub struct DynamicReceiver<'ch, T> {
|
|
|
|
channel: &'ch dyn DynamicChannel<T>,
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> Clone for DynamicReceiver<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
fn clone(&self) -> Self {
|
2022-06-12 22:15:44 +02:00
|
|
|
DynamicReceiver { channel: self.channel }
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 11:22:01 +02:00
|
|
|
impl<'ch, T> Copy for DynamicReceiver<'ch, T> {}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> DynamicReceiver<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
/// Receive the next value.
|
|
|
|
///
|
2023-08-11 11:58:22 +02:00
|
|
|
/// See [`Channel::receive()`].
|
|
|
|
pub fn receive(&self) -> DynamicReceiveFuture<'_, T> {
|
|
|
|
DynamicReceiveFuture { channel: self.channel }
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately receive the next value.
|
|
|
|
///
|
2023-08-11 11:58:22 +02:00
|
|
|
/// See [`Channel::try_receive()`]
|
|
|
|
pub fn try_receive(&self) -> Result<T, TryReceiveError> {
|
|
|
|
self.channel.try_receive_with_context(None)
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
2023-08-09 11:50:26 +02:00
|
|
|
|
|
|
|
/// Allows a poll_fn to poll until the channel is ready to receive
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_ready_to_receive()`]
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
self.channel.poll_ready_to_receive(cx)
|
|
|
|
}
|
2023-08-11 11:30:29 +02:00
|
|
|
|
|
|
|
/// Poll the channel for the next item
|
|
|
|
///
|
|
|
|
/// See [`Channel::poll_receive()`]
|
|
|
|
pub fn poll_receive(&self, cx: &mut Context<'_>) -> Poll<T> {
|
|
|
|
self.channel.poll_receive(cx)
|
|
|
|
}
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, M, T, const N: usize> From<Receiver<'ch, M, T, N>> for DynamicReceiver<'ch, T>
|
2022-04-11 08:57:15 +02:00
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
fn from(s: Receiver<'ch, M, T, N>) -> Self {
|
|
|
|
Self { channel: s.channel }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
/// Future returned by [`Channel::receive`] and [`Receiver::receive`].
|
2023-02-24 20:01:41 +01:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2023-08-11 11:58:22 +02:00
|
|
|
pub struct ReceiveFuture<'ch, M, T, const N: usize>
|
2022-04-06 00:00:29 +02:00
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
channel: &'ch Channel<M, T, N>,
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
impl<'ch, M, T, const N: usize> Future for ReceiveFuture<'ch, M, T, N>
|
2022-04-06 00:00:29 +02:00
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
type Output = T;
|
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T> {
|
2023-08-11 11:30:29 +02:00
|
|
|
self.channel.poll_receive(cx)
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
/// Future returned by [`DynamicReceiver::receive`].
|
2023-02-24 20:01:41 +01:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2023-08-11 11:58:22 +02:00
|
|
|
pub struct DynamicReceiveFuture<'ch, T> {
|
2022-04-11 13:33:48 +02:00
|
|
|
channel: &'ch dyn DynamicChannel<T>,
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
impl<'ch, T> Future for DynamicReceiveFuture<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
type Output = T;
|
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<T> {
|
2023-08-11 11:58:22 +02:00
|
|
|
match self.channel.try_receive_with_context(Some(cx)) {
|
2022-04-11 08:57:15 +02:00
|
|
|
Ok(v) => Poll::Ready(v),
|
2023-08-11 11:58:22 +02:00
|
|
|
Err(TryReceiveError::Empty) => Poll::Pending,
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-26 00:53:35 +02:00
|
|
|
/// Future returned by [`Channel::send`] and [`Sender::send`].
|
2023-02-24 20:01:41 +01:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2022-04-06 00:00:29 +02:00
|
|
|
pub struct SendFuture<'ch, M, T, const N: usize>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
channel: &'ch Channel<M, T, N>,
|
|
|
|
message: Option<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'ch, M, T, const N: usize> Future for SendFuture<'ch, M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
type Output = ();
|
|
|
|
|
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
match self.message.take() {
|
2022-04-11 08:57:15 +02:00
|
|
|
Some(m) => match self.channel.try_send_with_context(m, Some(cx)) {
|
2022-04-06 00:00:29 +02:00
|
|
|
Ok(..) => Poll::Ready(()),
|
|
|
|
Err(TrySendError::Full(m)) => {
|
|
|
|
self.message = Some(m);
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => panic!("Message cannot be None"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'ch, M, T, const N: usize> Unpin for SendFuture<'ch, M, T, N> where M: RawMutex {}
|
|
|
|
|
2022-06-26 00:53:35 +02:00
|
|
|
/// Future returned by [`DynamicSender::send`].
|
2023-02-24 20:01:41 +01:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2022-04-11 13:33:48 +02:00
|
|
|
pub struct DynamicSendFuture<'ch, T> {
|
|
|
|
channel: &'ch dyn DynamicChannel<T>,
|
2022-04-11 08:57:15 +02:00
|
|
|
message: Option<T>,
|
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> Future for DynamicSendFuture<'ch, T> {
|
2022-04-11 08:57:15 +02:00
|
|
|
type Output = ();
|
|
|
|
|
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
match self.message.take() {
|
|
|
|
Some(m) => match self.channel.try_send_with_context(m, Some(cx)) {
|
|
|
|
Ok(..) => Poll::Ready(()),
|
|
|
|
Err(TrySendError::Full(m)) => {
|
|
|
|
self.message = Some(m);
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => panic!("Message cannot be None"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<'ch, T> Unpin for DynamicSendFuture<'ch, T> {}
|
2022-04-11 08:57:15 +02:00
|
|
|
|
2022-04-11 13:33:48 +02:00
|
|
|
trait DynamicChannel<T> {
|
2022-06-12 22:15:44 +02:00
|
|
|
fn try_send_with_context(&self, message: T, cx: Option<&mut Context<'_>>) -> Result<(), TrySendError<T>>;
|
2022-04-11 08:57:15 +02:00
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
fn try_receive_with_context(&self, cx: Option<&mut Context<'_>>) -> Result<T, TryReceiveError>;
|
2023-08-09 11:50:26 +02:00
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()>;
|
|
|
|
fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()>;
|
2023-08-11 11:30:29 +02:00
|
|
|
|
|
|
|
fn poll_receive(&self, cx: &mut Context<'_>) -> Poll<T>;
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
/// Error returned by [`try_receive`](Channel::try_receive).
|
2022-04-06 00:00:29 +02:00
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
2023-08-11 11:58:22 +02:00
|
|
|
pub enum TryReceiveError {
|
2022-04-06 00:00:29 +02:00
|
|
|
/// A message could not be received because the channel is empty.
|
|
|
|
Empty,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Error returned by [`try_send`](Channel::try_send).
|
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum TrySendError<T> {
|
|
|
|
/// The data could not be sent on the channel because the channel is
|
|
|
|
/// currently full and sending would require blocking.
|
|
|
|
Full(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ChannelState<T, const N: usize> {
|
|
|
|
queue: Deque<T, N>,
|
|
|
|
receiver_waker: WakerRegistration,
|
|
|
|
senders_waker: WakerRegistration,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, const N: usize> ChannelState<T, N> {
|
|
|
|
const fn new() -> Self {
|
|
|
|
ChannelState {
|
|
|
|
queue: Deque::new(),
|
|
|
|
receiver_waker: WakerRegistration::new(),
|
|
|
|
senders_waker: WakerRegistration::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
fn try_receive(&mut self) -> Result<T, TryReceiveError> {
|
|
|
|
self.try_receive_with_context(None)
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
fn try_receive_with_context(&mut self, cx: Option<&mut Context<'_>>) -> Result<T, TryReceiveError> {
|
2022-04-06 00:00:29 +02:00
|
|
|
if self.queue.is_full() {
|
|
|
|
self.senders_waker.wake();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(message) = self.queue.pop_front() {
|
|
|
|
Ok(message)
|
|
|
|
} else {
|
|
|
|
if let Some(cx) = cx {
|
|
|
|
self.receiver_waker.register(cx.waker());
|
|
|
|
}
|
2023-08-11 11:58:22 +02:00
|
|
|
Err(TryReceiveError::Empty)
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:30:29 +02:00
|
|
|
fn poll_receive(&mut self, cx: &mut Context<'_>) -> Poll<T> {
|
|
|
|
if self.queue.is_full() {
|
|
|
|
self.senders_waker.wake();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(message) = self.queue.pop_front() {
|
|
|
|
Poll::Ready(message)
|
|
|
|
} else {
|
|
|
|
self.receiver_waker.register(cx.waker());
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
fn poll_ready_to_receive(&mut self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-07-19 01:28:12 +02:00
|
|
|
self.receiver_waker.register(cx.waker());
|
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
if !self.queue.is_empty() {
|
|
|
|
Poll::Ready(())
|
|
|
|
} else {
|
|
|
|
Poll::Pending
|
|
|
|
}
|
2023-07-19 01:28:12 +02:00
|
|
|
}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
fn try_send(&mut self, message: T) -> Result<(), TrySendError<T>> {
|
|
|
|
self.try_send_with_context(message, None)
|
|
|
|
}
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
fn try_send_with_context(&mut self, message: T, cx: Option<&mut Context<'_>>) -> Result<(), TrySendError<T>> {
|
2022-04-06 00:00:29 +02:00
|
|
|
match self.queue.push_back(message) {
|
|
|
|
Ok(()) => {
|
|
|
|
self.receiver_waker.wake();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
Err(message) => {
|
|
|
|
if let Some(cx) = cx {
|
|
|
|
self.senders_waker.register(cx.waker());
|
|
|
|
}
|
|
|
|
Err(TrySendError::Full(message))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-19 01:28:12 +02:00
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
fn poll_ready_to_send(&mut self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-07-19 01:28:12 +02:00
|
|
|
self.senders_waker.register(cx.waker());
|
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
if !self.queue.is_full() {
|
|
|
|
Poll::Ready(())
|
|
|
|
} else {
|
|
|
|
Poll::Pending
|
|
|
|
}
|
2023-07-19 01:28:12 +02:00
|
|
|
}
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A bounded channel for communicating between asynchronous tasks
|
|
|
|
/// with backpressure.
|
|
|
|
///
|
|
|
|
/// The channel will buffer up to the provided number of messages. Once the
|
|
|
|
/// buffer is full, attempts to `send` new messages will wait until a message is
|
|
|
|
/// received from the channel.
|
|
|
|
///
|
|
|
|
/// All data sent will become available in the same order as it was sent.
|
|
|
|
pub struct Channel<M, T, const N: usize>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
inner: Mutex<M, RefCell<ChannelState<T, N>>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<M, T, const N: usize> Channel<M, T, N>
|
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
|
|
|
/// Establish a new bounded channel. For example, to create one with a NoopMutex:
|
|
|
|
///
|
|
|
|
/// ```
|
2022-08-22 22:00:06 +02:00
|
|
|
/// use embassy_sync::channel::Channel;
|
2022-08-22 21:46:09 +02:00
|
|
|
/// use embassy_sync::blocking_mutex::raw::NoopRawMutex;
|
2022-04-06 00:00:29 +02:00
|
|
|
///
|
|
|
|
/// // Declare a bounded channel of 3 u32s.
|
|
|
|
/// let mut channel = Channel::<NoopRawMutex, u32, 3>::new();
|
|
|
|
/// ```
|
|
|
|
pub const fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
inner: Mutex::new(RefCell::new(ChannelState::new())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lock<R>(&self, f: impl FnOnce(&mut ChannelState<T, N>) -> R) -> R {
|
2023-09-02 07:44:10 +02:00
|
|
|
self.inner.lock(|rc| f(&mut *unwrap!(rc.try_borrow_mut())))
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
fn try_receive_with_context(&self, cx: Option<&mut Context<'_>>) -> Result<T, TryReceiveError> {
|
|
|
|
self.lock(|c| c.try_receive_with_context(cx))
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2023-08-11 11:30:29 +02:00
|
|
|
/// Poll the channel for the next message
|
|
|
|
pub fn poll_receive(&self, cx: &mut Context<'_>) -> Poll<T> {
|
|
|
|
self.lock(|c| c.poll_receive(cx))
|
|
|
|
}
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
fn try_send_with_context(&self, m: T, cx: Option<&mut Context<'_>>) -> Result<(), TrySendError<T>> {
|
2022-04-11 08:57:15 +02:00
|
|
|
self.lock(|c| c.try_send_with_context(m, cx))
|
|
|
|
}
|
|
|
|
|
2023-07-19 01:28:12 +02:00
|
|
|
/// Allows a poll_fn to poll until the channel is ready to receive
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-07-19 01:28:12 +02:00
|
|
|
self.lock(|c| c.poll_ready_to_receive(cx))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Allows a poll_fn to poll until the channel is ready to send
|
2023-08-11 11:15:17 +02:00
|
|
|
pub fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-07-19 01:28:12 +02:00
|
|
|
self.lock(|c| c.poll_ready_to_send(cx))
|
|
|
|
}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
/// Get a sender for this channel.
|
|
|
|
pub fn sender(&self) -> Sender<'_, M, T, N> {
|
|
|
|
Sender { channel: self }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a receiver for this channel.
|
|
|
|
pub fn receiver(&self) -> Receiver<'_, M, T, N> {
|
|
|
|
Receiver { channel: self }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send a value, waiting until there is capacity.
|
|
|
|
///
|
|
|
|
/// Sending completes when the value has been pushed to the channel's queue.
|
|
|
|
/// This doesn't mean the value has been received yet.
|
|
|
|
pub fn send(&self, message: T) -> SendFuture<'_, M, T, N> {
|
|
|
|
SendFuture {
|
|
|
|
channel: self,
|
|
|
|
message: Some(message),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately send a message.
|
|
|
|
///
|
2022-06-15 09:05:48 +02:00
|
|
|
/// This method differs from [`send`](Channel::send) by returning immediately if the channel's
|
2022-04-06 00:00:29 +02:00
|
|
|
/// buffer is full, instead of waiting.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// If the channel capacity has been reached, i.e., the channel has `n`
|
|
|
|
/// buffered values where `n` is the argument passed to [`Channel`], then an
|
|
|
|
/// error is returned.
|
|
|
|
pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> {
|
|
|
|
self.lock(|c| c.try_send(message))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Receive the next value.
|
|
|
|
///
|
|
|
|
/// If there are no messages in the channel's buffer, this method will
|
|
|
|
/// wait until a message is sent.
|
2023-08-11 11:58:22 +02:00
|
|
|
pub fn receive(&self) -> ReceiveFuture<'_, M, T, N> {
|
|
|
|
ReceiveFuture { channel: self }
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Attempt to immediately receive a message.
|
|
|
|
///
|
|
|
|
/// This method will either receive a message from the channel immediately or return an error
|
|
|
|
/// if the channel is empty.
|
2023-08-11 11:58:22 +02:00
|
|
|
pub fn try_receive(&self) -> Result<T, TryReceiveError> {
|
|
|
|
self.lock(|c| c.try_receive())
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 08:57:15 +02:00
|
|
|
/// Implements the DynamicChannel to allow creating types that are unaware of the queue size with the
|
|
|
|
/// tradeoff cost of dynamic dispatch.
|
2022-04-11 13:33:48 +02:00
|
|
|
impl<M, T, const N: usize> DynamicChannel<T> for Channel<M, T, N>
|
2022-04-11 08:57:15 +02:00
|
|
|
where
|
|
|
|
M: RawMutex,
|
|
|
|
{
|
2022-06-12 22:15:44 +02:00
|
|
|
fn try_send_with_context(&self, m: T, cx: Option<&mut Context<'_>>) -> Result<(), TrySendError<T>> {
|
2022-04-11 08:57:15 +02:00
|
|
|
Channel::try_send_with_context(self, m, cx)
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:58:22 +02:00
|
|
|
fn try_receive_with_context(&self, cx: Option<&mut Context<'_>>) -> Result<T, TryReceiveError> {
|
|
|
|
Channel::try_receive_with_context(self, cx)
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
2023-08-09 11:50:26 +02:00
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
fn poll_ready_to_send(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
Channel::poll_ready_to_send(self, cx)
|
|
|
|
}
|
|
|
|
|
2023-08-11 11:15:17 +02:00
|
|
|
fn poll_ready_to_receive(&self, cx: &mut Context<'_>) -> Poll<()> {
|
2023-08-09 11:50:26 +02:00
|
|
|
Channel::poll_ready_to_receive(self, cx)
|
|
|
|
}
|
2023-08-11 11:30:29 +02:00
|
|
|
|
|
|
|
fn poll_receive(&self, cx: &mut Context<'_>) -> Poll<T> {
|
|
|
|
Channel::poll_receive(self, cx)
|
|
|
|
}
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use core::time::Duration;
|
|
|
|
|
|
|
|
use futures_executor::ThreadPool;
|
|
|
|
use futures_timer::Delay;
|
2022-07-29 21:58:35 +02:00
|
|
|
use futures_util::task::SpawnExt;
|
2022-08-22 15:51:44 +02:00
|
|
|
use static_cell::StaticCell;
|
2022-04-06 00:00:29 +02:00
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use super::*;
|
2022-04-06 00:00:29 +02:00
|
|
|
use crate::blocking_mutex::raw::{CriticalSectionRawMutex, NoopRawMutex};
|
|
|
|
|
|
|
|
fn capacity<T, const N: usize>(c: &ChannelState<T, N>) -> usize {
|
|
|
|
c.queue.capacity() - c.queue.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sending_once() {
|
|
|
|
let mut c = ChannelState::<u32, 3>::new();
|
|
|
|
assert!(c.try_send(1).is_ok());
|
|
|
|
assert_eq!(capacity(&c), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sending_when_full() {
|
|
|
|
let mut c = ChannelState::<u32, 3>::new();
|
|
|
|
let _ = c.try_send(1);
|
|
|
|
let _ = c.try_send(1);
|
|
|
|
let _ = c.try_send(1);
|
|
|
|
match c.try_send(2) {
|
|
|
|
Err(TrySendError::Full(2)) => assert!(true),
|
|
|
|
_ => assert!(false),
|
|
|
|
}
|
|
|
|
assert_eq!(capacity(&c), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn receiving_once_with_one_send() {
|
|
|
|
let mut c = ChannelState::<u32, 3>::new();
|
|
|
|
assert!(c.try_send(1).is_ok());
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(c.try_receive().unwrap(), 1);
|
2022-04-06 00:00:29 +02:00
|
|
|
assert_eq!(capacity(&c), 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn receiving_when_empty() {
|
|
|
|
let mut c = ChannelState::<u32, 3>::new();
|
2023-08-11 11:58:22 +02:00
|
|
|
match c.try_receive() {
|
|
|
|
Err(TryReceiveError::Empty) => assert!(true),
|
2022-04-06 00:00:29 +02:00
|
|
|
_ => assert!(false),
|
|
|
|
}
|
|
|
|
assert_eq!(capacity(&c), 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn simple_send_and_receive() {
|
|
|
|
let c = Channel::<NoopRawMutex, u32, 3>::new();
|
|
|
|
assert!(c.try_send(1).is_ok());
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(c.try_receive().unwrap(), 1);
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
2022-04-07 15:15:44 +02:00
|
|
|
#[test]
|
|
|
|
fn cloning() {
|
|
|
|
let c = Channel::<NoopRawMutex, u32, 3>::new();
|
|
|
|
let r1 = c.receiver();
|
|
|
|
let s1 = c.sender();
|
|
|
|
|
|
|
|
let _ = r1.clone();
|
|
|
|
let _ = s1.clone();
|
|
|
|
}
|
|
|
|
|
2022-04-11 08:57:15 +02:00
|
|
|
#[test]
|
|
|
|
fn dynamic_dispatch() {
|
|
|
|
let c = Channel::<NoopRawMutex, u32, 3>::new();
|
2022-04-11 13:33:48 +02:00
|
|
|
let s: DynamicSender<'_, u32> = c.sender().into();
|
|
|
|
let r: DynamicReceiver<'_, u32> = c.receiver().into();
|
2022-04-11 08:57:15 +02:00
|
|
|
|
|
|
|
assert!(s.try_send(1).is_ok());
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(r.try_receive().unwrap(), 1);
|
2022-04-11 08:57:15 +02:00
|
|
|
}
|
|
|
|
|
2022-04-06 00:00:29 +02:00
|
|
|
#[futures_test::test]
|
|
|
|
async fn receiver_receives_given_try_send_async() {
|
|
|
|
let executor = ThreadPool::new().unwrap();
|
|
|
|
|
2022-08-22 15:51:44 +02:00
|
|
|
static CHANNEL: StaticCell<Channel<CriticalSectionRawMutex, u32, 3>> = StaticCell::new();
|
|
|
|
let c = &*CHANNEL.init(Channel::new());
|
2022-04-06 00:00:29 +02:00
|
|
|
let c2 = c;
|
|
|
|
assert!(executor
|
|
|
|
.spawn(async move {
|
|
|
|
assert!(c2.try_send(1).is_ok());
|
|
|
|
})
|
|
|
|
.is_ok());
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(c.receive().await, 1);
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[futures_test::test]
|
|
|
|
async fn sender_send_completes_if_capacity() {
|
|
|
|
let c = Channel::<CriticalSectionRawMutex, u32, 1>::new();
|
|
|
|
c.send(1).await;
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(c.receive().await, 1);
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[futures_test::test]
|
|
|
|
async fn senders_sends_wait_until_capacity() {
|
|
|
|
let executor = ThreadPool::new().unwrap();
|
|
|
|
|
2022-08-22 15:51:44 +02:00
|
|
|
static CHANNEL: StaticCell<Channel<CriticalSectionRawMutex, u32, 1>> = StaticCell::new();
|
|
|
|
let c = &*CHANNEL.init(Channel::new());
|
2022-04-06 00:00:29 +02:00
|
|
|
assert!(c.try_send(1).is_ok());
|
|
|
|
|
|
|
|
let c2 = c;
|
|
|
|
let send_task_1 = executor.spawn_with_handle(async move { c2.send(2).await });
|
|
|
|
let c2 = c;
|
|
|
|
let send_task_2 = executor.spawn_with_handle(async move { c2.send(3).await });
|
|
|
|
// Wish I could think of a means of determining that the async send is waiting instead.
|
|
|
|
// However, I've used the debugger to observe that the send does indeed wait.
|
|
|
|
Delay::new(Duration::from_millis(500)).await;
|
2023-08-11 11:58:22 +02:00
|
|
|
assert_eq!(c.receive().await, 1);
|
2022-04-06 00:00:29 +02:00
|
|
|
assert!(executor
|
|
|
|
.spawn(async move {
|
|
|
|
loop {
|
2023-08-11 11:58:22 +02:00
|
|
|
c.receive().await;
|
2022-04-06 00:00:29 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.is_ok());
|
|
|
|
send_task_1.unwrap().await;
|
|
|
|
send_task_2.unwrap().await;
|
|
|
|
}
|
|
|
|
}
|