// SPDX-License-Identifier: MIT OR Apache-2.0 // This file is part of Static Web Server. // See https://static-web-server.net/ for more information // Copyright (C) 2019-present Jose Quintana //! Async transport module. //! // Most of the file is borrowed from https://github.com/seanmonstar/warp/blob/master/src/transport.rs use std::io; use std::net::SocketAddr; use std::pin::Pin; use std::task::{Context, Poll}; use hyper::server::conn::AddrStream; use tokio::io::{AsyncRead, AsyncWrite, ReadBuf}; /// Transport trait that supports the remote (peer) address. pub trait Transport: AsyncRead + AsyncWrite { /// Returns the remote (peer) address of this connection. fn remote_addr(&self) -> Option; } impl Transport for AddrStream { fn remote_addr(&self) -> Option { Some(self.remote_addr()) } } /// Type to support `Transport`, `AsyncRead` and `AsyncWrite`. pub struct LiftIo(pub T); impl AsyncRead for LiftIo { fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut ReadBuf<'_>, ) -> Poll> { Pin::new(&mut self.get_mut().0).poll_read(cx, buf) } } impl AsyncWrite for LiftIo { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll> { Pin::new(&mut self.get_mut().0).poll_write(cx, buf) } fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { Pin::new(&mut self.get_mut().0).poll_flush(cx) } fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { Pin::new(&mut self.get_mut().0).poll_shutdown(cx) } } impl Transport for LiftIo { fn remote_addr(&self) -> Option { None } }