2019-09-02 13:13:54 +00:00
|
|
|
//! Generic AsyncRead/AsyncWrite utilities.
|
|
|
|
|
|
|
|
use std::io;
|
2019-12-12 14:27:07 +00:00
|
|
|
use std::mem::MaybeUninit;
|
|
|
|
use std::os::unix::io::{AsRawFd, RawFd};
|
2019-09-02 13:13:54 +00:00
|
|
|
use std::pin::Pin;
|
|
|
|
use std::task::{Context, Poll};
|
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
use futures::stream::{Stream, TryStream};
|
2019-09-02 13:13:54 +00:00
|
|
|
use tokio::io::{AsyncRead, AsyncWrite};
|
2019-12-12 14:27:07 +00:00
|
|
|
use tokio::net::TcpListener;
|
|
|
|
use hyper::client::connect::Connection;
|
2019-09-02 13:13:54 +00:00
|
|
|
|
|
|
|
pub enum EitherStream<L, R> {
|
|
|
|
Left(L),
|
|
|
|
Right(R),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<L: AsyncRead, R: AsyncRead> AsyncRead for EitherStream<L, R> {
|
|
|
|
fn poll_read(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
buf: &mut [u8],
|
|
|
|
) -> Poll<Result<usize, io::Error>> {
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_read(cx, buf)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_read(cx, buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
unsafe fn prepare_uninitialized_buffer(&self, buf: &mut [MaybeUninit<u8>]) -> bool {
|
2019-09-02 13:13:54 +00:00
|
|
|
match *self {
|
|
|
|
EitherStream::Left(ref s) => s.prepare_uninitialized_buffer(buf),
|
|
|
|
EitherStream::Right(ref s) => s.prepare_uninitialized_buffer(buf),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_read_buf<B>(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
buf: &mut B,
|
|
|
|
) -> Poll<Result<usize, io::Error>>
|
|
|
|
where
|
|
|
|
B: bytes::BufMut,
|
|
|
|
{
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_read_buf(cx, buf)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_read_buf(cx, buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<L: AsyncWrite, R: AsyncWrite> AsyncWrite for EitherStream<L, R> {
|
|
|
|
fn poll_write(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
buf: &[u8],
|
|
|
|
) -> Poll<Result<usize, io::Error>> {
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_write(cx, buf)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_write(cx, buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), io::Error>> {
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_flush(cx)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_flush(cx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), io::Error>> {
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_shutdown(cx)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_shutdown(cx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_write_buf<B>(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
buf: &mut B,
|
|
|
|
) -> Poll<Result<usize, io::Error>>
|
|
|
|
where
|
|
|
|
B: bytes::Buf,
|
|
|
|
{
|
|
|
|
match unsafe { self.get_unchecked_mut() } {
|
|
|
|
EitherStream::Left(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_write_buf(cx, buf)
|
|
|
|
}
|
|
|
|
EitherStream::Right(ref mut s) => {
|
|
|
|
unsafe { Pin::new_unchecked(s) }.poll_write_buf(cx, buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 14:27:07 +00:00
|
|
|
|
|
|
|
// we need this for crate::client::http_client:
|
|
|
|
impl Connection for EitherStream<
|
|
|
|
tokio::net::TcpStream,
|
|
|
|
tokio_openssl::SslStream<tokio::net::TcpStream>,
|
|
|
|
> {
|
|
|
|
fn connected(&self) -> hyper::client::connect::Connected {
|
|
|
|
match self {
|
|
|
|
EitherStream::Left(s) => s.connected(),
|
|
|
|
EitherStream::Right(s) => s.get_ref().connected(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Tokio's `Incoming` now is a reference type and hyper's `AddrIncoming` misses some standard
|
|
|
|
/// stuff like `AsRawFd`, so here's something implementing hyper's `Accept` from a `TcpListener`
|
|
|
|
pub struct StaticIncoming(TcpListener);
|
|
|
|
|
|
|
|
impl From<TcpListener> for StaticIncoming {
|
|
|
|
fn from(inner: TcpListener) -> Self {
|
|
|
|
Self(inner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRawFd for StaticIncoming {
|
|
|
|
fn as_raw_fd(&self) -> RawFd {
|
|
|
|
self.0.as_raw_fd()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl hyper::server::accept::Accept for StaticIncoming {
|
|
|
|
type Conn = tokio::net::TcpStream;
|
|
|
|
type Error = std::io::Error;
|
|
|
|
|
|
|
|
fn poll_accept(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
) -> Poll<Option<Result<Self::Conn, Self::Error>>> {
|
|
|
|
match self.get_mut().0.poll_accept(cx) {
|
|
|
|
Poll::Pending => Poll::Pending,
|
|
|
|
Poll::Ready(Ok((conn, _addr))) => Poll::Ready(Some(Ok(conn))),
|
|
|
|
Poll::Ready(Err(err)) => Poll::Ready(Some(Err(err))),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// We also implement TryStream for this, as tokio doesn't do this anymore either and we want to be
|
|
|
|
/// able to map connections to then add eg. ssl to them. This support code makes the changes
|
|
|
|
/// required for hyper 0.13 a bit less annoying to read.
|
|
|
|
impl Stream for StaticIncoming {
|
|
|
|
type Item = std::io::Result<(tokio::net::TcpStream, std::net::SocketAddr)>;
|
|
|
|
|
|
|
|
fn poll_next(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
|
|
|
|
match self.get_mut().0.poll_accept(cx) {
|
|
|
|
Poll::Pending => Poll::Pending,
|
|
|
|
Poll::Ready(result) => Poll::Ready(Some(result)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Implement hyper's `Accept` for any `TryStream` of sockets:
|
|
|
|
pub struct HyperAccept<T>(pub T);
|
|
|
|
|
|
|
|
|
|
|
|
impl<T, I> hyper::server::accept::Accept for HyperAccept<T>
|
|
|
|
where
|
|
|
|
T: TryStream<Ok = I>,
|
|
|
|
I: AsyncRead + AsyncWrite,
|
|
|
|
{
|
|
|
|
type Conn = I;
|
|
|
|
type Error = T::Error;
|
|
|
|
|
|
|
|
fn poll_accept(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context,
|
|
|
|
) -> Poll<Option<Result<Self::Conn, Self::Error>>> {
|
|
|
|
let this = unsafe { self.map_unchecked_mut(|this| &mut this.0) };
|
|
|
|
this.try_poll_next(cx)
|
|
|
|
}
|
|
|
|
}
|