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

633 lines
19 KiB
Rust
Raw Normal View History

2021-03-11 03:48:38 +00:00
use std::{
fmt,
future::Future,
marker::PhantomData,
net,
pin::Pin,
rc::Rc,
task::{Context, Poll},
};
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;
2021-04-16 19:28:21 +00:00
use actix_service::{
fn_service, IntoServiceFactory, Service, ServiceFactory, ServiceFactoryExt as _,
};
2019-12-02 11:33:11 +00:00
use bytes::Bytes;
use futures_core::{future::LocalBoxFuture, ready};
2021-03-11 03:48:38 +00:00
use h2::server::{handshake, Handshake};
use pin_project::pin_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;
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-03-07 06:56:34 +00:00
use crate::request::Request;
use crate::response::Response;
use crate::{h1, h2::Dispatcher, ConnectCallback, OnConnectData, Protocol};
2019-03-07 06:56:34 +00:00
/// A `ServiceFactory` for HTTP/1.1 or HTTP/2 protocol.
pub struct HttpService<T, S, B, X = h1::ExpectHandler, U = h1::UpgradeHandler> {
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>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData<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
S: ServiceFactory<Request, Config = ()>,
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<Request>>::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
S: ServiceFactory<Request, Config = ()>,
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<Request>>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
B::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
/// Create new `HttpService` instance.
pub fn new<F: IntoServiceFactory<S, Request>>(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,
on_connect_ext: None,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData,
}
}
/// Create new `HttpService` instance with config.
pub(crate) fn with_config<F: IntoServiceFactory<S, Request>>(
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,
on_connect_ext: None,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData,
2019-03-07 06:56:34 +00:00
}
}
}
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
S: ServiceFactory<Request, Config = ()>,
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<Request>>::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
X1: ServiceFactory<Request, Config = (), Response = Request>,
2019-04-08 21:51:16 +00:00
X1::Error: Into<Error>,
X1::InitError: fmt::Debug,
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,
on_connect_ext: self.on_connect_ext,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData,
2019-04-08 21:51:16 +00:00
}
}
/// 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<(Request, Framed<T, h1::Codec>), Config = (), Response = ()>,
2019-04-08 21:51:16 +00:00
U1::Error: fmt::Display,
U1::InitError: fmt::Debug,
{
HttpService {
upgrade,
cfg: self.cfg,
srv: self.srv,
expect: self.expect,
on_connect_ext: self.on_connect_ext,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData,
2019-04-05 23:46:44 +00:00
}
}
2019-06-28 08:34:26 +00:00
/// Set connect callback with mutable access to request data container.
pub(crate) fn on_connect_ext(mut self, f: Option<Rc<ConnectCallback<T>>>) -> Self {
self.on_connect_ext = 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
S: ServiceFactory<Request, Config = ()>,
S::Future: 'static,
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<Request>>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
B::Error: Into<Error>,
X: ServiceFactory<Request, Config = (), Response = Request>,
X::Future: 'static,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<
(Request, Framed<TcpStream, h1::Codec>),
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
>,
U::Future: 'static,
U::Error: fmt::Display + Into<Error>,
2019-12-02 11:33:11 +00:00
U::InitError: fmt::Debug,
{
/// Create simple tcp stream service
pub fn tcp(
self,
) -> impl ServiceFactory<
TcpStream,
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
Error = DispatchError,
InitError = (),
> {
2021-04-16 19:28:21 +00:00
fn_service(|io: TcpStream| async {
2019-12-02 11:33:11 +00:00
let peer_addr = io.peer_addr().ok();
Ok((io, Protocol::Http1, peer_addr))
2019-12-02 11:33:11 +00:00
})
.and_then(self)
}
}
#[cfg(feature = "openssl")]
mod openssl {
use actix_service::ServiceFactoryExt;
2021-02-27 19:57:09 +00:00
use actix_tls::accept::openssl::{Acceptor, SslAcceptor, SslError, TlsStream};
use actix_tls::accept::TlsError;
2019-12-02 11:33:11 +00:00
use super::*;
2021-02-27 19:57:09 +00:00
impl<S, B, X, U> HttpService<TlsStream<TcpStream>, S, B, X, U>
2019-12-02 11:33:11 +00:00
where
S: ServiceFactory<Request, Config = ()>,
S::Future: 'static,
2019-12-02 11:33:11 +00:00
S::Error: Into<Error> + 'static,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service<Request>>::Future: 'static,
2019-12-02 11:33:11 +00:00
B: MessageBody + 'static,
B::Error: Into<Error>,
X: ServiceFactory<Request, Config = (), Response = Request>,
X::Future: 'static,
2019-12-02 11:33:11 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-12-02 11:33:11 +00:00
U: ServiceFactory<
2021-02-27 19:57:09 +00:00
(Request, Framed<TlsStream<TcpStream>, h1::Codec>),
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
>,
U::Future: 'static,
U::Error: fmt::Display + Into<Error>,
2019-12-02 11:33:11 +00:00
U::InitError: fmt::Debug,
{
/// Create openssl based service
pub fn openssl(
self,
acceptor: SslAcceptor,
) -> impl ServiceFactory<
TcpStream,
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
Error = TlsError<SslError, DispatchError>,
2019-12-02 11:33:11 +00:00
InitError = (),
> {
2021-04-16 19:28:21 +00:00
Acceptor::new(acceptor)
.map_err(TlsError::Tls)
.map_init_err(|_| panic!())
.and_then(|io: TlsStream<TcpStream>| async {
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
}
2019-12-02 11:33:11 +00:00
} else {
Protocol::Http1
2021-04-16 19:28:21 +00:00
};
let peer_addr = io.get_ref().peer_addr().ok();
Ok((io, proto, peer_addr))
})
.and_then(self.map_err(TlsError::Service))
2019-12-02 11:33:11 +00:00
}
}
}
2019-12-05 17:35:43 +00:00
#[cfg(feature = "rustls")]
mod rustls {
use std::io;
use actix_tls::accept::rustls::{Acceptor, ServerConfig, Session, TlsStream};
use actix_tls::accept::TlsError;
use super::*;
use actix_service::ServiceFactoryExt;
2019-12-05 17:35:43 +00:00
impl<S, B, X, U> HttpService<TlsStream<TcpStream>, S, B, X, U>
where
S: ServiceFactory<Request, Config = ()>,
S::Future: 'static,
2019-12-05 17:35:43 +00:00
S::Error: Into<Error> + 'static,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service<Request>>::Future: 'static,
2019-12-05 17:35:43 +00:00
B: MessageBody + 'static,
B::Error: Into<Error>,
X: ServiceFactory<Request, Config = (), Response = Request>,
X::Future: 'static,
2019-12-05 17:35:43 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-12-05 17:35:43 +00:00
U: ServiceFactory<
(Request, Framed<TlsStream<TcpStream>, h1::Codec>),
2019-12-05 17:35:43 +00:00
Config = (),
Response = (),
>,
U::Future: 'static,
2019-12-20 07:50:07 +00:00
U::Error: fmt::Display + Into<Error>,
2019-12-05 17:35:43 +00:00
U::InitError: fmt::Debug,
{
/// Create rustls based service
2019-12-05 17:35:43 +00:00
pub fn rustls(
self,
mut config: ServerConfig,
) -> impl ServiceFactory<
TcpStream,
2019-12-05 17:35:43 +00:00
Config = (),
Response = (),
2020-09-09 08:20:54 +00:00
Error = TlsError<io::Error, DispatchError>,
2019-12-05 17:35:43 +00:00
InitError = (),
> {
let protos = vec!["h2".to_string().into(), "http/1.1".to_string().into()];
config.set_protocols(&protos);
2021-04-16 19:28:21 +00:00
Acceptor::new(config)
.map_err(TlsError::Tls)
.map_init_err(|_| panic!())
.and_then(|io: TlsStream<TcpStream>| async {
let proto = if let Some(protos) = io.get_ref().1.get_alpn_protocol()
{
if protos.windows(2).any(|window| window == b"h2") {
Protocol::Http2
} else {
Protocol::Http1
}
2019-12-05 17:35:43 +00:00
} else {
Protocol::Http1
2021-04-16 19:28:21 +00:00
};
let peer_addr = io.get_ref().0.peer_addr().ok();
Ok((io, proto, peer_addr))
})
.and_then(self.map_err(TlsError::Service))
2019-12-05 17:35:43 +00:00
}
}
}
impl<T, S, B, X, U> ServiceFactory<(T, Protocol, Option<net::SocketAddr>)>
for HttpService<T, S, B, X, U>
2019-12-02 11:33:11 +00:00
where
T: AsyncRead + AsyncWrite + Unpin + 'static,
S: ServiceFactory<Request, Config = ()>,
S::Future: 'static,
2019-12-02 11:33:11 +00:00
S::Error: Into<Error> + 'static,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service<Request>>::Future: 'static,
2019-12-02 11:33:11 +00:00
B: MessageBody + 'static,
B::Error: Into<Error>,
X: ServiceFactory<Request, Config = (), Response = Request>,
X::Future: 'static,
2019-12-02 11:33:11 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<(Request, Framed<T, h1::Codec>), Config = (), Response = ()>,
U::Future: 'static,
U::Error: fmt::Display + Into<Error>,
2019-04-08 21:51:16 +00:00
U::InitError: fmt::Debug,
2019-03-07 06:56:34 +00:00
{
type Response = ();
type Error = DispatchError;
type Config = ();
2019-12-02 11:33:11 +00:00
type Service = HttpServiceHandler<T, S::Service, B, X::Service, U::Service>;
type InitError = ();
type Future = LocalBoxFuture<'static, Result<Self::Service, Self::InitError>>;
2019-03-07 06:56:34 +00:00
2019-12-02 15:37:13 +00:00
fn new_service(&self, _: ()) -> Self::Future {
let service = self.srv.new_service(());
let expect = self.expect.new_service(());
let upgrade = self.upgrade.as_ref().map(|s| s.new_service(()));
let on_connect_ext = self.on_connect_ext.clone();
let cfg = self.cfg.clone();
Box::pin(async move {
let expect = expect
.await
.map_err(|e| log::error!("Init http expect service error: {:?}", e))?;
let upgrade = match upgrade {
Some(upgrade) => {
let upgrade = upgrade.await.map_err(|e| {
log::error!("Init http upgrade service error: {:?}", e)
})?;
Some(upgrade)
}
None => None,
};
let service = service
.await
.map_err(|e| log::error!("Init http service error: {:?}", e))?;
Ok(HttpServiceHandler::new(
cfg,
service,
expect,
upgrade,
on_connect_ext,
))
})
2019-03-07 06:56:34 +00:00
}
}
/// `Service` implementation for HTTP/1 and HTTP/2 transport
pub struct HttpServiceHandler<T, S, B, X, U>
where
S: Service<Request>,
X: Service<Request>,
U: Service<(Request, Framed<T, h1::Codec>)>,
{
pub(super) flow: Rc<HttpFlow<S, X, U>>,
pub(super) cfg: ServiceConfig,
pub(super) on_connect_ext: Option<Rc<ConnectCallback<T>>>,
_phantom: PhantomData<B>,
2019-03-07 06:56:34 +00:00
}
impl<T, S, B, X, U> HttpServiceHandler<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
S: Service<Request>,
S::Error: Into<Error>,
X: Service<Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(Request, Framed<T, h1::Codec>)>,
U::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
pub(super) fn new(
cfg: ServiceConfig,
service: S,
expect: X,
upgrade: Option<U>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
) -> HttpServiceHandler<T, S, B, X, U> {
HttpServiceHandler {
cfg,
on_connect_ext,
flow: HttpFlow::new(service, expect, upgrade),
_phantom: PhantomData,
2019-04-05 23:46:44 +00:00
}
}
2019-04-05 23:46:44 +00:00
pub(super) fn _poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Error>> {
ready!(self.flow.expect.poll_ready(cx).map_err(Into::into))?;
2019-04-08 21:51:16 +00:00
ready!(self.flow.service.poll_ready(cx).map_err(Into::into))?;
if let Some(ref upg) = self.flow.upgrade {
ready!(upg.poll_ready(cx).map_err(Into::into))?;
};
2019-03-07 06:56:34 +00:00
Poll::Ready(Ok(()))
}
2019-03-07 06:56:34 +00:00
}
2021-01-06 18:52:06 +00:00
/// A collection of services that describe an HTTP request flow.
pub(super) struct HttpFlow<S, X, U> {
pub(super) service: S,
pub(super) expect: X,
pub(super) upgrade: Option<U>,
}
impl<S, X, U> HttpFlow<S, X, U> {
pub(super) fn new(service: S, expect: X, upgrade: Option<U>) -> Rc<Self> {
Rc::new(Self {
service,
expect,
upgrade,
})
}
}
impl<T, S, B, X, U> Service<(T, Protocol, Option<net::SocketAddr>)>
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,
S: Service<Request>,
2019-11-19 12:54:19 +00:00
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,
B::Error: Into<Error>,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
U::Error: fmt::Display + Into<Error>,
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(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self._poll_ready(cx).map_err(|e| {
log::error!("HTTP service readiness error: {:?}", e);
DispatchError::Service(e)
})
2019-03-07 06:56:34 +00:00
}
fn call(
&self,
(io, proto, peer_addr): (T, Protocol, Option<net::SocketAddr>),
) -> Self::Future {
let on_connect_data =
OnConnectData::from_io(&io, self.on_connect_ext.as_deref());
2019-06-28 08:34:26 +00:00
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((
2021-03-11 03:48:38 +00:00
handshake(io),
2019-03-11 22:09:42 +00:00
self.cfg.clone(),
2021-01-06 18:52:06 +00:00
self.flow.clone(),
on_connect_data,
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(),
2021-01-06 18:52:06 +00:00
self.flow.clone(),
on_connect_data,
2019-12-02 11:33:11 +00:00
peer_addr,
)),
2019-03-11 22:09:42 +00:00
},
2021-01-06 18:58:24 +00:00
2021-01-07 00:35:19 +00:00
proto => unimplemented!("Unsupported HTTP version: {:?}.", proto),
2019-03-07 06:56:34 +00:00
}
}
}
#[pin_project(project = StateProj)]
2019-04-08 21:51:16 +00:00
enum State<T, S, B, X, U>
2019-03-07 06:56:34 +00:00
where
T: AsyncRead + AsyncWrite + Unpin,
S: Service<Request>,
2019-11-19 12:54:19 +00:00
S::Future: 'static,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-05 23:46:44 +00:00
B: MessageBody,
B::Error: Into<Error>,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(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>),
H2(#[pin] Dispatcher<T, S, B, X, U>),
2019-12-02 11:33:11 +00:00
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,
Rc<HttpFlow<S, X, U>>,
OnConnectData,
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,
S: Service<Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
B: MessageBody,
B::Error: Into<Error>,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(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,
S: Service<Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
B: MessageBody + 'static,
B::Error: Into<Error>,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(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
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match self.as_mut().project().state.project() {
StateProj::H1(disp) => disp.poll(cx),
StateProj::H2(disp) => disp.poll(cx),
StateProj::H2Handshake(data) => {
match ready!(Pin::new(&mut data.as_mut().unwrap().0).poll(cx)) {
Ok(conn) => {
let (_, cfg, srv, on_connect_data, peer_addr) =
data.take().unwrap();
self.as_mut().project().state.set(State::H2(Dispatcher::new(
srv,
conn,
on_connect_data,
cfg,
peer_addr,
)));
self.poll(cx)
2019-03-07 06:56:34 +00:00
}
Err(err) => {
trace!("H2 handshake error: {}", err);
Poll::Ready(Err(err.into()))
}
}
2019-03-07 06:56:34 +00:00
}
}
}
}