2019-03-07 07:56:34 +01:00
|
|
|
use std::fmt::Debug;
|
|
|
|
use std::marker::PhantomData;
|
2019-03-09 19:39:06 +01:00
|
|
|
use std::{fmt, io};
|
2019-03-07 07:56:34 +01:00
|
|
|
|
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed, FramedParts};
|
2019-03-11 23:09:42 +01:00
|
|
|
use actix_server_config::{Io as ServerIo, Protocol, ServerConfig as SrvConfig};
|
2019-03-07 07:56:34 +01:00
|
|
|
use actix_service::{IntoNewService, NewService, Service};
|
|
|
|
use actix_utils::cloneable::CloneableService;
|
|
|
|
use bytes::{Buf, BufMut, Bytes, BytesMut};
|
|
|
|
use futures::{try_ready, Async, Future, IntoFuture, Poll};
|
|
|
|
use h2::server::{self, Handshake};
|
|
|
|
use log::error;
|
|
|
|
|
|
|
|
use crate::body::MessageBody;
|
2019-03-09 19:39:06 +01:00
|
|
|
use crate::builder::HttpServiceBuilder;
|
2019-03-07 07:56:34 +01:00
|
|
|
use crate::config::{KeepAlive, ServiceConfig};
|
|
|
|
use crate::error::DispatchError;
|
|
|
|
use crate::request::Request;
|
|
|
|
use crate::response::Response;
|
|
|
|
use crate::{h1, h2::Dispatcher};
|
|
|
|
|
|
|
|
/// `NewService` HTTP1.1/HTTP2 transport implementation
|
2019-03-11 23:09:42 +01:00
|
|
|
pub struct HttpService<T, P, S, B> {
|
2019-03-07 07:56:34 +01:00
|
|
|
srv: S,
|
|
|
|
cfg: ServiceConfig,
|
2019-03-11 23:09:42 +01:00
|
|
|
_t: PhantomData<(T, P, B)>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
impl<T, S, B> HttpService<T, (), S, B>
|
|
|
|
where
|
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
|
|
|
S::Service: 'static,
|
|
|
|
S::Error: Debug + 'static,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
|
|
|
/// Create builder for `HttpService` instance.
|
|
|
|
pub fn build() -> HttpServiceBuilder<T, S> {
|
|
|
|
HttpServiceBuilder::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, P, S, B> HttpService<T, P, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Service: 'static,
|
|
|
|
S::Error: Debug + 'static,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
|
|
|
/// Create new `HttpService` instance.
|
2019-03-09 16:37:23 +01:00
|
|
|
pub fn new<F: IntoNewService<S, SrvConfig>>(service: F) -> Self {
|
2019-03-07 07:56:34 +01:00
|
|
|
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0);
|
|
|
|
|
|
|
|
HttpService {
|
|
|
|
cfg,
|
|
|
|
srv: service.into_new_service(),
|
2019-03-07 07:59:56 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create new `HttpService` instance with config.
|
2019-03-09 19:39:06 +01:00
|
|
|
pub(crate) fn with_config<F: IntoNewService<S, SrvConfig>>(
|
2019-03-07 07:59:56 +01:00
|
|
|
cfg: ServiceConfig,
|
|
|
|
service: F,
|
|
|
|
) -> Self {
|
|
|
|
HttpService {
|
|
|
|
cfg,
|
|
|
|
srv: service.into_new_service(),
|
2019-03-07 07:56:34 +01:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
impl<T, P, S, B> NewService<SrvConfig> for HttpService<T, P, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + 'static,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Service: 'static,
|
|
|
|
S::Error: Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
2019-03-11 23:09:42 +01:00
|
|
|
type Request = ServerIo<T, P>;
|
2019-03-07 07:56:34 +01:00
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
|
|
|
type InitError = S::InitError;
|
2019-03-11 23:09:42 +01:00
|
|
|
type Service = HttpServiceHandler<T, P, S::Service, B>;
|
|
|
|
type Future = HttpServiceResponse<T, P, S, B>;
|
2019-03-07 07:56:34 +01:00
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
fn new_service(&self, cfg: &SrvConfig) -> Self::Future {
|
2019-03-07 07:56:34 +01:00
|
|
|
HttpServiceResponse {
|
2019-03-09 16:37:23 +01:00
|
|
|
fut: self.srv.new_service(cfg).into_future(),
|
2019-03-07 07:56:34 +01:00
|
|
|
cfg: Some(self.cfg.clone()),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
2019-03-11 23:09:42 +01:00
|
|
|
pub struct HttpServiceResponse<T, P, S: NewService<SrvConfig>, B> {
|
2019-03-07 07:56:34 +01:00
|
|
|
fut: <S::Future as IntoFuture>::Future,
|
|
|
|
cfg: Option<ServiceConfig>,
|
2019-03-11 23:09:42 +01:00
|
|
|
_t: PhantomData<(T, P, B)>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
impl<T, P, S, B> Future for HttpServiceResponse<T, P, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: NewService<SrvConfig, Request = Request>,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Service: 'static,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
S::Error: Debug,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
2019-03-11 23:09:42 +01:00
|
|
|
type Item = HttpServiceHandler<T, P, S::Service, B>;
|
2019-03-07 07:56:34 +01:00
|
|
|
type Error = S::InitError;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
let service = try_ready!(self.fut.poll());
|
|
|
|
Ok(Async::Ready(HttpServiceHandler::new(
|
|
|
|
self.cfg.take().unwrap(),
|
|
|
|
service,
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Service` implementation for http transport
|
2019-03-11 23:09:42 +01:00
|
|
|
pub struct HttpServiceHandler<T, P, S: 'static, B> {
|
2019-03-07 07:56:34 +01:00
|
|
|
srv: CloneableService<S>,
|
|
|
|
cfg: ServiceConfig,
|
2019-03-11 23:09:42 +01:00
|
|
|
_t: PhantomData<(T, P, B)>,
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
impl<T, P, S, B> HttpServiceHandler<T, P, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
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,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
2019-03-11 23:09:42 +01:00
|
|
|
fn new(cfg: ServiceConfig, srv: S) -> HttpServiceHandler<T, P, S, B> {
|
2019-03-07 07:56:34 +01:00
|
|
|
HttpServiceHandler {
|
|
|
|
cfg,
|
|
|
|
srv: CloneableService::new(srv),
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
impl<T, P, S, B> Service for HttpServiceHandler<T, P, S, B>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + 'static,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
2019-03-11 23:09:42 +01:00
|
|
|
type Request = ServerIo<T, P>;
|
2019-03-07 07:56:34 +01:00
|
|
|
type Response = ();
|
|
|
|
type Error = DispatchError;
|
|
|
|
type Future = HttpServiceHandlerResponse<T, S, B>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
|
|
self.srv.poll_ready().map_err(|e| {
|
|
|
|
error!("Service readiness error: {:?}", e);
|
|
|
|
DispatchError::Service
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-11 23:09:42 +01:00
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
2019-03-18 17:44:48 +01:00
|
|
|
let (io, _, proto) = req.into_parts();
|
2019-03-11 23:09:42 +01:00
|
|
|
match proto {
|
|
|
|
Protocol::Http2 => {
|
|
|
|
let io = Io {
|
|
|
|
inner: io,
|
|
|
|
unread: None,
|
|
|
|
};
|
|
|
|
HttpServiceHandlerResponse {
|
|
|
|
state: State::Handshake(Some((
|
|
|
|
server::handshake(io),
|
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
|
|
|
))),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Protocol::Http10 | Protocol::Http11 => HttpServiceHandlerResponse {
|
|
|
|
state: State::H1(h1::Dispatcher::new(
|
|
|
|
io,
|
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
|
|
|
)),
|
|
|
|
},
|
|
|
|
_ => HttpServiceHandlerResponse {
|
|
|
|
state: State::Unknown(Some((
|
|
|
|
io,
|
|
|
|
BytesMut::with_capacity(14),
|
|
|
|
self.cfg.clone(),
|
|
|
|
self.srv.clone(),
|
|
|
|
))),
|
|
|
|
},
|
2019-03-07 07:56:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 16:37:23 +01:00
|
|
|
enum State<T, S: Service<Request = Request> + 'static, B: MessageBody>
|
2019-03-07 07:56:34 +01:00
|
|
|
where
|
|
|
|
S::Error: fmt::Debug,
|
|
|
|
T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
{
|
|
|
|
H1(h1::Dispatcher<T, S, B>),
|
|
|
|
H2(Dispatcher<Io<T>, S, B>),
|
|
|
|
Unknown(Option<(T, BytesMut, ServiceConfig, CloneableService<S>)>),
|
|
|
|
Handshake(Option<(Handshake<Io<T>, Bytes>, ServiceConfig, CloneableService<S>)>),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct HttpServiceHandlerResponse<T, S, B>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + 'static,
|
2019-03-09 16:37:23 +01:00
|
|
|
S: Service<Request = Request> + 'static,
|
2019-03-07 07:56:34 +01:00
|
|
|
S::Error: Debug,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody + 'static,
|
|
|
|
{
|
|
|
|
state: State<T, S, B>,
|
|
|
|
}
|
|
|
|
|
|
|
|
const HTTP2_PREFACE: [u8; 14] = *b"PRI * HTTP/2.0";
|
|
|
|
|
|
|
|
impl<T, S, B> Future for HttpServiceHandlerResponse<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,
|
|
|
|
S::Response: Into<Response<B>>,
|
|
|
|
B: MessageBody,
|
|
|
|
{
|
|
|
|
type Item = ();
|
|
|
|
type Error = DispatchError;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
match self.state {
|
|
|
|
State::H1(ref mut disp) => disp.poll(),
|
|
|
|
State::H2(ref mut disp) => disp.poll(),
|
|
|
|
State::Unknown(ref mut data) => {
|
|
|
|
if let Some(ref mut item) = data {
|
|
|
|
loop {
|
|
|
|
unsafe {
|
|
|
|
let b = item.1.bytes_mut();
|
2019-04-03 05:50:25 +02:00
|
|
|
let n = try_ready!(item.0.poll_read(b));
|
|
|
|
if n == 0 {
|
|
|
|
return Ok(Async::Ready(()));
|
|
|
|
}
|
2019-03-07 07:56:34 +01:00
|
|
|
item.1.advance_mut(n);
|
|
|
|
if item.1.len() >= HTTP2_PREFACE.len() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
let (io, buf, cfg, srv) = data.take().unwrap();
|
|
|
|
if buf[..14] == HTTP2_PREFACE[..] {
|
|
|
|
let io = Io {
|
|
|
|
inner: io,
|
|
|
|
unread: Some(buf),
|
|
|
|
};
|
|
|
|
self.state =
|
|
|
|
State::Handshake(Some((server::handshake(io), cfg, srv)));
|
|
|
|
} else {
|
|
|
|
let framed = Framed::from_parts(FramedParts::with_read_buf(
|
|
|
|
io,
|
|
|
|
h1::Codec::new(cfg.clone()),
|
|
|
|
buf,
|
|
|
|
));
|
|
|
|
self.state =
|
|
|
|
State::H1(h1::Dispatcher::with_timeout(framed, cfg, None, srv))
|
|
|
|
}
|
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
State::Handshake(ref mut data) => {
|
|
|
|
let conn = if let Some(ref mut item) = data {
|
|
|
|
match item.0.poll() {
|
|
|
|
Ok(Async::Ready(conn)) => conn,
|
|
|
|
Ok(Async::NotReady) => return Ok(Async::NotReady),
|
|
|
|
Err(err) => {
|
|
|
|
trace!("H2 handshake error: {}", err);
|
|
|
|
return Err(err.into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!()
|
|
|
|
};
|
|
|
|
let (_, cfg, srv) = data.take().unwrap();
|
|
|
|
self.state = State::H2(Dispatcher::new(srv, conn, cfg, None));
|
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wrapper for `AsyncRead + AsyncWrite` types
|
|
|
|
struct Io<T> {
|
|
|
|
unread: Option<BytesMut>,
|
|
|
|
inner: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: io::Read> io::Read for Io<T> {
|
|
|
|
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
|
|
|
|
if let Some(mut bytes) = self.unread.take() {
|
|
|
|
let size = std::cmp::min(buf.len(), bytes.len());
|
|
|
|
buf[..size].copy_from_slice(&bytes[..size]);
|
|
|
|
if bytes.len() > size {
|
|
|
|
bytes.split_to(size);
|
|
|
|
self.unread = Some(bytes);
|
|
|
|
}
|
|
|
|
Ok(size)
|
|
|
|
} else {
|
|
|
|
self.inner.read(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: io::Write> io::Write for Io<T> {
|
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
|
|
self.inner.write(buf)
|
|
|
|
}
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
self.inner.flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: AsyncRead + 'static> AsyncRead for Io<T> {
|
|
|
|
unsafe fn prepare_uninitialized_buffer(&self, buf: &mut [u8]) -> bool {
|
|
|
|
self.inner.prepare_uninitialized_buffer(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: AsyncWrite + 'static> AsyncWrite for Io<T> {
|
|
|
|
fn shutdown(&mut self) -> Poll<(), io::Error> {
|
|
|
|
self.inner.shutdown()
|
|
|
|
}
|
|
|
|
fn write_buf<B: Buf>(&mut self, buf: &mut B) -> Poll<usize, io::Error> {
|
|
|
|
self.inner.write_buf(buf)
|
|
|
|
}
|
|
|
|
}
|