use std::future::Future;
use std::io;
use std::net::SocketAddr;
use std::pin::Pin;
use std::task::{Context, Poll};
use std::time::Duration;
use hyper::rt::{self, Read, Write};
use pin_project_lite::pin_project;
use super::Runtime;
struct AssertSend<F>(F);
unsafe impl<F> Send for AssertSend<F> {}
impl<F: Future> Future for AssertSend<F> {
type Output = F::Output;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let inner = unsafe { self.map_unchecked_mut(|s| &mut s.0) };
inner.poll(cx)
}
}
pub struct CompioRuntime;
impl Runtime for CompioRuntime {
type TcpStream = CompioIo<async_io::Async<std::net::TcpStream>>;
type Sleep = CompioSleep;
fn connect(addr: SocketAddr) -> impl Future<Output = io::Result<Self::TcpStream>> + Send {
AssertSend(async move {
let stream = async_io::Async::<std::net::TcpStream>::connect(addr).await?;
stream.get_ref().set_nodelay(true)?;
Ok(CompioIo::new(stream))
})
}
fn resolve_all(
host: &str,
port: u16,
) -> impl Future<Output = io::Result<Vec<SocketAddr>>> + Send {
let addr_str = format!("{host}:{port}");
AssertSend(async move {
let addrs = compio_runtime::spawn_blocking(move || {
use std::net::ToSocketAddrs;
addr_str
.to_socket_addrs()
.map(|iter| iter.collect::<Vec<_>>())
})
.await
.map_err(|e| io::Error::other(format!("{e:?}")))?;
let addrs = addrs?;
if addrs.is_empty() {
return Err(io::Error::new(
io::ErrorKind::AddrNotAvailable,
"no addresses found",
));
}
Ok(addrs)
})
}
fn sleep(duration: Duration) -> Self::Sleep {
CompioSleep {
inner: async_io::Timer::after(duration),
}
}
fn spawn<F>(future: F)
where
F: Future<Output = ()> + Send + 'static,
{
compio_runtime::spawn(future).detach();
}
fn set_tcp_keepalive(
stream: &Self::TcpStream,
time: Duration,
interval: Option<Duration>,
retries: Option<u32>,
) -> io::Result<()> {
use socket2::SockRef;
let sock_ref = SockRef::from(stream.inner().get_ref());
let mut keepalive = socket2::TcpKeepalive::new().with_time(time);
if let Some(interval) = interval {
keepalive = keepalive.with_interval(interval);
}
#[cfg(any(
target_os = "linux",
target_os = "macos",
target_os = "ios",
target_os = "freebsd",
target_os = "netbsd",
))]
if let Some(retries) = retries {
keepalive = keepalive.with_retries(retries);
}
#[cfg(not(any(
target_os = "linux",
target_os = "macos",
target_os = "ios",
target_os = "freebsd",
target_os = "netbsd",
)))]
let _ = retries;
sock_ref.set_tcp_keepalive(&keepalive)
}
#[cfg(target_os = "linux")]
fn set_tcp_fast_open(stream: &Self::TcpStream) -> io::Result<()> {
use socket2::SockRef;
use std::os::unix::io::AsRawFd;
unsafe extern "C" {
fn setsockopt(
sockfd: std::ffi::c_int,
level: std::ffi::c_int,
optname: std::ffi::c_int,
optval: *const std::ffi::c_void,
optlen: u32,
) -> std::ffi::c_int;
}
let sock_ref = SockRef::from(stream.inner().get_ref());
let fd = sock_ref.as_raw_fd();
const IPPROTO_TCP: std::ffi::c_int = 6;
const TCP_FASTOPEN_CONNECT: std::ffi::c_int = 30;
let optval: std::ffi::c_int = 1;
unsafe {
let ret = setsockopt(
fd,
IPPROTO_TCP,
TCP_FASTOPEN_CONNECT,
&optval as *const std::ffi::c_int as *const std::ffi::c_void,
std::mem::size_of::<std::ffi::c_int>() as u32,
);
if ret != 0 {
return Err(io::Error::last_os_error());
}
}
Ok(())
}
#[cfg(target_os = "linux")]
fn bind_device(stream: &Self::TcpStream, interface: &str) -> io::Result<()> {
use socket2::SockRef;
let sock_ref = SockRef::from(stream.inner().get_ref());
sock_ref.bind_device(Some(interface.as_bytes()))
}
fn from_std_tcp(stream: std::net::TcpStream) -> io::Result<Self::TcpStream> {
stream.set_nonblocking(true)?;
stream.set_nodelay(true)?;
let async_stream = async_io::Async::new(stream)?;
Ok(CompioIo::new(async_stream))
}
fn connect_bound(
addr: SocketAddr,
local: std::net::IpAddr,
) -> impl Future<Output = io::Result<Self::TcpStream>> + Send {
AssertSend(async move {
use socket2::{Domain, Protocol, SockAddr, Socket, Type};
let std_stream = compio_runtime::spawn_blocking(move || {
let domain = if addr.is_ipv4() {
Domain::IPV4
} else {
Domain::IPV6
};
let socket = Socket::new(domain, Type::STREAM, Some(Protocol::TCP))?;
socket.bind(&SockAddr::from(std::net::SocketAddr::new(local, 0)))?;
socket.connect(&SockAddr::from(addr))?;
socket.set_tcp_nodelay(true)?;
Ok::<std::net::TcpStream, io::Error>(socket.into())
})
.await
.map_err(|e| io::Error::other(format!("{e:?}")))?;
let std_stream = std_stream?;
std_stream.set_nonblocking(true)?;
let async_stream = async_io::Async::new(std_stream)?;
Ok(CompioIo::new(async_stream))
})
}
#[cfg(unix)]
type UnixStream = CompioIo<async_io::Async<std::os::unix::net::UnixStream>>;
#[cfg(unix)]
fn connect_unix(
path: &std::path::Path,
) -> impl Future<Output = io::Result<Self::UnixStream>> + Send {
let path = path.to_owned();
AssertSend(async move {
let stream = async_io::Async::<std::os::unix::net::UnixStream>::connect(&path).await?;
Ok(CompioIo::new(stream))
})
}
}
pin_project! {
pub struct CompioSleep {
#[pin]
inner: async_io::Timer,
}
}
impl Future for CompioSleep {
type Output = ();
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match self.project().inner.poll(cx) {
Poll::Ready(_instant) => Poll::Ready(()),
Poll::Pending => Poll::Pending,
}
}
}
pin_project! {
pub struct CompioIo<T> {
#[pin]
inner: T,
}
}
impl<T> CompioIo<T> {
pub fn new(inner: T) -> Self {
Self { inner }
}
pub fn inner(&self) -> &T {
&self.inner
}
}
unsafe impl<T> Send for CompioIo<T> {}
impl<T> Read for CompioIo<T>
where
T: futures_io::AsyncRead,
{
fn poll_read(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
mut buf: rt::ReadBufCursor<'_>,
) -> Poll<io::Result<()>> {
let slice = unsafe {
let uninit = buf.as_mut();
std::ptr::write_bytes(uninit.as_mut_ptr(), 0, uninit.len());
std::slice::from_raw_parts_mut(uninit.as_mut_ptr() as *mut u8, uninit.len())
};
match futures_io::AsyncRead::poll_read(self.project().inner, cx, slice) {
Poll::Ready(Ok(n)) => {
unsafe { buf.advance(n) };
Poll::Ready(Ok(()))
}
Poll::Ready(Err(e)) => Poll::Ready(Err(e)),
Poll::Pending => Poll::Pending,
}
}
}
impl<T> Write for CompioIo<T>
where
T: futures_io::AsyncWrite,
{
fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<io::Result<usize>> {
futures_io::AsyncWrite::poll_write(self.project().inner, cx, buf)
}
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
futures_io::AsyncWrite::poll_flush(self.project().inner, cx)
}
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
futures_io::AsyncWrite::poll_close(self.project().inner, cx)
}
fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[io::IoSlice<'_>],
) -> Poll<io::Result<usize>> {
futures_io::AsyncWrite::poll_write_vectored(self.project().inner, cx, bufs)
}
fn is_write_vectored(&self) -> bool {
true
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::runtime::Runtime;
#[test]
fn resolve_all_localhost() {
compio_runtime::Runtime::new().unwrap().block_on(async {
let addrs = CompioRuntime::resolve_all("localhost", 80).await.unwrap();
assert!(!addrs.is_empty());
});
}
#[test]
fn connect_and_set_keepalive() {
let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();
compio_runtime::Runtime::new().unwrap().block_on(async {
let stream = CompioRuntime::connect(addr).await.unwrap();
let result = CompioRuntime::set_tcp_keepalive(
&stream,
Duration::from_secs(60),
Some(Duration::from_secs(10)),
Some(3),
);
assert!(result.is_ok());
});
}
#[test]
fn from_std_tcp_succeeds() {
let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();
let std_stream = std::net::TcpStream::connect(addr).unwrap();
let compio_stream = CompioRuntime::from_std_tcp(std_stream).unwrap();
assert!(compio_stream.inner().get_ref().peer_addr().is_ok());
}
#[test]
fn is_write_vectored_returns_true() {
let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();
compio_runtime::Runtime::new().unwrap().block_on(async {
let stream = CompioRuntime::connect(addr).await.unwrap();
assert!(Write::is_write_vectored(&stream));
});
}
#[test]
fn write_vectored_delivers_data() {
use std::future::poll_fn;
use std::io::Read as _;
let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();
compio_runtime::Runtime::new().unwrap().block_on(async {
let mut client = CompioRuntime::connect(addr).await.unwrap();
let bufs = [
io::IoSlice::new(b"hello"),
io::IoSlice::new(b" "),
io::IoSlice::new(b"world"),
];
let n = poll_fn(|cx| Pin::new(&mut client).poll_write_vectored(cx, &bufs))
.await
.unwrap();
assert_eq!(n, 11);
});
let (mut server, _) = listener.accept().unwrap();
let mut buf = vec![0u8; 11];
server.read_exact(&mut buf).unwrap();
assert_eq!(&buf, b"hello world");
}
#[test]
fn sleep_completes() {
compio_runtime::Runtime::new().unwrap().block_on(async {
let start = std::time::Instant::now();
CompioRuntime::sleep(Duration::from_millis(10)).await;
assert!(start.elapsed() >= Duration::from_millis(10));
});
}
#[cfg(unix)]
#[test]
fn connect_unix_succeeds() {
let dir = std::env::temp_dir().join("aioduct_compio_rt_unix_test");
let _ = std::fs::create_dir_all(&dir);
let sock_path = dir.join("rt_test.sock");
let _ = std::fs::remove_file(&sock_path);
let _listener = std::os::unix::net::UnixListener::bind(&sock_path).unwrap();
compio_runtime::Runtime::new().unwrap().block_on(async {
let stream = CompioRuntime::connect_unix(&sock_path).await.unwrap();
drop(stream);
});
let _ = std::fs::remove_file(&sock_path);
let _ = std::fs::remove_dir(&dir);
}
}