1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00
actix-web/actix-http/src/h2/service.rs

287 lines
8.2 KiB
Rust
Raw Normal View History

2019-02-02 04:18:44 +00:00
use std::fmt::Debug;
use std::future::Future;
2019-02-02 04:18:44 +00:00
use std::marker::PhantomData;
use std::pin::Pin;
use std::task::{Context, Poll};
2019-06-28 08:34:26 +00:00
use std::{io, net, rc};
2019-02-02 04:18:44 +00:00
use actix_codec::{AsyncRead, AsyncWrite, Framed};
use actix_server_config::{Io, IoStream, ServerConfig as SrvConfig};
use actix_service::{IntoServiceFactory, Service, ServiceFactory};
2019-02-02 04:18:44 +00:00
use bytes::Bytes;
use futures::future::{ok, Ready};
use futures::{ready, Stream};
2019-02-02 04:18:44 +00:00
use h2::server::{self, Connection, Handshake};
2019-02-06 19:44:15 +00:00
use h2::RecvStream;
2019-02-02 04:18:44 +00:00
use log::error;
use crate::body::MessageBody;
use crate::cloneable::CloneableService;
2019-02-02 04:18:44 +00:00
use crate::config::{KeepAlive, ServiceConfig};
2019-02-06 19:44:15 +00:00
use crate::error::{DispatchError, Error, ParseError, ResponseError};
2019-06-28 08:34:26 +00:00
use crate::helpers::DataFactory;
2019-02-07 21:41:50 +00:00
use crate::payload::Payload;
2019-02-02 04:18:44 +00:00
use crate::request::Request;
use crate::response::Response;
2019-02-06 19:44:15 +00:00
use super::dispatcher::Dispatcher;
2019-02-02 04:18:44 +00:00
/// `ServiceFactory` implementation for HTTP2 transport
2019-03-11 22:09:42 +00:00
pub struct H2Service<T, P, S, B> {
2019-02-02 04:18:44 +00:00
srv: S,
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-03-11 22:09:42 +00:00
_t: PhantomData<(T, P, B)>,
2019-02-02 04:18:44 +00:00
}
2019-03-11 22:09:42 +00:00
impl<T, P, S, B> H2Service<T, P, S, B>
2019-02-02 04:18:44 +00:00
where
S: ServiceFactory<Config = SrvConfig, Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
S::Future: Unpin,
<S::Service as Service>::Future: Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
P: Unpin,
2019-02-02 04:18:44 +00:00
{
/// Create new `HttpService` instance.
pub fn new<F: IntoServiceFactory<S>>(service: F) -> Self {
2019-02-02 04:18:44 +00:00
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0);
H2Service {
cfg,
2019-06-28 08:34:26 +00:00
on_connect: None,
srv: service.into_factory(),
2019-02-02 04:18:44 +00:00
_t: PhantomData,
}
}
/// Create new `HttpService` instance with config.
pub fn with_config<F: IntoServiceFactory<S>>(
cfg: ServiceConfig,
service: F,
) -> Self {
H2Service {
cfg,
2019-06-28 08:34:26 +00:00
on_connect: None,
srv: service.into_factory(),
_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-02-02 04:18:44 +00:00
}
impl<T, P, S, B> ServiceFactory for H2Service<T, P, S, B>
2019-02-02 04:18:44 +00:00
where
T: IoStream,
S: ServiceFactory<Config = SrvConfig, Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
S::Future: Unpin,
<S::Service as Service>::Future: Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
P: Unpin,
2019-02-02 04:18:44 +00:00
{
2019-05-12 15:34:51 +00:00
type Config = SrvConfig;
2019-03-11 22:09:42 +00:00
type Request = Io<T, P>;
2019-02-06 19:44:15 +00:00
type Response = ();
2019-03-07 06:56:34 +00:00
type Error = DispatchError;
2019-02-02 04:18:44 +00:00
type InitError = S::InitError;
2019-03-11 22:09:42 +00:00
type Service = H2ServiceHandler<T, P, S::Service, B>;
type Future = H2ServiceResponse<T, P, S, B>;
2019-02-02 04:18:44 +00:00
fn new_service(&self, cfg: &SrvConfig) -> Self::Future {
2019-02-02 04:18:44 +00:00
H2ServiceResponse {
fut: self.srv.new_service(cfg),
2019-02-02 04:18:44 +00:00
cfg: Some(self.cfg.clone()),
2019-06-28 08:34:26 +00:00
on_connect: self.on_connect.clone(),
2019-02-02 04:18:44 +00:00
_t: PhantomData,
}
}
}
#[doc(hidden)]
pub struct H2ServiceResponse<T, P, S: ServiceFactory, B> {
fut: S::Future,
2019-02-02 04:18:44 +00:00
cfg: Option<ServiceConfig>,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-03-11 22:09:42 +00:00
_t: PhantomData<(T, P, B)>,
2019-02-02 04:18:44 +00:00
}
2019-03-11 22:09:42 +00:00
impl<T, P, S, B> Future for H2ServiceResponse<T, P, S, B>
2019-02-02 04:18:44 +00:00
where
T: IoStream,
S: ServiceFactory<Config = SrvConfig, Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
S::Future: Unpin,
<S::Service as Service>::Future: Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
P: Unpin,
2019-02-02 04:18:44 +00:00
{
type Output = Result<H2ServiceHandler<T, P, S::Service, B>, S::InitError>;
2019-02-02 04:18:44 +00:00
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();
Poll::Ready(ready!(Pin::new(&mut this.fut).poll(cx)).map(|service| {
H2ServiceHandler::new(
this.cfg.take().unwrap(),
this.on_connect.clone(),
service,
)
}))
2019-02-02 04:18:44 +00:00
}
}
/// `Service` implementation for http/2 transport
2019-04-04 17:59:34 +00:00
pub struct H2ServiceHandler<T, P, S, B> {
srv: CloneableService<S>,
2019-02-02 04:18:44 +00:00
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-03-11 22:09:42 +00:00
_t: PhantomData<(T, P, B)>,
2019-02-02 04:18:44 +00:00
}
2019-03-11 22:09:42 +00:00
impl<T, P, S, B> H2ServiceHandler<T, P, S, B>
2019-02-02 04:18:44 +00:00
where
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Future: Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
P: Unpin,
2019-02-02 04:18:44 +00:00
{
2019-06-28 08:34:26 +00:00
fn new(
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-06-28 08:34:26 +00:00
srv: S,
) -> H2ServiceHandler<T, P, S, B> {
2019-02-02 04:18:44 +00:00
H2ServiceHandler {
cfg,
2019-06-28 08:34:26 +00:00
on_connect,
srv: CloneableService::new(srv),
2019-02-02 04:18:44 +00:00
_t: PhantomData,
}
}
}
2019-03-11 22:09:42 +00:00
impl<T, P, S, B> Service for H2ServiceHandler<T, P, S, B>
2019-02-02 04:18:44 +00:00
where
T: IoStream,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Future: Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
P: Unpin,
2019-02-02 04:18:44 +00:00
{
2019-03-11 22:09:42 +00:00
type Request = Io<T, P>;
2019-02-06 19:44:15 +00:00
type Response = ();
2019-03-07 06:56:34 +00:00
type Error = DispatchError;
2019-02-02 04:18:44 +00:00
type Future = H2ServiceHandlerResponse<T, S, B>;
fn poll_ready(&mut self, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
self.srv.poll_ready(cx).map_err(|e| {
2019-04-05 23:46:44 +00:00
let e = e.into();
2019-02-06 19:44:15 +00:00
error!("Service readiness error: {:?}", e);
2019-04-05 23:46:44 +00:00
DispatchError::Service(e)
2019-02-06 19:44:15 +00:00
})
2019-02-02 04:18:44 +00:00
}
2019-03-11 22:09:42 +00:00
fn call(&mut self, req: Self::Request) -> Self::Future {
let io = req.into_parts().0;
let peer_addr = io.peer_addr();
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-02-02 04:18:44 +00:00
H2ServiceHandlerResponse {
2019-02-06 19:44:15 +00:00
state: State::Handshake(
Some(self.srv.clone()),
Some(self.cfg.clone()),
peer_addr,
2019-06-28 08:34:26 +00:00
on_connect,
server::handshake(io),
2019-02-06 19:44:15 +00:00
),
2019-02-02 04:18:44 +00:00
}
}
}
enum State<T: IoStream, S: Service<Request = Request>, B: MessageBody>
2019-04-04 17:59:34 +00:00
where
S::Future: 'static,
{
2019-02-06 19:44:15 +00:00
Incoming(Dispatcher<T, S, B>),
Handshake(
Option<CloneableService<S>>,
Option<ServiceConfig>,
Option<net::SocketAddr>,
2019-06-28 08:34:26 +00:00
Option<Box<dyn DataFactory>>,
Handshake<T, Bytes>,
),
2019-02-02 04:18:44 +00:00
}
pub struct H2ServiceHandlerResponse<T, S, B>
where
T: IoStream,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Future: Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-02-06 19:44:15 +00:00
state: State<T, S, B>,
2019-02-02 04:18:44 +00:00
}
impl<T, S, B> Future for H2ServiceHandlerResponse<T, S, B>
where
T: IoStream,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
S::Error: Into<Error> + Unpin + 'static,
S::Future: Unpin + 'static,
S::Response: Into<Response<B>> + Unpin + 'static,
2019-02-02 04:18:44 +00:00
B: MessageBody,
{
type Output = Result<(), DispatchError>;
2019-02-02 04:18:44 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
2019-02-06 19:44:15 +00:00
match self.state {
State::Incoming(ref mut disp) => Pin::new(disp).poll(cx),
State::Handshake(
ref mut srv,
ref mut config,
ref peer_addr,
2019-06-28 08:34:26 +00:00
ref mut on_connect,
ref mut handshake,
) => match Pin::new(handshake).poll(cx) {
Poll::Ready(Ok(conn)) => {
self.state = State::Incoming(Dispatcher::new(
srv.take().unwrap(),
conn,
2019-06-28 08:34:26 +00:00
on_connect.take(),
config.take().unwrap(),
None,
*peer_addr,
));
self.poll(cx)
2019-02-06 19:44:15 +00:00
}
Poll::Ready(Err(err)) => {
trace!("H2 handshake error: {}", err);
Poll::Ready(Err(err.into()))
}
Poll::Pending => Poll::Pending,
},
2019-02-06 19:44:15 +00:00
}
2019-02-02 04:18:44 +00:00
}
}