vmbus_async/
async_dgram.rsuse std::future::Future;
use std::io;
use std::io::IoSlice;
use std::io::IoSliceMut;
use std::pin::Pin;
use std::task::Context;
use std::task::Poll;
use std::task::ready;
use thiserror::Error;
pub trait AsyncRecv {
fn poll_recv(
&mut self,
cx: &mut Context<'_>,
bufs: &mut [IoSliceMut<'_>],
) -> Poll<io::Result<usize>>;
}
impl<T: AsyncRecv + ?Sized> AsyncRecv for &mut T {
fn poll_recv(
&mut self,
cx: &mut Context<'_>,
bufs: &mut [IoSliceMut<'_>],
) -> Poll<io::Result<usize>> {
(*self).poll_recv(cx, bufs)
}
}
pub trait AsyncRecvExt: AsyncRecv {
fn recv<'a>(&'a mut self, buf: &'a mut [u8]) -> Recv<'a, Self> {
Recv { recv: self, buf }
}
fn recv_exact<'a>(&'a mut self, buf: &'a mut [u8]) -> RecvExact<'a, Self> {
RecvExact { recv: self, buf }
}
fn recv_vectored<'a>(&'a mut self, bufs: &'a mut [IoSliceMut<'a>]) -> RecvVectored<'a, Self> {
RecvVectored { recv: self, bufs }
}
}
impl<T: AsyncRecv + ?Sized> AsyncRecvExt for T {}
pub struct Recv<'a, T: ?Sized> {
recv: &'a mut T,
buf: &'a mut [u8],
}
impl<T: AsyncRecv + ?Sized> Future for Recv<'_, T> {
type Output = io::Result<usize>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
this.recv.poll_recv(cx, &mut [IoSliceMut::new(this.buf)])
}
}
pub struct RecvExact<'a, T: ?Sized> {
recv: &'a mut T,
buf: &'a mut [u8],
}
#[derive(Debug, Error)]
#[error("message too small")]
struct MessageTooSmall;
impl<T: AsyncRecv + ?Sized> Future for RecvExact<'_, T> {
type Output = io::Result<()>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
let n = ready!(this.recv.poll_recv(cx, &mut [IoSliceMut::new(this.buf)]))?;
if n != this.buf.len() {
Err(io::Error::new(io::ErrorKind::InvalidData, MessageTooSmall))?;
}
Poll::Ready(Ok(()))
}
}
pub struct RecvVectored<'a, T: ?Sized> {
recv: &'a mut T,
bufs: &'a mut [IoSliceMut<'a>],
}
impl<T: AsyncRecv + ?Sized> Future for RecvVectored<'_, T> {
type Output = io::Result<usize>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
this.recv.poll_recv(cx, this.bufs)
}
}
pub trait AsyncSend {
fn poll_send(&mut self, cx: &mut Context<'_>, bufs: &[IoSlice<'_>]) -> Poll<io::Result<()>>;
}
impl<T: AsyncSend + ?Sized> AsyncSend for &mut T {
fn poll_send(&mut self, cx: &mut Context<'_>, bufs: &[IoSlice<'_>]) -> Poll<io::Result<()>> {
(*self).poll_send(cx, bufs)
}
}
pub trait AsyncSendExt: AsyncSend {
fn send<'a>(&'a mut self, buf: &'a [u8]) -> Send<'a, Self> {
Send { send: self, buf }
}
fn send_vectored<'a>(&'a mut self, bufs: &'a [IoSlice<'a>]) -> SendVectored<'a, Self> {
SendVectored { send: self, bufs }
}
}
impl<T: AsyncSend + ?Sized> AsyncSendExt for T {}
pub struct Send<'a, T: ?Sized> {
send: &'a mut T,
buf: &'a [u8],
}
impl<T: AsyncSend + ?Sized> Future for Send<'_, T> {
type Output = io::Result<()>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
this.send.poll_send(cx, &[IoSlice::new(this.buf)])
}
}
pub struct SendVectored<'a, T: ?Sized> {
send: &'a mut T,
bufs: &'a [IoSlice<'a>],
}
impl<T: AsyncSend + ?Sized> Future for SendVectored<'_, T> {
type Output = io::Result<()>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
this.send.poll_send(cx, this.bufs)
}
}