2019-02-02 05:18:44 +01:00
|
|
|
use std::fmt::Debug;
|
|
|
|
use std::marker::PhantomData;
|
2019-02-06 20:44:15 +01:00
|
|
|
use std::{io, net};
|
2019-02-02 05:18:44 +01:00
|
|
|
|
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed};
|
2019-03-09 16:37:23 +01:00
|
|
|
use actix_server_config::ServerConfig as SrvConfig;
|
2019-02-02 05:18:44 +01:00
|
|
|
use actix_service::{IntoNewService, NewService, Service};
|
2019-02-10 05:27:39 +01:00
|
|
|
use actix_utils::cloneable::CloneableService;
|
2019-02-02 05:18:44 +01:00
|
|
|
use bytes::Bytes;
|
|
|
|
use futures::future::{ok, FutureResult};
|
2019-03-05 05:46:33 +01:00
|
|
|
use futures::{try_ready, Async, Future, IntoFuture, Poll, Stream};
|
2019-02-02 05:18:44 +01:00
|
|
|
use h2::server::{self, Connection, Handshake};
|
2019-02-06 20:44:15 +01:00
|
|
|
use h2::RecvStream;
|
2019-02-02 05:18:44 +01:00
|
|
|
use log::error;
|
|
|
|
|
|
|
|
use crate::body::MessageBody;
|
|
|
|
use crate::config::{KeepAlive, ServiceConfig};
|
2019-02-06 20:44:15 +01:00
|
|
|
use crate::error::{DispatchError, Error, ParseError, ResponseError};
|
2019-02-07 22:41:50 +01:00
|
|
|
use crate::payload::Payload;
|
2019-02-02 05:18:44 +01:00
|
|
|
use crate::request::Request;
|
|
|
|
use crate::response::Response;
|
|
|
|
|
2019-02-06 20:44:15 +01:00
|
|
|
use super::dispatcher::Dispatcher;
|
2019-02-02 05:18:44 +01:00
|
|
|
|
|
|
|
/// `NewService` implementation for HTTP2 transport
|
|
|
|
pub struct H2Service<T, S, B> {
|
|
|
|
srv: S,
|
|
|
|
cfg: ServiceConfig,
|
|
|
|
_t: PhantomData<(T, B)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, S, B> H2Service<T, S, B>
|
|
|
|
where
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-02-10 05:27:39 +01:00
|
|
|
S::Service: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug + 'static,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
|
|
|
/// Create new `HttpService` instance.
|
2019-03-09 16:37:23 +01:00
|
|
|
pub fn new<F: IntoNewService<S, SrvConfig>>(service: F) -> Self {
|
2019-02-02 05:18:44 +01:00
|
|
|
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0);
|
|
|
|
|
|
|
|
H2Service {
|
|
|
|
cfg,
|
|
|
|
srv: service.into_new_service(),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 07:59:56 +01:00
|
|
|
/// Create new `HttpService` instance with config.
|
2019-03-09 16:37:23 +01:00
|
|
|
pub fn with_config<F: IntoNewService<S, SrvConfig>>(
|
2019-03-07 07:59:56 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
service: F,
|
|
|
|
) -> Self {
|
|
|
|
H2Service {
|
|
|
|
cfg,
|
|
|
|
srv: service.into_new_service(),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
impl<T, S, B> NewService<SrvConfig> for H2Service<T, S, B>
|
2019-02-02 05:18:44 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-02-10 05:27:39 +01:00
|
|
|
S::Service: 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
2019-03-09 16:37:23 +01:00
|
|
|
type Request = T;
|
2019-02-06 20:44:15 +01:00
|
|
|
type Response = ();
|
2019-03-07 07:56:34 +01:00
|
|
|
type Error = DispatchError;
|
2019-02-02 05:18:44 +01:00
|
|
|
type InitError = S::InitError;
|
|
|
|
type Service = H2ServiceHandler<T, S::Service, B>;
|
|
|
|
type Future = H2ServiceResponse<T, S, B>;
|
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
fn new_service(&self, cfg: &SrvConfig) -> Self::Future {
|
2019-02-02 05:18:44 +01:00
|
|
|
H2ServiceResponse {
|
2019-03-09 16:37:23 +01:00
|
|
|
fut: self.srv.new_service(cfg).into_future(),
|
2019-02-02 05:18:44 +01:00
|
|
|
cfg: Some(self.cfg.clone()),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2019-03-09 16:37:23 +01:00
|
|
|
pub struct H2ServiceResponse<T, S: NewService<SrvConfig, Request = Request>, B> {
|
2019-03-05 05:46:33 +01:00
|
|
|
fut: <S::Future as IntoFuture>::Future,
|
2019-02-02 05:18:44 +01:00
|
|
|
cfg: Option<ServiceConfig>,
|
|
|
|
_t: PhantomData<(T, B)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, S, B> Future for H2ServiceResponse<T, S, B>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-02-10 05:27:39 +01:00
|
|
|
S::Service: 'static,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
|
|
|
type Item = H2ServiceHandler<T, S::Service, B>;
|
|
|
|
type Error = S::InitError;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
let service = try_ready!(self.fut.poll());
|
|
|
|
Ok(Async::Ready(H2ServiceHandler::new(
|
|
|
|
self.cfg.take().unwrap(),
|
|
|
|
service,
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Service` implementation for http/2 transport
|
2019-02-10 05:27:39 +01:00
|
|
|
pub struct H2ServiceHandler<T, S: 'static, B> {
|
|
|
|
srv: CloneableService<S>,
|
2019-02-02 05:18:44 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
_t: PhantomData<(T, B)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, S, B> H2ServiceHandler<T, S, B>
|
|
|
|
where
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
|
|
|
fn new(cfg: ServiceConfig, srv: S) -> H2ServiceHandler<T, S, B> {
|
|
|
|
H2ServiceHandler {
|
|
|
|
cfg,
|
2019-02-10 05:27:39 +01:00
|
|
|
srv: CloneableService::new(srv),
|
2019-02-02 05:18:44 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
impl<T, S, B> Service for H2ServiceHandler<T, S, B>
|
2019-02-02 05:18:44 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
2019-03-09 16:37:23 +01:00
|
|
|
type Request = T;
|
2019-02-06 20:44:15 +01:00
|
|
|
type Response = ();
|
2019-03-07 07:56:34 +01:00
|
|
|
type Error = DispatchError;
|
2019-02-02 05:18:44 +01:00
|
|
|
type Future = H2ServiceHandlerResponse<T, S, B>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
2019-02-06 20:44:15 +01:00
|
|
|
self.srv.poll_ready().map_err(|e| {
|
|
|
|
error!("Service readiness error: {:?}", e);
|
2019-03-07 07:56:34 +01:00
|
|
|
DispatchError::Service
|
2019-02-06 20:44:15 +01:00
|
|
|
})
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: T) -> Self::Future {
|
|
|
|
H2ServiceHandlerResponse {
|
2019-02-06 20:44:15 +01:00
|
|
|
state: State::Handshake(
|
|
|
|
Some(self.srv.clone()),
|
|
|
|
Some(self.cfg.clone()),
|
|
|
|
server::handshake(req),
|
|
|
|
),
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
enum State<
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
S: Service<Request = Request> + 'static,
|
|
|
|
B: MessageBody,
|
|
|
|
> {
|
2019-02-06 20:44:15 +01:00
|
|
|
Incoming(Dispatcher<T, S, B>),
|
2019-02-10 05:27:39 +01:00
|
|
|
Handshake(
|
|
|
|
Option<CloneableService<S>>,
|
|
|
|
Option<ServiceConfig>,
|
|
|
|
Handshake<T, Bytes>,
|
|
|
|
),
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct H2ServiceHandlerResponse<T, S, B>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-06 20:44:15 +01:00
|
|
|
B: MessageBody + 'static,
|
2019-02-02 05:18:44 +01:00
|
|
|
{
|
2019-02-06 20:44:15 +01:00
|
|
|
state: State<T, S, B>,
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, S, B> Future for H2ServiceHandlerResponse<T, S, B>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
2019-02-09 17:44:22 +01:00
|
|
|
S::Response: Into<Response<B>>,
|
2019-02-02 05:18:44 +01:00
|
|
|
B: MessageBody,
|
|
|
|
{
|
2019-02-06 20:44:15 +01:00
|
|
|
type Item = ();
|
2019-03-07 07:56:34 +01:00
|
|
|
type Error = DispatchError;
|
2019-02-02 05:18:44 +01:00
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
2019-02-06 20:44:15 +01:00
|
|
|
match self.state {
|
|
|
|
State::Incoming(ref mut disp) => disp.poll(),
|
|
|
|
State::Handshake(ref mut srv, ref mut config, ref mut handshake) => {
|
|
|
|
match handshake.poll() {
|
|
|
|
Ok(Async::Ready(conn)) => {
|
|
|
|
self.state = State::Incoming(Dispatcher::new(
|
|
|
|
srv.take().unwrap(),
|
|
|
|
conn,
|
|
|
|
config.take().unwrap(),
|
|
|
|
None,
|
|
|
|
));
|
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => Ok(Async::NotReady),
|
|
|
|
Err(err) => {
|
|
|
|
trace!("H2 handshake error: {}", err);
|
|
|
|
return Err(err.into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-02 05:18:44 +01:00
|
|
|
}
|
|
|
|
}
|