Organize replies to packets

This commit is contained in:
Joscha 2022-02-17 21:01:52 +01:00
parent 9931a932bf
commit c191262bd2
2 changed files with 62 additions and 0 deletions

60
cove-tui/src/replies.rs Normal file
View file

@ -0,0 +1,60 @@
use std::collections::HashMap;
use std::hash::Hash;
use std::result;
use std::time::Duration;
use tokio::sync::oneshot::{self, Receiver, Sender};
use tokio::time;
pub enum Error {
TimedOut,
Canceled,
}
pub type Result<T> = result::Result<T, Error>;
pub struct PendingReply<R> {
timeout: Duration,
result: Receiver<R>,
}
impl<R> PendingReply<R> {
pub async fn get(self) -> Result<R> {
let result = time::timeout(self.timeout, self.result).await;
match result {
Err(_) => Err(Error::TimedOut),
Ok(Err(_)) => Err(Error::Canceled),
Ok(Ok(value)) => Ok(value),
}
}
}
pub struct Replies<I, R> {
timeout: Duration,
pending: HashMap<I, Sender<R>>,
}
impl<I: Eq + Hash, R> Replies<I, R> {
pub async fn wait_for(&mut self, id: I) -> PendingReply<R> {
let (tx, rx) = oneshot::channel();
self.pending.insert(id, tx);
PendingReply {
timeout: self.timeout,
result: rx,
}
}
pub fn complete(&mut self, id: &I, result: R) {
if let Some(tx) = self.pending.remove(id) {
let _ = tx.send(result);
}
}
pub fn cancel(&mut self, id: &I) {
self.pending.remove(id);
}
pub fn purge(&mut self) {
self.pending.retain(|_, tx| !tx.is_closed());
}
}