use xwt_core::prelude::*;
#[derive(Debug, thiserror::Error)]
pub enum Error<Endpoint>
where
Endpoint: xwt_core::endpoint::Connect + std::fmt::Debug,
Endpoint::Connecting: std::fmt::Debug,
ConnectSessionFor<Endpoint>: xwt_core::session::stream::OpenBi + std::fmt::Debug,
{
#[error("connect: {0}")]
Connect(#[source] xwt_error::Connect<Endpoint>),
#[error("open: {0}")]
Open(#[source] xwt_error::OpenBi<ConnectSessionFor<Endpoint>>),
#[error("send: {0}")]
Send(#[source] WriteErrorFor<SendStreamFor<ConnectSessionFor<Endpoint>>>),
#[error("recv: {0}")]
Recv(#[source] ReadErrorFor<RecvStreamFor<ConnectSessionFor<Endpoint>>>),
#[error("no response")]
NoResponse,
#[error("bad data")]
BadData(Vec<u8>),
}
pub async fn run<Endpoint>(endpoint: Endpoint, url: &str) -> Result<(), Error<Endpoint>>
where
Endpoint: xwt_core::endpoint::Connect + std::fmt::Debug,
Endpoint::Connecting: std::fmt::Debug,
ConnectSessionFor<Endpoint>: xwt_core::session::stream::OpenBi + std::fmt::Debug,
{
let session = crate::utils::connect(&endpoint, url)
.await
.map_err(Error::Connect)?;
let (mut send_stream, mut recv_stream) =
crate::utils::open_bi(&session).await.map_err(Error::Open)?;
let mut to_write = &b"hello"[..];
loop {
let written = send_stream.write(to_write).await.map_err(Error::Send)?;
to_write = &to_write[written..];
if to_write.is_empty() {
break;
}
}
let mut read_buf = vec![0u8; 1024];
let Some(read) = recv_stream
.read(&mut read_buf[..])
.await
.map_err(Error::Recv)?
else {
return Err(Error::NoResponse);
};
read_buf.truncate(read);
if read_buf != b"hello" {
return Err(Error::BadData(read_buf));
}
Ok(())
}