2019-11-15 10:54:11 +01:00
|
|
|
use std::future::Future;
|
2018-10-05 05:02:10 +02:00
|
|
|
use std::marker::PhantomData;
|
2019-11-15 10:54:11 +01:00
|
|
|
use std::pin::Pin;
|
2019-06-28 10:34:26 +02:00
|
|
|
use std::rc::Rc;
|
2019-11-15 10:54:11 +01:00
|
|
|
use std::task::{Context, Poll};
|
2019-12-02 12:33:11 +01:00
|
|
|
use std::{fmt, net};
|
2018-10-05 05:02:10 +02:00
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed};
|
|
|
|
use actix_rt::net::TcpStream;
|
|
|
|
use actix_service::{pipeline_factory, IntoServiceFactory, Service, ServiceFactory};
|
2019-12-13 06:24:57 +01:00
|
|
|
use futures_core::ready;
|
|
|
|
use futures_util::future::{ok, Ready};
|
2018-10-05 05:02:10 +02:00
|
|
|
|
2018-12-06 23:32:52 +01:00
|
|
|
use crate::body::MessageBody;
|
2019-07-17 09:55:44 +02:00
|
|
|
use crate::cloneable::CloneableService;
|
2019-12-02 12:33:11 +01:00
|
|
|
use crate::config::ServiceConfig;
|
2019-04-06 01:46:44 +02:00
|
|
|
use crate::error::{DispatchError, Error, ParseError};
|
2019-06-28 10:34:26 +02:00
|
|
|
use crate::helpers::DataFactory;
|
2018-12-06 23:32:52 +01:00
|
|
|
use crate::request::Request;
|
|
|
|
use crate::response::Response;
|
2018-10-05 05:02:10 +02:00
|
|
|
|
2018-10-23 03:18:05 +02:00
|
|
|
use super::codec::Codec;
|
2018-10-05 05:02:10 +02:00
|
|
|
use super::dispatcher::Dispatcher;
|
2019-04-08 23:51:16 +02:00
|
|
|
use super::{ExpectHandler, Message, UpgradeHandler};
|
2018-10-05 05:02:10 +02:00
|
|
|
|
2019-11-15 10:54:11 +01:00
|
|
|
/// `ServiceFactory` implementation for HTTP1 transport
|
2019-12-02 12:33:11 +01:00
|
|
|
pub struct H1Service<T, S, B, X = ExpectHandler, U = UpgradeHandler<T>> {
|
2018-10-05 05:02:10 +02: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>,
|
2019-07-17 11:48:37 +02:00
|
|
|
on_connect: Option<Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
|
2019-12-02 12:33:11 +01:00
|
|
|
_t: PhantomData<(T, B)>,
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B> H1Service<T, S, B>
|
2018-10-05 05:02:10 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::InitError: fmt::Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2018-11-18 05:21:28 +01:00
|
|
|
B: MessageBody,
|
2018-10-05 05:02:10 +02:00
|
|
|
{
|
2019-03-05 00:58:39 +01:00
|
|
|
/// Create new `HttpService` instance with config.
|
2019-12-02 12:33:11 +01:00
|
|
|
pub(crate) fn with_config<F: IntoServiceFactory<S>>(
|
2019-11-15 10:54:11 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
service: F,
|
|
|
|
) -> Self {
|
2019-03-05 00:58:39 +01:00
|
|
|
H1Service {
|
|
|
|
cfg,
|
2019-11-15 10:54:11 +01:00
|
|
|
srv: service.into_factory(),
|
2019-04-06 01:46:44 +02:00
|
|
|
expect: ExpectHandler,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: None,
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect: None,
|
2018-10-05 05:02:10 +02:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<S, B, X, U> H1Service<TcpStream, S, B, X, U>
|
2019-04-06 01:46:44 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody,
|
|
|
|
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
|
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
|
|
|
U: ServiceFactory<
|
|
|
|
Config = (),
|
|
|
|
Request = (Request, Framed<TcpStream, Codec>),
|
|
|
|
Response = (),
|
|
|
|
>,
|
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
|
|
|
{
|
|
|
|
/// 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, peer_addr))
|
|
|
|
})
|
|
|
|
.and_then(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "openssl")]
|
|
|
|
mod openssl {
|
|
|
|
use super::*;
|
|
|
|
|
2019-12-05 18:35:43 +01:00
|
|
|
use actix_tls::openssl::{Acceptor, SslAcceptor, SslStream};
|
2019-12-02 12:33:11 +01:00
|
|
|
use actix_tls::{openssl::HandshakeError, SslError};
|
|
|
|
|
|
|
|
impl<S, B, X, U> H1Service<SslStream<TcpStream>, S, B, X, U>
|
|
|
|
where
|
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody,
|
|
|
|
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
|
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
|
|
|
U: ServiceFactory<
|
|
|
|
Config = (),
|
|
|
|
Request = (Request, Framed<SslStream<TcpStream>, Codec>),
|
|
|
|
Response = (),
|
|
|
|
>,
|
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
|
|
|
{
|
|
|
|
/// 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 peer_addr = io.get_ref().peer_addr().ok();
|
|
|
|
ok((io, peer_addr))
|
|
|
|
})
|
|
|
|
.and_then(self.map_err(SslError::Service))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 18:35:43 +01:00
|
|
|
#[cfg(feature = "rustls")]
|
|
|
|
mod rustls {
|
|
|
|
use super::*;
|
|
|
|
use actix_tls::rustls::{Acceptor, ServerConfig, TlsStream};
|
|
|
|
use actix_tls::SslError;
|
|
|
|
use std::{fmt, io};
|
|
|
|
|
|
|
|
impl<S, B, X, U> H1Service<TlsStream<TcpStream>, S, B, X, U>
|
|
|
|
where
|
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody,
|
|
|
|
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
|
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
|
|
|
U: ServiceFactory<
|
|
|
|
Config = (),
|
|
|
|
Request = (Request, Framed<TlsStream<TcpStream>, Codec>),
|
|
|
|
Response = (),
|
|
|
|
>,
|
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
|
|
|
{
|
|
|
|
/// Create rustls based service
|
|
|
|
pub fn rustls(
|
|
|
|
self,
|
|
|
|
config: ServerConfig,
|
|
|
|
) -> impl ServiceFactory<
|
|
|
|
Config = (),
|
|
|
|
Request = TcpStream,
|
|
|
|
Response = (),
|
|
|
|
Error = SslError<io::Error, DispatchError>,
|
|
|
|
InitError = (),
|
|
|
|
> {
|
|
|
|
pipeline_factory(
|
|
|
|
Acceptor::new(config)
|
|
|
|
.map_err(SslError::Ssl)
|
|
|
|
.map_init_err(|_| panic!()),
|
|
|
|
)
|
|
|
|
.and_then(|io: TlsStream<TcpStream>| {
|
|
|
|
let peer_addr = io.get_ref().0.peer_addr().ok();
|
|
|
|
ok((io, peer_addr))
|
|
|
|
})
|
|
|
|
.and_then(self.map_err(SslError::Service))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> H1Service<T, S, B, X, U>
|
|
|
|
where
|
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
S::InitError: fmt::Debug,
|
|
|
|
B: MessageBody,
|
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
pub fn expect<X1>(self, expect: X1) -> H1Service<T, S, B, X1, U>
|
2019-04-06 01:46:44 +02:00
|
|
|
where
|
2019-11-15 10:54:11 +01:00
|
|
|
X1: ServiceFactory<Request = Request, Response = Request>,
|
2019-04-08 23:51:16 +02:00
|
|
|
X1::Error: Into<Error>,
|
|
|
|
X1::InitError: fmt::Debug,
|
2019-04-06 01:46:44 +02:00
|
|
|
{
|
|
|
|
H1Service {
|
|
|
|
expect,
|
|
|
|
cfg: self.cfg,
|
|
|
|
srv: self.srv,
|
2019-04-08 23:51:16 +02:00
|
|
|
upgrade: self.upgrade,
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect: self.on_connect,
|
2019-04-08 23:51:16 +02:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
pub fn upgrade<U1>(self, upgrade: Option<U1>) -> H1Service<T, S, B, X, U1>
|
2019-04-08 23:51:16 +02:00
|
|
|
where
|
2019-11-15 10:54:11 +01:00
|
|
|
U1: ServiceFactory<Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U1::Error: fmt::Display,
|
|
|
|
U1::InitError: fmt::Debug,
|
|
|
|
{
|
|
|
|
H1Service {
|
|
|
|
upgrade,
|
|
|
|
cfg: self.cfg,
|
|
|
|
srv: self.srv,
|
|
|
|
expect: self.expect,
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect: self.on_connect,
|
2019-04-06 01:46:44 +02:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 10:34:26 +02:00
|
|
|
|
|
|
|
/// Set on connect callback.
|
|
|
|
pub(crate) fn on_connect(
|
|
|
|
mut self,
|
2019-07-17 11:48:37 +02:00
|
|
|
f: Option<Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
|
2019-06-28 10:34:26 +02:00
|
|
|
) -> Self {
|
|
|
|
self.on_connect = f;
|
|
|
|
self
|
|
|
|
}
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> ServiceFactory for H1Service<T, S, B, X, U>
|
2018-10-05 05:02:10 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
|
|
|
S: ServiceFactory<Config = (), Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2018-11-18 05:21:28 +01:00
|
|
|
B: MessageBody,
|
2019-12-02 12:33:11 +01:00
|
|
|
X: ServiceFactory<Config = (), Request = Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2019-12-02 12:33:11 +01:00
|
|
|
U: ServiceFactory<Config = (), Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
2018-10-05 05:02:10 +02:00
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
type Config = ();
|
|
|
|
type Request = (T, Option<net::SocketAddr>);
|
2019-03-07 07:56:34 +01:00
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
2019-04-06 01:46:44 +02:00
|
|
|
type InitError = ();
|
2019-12-02 12:33:11 +01:00
|
|
|
type Service = H1ServiceHandler<T, S::Service, B, X::Service, U::Service>;
|
|
|
|
type Future = H1ServiceResponse<T, S, B, X, U>;
|
2018-10-05 05:02:10 +02:00
|
|
|
|
2019-12-02 16:37:13 +01:00
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
2018-10-05 05:02:10 +02:00
|
|
|
H1ServiceResponse {
|
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,
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect: self.on_connect.clone(),
|
2018-10-05 05:02:10 +02:00
|
|
|
cfg: Some(self.cfg.clone()),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-16 00:56:47 +02:00
|
|
|
#[doc(hidden)]
|
2019-11-19 13:54:19 +01:00
|
|
|
#[pin_project::pin_project]
|
2019-12-02 12:33:11 +01:00
|
|
|
pub struct H1ServiceResponse<T, S, B, X, U>
|
2019-04-06 01:46:44 +02:00
|
|
|
where
|
2019-11-15 10:54:11 +01:00
|
|
|
S: ServiceFactory<Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
|
|
|
S::InitError: fmt::Debug,
|
2019-11-15 10:54:11 +01:00
|
|
|
X: ServiceFactory<Request = Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2019-11-15 10:54:11 +01:00
|
|
|
U: ServiceFactory<Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
2019-04-06 01:46:44 +02:00
|
|
|
{
|
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>,
|
2019-07-17 11:48:37 +02:00
|
|
|
on_connect: Option<Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
|
2018-10-05 05:02:10 +02:00
|
|
|
cfg: Option<ServiceConfig>,
|
2019-12-02 12:33:11 +01:00
|
|
|
_t: PhantomData<(T, B)>,
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> Future for H1ServiceResponse<T, S, B, X, U>
|
2018-10-05 05:02:10 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2019-11-15 10:54:11 +01:00
|
|
|
S: ServiceFactory<Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::InitError: fmt::Debug,
|
2018-11-18 05:21:28 +01:00
|
|
|
B: MessageBody,
|
2019-11-15 10:54:11 +01:00
|
|
|
X: ServiceFactory<Request = Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
|
|
|
X::InitError: fmt::Debug,
|
2019-11-15 10:54:11 +01:00
|
|
|
U: ServiceFactory<Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
|
|
|
U::InitError: fmt::Debug,
|
2018-10-05 05:02:10 +02:00
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
type Output = Result<H1ServiceHandler<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)));
|
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
|
|
|
H1ServiceHandler::new(
|
|
|
|
this.cfg.take().unwrap(),
|
|
|
|
service,
|
|
|
|
this.expect.take().unwrap(),
|
|
|
|
this.upgrade.take(),
|
|
|
|
this.on_connect.clone(),
|
|
|
|
)
|
|
|
|
}))
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Service` implementation for HTTP1 transport
|
2019-12-02 12:33:11 +01:00
|
|
|
pub struct H1ServiceHandler<T, S, B, X, U> {
|
2019-02-10 05:27:39 +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-07-17 11:48:37 +02:00
|
|
|
on_connect: Option<Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
|
2018-10-05 05:02:10 +02:00
|
|
|
cfg: ServiceConfig,
|
2019-12-02 12:33:11 +01:00
|
|
|
_t: PhantomData<(T, B)>,
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> H1ServiceHandler<T, S, B, X, U>
|
2018-10-05 05:02:10 +02:00
|
|
|
where
|
2019-11-19 13:54:19 +01:00
|
|
|
S: Service<Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2018-11-18 05:21:28 +01:00
|
|
|
B: MessageBody,
|
2019-11-19 13:54:19 +01:00
|
|
|
X: Service<Request = Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2019-11-19 13:54:19 +01:00
|
|
|
U: Service<Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2018-10-05 05:02:10 +02:00
|
|
|
{
|
2019-04-08 23:51:16 +02:00
|
|
|
fn new(
|
|
|
|
cfg: ServiceConfig,
|
|
|
|
srv: S,
|
|
|
|
expect: X,
|
|
|
|
upgrade: Option<U>,
|
2019-07-17 11:48:37 +02:00
|
|
|
on_connect: Option<Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
|
2019-12-02 12:33:11 +01:00
|
|
|
) -> H1ServiceHandler<T, S, B, X, U> {
|
2018-10-05 05:02:10 +02:00
|
|
|
H1ServiceHandler {
|
2019-02-10 05:27:39 +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),
|
2018-10-05 05:02:10 +02:00
|
|
|
cfg,
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect,
|
2018-10-05 05:02:10 +02:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T, S, B, X, U> Service for H1ServiceHandler<T, S, B, X, U>
|
2018-10-05 05:02:10 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2019-11-19 13:54:19 +01:00
|
|
|
S: Service<Request = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
S::Error: Into<Error>,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2018-11-18 05:21:28 +01:00
|
|
|
B: MessageBody,
|
2019-11-19 13:54:19 +01:00
|
|
|
X: Service<Request = Request, Response = Request>,
|
2019-04-06 01:46:44 +02:00
|
|
|
X::Error: Into<Error>,
|
2019-11-19 13:54:19 +01:00
|
|
|
U: Service<Request = (Request, Framed<T, Codec>), Response = ()>,
|
2019-04-08 23:51:16 +02:00
|
|
|
U::Error: fmt::Display,
|
2018-10-05 05:02:10 +02:00
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
type Request = (T, Option<net::SocketAddr>);
|
2019-03-07 07:56:34 +01:00
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
2019-04-08 23:51:16 +02:00
|
|
|
type Future = Dispatcher<T, S, B, X, U>;
|
2018-10-05 05:02:10 +02: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;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
fn call(&mut self, (io, addr): Self::Request) -> Self::Future {
|
2019-06-28 10:34:26 +02:00
|
|
|
let on_connect = if let Some(ref on_connect) = self.on_connect {
|
|
|
|
Some(on_connect(&io))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2019-04-06 01:46:44 +02:00
|
|
|
Dispatcher::new(
|
2019-06-28 10:34:26 +02:00
|
|
|
io,
|
2019-04-06 01:46:44 +02:00
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
|
|
|
self.expect.clone(),
|
2019-04-08 23:51:16 +02:00
|
|
|
self.upgrade.clone(),
|
2019-06-28 10:34:26 +02:00
|
|
|
on_connect,
|
2019-12-02 12:33:11 +01:00
|
|
|
addr,
|
2019-04-06 01:46:44 +02:00
|
|
|
)
|
2018-10-05 05:02:10 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-16 00:56:47 +02:00
|
|
|
|
2019-11-15 10:54:11 +01:00
|
|
|
/// `ServiceFactory` implementation for `OneRequestService` service
|
2019-01-29 19:14:00 +01:00
|
|
|
#[derive(Default)]
|
2019-12-02 12:33:11 +01:00
|
|
|
pub struct OneRequest<T> {
|
2018-10-16 00:56:47 +02:00
|
|
|
config: ServiceConfig,
|
2019-12-02 12:33:11 +01:00
|
|
|
_t: PhantomData<T>,
|
2018-10-16 00:56:47 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T> OneRequest<T>
|
2018-10-22 18:59:20 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2018-10-22 18:59:20 +02:00
|
|
|
{
|
2018-10-16 00:56:47 +02:00
|
|
|
/// Create new `H1SimpleService` instance.
|
|
|
|
pub fn new() -> Self {
|
2018-10-16 01:46:13 +02:00
|
|
|
OneRequest {
|
2018-10-16 00:56:47 +02:00
|
|
|
config: ServiceConfig::default(),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T> ServiceFactory for OneRequest<T>
|
2018-10-16 00:56:47 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2018-10-16 00:56:47 +02:00
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
type Config = ();
|
|
|
|
type Request = T;
|
2018-10-16 00:56:47 +02:00
|
|
|
type Response = (Request, Framed<T, Codec>);
|
|
|
|
type Error = ParseError;
|
|
|
|
type InitError = ();
|
2019-12-02 12:33:11 +01:00
|
|
|
type Service = OneRequestService<T>;
|
2019-11-15 10:54:11 +01:00
|
|
|
type Future = Ready<Result<Self::Service, Self::InitError>>;
|
2018-10-16 00:56:47 +02:00
|
|
|
|
2019-12-02 16:37:13 +01:00
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
2018-10-16 01:46:13 +02:00
|
|
|
ok(OneRequestService {
|
2018-10-16 00:56:47 +02:00
|
|
|
_t: PhantomData,
|
2019-12-02 12:33:11 +01:00
|
|
|
config: self.config.clone(),
|
2018-10-16 00:56:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Service` implementation for HTTP1 transport. Reads one request and returns
|
|
|
|
/// request and framed object.
|
2019-12-02 12:33:11 +01:00
|
|
|
pub struct OneRequestService<T> {
|
|
|
|
_t: PhantomData<T>,
|
2018-10-16 00:56:47 +02:00
|
|
|
config: ServiceConfig,
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:33:11 +01:00
|
|
|
impl<T> Service for OneRequestService<T>
|
2018-10-16 00:56:47 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2018-10-16 00:56:47 +02:00
|
|
|
{
|
2019-12-02 12:33:11 +01:00
|
|
|
type Request = T;
|
2018-10-16 00:56:47 +02:00
|
|
|
type Response = (Request, Framed<T, Codec>);
|
|
|
|
type Error = ParseError;
|
2018-10-16 01:46:13 +02:00
|
|
|
type Future = OneRequestServiceResponse<T>;
|
2018-10-16 00:56:47 +02:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Ok(()))
|
2018-10-16 00:56:47 +02:00
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
2018-10-16 01:46:13 +02:00
|
|
|
OneRequestServiceResponse {
|
2019-12-02 12:33:11 +01:00
|
|
|
framed: Some(Framed::new(req, Codec::new(self.config.clone()))),
|
2018-10-16 00:56:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2018-10-16 01:46:13 +02:00
|
|
|
pub struct OneRequestServiceResponse<T>
|
2018-10-16 00:56:47 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2018-10-16 00:56:47 +02:00
|
|
|
{
|
|
|
|
framed: Option<Framed<T, Codec>>,
|
|
|
|
}
|
|
|
|
|
2018-10-16 01:46:13 +02:00
|
|
|
impl<T> Future for OneRequestServiceResponse<T>
|
2018-10-16 00:56:47 +02:00
|
|
|
where
|
2019-12-02 12:33:11 +01:00
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
2018-10-16 00:56:47 +02:00
|
|
|
{
|
2019-11-15 10:54:11 +01:00
|
|
|
type Output = Result<(Request, Framed<T, Codec>), ParseError>;
|
2018-10-16 00:56:47 +02:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
2019-11-15 10:54:11 +01:00
|
|
|
match self.framed.as_mut().unwrap().next_item(cx) {
|
|
|
|
Poll::Ready(Some(Ok(req))) => match req {
|
2018-10-23 03:18:05 +02:00
|
|
|
Message::Item(req) => {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Ok((req, self.framed.take().unwrap())))
|
2018-10-16 00:56:47 +02:00
|
|
|
}
|
2018-10-23 03:18:05 +02:00
|
|
|
Message::Chunk(_) => unreachable!("Something is wrong"),
|
2018-10-16 00:56:47 +02:00
|
|
|
},
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Some(Err(err))) => Poll::Ready(Err(err)),
|
|
|
|
Poll::Ready(None) => Poll::Ready(Err(ParseError::Incomplete)),
|
|
|
|
Poll::Pending => Poll::Pending,
|
2018-10-16 00:56:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|