2019-11-19 04:55:17 +01:00
|
|
|
use std::pin::Pin;
|
2019-09-10 06:29:32 +02:00
|
|
|
use std::rc::Rc;
|
2019-11-19 04:55:17 +01:00
|
|
|
use std::task::{Context, Poll};
|
2019-12-05 18:35:43 +01:00
|
|
|
use std::{fmt, io, mem, net};
|
2019-03-28 02:53:19 +01:00
|
|
|
|
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed};
|
2019-03-26 05:58:01 +01:00
|
|
|
use actix_http::body::Body;
|
2019-04-20 03:03:44 +02:00
|
|
|
use actix_http::client::{
|
|
|
|
Connect as ClientConnect, ConnectError, Connection, SendRequestError,
|
|
|
|
};
|
2019-03-28 02:53:19 +01:00
|
|
|
use actix_http::h1::ClientCodec;
|
2019-09-10 06:29:32 +02:00
|
|
|
use actix_http::http::HeaderMap;
|
2019-09-12 17:52:46 +02:00
|
|
|
use actix_http::{RequestHead, RequestHeadType, ResponseHead};
|
2019-03-26 05:58:01 +01:00
|
|
|
use actix_service::Service;
|
2019-11-19 04:55:17 +01:00
|
|
|
use futures::future::{FutureExt, LocalBoxFuture};
|
2019-03-26 05:58:01 +01:00
|
|
|
|
2019-03-26 19:41:38 +01:00
|
|
|
use crate::response::ClientResponse;
|
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
pub(crate) struct ConnectorWrapper<T>(pub T);
|
|
|
|
|
|
|
|
pub(crate) trait Connect {
|
|
|
|
fn send_request(
|
|
|
|
&mut self,
|
|
|
|
head: RequestHead,
|
|
|
|
body: Body,
|
2019-04-20 03:03:44 +02:00
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<'static, Result<ClientResponse, SendRequestError>>;
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2019-09-10 06:29:32 +02:00
|
|
|
fn send_request_extra(
|
|
|
|
&mut self,
|
|
|
|
head: Rc<RequestHead>,
|
|
|
|
extra_headers: Option<HeaderMap>,
|
|
|
|
body: Body,
|
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<'static, Result<ClientResponse, SendRequestError>>;
|
2019-09-10 06:29:32 +02:00
|
|
|
|
2019-03-28 02:53:19 +01:00
|
|
|
/// Send request, returns Response and Framed
|
|
|
|
fn open_tunnel(
|
|
|
|
&mut self,
|
|
|
|
head: RequestHead,
|
2019-04-20 03:03:44 +02:00
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<
|
|
|
|
'static,
|
|
|
|
Result<(ResponseHead, Framed<BoxedSocket, ClientCodec>), SendRequestError>,
|
2019-03-28 02:53:19 +01:00
|
|
|
>;
|
2019-09-10 06:29:32 +02:00
|
|
|
|
|
|
|
/// Send request and extra headers, returns Response and Framed
|
|
|
|
fn open_tunnel_extra(
|
|
|
|
&mut self,
|
|
|
|
head: Rc<RequestHead>,
|
|
|
|
extra_headers: Option<HeaderMap>,
|
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<
|
|
|
|
'static,
|
|
|
|
Result<(ResponseHead, Framed<BoxedSocket, ClientCodec>), SendRequestError>,
|
2019-09-10 06:29:32 +02:00
|
|
|
>;
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Connect for ConnectorWrapper<T>
|
|
|
|
where
|
2019-04-20 03:03:44 +02:00
|
|
|
T: Service<Request = ClientConnect, Error = ConnectError>,
|
2019-03-26 05:58:01 +01:00
|
|
|
T::Response: Connection,
|
2019-03-28 02:53:19 +01:00
|
|
|
<T::Response as Connection>::Io: 'static,
|
2019-03-26 05:58:01 +01:00
|
|
|
<T::Response as Connection>::Future: 'static,
|
2019-03-28 02:53:19 +01:00
|
|
|
<T::Response as Connection>::TunnelFuture: 'static,
|
2019-03-26 05:58:01 +01:00
|
|
|
T::Future: 'static,
|
|
|
|
{
|
|
|
|
fn send_request(
|
|
|
|
&mut self,
|
|
|
|
head: RequestHead,
|
|
|
|
body: Body,
|
2019-04-20 03:03:44 +02:00
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<'static, Result<ClientResponse, SendRequestError>> {
|
|
|
|
// connect to the host
|
|
|
|
let fut = self.0.call(ClientConnect {
|
|
|
|
uri: head.uri.clone(),
|
|
|
|
addr,
|
|
|
|
});
|
|
|
|
|
|
|
|
async move {
|
|
|
|
let connection = fut.await?;
|
|
|
|
|
|
|
|
// send request
|
|
|
|
connection
|
|
|
|
.send_request(RequestHeadType::from(head), body)
|
|
|
|
.await
|
|
|
|
.map(|(head, payload)| ClientResponse::new(head, payload))
|
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-09-10 06:29:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn send_request_extra(
|
|
|
|
&mut self,
|
|
|
|
head: Rc<RequestHead>,
|
|
|
|
extra_headers: Option<HeaderMap>,
|
|
|
|
body: Body,
|
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<'static, Result<ClientResponse, SendRequestError>> {
|
|
|
|
// connect to the host
|
|
|
|
let fut = self.0.call(ClientConnect {
|
|
|
|
uri: head.uri.clone(),
|
|
|
|
addr,
|
|
|
|
});
|
|
|
|
|
|
|
|
async move {
|
|
|
|
let connection = fut.await?;
|
|
|
|
|
|
|
|
// send request
|
|
|
|
let (head, payload) = connection
|
|
|
|
.send_request(RequestHeadType::Rc(head, extra_headers), body)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(ClientResponse::new(head, payload))
|
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
|
|
|
|
fn open_tunnel(
|
|
|
|
&mut self,
|
|
|
|
head: RequestHead,
|
2019-04-20 03:03:44 +02:00
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<
|
|
|
|
'static,
|
|
|
|
Result<(ResponseHead, Framed<BoxedSocket, ClientCodec>), SendRequestError>,
|
2019-03-28 02:53:19 +01:00
|
|
|
> {
|
2019-11-19 04:55:17 +01:00
|
|
|
// connect to the host
|
|
|
|
let fut = self.0.call(ClientConnect {
|
|
|
|
uri: head.uri.clone(),
|
|
|
|
addr,
|
|
|
|
});
|
|
|
|
|
|
|
|
async move {
|
|
|
|
let connection = fut.await?;
|
|
|
|
|
|
|
|
// send request
|
|
|
|
let (head, framed) =
|
|
|
|
connection.open_tunnel(RequestHeadType::from(head)).await?;
|
|
|
|
|
|
|
|
let framed = framed.map_io(|io| BoxedSocket(Box::new(Socket(io))));
|
|
|
|
Ok((head, framed))
|
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-09-10 06:29:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn open_tunnel_extra(
|
|
|
|
&mut self,
|
|
|
|
head: Rc<RequestHead>,
|
|
|
|
extra_headers: Option<HeaderMap>,
|
|
|
|
addr: Option<net::SocketAddr>,
|
2019-11-19 04:55:17 +01:00
|
|
|
) -> LocalBoxFuture<
|
|
|
|
'static,
|
|
|
|
Result<(ResponseHead, Framed<BoxedSocket, ClientCodec>), SendRequestError>,
|
2019-09-10 06:29:32 +02:00
|
|
|
> {
|
2019-11-19 04:55:17 +01:00
|
|
|
// connect to the host
|
|
|
|
let fut = self.0.call(ClientConnect {
|
|
|
|
uri: head.uri.clone(),
|
|
|
|
addr,
|
|
|
|
});
|
|
|
|
|
|
|
|
async move {
|
|
|
|
let connection = fut.await?;
|
|
|
|
|
|
|
|
// send request
|
|
|
|
let (head, framed) = connection
|
|
|
|
.open_tunnel(RequestHeadType::Rc(head, extra_headers))
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let framed = framed.map_io(|io| BoxedSocket(Box::new(Socket(io))));
|
|
|
|
Ok((head, framed))
|
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait AsyncSocket {
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_read(&self) -> &(dyn AsyncRead + Unpin);
|
|
|
|
fn as_read_mut(&mut self) -> &mut (dyn AsyncRead + Unpin);
|
|
|
|
fn as_write(&mut self) -> &mut (dyn AsyncWrite + Unpin);
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
struct Socket<T: AsyncRead + AsyncWrite + Unpin>(T);
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
impl<T: AsyncRead + AsyncWrite + Unpin> AsyncSocket for Socket<T> {
|
|
|
|
fn as_read(&self) -> &(dyn AsyncRead + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&self.0
|
|
|
|
}
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_read_mut(&mut self) -> &mut (dyn AsyncRead + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&mut self.0
|
|
|
|
}
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_write(&mut self) -> &mut (dyn AsyncWrite + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct BoxedSocket(Box<dyn AsyncSocket>);
|
|
|
|
|
2019-04-12 01:01:54 +02:00
|
|
|
impl fmt::Debug for BoxedSocket {
|
2019-12-08 07:31:16 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2019-04-12 01:01:54 +02:00
|
|
|
write!(f, "BoxedSocket")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 02:53:19 +01:00
|
|
|
impl AsyncRead for BoxedSocket {
|
2019-12-05 18:35:43 +01:00
|
|
|
unsafe fn prepare_uninitialized_buffer(
|
|
|
|
&self,
|
|
|
|
buf: &mut [mem::MaybeUninit<u8>],
|
|
|
|
) -> bool {
|
2019-03-28 02:53:19 +01:00
|
|
|
self.0.as_read().prepare_uninitialized_buffer(buf)
|
|
|
|
}
|
2019-11-19 04:55:17 +01:00
|
|
|
|
|
|
|
fn poll_read(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
|
|
|
buf: &mut [u8],
|
|
|
|
) -> Poll<io::Result<usize>> {
|
|
|
|
Pin::new(self.get_mut().0.as_read_mut()).poll_read(cx, buf)
|
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
impl AsyncWrite for BoxedSocket {
|
|
|
|
fn poll_write(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
|
|
|
buf: &[u8],
|
|
|
|
) -> Poll<io::Result<usize>> {
|
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_write(cx, buf)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_flush(cx)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
fn poll_shutdown(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
|
|
|
) -> Poll<io::Result<()>> {
|
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_shutdown(cx)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|