use moire::sync::mpsc;
use roam_types::{Backing, Link, LinkRx, LinkTx, LinkTxPermit, WriteSlot};
pub struct MemoryLink {
tx: mpsc::Sender<Vec<u8>>,
rx: mpsc::Receiver<Vec<u8>>,
}
pub fn memory_link_pair(buffer: usize) -> (MemoryLink, MemoryLink) {
let (tx_a, rx_b) = mpsc::channel("memory_link.a→b", buffer);
let (tx_b, rx_a) = mpsc::channel("memory_link.b→a", buffer);
let a = MemoryLink { tx: tx_a, rx: rx_a };
let b = MemoryLink { tx: tx_b, rx: rx_b };
(a, b)
}
impl Link for MemoryLink {
type Tx = MemoryLinkTx;
type Rx = MemoryLinkRx;
fn split(self) -> (Self::Tx, Self::Rx) {
(MemoryLinkTx { tx: self.tx }, MemoryLinkRx { rx: self.rx })
}
}
#[derive(Clone)]
pub struct MemoryLinkTx {
tx: mpsc::Sender<Vec<u8>>,
}
pub struct MemoryLinkTxPermit {
permit: mpsc::OwnedPermit<Vec<u8>>,
}
impl LinkTx for MemoryLinkTx {
type Permit = MemoryLinkTxPermit;
async fn reserve(&self) -> std::io::Result<Self::Permit> {
let permit = self.tx.clone().reserve_owned().await.map_err(|_| {
std::io::Error::new(std::io::ErrorKind::ConnectionReset, "receiver dropped")
})?;
Ok(MemoryLinkTxPermit { permit })
}
async fn close(self) -> std::io::Result<()> {
drop(self.tx);
Ok(())
}
}
impl LinkTxPermit for MemoryLinkTxPermit {
type Slot = MemoryWriteSlot;
fn alloc(self, len: usize) -> std::io::Result<Self::Slot> {
Ok(MemoryWriteSlot {
buf: vec![0u8; len],
permit: self.permit,
})
}
}
pub struct MemoryWriteSlot {
buf: Vec<u8>,
permit: mpsc::OwnedPermit<Vec<u8>>,
}
impl WriteSlot for MemoryWriteSlot {
fn as_mut_slice(&mut self) -> &mut [u8] {
&mut self.buf
}
fn commit(self) {
drop(self.permit.send(self.buf));
}
}
pub struct MemoryLinkRx {
rx: mpsc::Receiver<Vec<u8>>,
}
#[derive(Debug)]
pub struct MemoryLinkRxError;
impl std::fmt::Display for MemoryLinkRxError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "memory link rx error (unreachable)")
}
}
impl std::error::Error for MemoryLinkRxError {}
impl LinkRx for MemoryLinkRx {
type Error = MemoryLinkRxError;
async fn recv(&mut self) -> Result<Option<Backing>, Self::Error> {
match self.rx.recv().await {
Some(bytes) => Ok(Some(Backing::Boxed(bytes.into_boxed_slice()))),
None => Ok(None),
}
}
}