2019-03-07 07:56:34 +01:00
|
|
|
use std::marker::PhantomData;
|
2019-11-15 10:54:11 +01:00
|
|
|
use std::pin::Pin;
|
|
|
|
use std::task::{Context, Poll};
|
2020-10-30 03:03:26 +01:00
|
|
|
use std::{fmt, net, rc::Rc};
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2019-04-08 23:51:16 +02:00
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed};
|
2019-12-02 12:33:11 +01:00
|
|
|
use actix_rt::net::TcpStream;
|
|
|
|
use actix_service::{pipeline_factory, IntoServiceFactory, Service, ServiceFactory};
|
|
|
|
use bytes::Bytes;
|
2019-12-13 06:24:57 +01:00
|
|
|
use futures_core::{ready, Future};
|
|
|
|
use futures_util::future::ok;
|
2019-03-07 07:56:34 +01:00
|
|
|
use h2::server::{self, Handshake};
|
2020-06-05 23:44:14 +02:00
|
|
|
use pin_project::pin_project;
|
2019-03-07 07:56:34 +01:00
|
|
|
|
|
|
|
use crate::body::MessageBody;
|
2019-03-09 19:39:06 +01:00
|
|
|
use crate::builder::HttpServiceBuilder;
|
2019-07-17 09:55:44 +02:00
|
|
|
use crate::cloneable::CloneableService;
|
2019-03-07 07:56:34 +01:00
|
|
|
use crate::config::{KeepAlive, ServiceConfig};
|
2019-04-06 01:46:44 +02:00
|
|
|
use crate::error::{DispatchError, Error};
|
2019-03-07 07:56:34 +01:00
|
|
|
use crate::request::Request;
|
|
|
|
use crate::response::Response;
|
2020-10-30 03:03:26 +01:00
|
|
|
use crate::{h1, h2::Dispatcher, ConnectCallback, Extensions, Protocol};
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2020-10-30 03:03:26 +01:00
|
|
|
/// A `ServiceFactory` for HTTP/1.1 or HTTP/2 protocol.
|
2021-01-04 00:47:04 +01:00
|
|
|
pub struct HttpService<T, S, B, X = h1::ExpectHandler, U = h1::UpgradeHandler> {
|
2019-03-07 07:56:34 +01:00
|
|
|
srv: S,
|
|
|
|
cfg: ServiceConfig,
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: X,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: Option<U>,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
|
2021-01-04 00:47:04 +01:00
|
|
|
_t: PhantomData<B>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B> HttpService<T, S, B>
|
2019-03-11 23:09:42 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-03-11 23:09:42 +01:00
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
|
|
|
/// Create builder for `HttpService` instance.
|
|
|
|
pub fn build() -> HttpServiceBuilder<T, S> {
|
|
|
|
HttpServiceBuilder::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B> HttpService<T, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
|
|
|
/// Create new `HttpService` instance.
|
2021-01-04 00:47:04 +01:00
|
|
|
pub fn new<F: IntoServiceFactory<S, Request>>(service: F) -> Self {
|
2019-12-02 12:33:11 +01:00
|
|
|
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0, false, None);
|
2019-03-07 07:56:34 +01:00
|
|
|
|
|
|
|
HttpService {
|
|
|
|
cfg,
|
2019-11-15 10:54:11 +01:00
|
|
|
srv: service.into_factory(),
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: h1::ExpectHandler,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: None,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: None,
|
2019-03-07 07:59:56 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create new `HttpService` instance with config.
|
2021-01-04 00:47:04 +01:00
|
|
|
pub(crate) fn with_config<F: IntoServiceFactory<S, Request>>(
|
2019-03-07 07:59:56 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
service: F,
|
|
|
|
) -> Self {
|
|
|
|
HttpService {
|
|
|
|
cfg,
|
2019-11-15 10:54:11 +01:00
|
|
|
srv: service.into_factory(),
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: h1::ExpectHandler,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: None,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: None,
|
2019-03-07 07:56:34 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> HttpService<T, S, B, X, U>
|
2019-04-06 01:46:44 +02:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-04-06 01:46:44 +02: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 12:33:11 +01:00
|
|
|
pub fn expect<X1>(self, expect: X1) -> HttpService<T, S, B, X1, U>
|
2019-04-06 01:46:44 +02:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
X1: ServiceFactory<Request, Config = (), Response = Request>,
|
2019-04-08 23:51:16 +02:00
|
|
|
X1::Error: Into<Error>,
|
|
|
|
X1::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X1::Service as Service<Request>>::Future: 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
{
|
|
|
|
HttpService {
|
|
|
|
expect,
|
|
|
|
cfg: self.cfg,
|
|
|
|
srv: self.srv,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: self.upgrade,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: self.on_connect_ext,
|
2019-04-08 23:51:16 +02: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 12:33:11 +01:00
|
|
|
pub fn upgrade<U1>(self, upgrade: Option<U1>) -> HttpService<T, S, B, X, U1>
|
2019-04-08 23:51:16 +02:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
U1: ServiceFactory<(Request, Framed<T, h1::Codec>), Config = (), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U1::Error: fmt::Display,
|
|
|
|
U1::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U1::Service as Service<(Request, Framed<T, h1::Codec>)>>::Future: 'static,
|
2019-04-08 23:51:16 +02:00
|
|
|
{
|
|
|
|
HttpService {
|
|
|
|
upgrade,
|
|
|
|
cfg: self.cfg,
|
|
|
|
srv: self.srv,
|
|
|
|
expect: self.expect,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: self.on_connect_ext,
|
2019-04-06 01:46:44 +02:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 10:34:26 +02:00
|
|
|
|
2020-10-30 03:03:26 +01: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-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<S, B, X, U> HttpService<TcpStream, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: ServiceFactory<Request, Config = (), Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X::Service as Service<Request>>::Future: 'static,
|
2019-11-15 10:54:11 +01:00
|
|
|
U: ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
(Request, Framed<TcpStream, h1::Codec>),
|
2019-12-02 12:33:11 +01:00
|
|
|
Config = (),
|
|
|
|
Response = (),
|
|
|
|
>,
|
2019-12-17 08:34:25 +01:00
|
|
|
U::Error: fmt::Display + Into<Error>,
|
2019-12-02 12:33:11 +01:00
|
|
|
U::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U::Service as Service<(Request, Framed<TcpStream, h1::Codec>)>>::Future: 'static,
|
2019-12-02 12:33:11 +01:00
|
|
|
{
|
|
|
|
/// Create simple tcp stream service
|
|
|
|
pub fn tcp(
|
|
|
|
self,
|
|
|
|
) -> impl ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
TcpStream,
|
2019-12-02 12:33:11 +01:00
|
|
|
Config = (),
|
|
|
|
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::*;
|
2021-01-04 00:47:04 +01:00
|
|
|
use actix_service::ServiceFactoryExt;
|
|
|
|
use actix_tls::accept::openssl::{Acceptor, SslAcceptor, SslError, SslStream};
|
|
|
|
use actix_tls::accept::TlsError;
|
2019-12-02 12:33:11 +01:00
|
|
|
|
|
|
|
impl<S, B, X, U> HttpService<SslStream<TcpStream>, S, B, X, U>
|
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-12-02 12:33:11 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-12-02 12:33:11 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: ServiceFactory<Request, Config = (), Response = Request>,
|
2019-12-02 12:33:11 +01:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X::Service as Service<Request>>::Future: 'static,
|
2019-12-02 12:33:11 +01:00
|
|
|
U: ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
(Request, Framed<SslStream<TcpStream>, h1::Codec>),
|
2019-12-02 12:33:11 +01:00
|
|
|
Config = (),
|
|
|
|
Response = (),
|
|
|
|
>,
|
2019-12-17 08:34:25 +01:00
|
|
|
U::Error: fmt::Display + Into<Error>,
|
2019-12-02 12:33:11 +01:00
|
|
|
U::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U::Service as Service<(Request, Framed<SslStream<TcpStream>, h1::Codec>)>>::Future: 'static,
|
2019-12-02 12:33:11 +01:00
|
|
|
{
|
|
|
|
/// Create openssl based service
|
|
|
|
pub fn openssl(
|
|
|
|
self,
|
|
|
|
acceptor: SslAcceptor,
|
|
|
|
) -> impl ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
TcpStream,
|
2019-12-02 12:33:11 +01:00
|
|
|
Config = (),
|
|
|
|
Response = (),
|
2021-01-04 00:47:04 +01:00
|
|
|
Error = TlsError<SslError, DispatchError>,
|
2019-12-02 12:33:11 +01:00
|
|
|
InitError = (),
|
|
|
|
> {
|
|
|
|
pipeline_factory(
|
|
|
|
Acceptor::new(acceptor)
|
2020-09-09 10:20:54 +02:00
|
|
|
.map_err(TlsError::Tls)
|
2019-12-02 12:33:11 +01:00
|
|
|
.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))
|
|
|
|
})
|
2020-09-09 10:20:54 +02:00
|
|
|
.and_then(self.map_err(TlsError::Service))
|
2019-12-02 12:33:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 18:35:43 +01:00
|
|
|
#[cfg(feature = "rustls")]
|
|
|
|
mod rustls {
|
|
|
|
use std::io;
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
use actix_tls::accept::rustls::{Acceptor, ServerConfig, Session, TlsStream};
|
|
|
|
use actix_tls::accept::TlsError;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use actix_service::ServiceFactoryExt;
|
|
|
|
|
2019-12-05 18:35:43 +01:00
|
|
|
impl<S, B, X, U> HttpService<TlsStream<TcpStream>, S, B, X, U>
|
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-12-05 18:35:43 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-12-05 18:35:43 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: ServiceFactory<Request, Config = (), Response = Request>,
|
2019-12-05 18:35:43 +01:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X::Service as Service<Request>>::Future: 'static,
|
2019-12-05 18:35:43 +01:00
|
|
|
U: ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
(Request, Framed<TlsStream<TcpStream>, h1::Codec>),
|
2019-12-05 18:35:43 +01:00
|
|
|
Config = (),
|
|
|
|
Response = (),
|
|
|
|
>,
|
2019-12-20 08:50:07 +01:00
|
|
|
U::Error: fmt::Display + Into<Error>,
|
2019-12-05 18:35:43 +01:00
|
|
|
U::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U::Service as Service<(Request, Framed<TlsStream<TcpStream>, h1::Codec>)>>::Future: 'static,
|
2019-12-05 18:35:43 +01:00
|
|
|
{
|
|
|
|
/// Create openssl based service
|
|
|
|
pub fn rustls(
|
|
|
|
self,
|
|
|
|
mut config: ServerConfig,
|
|
|
|
) -> impl ServiceFactory<
|
2021-01-04 00:47:04 +01:00
|
|
|
TcpStream,
|
2019-12-05 18:35:43 +01:00
|
|
|
Config = (),
|
|
|
|
Response = (),
|
2020-09-09 10:20:54 +02:00
|
|
|
Error = TlsError<io::Error, DispatchError>,
|
2019-12-05 18:35:43 +01:00
|
|
|
InitError = (),
|
|
|
|
> {
|
|
|
|
let protos = vec!["h2".to_string().into(), "http/1.1".to_string().into()];
|
|
|
|
config.set_protocols(&protos);
|
|
|
|
|
|
|
|
pipeline_factory(
|
|
|
|
Acceptor::new(config)
|
2020-09-09 10:20:54 +02:00
|
|
|
.map_err(TlsError::Tls)
|
2019-12-05 18:35:43 +01:00
|
|
|
.map_init_err(|_| panic!()),
|
|
|
|
)
|
|
|
|
.and_then(|io: TlsStream<TcpStream>| {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Protocol::Http1
|
|
|
|
};
|
|
|
|
let peer_addr = io.get_ref().0.peer_addr().ok();
|
|
|
|
ok((io, proto, peer_addr))
|
|
|
|
})
|
2020-09-09 10:20:54 +02:00
|
|
|
.and_then(self.map_err(TlsError::Service))
|
2019-12-05 18:35:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl<T, S, B, X, U> ServiceFactory<(T, Protocol, Option<net::SocketAddr>)>
|
|
|
|
for HttpService<T, S, B, X, U>
|
2019-12-02 12:33:11 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request, Config = ()>,
|
2019-12-02 12:33:11 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-12-02 12:33:11 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: ServiceFactory<Request, Config = (), Response = Request>,
|
2019-12-02 12:33:11 +01:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X::Service as Service<Request>>::Future: 'static,
|
|
|
|
U: ServiceFactory<(Request, Framed<T, h1::Codec>), Config = (), Response = ()>,
|
2019-12-17 08:34:25 +01:00
|
|
|
U::Error: fmt::Display + Into<Error>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U::Service as Service<(Request, Framed<T, h1::Codec>)>>::Future: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
2021-01-04 00:47:04 +01:00
|
|
|
type Config = ();
|
2019-12-02 12:33:11 +01:00
|
|
|
type Service = HttpServiceHandler<T, S::Service, B, X::Service, U::Service>;
|
2021-01-04 00:47:04 +01:00
|
|
|
type InitError = ();
|
2019-12-02 12:33:11 +01:00
|
|
|
type Future = HttpServiceResponse<T, S, B, X, U>;
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2019-12-02 16:37:13 +01:00
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
2019-03-07 07:56:34 +01:00
|
|
|
HttpServiceResponse {
|
2019-12-02 16:37:13 +01:00
|
|
|
fut: self.srv.new_service(()),
|
|
|
|
fut_ex: Some(self.expect.new_service(())),
|
|
|
|
fut_upg: self.upgrade.as_ref().map(|f| f.new_service(())),
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: None,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: None,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: self.on_connect_ext.clone(),
|
2019-12-02 12:33:11 +01:00
|
|
|
cfg: self.cfg.clone(),
|
2019-03-07 07:56:34 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin_project]
|
2021-01-04 00:47:04 +01:00
|
|
|
pub struct HttpServiceResponse<T, S, B, X, U>
|
|
|
|
where
|
|
|
|
S: ServiceFactory<Request>,
|
|
|
|
X: ServiceFactory<Request>,
|
|
|
|
U: ServiceFactory<(Request, Framed<T, h1::Codec>)>,
|
|
|
|
{
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin]
|
2019-04-06 01:46:44 +02:00
|
|
|
fut: S::Future,
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin]
|
2019-04-06 01:46:44 +02:00
|
|
|
fut_ex: Option<X::Future>,
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin]
|
2019-04-08 23:51:16 +02:00
|
|
|
fut_upg: Option<U::Future>,
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: Option<X::Service>,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: Option<U::Service>,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
|
2019-12-02 12:33:11 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
_t: PhantomData<(T, B)>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> Future for HttpServiceResponse<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: ServiceFactory<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
<S::Service as Service<Request>>::Future: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: ServiceFactory<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<X::Service as Service<Request>>::Future: 'static,
|
|
|
|
U: ServiceFactory<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
2021-01-04 00:47:04 +01:00
|
|
|
<U::Service as Service<(Request, Framed<T, h1::Codec>)>>::Future: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
2019-11-15 10:54:11 +01:00
|
|
|
type Output =
|
2019-12-02 12:33:11 +01:00
|
|
|
Result<HttpServiceHandler<T, S::Service, B, X::Service, U::Service>, ()>;
|
2019-11-15 10:54:11 +01:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
2019-11-19 13:54:19 +01:00
|
|
|
let mut this = self.as_mut().project();
|
2019-11-15 10:54:11 +01:00
|
|
|
|
2019-11-19 13:54:19 +01:00
|
|
|
if let Some(fut) = this.fut_ex.as_pin_mut() {
|
|
|
|
let expect = ready!(fut
|
2019-11-15 10:54:11 +01:00
|
|
|
.poll(cx)
|
|
|
|
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
|
2019-11-19 13:54:19 +01:00
|
|
|
this = self.as_mut().project();
|
|
|
|
*this.expect = Some(expect);
|
|
|
|
this.fut_ex.set(None);
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2019-11-19 13:54:19 +01:00
|
|
|
if let Some(fut) = this.fut_upg.as_pin_mut() {
|
|
|
|
let upgrade = ready!(fut
|
2019-11-15 10:54:11 +01:00
|
|
|
.poll(cx)
|
|
|
|
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
|
2019-11-19 13:54:19 +01:00
|
|
|
this = self.as_mut().project();
|
|
|
|
*this.upgrade = Some(upgrade);
|
|
|
|
this.fut_ex.set(None);
|
2019-04-08 23:51:16 +02:00
|
|
|
}
|
|
|
|
|
2019-11-19 13:54:19 +01:00
|
|
|
let result = ready!(this
|
|
|
|
.fut
|
2019-11-15 10:54:11 +01:00
|
|
|
.poll(cx)
|
2019-04-06 01:46:44 +02:00
|
|
|
.map_err(|e| log::error!("Init http service error: {:?}", e)));
|
2020-10-30 03:03:26 +01:00
|
|
|
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(result.map(|service| {
|
2019-11-19 13:54:19 +01:00
|
|
|
let this = self.as_mut().project();
|
2019-11-15 10:54:11 +01:00
|
|
|
HttpServiceHandler::new(
|
2019-12-02 12:33:11 +01:00
|
|
|
this.cfg.clone(),
|
2019-11-15 10:54:11 +01:00
|
|
|
service,
|
|
|
|
this.expect.take().unwrap(),
|
|
|
|
this.upgrade.take(),
|
2020-10-30 03:03:26 +01:00
|
|
|
this.on_connect_ext.clone(),
|
2019-11-15 10:54:11 +01:00
|
|
|
)
|
|
|
|
}))
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Service` implementation for http transport
|
2021-01-04 00:47:04 +01:00
|
|
|
pub struct HttpServiceHandler<T, S, B, X, U>
|
|
|
|
where
|
|
|
|
S: Service<Request>,
|
|
|
|
X: Service<Request>,
|
|
|
|
U: Service<(Request, Framed<T, h1::Codec>)>,
|
|
|
|
{
|
2019-03-07 07:56:34 +01:00
|
|
|
srv: CloneableService<S>,
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: CloneableService<X>,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: Option<CloneableService<U>>,
|
2019-03-07 07:56:34 +01:00
|
|
|
cfg: ServiceConfig,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
|
2021-01-04 00:47:04 +01:00
|
|
|
_t: PhantomData<B>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> HttpServiceHandler<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
2019-04-04 19:59:34 +02:00
|
|
|
S::Future: 'static,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
2019-04-08 23:51:16 +02:00
|
|
|
fn new(
|
|
|
|
cfg: ServiceConfig,
|
|
|
|
srv: S,
|
|
|
|
expect: X,
|
|
|
|
upgrade: Option<U>,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
|
2019-12-02 12:33:11 +01:00
|
|
|
) -> HttpServiceHandler<T, S, B, X, U> {
|
2019-03-07 07:56:34 +01:00
|
|
|
HttpServiceHandler {
|
|
|
|
cfg,
|
2020-10-30 03:03:26 +01:00
|
|
|
on_connect_ext,
|
2019-03-07 07:56:34 +01:00
|
|
|
srv: CloneableService::new(srv),
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: CloneableService::new(expect),
|
2019-07-17 09:55:44 +02:00
|
|
|
upgrade: upgrade.map(CloneableService::new),
|
2019-03-07 07:56:34 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl<T, S, B, X, U> Service<(T, Protocol, Option<net::SocketAddr>)>
|
|
|
|
for HttpServiceHandler<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-12-17 08:34:25 +01:00
|
|
|
U::Error: fmt::Display + Into<Error>,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
2019-04-08 23:51:16 +02:00
|
|
|
type Future = HttpServiceHandlerResponse<T, S, B, X, U>;
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
2019-04-06 01:46:44 +02:00
|
|
|
let ready = self
|
|
|
|
.expect
|
2019-11-15 10:54:11 +01:00
|
|
|
.poll_ready(cx)
|
2019-04-06 01:46:44 +02:00
|
|
|
.map_err(|e| {
|
|
|
|
let e = e.into();
|
|
|
|
log::error!("Http service readiness error: {:?}", e);
|
|
|
|
DispatchError::Service(e)
|
|
|
|
})?
|
|
|
|
.is_ready();
|
|
|
|
|
|
|
|
let ready = self
|
|
|
|
.srv
|
2019-11-15 10:54:11 +01:00
|
|
|
.poll_ready(cx)
|
2019-04-06 01:46:44 +02:00
|
|
|
.map_err(|e| {
|
|
|
|
let e = e.into();
|
|
|
|
log::error!("Http service readiness error: {:?}", e);
|
|
|
|
DispatchError::Service(e)
|
|
|
|
})?
|
|
|
|
.is_ready()
|
|
|
|
&& ready;
|
|
|
|
|
2019-12-17 08:34:25 +01:00
|
|
|
let ready = if let Some(ref mut upg) = self.upgrade {
|
|
|
|
upg.poll_ready(cx)
|
|
|
|
.map_err(|e| {
|
|
|
|
let e = e.into();
|
|
|
|
log::error!("Http service readiness error: {:?}", e);
|
|
|
|
DispatchError::Service(e)
|
|
|
|
})?
|
|
|
|
.is_ready()
|
|
|
|
&& ready
|
|
|
|
} else {
|
|
|
|
ready
|
|
|
|
};
|
|
|
|
|
2019-04-06 01:46:44 +02:00
|
|
|
if ready {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Ok(()))
|
2019-04-06 01:46:44 +02:00
|
|
|
} else {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Pending
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
fn call(
|
|
|
|
&mut self,
|
|
|
|
(io, proto, peer_addr): (T, Protocol, Option<net::SocketAddr>),
|
|
|
|
) -> Self::Future {
|
2020-10-30 03:03:26 +01:00
|
|
|
let mut connect_extensions = Extensions::new();
|
|
|
|
|
|
|
|
if let Some(ref handler) = self.on_connect_ext {
|
|
|
|
handler(&io, &mut connect_extensions);
|
|
|
|
}
|
2019-06-28 10:34:26 +02:00
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
match proto {
|
2019-12-02 12:33:11 +01:00
|
|
|
Protocol::Http2 => HttpServiceHandlerResponse {
|
|
|
|
state: State::H2Handshake(Some((
|
|
|
|
server::handshake(io),
|
2019-03-11 23:09:42 +01:00
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
2020-10-30 03:03:26 +01:00
|
|
|
connect_extensions,
|
2019-12-02 12:33:11 +01:00
|
|
|
peer_addr,
|
|
|
|
))),
|
2019-03-11 23:09:42 +01:00
|
|
|
},
|
2020-10-30 03:03:26 +01:00
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
Protocol::Http1 => HttpServiceHandlerResponse {
|
|
|
|
state: State::H1(h1::Dispatcher::new(
|
2019-03-11 23:09:42 +01:00
|
|
|
io,
|
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
2019-04-06 01:46:44 +02:00
|
|
|
self.expect.clone(),
|
2019-04-08 23:51:16 +02:00
|
|
|
self.upgrade.clone(),
|
2020-10-30 03:03:26 +01:00
|
|
|
connect_extensions,
|
2019-12-02 12:33:11 +01:00
|
|
|
peer_addr,
|
|
|
|
)),
|
2019-03-11 23:09:42 +01:00
|
|
|
},
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 23:44:14 +02:00
|
|
|
#[pin_project(project = StateProj)]
|
2019-04-08 23:51:16 +02:00
|
|
|
enum State<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Future: 'static,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2019-04-06 01:46:44 +02:00
|
|
|
B: MessageBody,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
2019-11-19 13:54:19 +01:00
|
|
|
H1(#[pin] h1::Dispatcher<T, S, B, X, U>),
|
2019-12-02 12:33:11 +01:00
|
|
|
H2(#[pin] Dispatcher<T, S, B>),
|
|
|
|
H2Handshake(
|
2019-04-06 01:46:44 +02:00
|
|
|
Option<(
|
2019-12-02 12:33:11 +01:00
|
|
|
Handshake<T, Bytes>,
|
2019-04-06 01:46:44 +02:00
|
|
|
ServiceConfig,
|
|
|
|
CloneableService<S>,
|
2020-10-30 03:03:26 +01:00
|
|
|
Extensions,
|
2019-04-16 18:54:02 +02:00
|
|
|
Option<net::SocketAddr>,
|
|
|
|
)>,
|
|
|
|
),
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin_project]
|
2019-04-08 23:51:16 +02:00
|
|
|
pub struct HttpServiceHandlerResponse<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin]
|
2019-04-08 23:51:16 +02:00
|
|
|
state: State<T, S, B, X, U>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-04-08 23:51:16 +02:00
|
|
|
impl<T, S, B, X, U> Future for HttpServiceHandlerResponse<T, S, B, X, U>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
B: MessageBody,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2019-03-07 07:56:34 +01:00
|
|
|
{
|
2019-11-15 10:54:11 +01:00
|
|
|
type Output = Result<(), DispatchError>;
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
2019-11-19 13:54:19 +01:00
|
|
|
self.project().state.poll(cx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, S, B, X, U> State<T, S, B, X, U>
|
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2021-01-04 00:47:04 +01:00
|
|
|
S: Service<Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
S::Error: Into<Error> + 'static,
|
|
|
|
S::Response: Into<Response<B>> + 'static,
|
|
|
|
B: MessageBody + 'static,
|
2021-01-04 00:47:04 +01:00
|
|
|
X: Service<Request, Response = Request>,
|
2019-11-19 13:54:19 +01:00
|
|
|
X::Error: Into<Error>,
|
2021-01-04 00:47:04 +01:00
|
|
|
U: Service<(Request, Framed<T, h1::Codec>), Response = ()>,
|
2019-11-19 13:54:19 +01:00
|
|
|
U::Error: fmt::Display,
|
|
|
|
{
|
|
|
|
fn poll(
|
|
|
|
mut self: Pin<&mut Self>,
|
2019-12-07 19:46:51 +01:00
|
|
|
cx: &mut Context<'_>,
|
2019-11-19 13:54:19 +01:00
|
|
|
) -> Poll<Result<(), DispatchError>> {
|
|
|
|
match self.as_mut().project() {
|
2020-06-05 23:44:14 +02:00
|
|
|
StateProj::H1(disp) => disp.poll(cx),
|
|
|
|
StateProj::H2(disp) => disp.poll(cx),
|
|
|
|
StateProj::H2Handshake(ref mut data) => {
|
2019-03-07 07:56:34 +01:00
|
|
|
let conn = if let Some(ref mut item) = data {
|
2019-11-15 10:54:11 +01:00
|
|
|
match Pin::new(&mut item.0).poll(cx) {
|
|
|
|
Poll::Ready(Ok(conn)) => conn,
|
|
|
|
Poll::Ready(Err(err)) => {
|
2019-03-07 07:56:34 +01:00
|
|
|
trace!("H2 handshake error: {}", err);
|
2019-11-15 10:54:11 +01:00
|
|
|
return Poll::Ready(Err(err.into()));
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Pending => return Poll::Pending,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!()
|
|
|
|
};
|
2020-12-28 00:23:30 +01:00
|
|
|
let (_, cfg, srv, on_connect_data, peer_addr) = data.take().unwrap();
|
2019-11-19 13:54:19 +01:00
|
|
|
self.set(State::H2(Dispatcher::new(
|
2020-10-30 03:03:26 +01:00
|
|
|
srv,
|
|
|
|
conn,
|
|
|
|
on_connect_data,
|
|
|
|
cfg,
|
|
|
|
None,
|
|
|
|
peer_addr,
|
2019-11-19 13:54:19 +01:00
|
|
|
)));
|
2019-11-15 10:54:11 +01:00
|
|
|
self.poll(cx)
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|