remoc/rch/mpsc/mod.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
//! Multi producer single customer remote channel.
//!
//! The sender and receiver can both be sent to remote endpoints.
//! The channel also works if both halves are local.
//! Forwarding over multiple connections is supported.
//!
//! This has similar functionality as [tokio::sync::mpsc] with the additional
//! ability to work over remote connections.
//!
//! # Example
//!
//! In the following example the client sends a number and an MPSC channel sender to the server.
//! The server counts to the number and sends each value to the client over the MPSC channel.
//!
//! ```
//! use remoc::prelude::*;
//!
//! #[derive(Debug, serde::Serialize, serde::Deserialize)]
//! struct CountReq {
//! up_to: u32,
//! seq_tx: rch::mpsc::Sender<u32>,
//! }
//!
//! // This would be run on the client.
//! async fn client(mut tx: rch::base::Sender<CountReq>) {
//! let (seq_tx, mut seq_rx) = rch::mpsc::channel(1);
//! tx.send(CountReq { up_to: 4, seq_tx }).await.unwrap();
//!
//! assert_eq!(seq_rx.recv().await.unwrap(), Some(0));
//! assert_eq!(seq_rx.recv().await.unwrap(), Some(1));
//! assert_eq!(seq_rx.recv().await.unwrap(), Some(2));
//! assert_eq!(seq_rx.recv().await.unwrap(), Some(3));
//! assert_eq!(seq_rx.recv().await.unwrap(), None);
//! }
//!
//! // This would be run on the server.
//! async fn server(mut rx: rch::base::Receiver<CountReq>) {
//! while let Some(CountReq { up_to, seq_tx }) = rx.recv().await.unwrap() {
//! for i in 0..up_to {
//! seq_tx.send(i).await.unwrap();
//! }
//! }
//! }
//! # tokio_test::block_on(remoc::doctest::client_server(client, server));
//! ```
//!
use bytes::Buf;
use serde::{de::DeserializeOwned, Serialize};
use super::{base, ClosedReason, RemoteSendError};
use crate::{
chmux, codec,
rch::{BACKCHANNEL_MSG_CLOSE, BACKCHANNEL_MSG_ERROR},
RemoteSend,
};
mod distributor;
mod receiver;
mod sender;
pub use distributor::{DistributedReceiverHandle, Distributor};
pub use receiver::{Receiver, RecvError, TryRecvError};
pub use sender::{Permit, SendError, Sender, TrySendError};
/// Creates a bounded channel for communicating between asynchronous tasks with back pressure.
///
/// The sender and receiver may be sent to remote endpoints via channels.
pub fn channel<T, Codec>(local_buffer: usize) -> (Sender<T, Codec>, Receiver<T, Codec>)
where
T: RemoteSend,
{
assert!(local_buffer > 0, "local_buffer must not be zero");
let (tx, rx) = tokio::sync::mpsc::channel(local_buffer);
let (closed_tx, closed_rx) = tokio::sync::watch::channel(None);
let (remote_send_err_tx, remote_send_err_rx) = tokio::sync::watch::channel(None);
let sender = Sender::new(tx, closed_rx, remote_send_err_rx);
let receiver = Receiver::new(rx, closed_tx, false, remote_send_err_tx, None);
(sender, receiver)
}
/// Send implementation for deserializer of Sender and serializer of Receiver.
async fn send_impl<T, Codec>(
mut rx: tokio::sync::mpsc::Receiver<Result<T, RecvError>>, raw_tx: chmux::Sender,
mut raw_rx: chmux::Receiver, remote_send_err_tx: tokio::sync::watch::Sender<Option<RemoteSendError>>,
closed_tx: tokio::sync::watch::Sender<Option<ClosedReason>>, max_item_size: usize,
) where
T: Serialize + Send + 'static,
Codec: codec::Codec,
{
// Encode data using remote sender.
let mut remote_tx = base::Sender::<Result<T, RecvError>, Codec>::new(raw_tx);
remote_tx.set_max_item_size(max_item_size);
// Process events.
loop {
tokio::select! {
biased;
// Back channel message from remote endpoint.
backchannel_msg = raw_rx.recv() => {
match backchannel_msg {
Ok(Some(mut msg)) if msg.remaining() >= 1 => {
match msg.get_u8() {
BACKCHANNEL_MSG_CLOSE => {
let _ = remote_send_err_tx.send(Some(RemoteSendError::Closed));
let _ = closed_tx.send(Some(ClosedReason::Closed));
break;
}
BACKCHANNEL_MSG_ERROR => {
let _ = remote_send_err_tx.send(Some(RemoteSendError::Forward));
let _ = closed_tx.send(Some(ClosedReason::Failed));
break;
}
_ => (),
}
},
Ok(Some(_)) => (),
Ok(None) => {
let _ = remote_send_err_tx.send(Some(RemoteSendError::Send(
base::SendErrorKind::Send(chmux::SendError::Closed { gracefully: false })
)));
let _ = closed_tx.send(Some(ClosedReason::Dropped));
break;
}
_ => {
let _ = remote_send_err_tx.send(Some(RemoteSendError::Send(
base::SendErrorKind::Send(chmux::SendError::ChMux)
)));
let _ = closed_tx.send(Some(ClosedReason::Failed));
break;
},
}
}
// Data to send to remote endpoint.
value_opt = rx.recv() => {
match value_opt {
Some(value) => {
if let Err(err) = remote_tx.send(value).await {
let _ = remote_send_err_tx.send(Some(RemoteSendError::Send(err.kind)));
let _ = closed_tx.send(Some(ClosedReason::Failed));
}
}
None => break,
}
}
}
}
}
/// Receive implementation for serializer of Sender and deserializer of Receiver.
async fn recv_impl<T, Codec>(
tx: &tokio::sync::mpsc::Sender<Result<T, RecvError>>, mut raw_tx: chmux::Sender, raw_rx: chmux::Receiver,
mut remote_send_err_rx: tokio::sync::watch::Receiver<Option<RemoteSendError>>,
mut closed_rx: tokio::sync::watch::Receiver<Option<ClosedReason>>, max_item_size: usize,
) where
T: DeserializeOwned + Send + 'static,
Codec: codec::Codec,
{
// Decode raw received data using remote receiver.
let mut remote_rx = base::Receiver::<Result<T, RecvError>, Codec>::new(raw_rx);
remote_rx.set_max_item_size(max_item_size);
// Process events.
loop {
tokio::select! {
biased;
// Channel closure requested locally.
res = closed_rx.changed() => {
match res {
Ok(()) => {
let reason = closed_rx.borrow().clone();
match reason {
Some(ClosedReason::Closed) => {
let _ = raw_tx.send(vec![BACKCHANNEL_MSG_CLOSE].into()).await;
}
Some(ClosedReason::Dropped) => break,
Some(ClosedReason::Failed) => {
let _ = raw_tx.send(vec![BACKCHANNEL_MSG_ERROR].into()).await;
}
None => (),
}
},
Err(_) => break,
}
}
// Notify remote endpoint of error.
Ok(()) = remote_send_err_rx.changed() => {
if remote_send_err_rx.borrow().as_ref().is_some() {
let _ = raw_tx.send(vec![BACKCHANNEL_MSG_ERROR].into()).await;
}
}
// Data received from remote endpoint.
res = remote_rx.recv() => {
let mut is_final_err = false;
let value = match res {
Ok(Some(value)) => value,
Ok(None) => break,
Err(err) => {
is_final_err = err.is_final();
Err(RecvError::RemoteReceive(err))
},
};
if tx.send(value).await.is_err() {
break;
}
if is_final_err {
break;
}
}
}
}
}