1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-http/src/service.rs

606 lines
19 KiB
Rust
Raw Normal View History

2019-03-07 06:56:34 +00:00
use std::marker::PhantomData;
use std::pin::Pin;
use std::task::{Context, Poll};
2019-12-02 11:33:11 +00:00
use std::{fmt, net, rc};
2019-03-07 06:56:34 +00:00
2019-04-08 21:51:16 +00:00
use actix_codec::{AsyncRead, AsyncWrite, Framed};
2019-12-02 11:33:11 +00:00
use actix_rt::net::TcpStream;
use actix_service::{pipeline_factory, IntoServiceFactory, Service, ServiceFactory};
use bytes::Bytes;
use futures::{future::ok, ready, Future};
2019-03-07 06:56:34 +00:00
use h2::server::{self, Handshake};
2019-11-19 12:54:19 +00:00
use pin_project::{pin_project, project};
2019-03-07 06:56:34 +00:00
use crate::body::MessageBody;
2019-03-09 18:39:06 +00:00
use crate::builder::HttpServiceBuilder;
use crate::cloneable::CloneableService;
2019-03-07 06:56:34 +00:00
use crate::config::{KeepAlive, ServiceConfig};
2019-04-05 23:46:44 +00:00
use crate::error::{DispatchError, Error};
2019-06-28 08:34:26 +00:00
use crate::helpers::DataFactory;
2019-03-07 06:56:34 +00:00
use crate::request::Request;
use crate::response::Response;
2019-12-02 11:33:11 +00:00
use crate::{h1, h2::Dispatcher, Protocol};
2019-03-07 06:56:34 +00:00
/// `ServiceFactory` HTTP1.1/HTTP2 transport implementation
2019-12-02 11:33:11 +00:00
pub struct HttpService<T, S, B, X = h1::ExpectHandler, U = h1::UpgradeHandler<T>> {
2019-03-07 06:56:34 +00:00
srv: S,
cfg: ServiceConfig,
2019-04-05 23:46:44 +00:00
expect: X,
2019-04-08 21:51:16 +00:00
upgrade: Option<U>,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B)>,
2019-03-07 06:56:34 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> HttpService<T, S, B>
2019-03-11 22:09:42 +00:00
where
2019-12-02 11:33:11 +00:00
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-03-11 22:09:42 +00:00
B: MessageBody + 'static,
{
/// Create builder for `HttpService` instance.
pub fn build() -> HttpServiceBuilder<T, S> {
HttpServiceBuilder::new()
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> HttpService<T, S, B>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
{
/// Create new `HttpService` instance.
pub fn new<F: IntoServiceFactory<S>>(service: F) -> Self {
2019-12-02 11:33:11 +00:00
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0, false, None);
2019-03-07 06:56:34 +00:00
HttpService {
cfg,
srv: service.into_factory(),
2019-04-05 23:46:44 +00:00
expect: h1::ExpectHandler,
2019-04-08 21:51:16 +00:00
upgrade: None,
2019-06-28 08:34:26 +00:00
on_connect: None,
_t: PhantomData,
}
}
/// Create new `HttpService` instance with config.
pub(crate) fn with_config<F: IntoServiceFactory<S>>(
cfg: ServiceConfig,
service: F,
) -> Self {
HttpService {
cfg,
srv: service.into_factory(),
2019-04-05 23:46:44 +00:00
expect: h1::ExpectHandler,
2019-04-08 21:51:16 +00:00
upgrade: None,
2019-06-28 08:34:26 +00:00
on_connect: None,
2019-03-07 06:56:34 +00:00
_t: PhantomData,
}
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> HttpService<T, S, B, X, U>
2019-04-05 23:46:44 +00:00
where
2019-12-02 11:33:11 +00:00
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-04-05 23:46:44 +00:00
B: MessageBody,
{
/// Provide service for `EXPECT: 100-Continue` support.
///
/// Service get called with request that contains `EXPECT` header.
/// Service must return request in case of success, in that case
/// request will be forwarded to main service.
2019-12-02 11:33:11 +00:00
pub fn expect<X1>(self, expect: X1) -> HttpService<T, S, B, X1, U>
2019-04-05 23:46:44 +00:00
where
2019-12-02 11:33:11 +00:00
X1: ServiceFactory<Config = (), Request = Request, Response = Request>,
2019-04-08 21:51:16 +00:00
X1::Error: Into<Error>,
X1::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<X1::Service as Service>::Future: 'static,
2019-04-05 23:46:44 +00:00
{
HttpService {
expect,
cfg: self.cfg,
srv: self.srv,
2019-04-08 21:51:16 +00:00
upgrade: self.upgrade,
2019-06-28 08:34:26 +00:00
on_connect: self.on_connect,
2019-04-08 21:51:16 +00:00
_t: PhantomData,
}
}
/// Provide service for custom `Connection: UPGRADE` support.
///
/// If service is provided then normal requests handling get halted
/// and this service get called with original request and framed object.
2019-12-02 11:33:11 +00:00
pub fn upgrade<U1>(self, upgrade: Option<U1>) -> HttpService<T, S, B, X, U1>
2019-04-08 21:51:16 +00:00
where
U1: ServiceFactory<
2019-12-02 11:33:11 +00:00
Config = (),
2019-05-12 15:34:51 +00:00
Request = (Request, Framed<T, h1::Codec>),
Response = (),
>,
2019-04-08 21:51:16 +00:00
U1::Error: fmt::Display,
U1::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<U1::Service as Service>::Future: 'static,
2019-04-08 21:51:16 +00:00
{
HttpService {
upgrade,
cfg: self.cfg,
srv: self.srv,
expect: self.expect,
2019-06-28 08:34:26 +00:00
on_connect: self.on_connect,
2019-04-05 23:46:44 +00:00
_t: PhantomData,
}
}
2019-06-28 08:34:26 +00:00
/// Set on connect callback.
pub(crate) fn on_connect(
mut self,
2019-07-17 09:48:37 +00:00
f: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-06-28 08:34:26 +00:00
) -> Self {
self.on_connect = f;
self
}
2019-04-05 23:46:44 +00:00
}
2019-12-02 11:33:11 +00:00
impl<S, B, X, U> HttpService<TcpStream, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-12-02 11:33:11 +00:00
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<X::Service as Service>::Future: 'static,
U: ServiceFactory<
2019-12-02 11:33:11 +00:00
Config = (),
Request = (Request, Framed<TcpStream, h1::Codec>),
Response = (),
>,
U::Error: fmt::Display,
U::InitError: fmt::Debug,
<U::Service as Service>::Future: 'static,
{
/// Create simple tcp stream service
pub fn tcp(
self,
) -> impl ServiceFactory<
Config = (),
Request = TcpStream,
Response = (),
Error = DispatchError,
InitError = (),
> {
pipeline_factory(|io: TcpStream| {
let peer_addr = io.peer_addr().ok();
ok((io, Protocol::Http1, peer_addr))
})
.and_then(self)
}
}
#[cfg(feature = "openssl")]
mod openssl {
use super::*;
use actix_tls::openssl::{Acceptor, SslStream};
use actix_tls::{openssl::HandshakeError, SslError};
use open_ssl::ssl::SslAcceptor;
impl<S, B, X, U> HttpService<SslStream<TcpStream>, S, B, X, U>
where
S: ServiceFactory<Config = (), Request = Request>,
S::Error: Into<Error> + 'static,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
B: MessageBody + 'static,
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
X::Error: Into<Error>,
X::InitError: fmt::Debug,
<X::Service as Service>::Future: 'static,
U: ServiceFactory<
Config = (),
Request = (Request, Framed<SslStream<TcpStream>, h1::Codec>),
Response = (),
>,
U::Error: fmt::Display,
U::InitError: fmt::Debug,
<U::Service as Service>::Future: 'static,
{
/// Create openssl based service
pub fn openssl(
self,
acceptor: SslAcceptor,
) -> impl ServiceFactory<
Config = (),
Request = TcpStream,
Response = (),
Error = SslError<HandshakeError<TcpStream>, DispatchError>,
InitError = (),
> {
pipeline_factory(
Acceptor::new(acceptor)
.map_err(SslError::Ssl)
.map_init_err(|_| panic!()),
)
.and_then(|io: SslStream<TcpStream>| {
let proto = if let Some(protos) = io.ssl().selected_alpn_protocol() {
if protos.windows(2).any(|window| window == b"h2") {
Protocol::Http2
} else {
Protocol::Http1
}
} else {
Protocol::Http1
};
let peer_addr = io.get_ref().peer_addr().ok();
ok((io, proto, peer_addr))
})
.and_then(self.map_err(SslError::Service))
}
}
}
impl<T, S, B, X, U> ServiceFactory for HttpService<T, S, B, X, U>
where
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Config = (), Request = Request>,
S::Error: Into<Error> + 'static,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
B: MessageBody + 'static,
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
X::Error: Into<Error>,
X::InitError: fmt::Debug,
<X::Service as Service>::Future: 'static,
U: ServiceFactory<
Config = (),
2019-05-12 15:34:51 +00:00
Request = (Request, Framed<T, h1::Codec>),
Response = (),
>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
U::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<U::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
{
2019-12-02 11:33:11 +00:00
type Config = ();
type Request = (T, Protocol, Option<net::SocketAddr>);
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
2019-04-05 23:46:44 +00:00
type InitError = ();
2019-12-02 11:33:11 +00:00
type Service = HttpServiceHandler<T, S::Service, B, X::Service, U::Service>;
type Future = HttpServiceResponse<T, S, B, X, U>;
2019-03-07 06:56:34 +00:00
2019-12-02 11:33:11 +00:00
fn new_service(&self, cfg: &()) -> Self::Future {
2019-03-07 06:56:34 +00:00
HttpServiceResponse {
fut: self.srv.new_service(cfg),
2019-05-12 15:34:51 +00:00
fut_ex: Some(self.expect.new_service(cfg)),
fut_upg: self.upgrade.as_ref().map(|f| f.new_service(cfg)),
2019-04-05 23:46:44 +00:00
expect: None,
2019-04-08 21:51:16 +00:00
upgrade: None,
2019-06-28 08:34:26 +00:00
on_connect: self.on_connect.clone(),
2019-12-02 11:33:11 +00:00
cfg: self.cfg.clone(),
2019-03-07 06:56:34 +00:00
_t: PhantomData,
}
}
}
#[doc(hidden)]
2019-11-19 12:54:19 +00:00
#[pin_project]
pub struct HttpServiceResponse<
T,
S: ServiceFactory,
B,
X: ServiceFactory,
U: ServiceFactory,
> {
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-05 23:46:44 +00:00
fut: S::Future,
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-05 23:46:44 +00:00
fut_ex: Option<X::Future>,
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-08 21:51:16 +00:00
fut_upg: Option<U::Future>,
2019-04-05 23:46:44 +00:00
expect: Option<X::Service>,
2019-04-08 21:51:16 +00:00
upgrade: Option<U::Service>,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
cfg: ServiceConfig,
_t: PhantomData<(T, B)>,
2019-03-07 06:56:34 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> Future for HttpServiceResponse<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
X: ServiceFactory<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<X::Service as Service>::Future: 'static,
U: ServiceFactory<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
U::InitError: fmt::Debug,
2019-11-19 12:54:19 +00:00
<U::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
{
type Output =
2019-12-02 11:33:11 +00:00
Result<HttpServiceHandler<T, S::Service, B, X::Service, U::Service>, ()>;
2019-11-19 12:54:19 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let mut this = self.as_mut().project();
2019-11-19 12:54:19 +00:00
if let Some(fut) = this.fut_ex.as_pin_mut() {
let expect = ready!(fut
.poll(cx)
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
2019-11-19 12:54:19 +00:00
this = self.as_mut().project();
*this.expect = Some(expect);
this.fut_ex.set(None);
2019-04-05 23:46:44 +00:00
}
2019-11-19 12:54:19 +00:00
if let Some(fut) = this.fut_upg.as_pin_mut() {
let upgrade = ready!(fut
.poll(cx)
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
2019-11-19 12:54:19 +00:00
this = self.as_mut().project();
*this.upgrade = Some(upgrade);
this.fut_ex.set(None);
2019-04-08 21:51:16 +00:00
}
2019-11-19 12:54:19 +00:00
let result = ready!(this
.fut
.poll(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| log::error!("Init http service error: {:?}", e)));
Poll::Ready(result.map(|service| {
2019-11-19 12:54:19 +00:00
let this = self.as_mut().project();
HttpServiceHandler::new(
2019-12-02 11:33:11 +00:00
this.cfg.clone(),
service,
this.expect.take().unwrap(),
this.upgrade.take(),
this.on_connect.clone(),
)
}))
2019-03-07 06:56:34 +00:00
}
}
/// `Service` implementation for http transport
2019-12-02 11:33:11 +00:00
pub struct HttpServiceHandler<T, S, B, X, U> {
2019-03-07 06:56:34 +00:00
srv: CloneableService<S>,
2019-04-05 23:46:44 +00:00
expect: CloneableService<X>,
2019-04-08 21:51:16 +00:00
upgrade: Option<CloneableService<U>>,
2019-03-07 06:56:34 +00:00
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B, X)>,
2019-03-07 06:56:34 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> HttpServiceHandler<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + 'static,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-11-19 12:54:19 +00:00
S::Response: Into<Response<B>> + 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-11-19 12:54:19 +00:00
X: Service<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
2019-11-19 12:54:19 +00:00
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2019-03-07 06:56:34 +00:00
{
2019-04-08 21:51:16 +00:00
fn new(
cfg: ServiceConfig,
srv: S,
expect: X,
upgrade: Option<U>,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
) -> HttpServiceHandler<T, S, B, X, U> {
2019-03-07 06:56:34 +00:00
HttpServiceHandler {
cfg,
2019-06-28 08:34:26 +00:00
on_connect,
2019-03-07 06:56:34 +00:00
srv: CloneableService::new(srv),
2019-04-05 23:46:44 +00:00
expect: CloneableService::new(expect),
upgrade: upgrade.map(CloneableService::new),
2019-03-07 06:56:34 +00:00
_t: PhantomData,
}
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> Service for HttpServiceHandler<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-11-19 12:54:19 +00:00
X: Service<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
2019-11-19 12:54:19 +00:00
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2019-03-07 06:56:34 +00:00
{
2019-12-02 11:33:11 +00:00
type Request = (T, Protocol, Option<net::SocketAddr>);
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
2019-04-08 21:51:16 +00:00
type Future = HttpServiceHandlerResponse<T, S, B, X, U>;
2019-03-07 06:56:34 +00:00
fn poll_ready(&mut self, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
2019-04-05 23:46:44 +00:00
let ready = self
.expect
.poll_ready(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready();
let ready = self
.srv
.poll_ready(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready()
&& ready;
if ready {
Poll::Ready(Ok(()))
2019-04-05 23:46:44 +00:00
} else {
Poll::Pending
2019-04-05 23:46:44 +00:00
}
2019-03-07 06:56:34 +00:00
}
2019-12-02 11:33:11 +00:00
fn call(&mut self, (io, proto, peer_addr): Self::Request) -> Self::Future {
2019-06-28 08:34:26 +00:00
let on_connect = if let Some(ref on_connect) = self.on_connect {
Some(on_connect(&io))
} else {
None
};
2019-03-11 22:09:42 +00:00
match proto {
2019-12-02 11:33:11 +00:00
Protocol::Http2 => HttpServiceHandlerResponse {
state: State::H2Handshake(Some((
server::handshake(io),
2019-03-11 22:09:42 +00:00
self.cfg.clone(),
self.srv.clone(),
2019-06-28 08:34:26 +00:00
on_connect,
2019-12-02 11:33:11 +00:00
peer_addr,
))),
2019-03-11 22:09:42 +00:00
},
2019-12-02 11:33:11 +00:00
Protocol::Http1 => HttpServiceHandlerResponse {
state: State::H1(h1::Dispatcher::new(
2019-03-11 22:09:42 +00:00
io,
self.cfg.clone(),
self.srv.clone(),
2019-04-05 23:46:44 +00:00
self.expect.clone(),
2019-04-08 21:51:16 +00:00
self.upgrade.clone(),
2019-06-28 08:34:26 +00:00
on_connect,
2019-12-02 11:33:11 +00:00
peer_addr,
)),
2019-03-11 22:09:42 +00:00
},
2019-03-07 06:56:34 +00:00
}
}
}
2019-11-19 12:54:19 +00:00
#[pin_project]
2019-04-08 21:51:16 +00:00
enum State<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Future: 'static,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-04-05 23:46:44 +00:00
B: MessageBody,
2019-11-19 12:54:19 +00:00
X: Service<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
2019-11-19 12:54:19 +00:00
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2019-03-07 06:56:34 +00:00
{
2019-11-19 12:54:19 +00:00
H1(#[pin] h1::Dispatcher<T, S, B, X, U>),
2019-12-02 11:33:11 +00:00
H2(#[pin] Dispatcher<T, S, B>),
H2Handshake(
2019-04-05 23:46:44 +00:00
Option<(
2019-12-02 11:33:11 +00:00
Handshake<T, Bytes>,
2019-04-05 23:46:44 +00:00
ServiceConfig,
CloneableService<S>,
2019-06-28 08:34:26 +00:00
Option<Box<dyn DataFactory>>,
Option<net::SocketAddr>,
)>,
),
2019-03-07 06:56:34 +00:00
}
2019-11-19 12:54:19 +00:00
#[pin_project]
2019-04-08 21:51:16 +00:00
pub struct HttpServiceHandlerResponse<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-11-19 12:54:19 +00:00
X: Service<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
2019-11-19 12:54:19 +00:00
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2019-03-07 06:56:34 +00:00
{
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-08 21:51:16 +00:00
state: State<T, S, B, X, U>,
2019-03-07 06:56:34 +00:00
}
2019-04-08 21:51:16 +00:00
impl<T, S, B, X, U> Future for HttpServiceHandlerResponse<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody,
2019-11-19 12:54:19 +00:00
X: Service<Request = Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
2019-11-19 12:54:19 +00:00
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2019-03-07 06:56:34 +00:00
{
type Output = Result<(), DispatchError>;
2019-03-07 06:56:34 +00:00
2019-11-19 12:54:19 +00:00
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
self.project().state.poll(cx)
}
}
impl<T, S, B, X, U> State<T, S, B, X, U>
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-11-19 12:54:19 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
B: MessageBody + 'static,
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
U: Service<Request = (Request, Framed<T, h1::Codec>), Response = ()>,
U::Error: fmt::Display,
{
#[project]
fn poll(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Result<(), DispatchError>> {
#[project]
match self.as_mut().project() {
State::H1(disp) => disp.poll(cx),
State::H2(disp) => disp.poll(cx),
2019-12-02 11:33:11 +00:00
State::H2Handshake(ref mut data) => {
2019-03-07 06:56:34 +00:00
let conn = if let Some(ref mut item) = data {
match Pin::new(&mut item.0).poll(cx) {
Poll::Ready(Ok(conn)) => conn,
Poll::Ready(Err(err)) => {
2019-03-07 06:56:34 +00:00
trace!("H2 handshake error: {}", err);
return Poll::Ready(Err(err.into()));
2019-03-07 06:56:34 +00:00
}
Poll::Pending => return Poll::Pending,
2019-03-07 06:56:34 +00:00
}
} else {
panic!()
};
2019-12-02 11:33:11 +00:00
let (_, cfg, srv, on_connect, peer_addr) = data.take().unwrap();
2019-11-19 12:54:19 +00:00
self.set(State::H2(Dispatcher::new(
2019-06-28 08:34:26 +00:00
srv, conn, on_connect, cfg, None, peer_addr,
2019-11-19 12:54:19 +00:00
)));
self.poll(cx)
2019-03-07 06:56:34 +00:00
}
}
}
}