remoc/robj/lazy.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
//! Lazy transmission of values.
//!
//! This allows a remote endpoint to optionally request the transmission of a value.
//! For example, a client may only be interested sometimes in the value of a field
//! of a larger struct.
//! By wrapping the value of this field in a [Lazy], the value of the field is
//! not initially transmitted with the struct, but the client can request it by
//! calling [Lazy::get] if interested.
//! While this can save transmission bandwidth the drawback is an additional
//! delay of the connection round-trip time when the lazy value is requested.
//!
//! This can be forwarded over multiple remote endpoints.
//!
//! # Example
//!
//! In the following example the client sends a message to the server.
//! The value of the field `big_data` is not initially transmitted, but
//! retrieved when the server calls `get()` on it.
//!
//! ```
//! use remoc::prelude::*;
//! use remoc::robj::lazy::Lazy;
//!
//! #[derive(Debug, serde::Serialize, serde::Deserialize)]
//! struct Msg {
//! data: u32,
//! big_data: Lazy<String>,
//! }
//!
//! // This would be run on the client.
//! async fn client(mut tx: rch::base::Sender<Msg>) {
//! let msg = Msg { data: 123, big_data: Lazy::new("long data".to_string()) };
//! tx.send(msg).await.unwrap();
//! }
//!
//! // This would be run on the server.
//! async fn server(mut rx: rch::base::Receiver<Msg>) {
//! let msg = rx.recv().await.unwrap().unwrap();
//! assert_eq!(msg.data, 123);
//! assert_eq!(*msg.big_data.get().await.unwrap(), "long data");
//! }
//! # tokio_test::block_on(remoc::doctest::client_server(client, server));
//! ```
//!
use futures::{
future::{self, BoxFuture, MaybeDone},
Future, FutureExt,
};
use serde::{Deserialize, Serialize};
use std::{error::Error, fmt, marker::PhantomData, ops::Deref, pin::Pin, sync::Arc};
use tokio::sync::Mutex;
use crate::{
chmux, codec,
rch::{base, mpsc, oneshot},
RemoteSend,
};
/// An error occurred during fetching a lazily transmitted value.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum FetchError {
/// Provider dropped before getting the value.
Dropped,
/// Receiving from a remote endpoint failed.
RemoteReceive(base::RecvError),
/// Connecting a sent channel failed.
RemoteConnect(chmux::ConnectError),
/// Listening for a connection from a received channel failed.
RemoteListen(chmux::ListenerError),
}
impl fmt::Display for FetchError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::Dropped => write!(f, "lazy provider dropped"),
Self::RemoteReceive(err) => write!(f, "receive error: {err}"),
Self::RemoteConnect(err) => write!(f, "connect error: {err}"),
Self::RemoteListen(err) => write!(f, "listen error: {err}"),
}
}
}
impl From<oneshot::RecvError> for FetchError {
fn from(err: oneshot::RecvError) -> Self {
match err {
oneshot::RecvError::Closed => Self::Dropped,
oneshot::RecvError::RemoteReceive(err) => Self::RemoteReceive(err),
oneshot::RecvError::RemoteConnect(err) => Self::RemoteConnect(err),
oneshot::RecvError::RemoteListen(err) => Self::RemoteListen(err),
}
}
}
impl Error for FetchError {}
/// Lazy provider.
///
/// Stores a value and sends it to the [lazy consumer](Lazy)
/// when it requests the value.
///
/// If the lazy provider is dropped, the stored value is dropped and
/// the lazy consumer cannot request it anymore.
pub struct Provider {
keep_tx: Option<tokio::sync::oneshot::Sender<()>>,
}
impl fmt::Debug for Provider {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Provider").finish()
}
}
impl Provider {
/// Keeps the provider alive until the value is requested
/// or not required anymore.
pub fn keep(mut self) {
let _ = self.keep_tx.take().unwrap().send(());
}
/// Waits until the lazy provider can be safely dropped.
///
/// This is the case when the value is requested by the [lazy consumer](Lazy)
/// or the consumer is dropped.
pub async fn done(&mut self) {
self.keep_tx.as_mut().unwrap().closed().await
}
}
impl Drop for Provider {
fn drop(&mut self) {
// empty
}
}
/// Lazy value.
///
/// Allow the reception of a value when requested.
///
/// See [module-level documentation](self) for details.
#[derive(Serialize, Deserialize)]
#[serde(bound(serialize = "T: RemoteSend, Codec: codec::Codec"))]
#[serde(bound(deserialize = "T: RemoteSend, Codec: codec::Codec"))]
pub struct Lazy<T, Codec = codec::Default> {
request_tx: mpsc::Sender<oneshot::Sender<T, Codec>, Codec, 1>,
#[serde(skip)]
#[serde(default)]
#[allow(clippy::type_complexity)]
fetch_task: Arc<Mutex<Option<Pin<Box<MaybeDone<BoxFuture<'static, Result<Arc<T>, FetchError>>>>>>>>,
}
impl<T, Codec> fmt::Debug for Lazy<T, Codec> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Lazy").finish()
}
}
impl<T, Codec> Lazy<T, Codec>
where
T: RemoteSend,
Codec: codec::Codec,
{
/// Creates a new lazy value that will receive the specified value.
///
/// The value is stored locally until [get](Self::get) is called or this
/// object is dropped.
pub fn new(value: T) -> Self {
Self::new_future(async move { value })
}
/// Creates a new lazy value that will receive the value returned by the
/// specified future.
///
/// The future is stored unevaluated until [get](Self::get) is called or this
/// object is dropped.
pub fn new_future<F>(value_fut: F) -> Self
where
F: Future<Output = T> + Send + 'static,
{
let (lazy, provider) = Self::provided_future(value_fut);
provider.keep();
lazy
}
/// Creates a new pair of lazy value and provider with the specified value.
pub fn provided(value: T) -> (Self, Provider) {
Self::provided_future(async move { value })
}
/// Creates a new pair of lazy value and provider with the value returned by
/// the specified future.
pub fn provided_future<F>(value_fut: F) -> (Self, Provider)
where
F: Future<Output = T> + Send + 'static,
{
let (request_tx, request_rx) = mpsc::channel::<oneshot::Sender<T, Codec>, _>(1);
let request_tx = request_tx.set_buffer::<1>();
let mut request_rx = request_rx.set_buffer::<1>();
let (keep_tx, keep_rx) = tokio::sync::oneshot::channel();
tokio::spawn(async move {
tokio::select! {
res = request_rx.recv() => {
if let Ok(Some(value_tx)) = res {
let value = value_fut.await;
let _ = value_tx.send(value);
}
},
Err(_) = keep_rx => (),
}
});
let provider = Provider { keep_tx: Some(keep_tx) };
let lazy = Lazy { request_tx, fetch_task: Default::default() };
(lazy, provider)
}
/// Fetches and caches the value from the provider.
async fn fetch(&self) {
let mut fetch_task = self.fetch_task.lock().await;
if fetch_task.is_none() {
let req_tx = self.request_tx.clone();
*fetch_task = Some(Box::pin(future::maybe_done(
async move {
let (value_tx, value_rx) = oneshot::channel();
let _ = req_tx.send(value_tx).await;
let value = value_rx.await?;
Ok(Arc::new(value))
}
.boxed(),
)));
}
fetch_task.as_mut().unwrap().await;
}
/// Requests the value and returns a reference to it.
///
/// The value is stored locally once received and subsequent
/// invocations of this function will return a reference to
/// the local copy.
#[inline]
pub async fn get(&self) -> Result<Ref<'_, T>, FetchError> {
self.fetch().await;
let mut res_task = self.fetch_task.lock().await;
match res_task.as_mut().unwrap().as_mut().output_mut().unwrap() {
Ok(value) => Ok(Ref { value: value.clone(), _lifetime: PhantomData }),
Err(err) => Err(err.clone()),
}
}
/// Consumes this object and returns the value.
#[inline]
pub async fn into_inner(self) -> Result<T, FetchError> {
self.fetch().await;
let mut res_task = self.fetch_task.lock().await;
res_task.as_mut().unwrap().as_mut().take_output().unwrap().map(|arc| match Arc::try_unwrap(arc) {
Ok(value) => value,
Err(_) => unreachable!("no other reference can exist"),
})
}
}
/// A reference to a lazily received value.
pub struct Ref<'a, T> {
value: Arc<T>,
_lifetime: PhantomData<&'a ()>,
}
impl<'a, T> fmt::Debug for Ref<'a, T>
where
T: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", &**self)
}
}
impl<'a, T> Deref for Ref<'a, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl<'a, T> Drop for Ref<'a, T> {
fn drop(&mut self) {
// empty
}
}