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/service.rs

456 lines
14 KiB
Rust
Raw Normal View History

2019-03-07 06:56:34 +00:00
use std::marker::PhantomData;
2019-03-09 18:39:06 +00:00
use std::{fmt, io};
2019-03-07 06:56:34 +00:00
2019-04-06 07:16:04 +00:00
use actix_codec::{AsyncRead, AsyncWrite};
2019-03-11 22:09:42 +00:00
use actix_server_config::{Io as ServerIo, Protocol, ServerConfig as SrvConfig};
2019-03-07 06:56:34 +00: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 crate::body::MessageBody;
2019-03-09 18:39:06 +00:00
use crate::builder::HttpServiceBuilder;
2019-03-07 06:56:34 +00:00
use crate::config::{KeepAlive, ServiceConfig};
2019-04-05 23:46:44 +00:00
use crate::error::{DispatchError, Error};
2019-03-07 06:56:34 +00:00
use crate::request::Request;
use crate::response::Response;
use crate::{h1, h2::Dispatcher};
/// `NewService` HTTP1.1/HTTP2 transport implementation
2019-04-05 23:46:44 +00:00
pub struct HttpService<T, P, S, B, X = h1::ExpectHandler> {
2019-03-07 06:56:34 +00:00
srv: S,
cfg: ServiceConfig,
2019-04-05 23:46:44 +00:00
expect: X,
2019-03-11 22:09:42 +00:00
_t: PhantomData<(T, P, B)>,
2019-03-07 06:56:34 +00:00
}
2019-03-11 22:09:42 +00:00
impl<T, S, B> HttpService<T, (), S, B>
where
S: NewService<SrvConfig, Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
2019-03-11 22:09:42 +00:00
S::Response: Into<Response<B>>,
2019-04-04 17:59:34 +00:00
<S::Service as Service>::Future: 'static,
2019-03-11 22:09:42 +00:00
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 06:56:34 +00:00
where
S: NewService<SrvConfig, Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
2019-04-04 17:59:34 +00:00
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
{
/// Create new `HttpService` instance.
pub fn new<F: IntoNewService<S, SrvConfig>>(service: F) -> Self {
2019-03-07 06:56:34 +00:00
let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0);
HttpService {
cfg,
srv: service.into_new_service(),
2019-04-05 23:46:44 +00:00
expect: h1::ExpectHandler,
_t: PhantomData,
}
}
/// Create new `HttpService` instance with config.
2019-03-09 18:39:06 +00:00
pub(crate) fn with_config<F: IntoNewService<S, SrvConfig>>(
cfg: ServiceConfig,
service: F,
) -> Self {
HttpService {
cfg,
srv: service.into_new_service(),
2019-04-05 23:46:44 +00:00
expect: h1::ExpectHandler,
2019-03-07 06:56:34 +00:00
_t: PhantomData,
}
}
}
2019-04-05 23:46:44 +00:00
impl<T, P, S, B, X> HttpService<T, P, S, B, X>
where
S: NewService<SrvConfig, Request = Request>,
S::Error: Into<Error>,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>>,
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.
pub fn expect<U>(self, expect: U) -> HttpService<T, P, S, B, U>
where
U: NewService<Request = Request, Response = Request>,
U::Error: Into<Error>,
U::InitError: fmt::Debug,
{
HttpService {
expect,
cfg: self.cfg,
srv: self.srv,
_t: PhantomData,
}
}
}
impl<T, P, S, B, X> NewService<SrvConfig> for HttpService<T, P, S, B, X>
2019-03-07 06:56:34 +00:00
where
2019-04-04 17:59:34 +00:00
T: AsyncRead + AsyncWrite,
S: NewService<SrvConfig, Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
2019-04-04 17:59:34 +00:00
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-04-05 23:46:44 +00:00
X: NewService<Request = Request, Response = Request>,
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-03-07 06:56:34 +00:00
{
2019-03-11 22:09:42 +00:00
type Request = ServerIo<T, P>;
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
2019-04-05 23:46:44 +00:00
type InitError = ();
type Service = HttpServiceHandler<T, P, S::Service, B, X::Service>;
type Future = HttpServiceResponse<T, P, S, B, X>;
2019-03-07 06:56:34 +00:00
fn new_service(&self, cfg: &SrvConfig) -> Self::Future {
2019-03-07 06:56:34 +00:00
HttpServiceResponse {
fut: self.srv.new_service(cfg).into_future(),
2019-04-05 23:46:44 +00:00
fut_ex: Some(self.expect.new_service(&())),
expect: None,
2019-03-07 06:56:34 +00:00
cfg: Some(self.cfg.clone()),
_t: PhantomData,
}
}
}
#[doc(hidden)]
2019-04-05 23:46:44 +00:00
pub struct HttpServiceResponse<T, P, S: NewService<SrvConfig>, B, X: NewService> {
fut: S::Future,
fut_ex: Option<X::Future>,
expect: Option<X::Service>,
2019-03-07 06:56:34 +00:00
cfg: Option<ServiceConfig>,
2019-03-11 22:09:42 +00:00
_t: PhantomData<(T, P, B)>,
2019-03-07 06:56:34 +00:00
}
2019-04-05 23:46:44 +00:00
impl<T, P, S, B, X> Future for HttpServiceResponse<T, P, S, B, X>
2019-03-07 06:56:34 +00:00
where
T: AsyncRead + AsyncWrite,
S: NewService<SrvConfig, Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
2019-04-04 17:59:34 +00:00
S::Response: Into<Response<B>>,
<S::Service as Service>::Future: 'static,
2019-03-07 06:56:34 +00:00
B: MessageBody + 'static,
2019-04-05 23:46:44 +00:00
X: NewService<Request = Request, Response = Request>,
X::Error: Into<Error>,
X::InitError: fmt::Debug,
2019-03-07 06:56:34 +00:00
{
2019-04-05 23:46:44 +00:00
type Item = HttpServiceHandler<T, P, S::Service, B, X::Service>;
type Error = ();
2019-03-07 06:56:34 +00:00
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
2019-04-05 23:46:44 +00:00
if let Some(ref mut fut) = self.fut_ex {
let expect = try_ready!(fut
.poll()
.map_err(|e| log::error!("Init http service error: {:?}", e)));
self.expect = Some(expect);
self.fut_ex.take();
}
let service = try_ready!(self
.fut
.poll()
.map_err(|e| log::error!("Init http service error: {:?}", e)));
2019-03-07 06:56:34 +00:00
Ok(Async::Ready(HttpServiceHandler::new(
self.cfg.take().unwrap(),
service,
2019-04-05 23:46:44 +00:00
self.expect.take().unwrap(),
2019-03-07 06:56:34 +00:00
)))
}
}
/// `Service` implementation for http transport
2019-04-05 23:46:44 +00:00
pub struct HttpServiceHandler<T, P, S, B, X> {
2019-03-07 06:56:34 +00:00
srv: CloneableService<S>,
2019-04-05 23:46:44 +00:00
expect: CloneableService<X>,
2019-03-07 06:56:34 +00:00
cfg: ServiceConfig,
2019-04-05 23:46:44 +00:00
_t: PhantomData<(T, P, B, X)>,
2019-03-07 06:56:34 +00:00
}
2019-04-05 23:46:44 +00:00
impl<T, P, S, B, X> HttpServiceHandler<T, P, S, B, X>
2019-03-07 06:56:34 +00:00
where
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
B: MessageBody + 'static,
2019-04-05 23:46:44 +00:00
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
2019-04-05 23:46:44 +00:00
fn new(cfg: ServiceConfig, srv: S, expect: X) -> HttpServiceHandler<T, P, S, B, X> {
2019-03-07 06:56:34 +00:00
HttpServiceHandler {
cfg,
srv: CloneableService::new(srv),
2019-04-05 23:46:44 +00:00
expect: CloneableService::new(expect),
2019-03-07 06:56:34 +00:00
_t: PhantomData,
}
}
}
2019-04-05 23:46:44 +00:00
impl<T, P, S, B, X> Service for HttpServiceHandler<T, P, S, B, X>
2019-03-07 06:56:34 +00:00
where
2019-04-04 17:59:34 +00:00
T: AsyncRead + AsyncWrite,
S: Service<Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
B: MessageBody + 'static,
2019-04-05 23:46:44 +00:00
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
2019-03-11 22:09:42 +00:00
type Request = ServerIo<T, P>;
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
2019-04-05 23:46:44 +00:00
type Future = HttpServiceHandlerResponse<T, S, B, X>;
2019-03-07 06:56:34 +00:00
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
2019-04-05 23:46:44 +00:00
let ready = self
.expect
.poll_ready()
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready();
let ready = self
.srv
.poll_ready()
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready()
&& ready;
if ready {
Ok(Async::Ready(()))
} else {
Ok(Async::NotReady)
}
2019-03-07 06:56:34 +00:00
}
2019-03-11 22:09:42 +00:00
fn call(&mut self, req: Self::Request) -> Self::Future {
let (io, _, proto) = req.into_parts();
2019-03-11 22:09:42 +00: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(),
2019-04-05 23:46:44 +00:00
self.expect.clone(),
2019-03-11 22:09:42 +00:00
)),
},
_ => HttpServiceHandlerResponse {
state: State::Unknown(Some((
io,
BytesMut::with_capacity(14),
self.cfg.clone(),
self.srv.clone(),
2019-04-05 23:46:44 +00:00
self.expect.clone(),
2019-03-11 22:09:42 +00:00
))),
},
2019-03-07 06:56:34 +00:00
}
}
}
2019-04-05 23:46:44 +00:00
enum State<T, S, B, X>
2019-03-07 06:56:34 +00:00
where
2019-04-05 23:46:44 +00:00
S: Service<Request = Request>,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-04 17:59:34 +00:00
T: AsyncRead + AsyncWrite,
2019-04-05 23:46:44 +00:00
B: MessageBody,
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
2019-04-05 23:46:44 +00:00
H1(h1::Dispatcher<T, S, B, X>),
2019-03-07 06:56:34 +00:00
H2(Dispatcher<Io<T>, S, B>),
2019-04-05 23:46:44 +00:00
Unknown(
Option<(
T,
BytesMut,
ServiceConfig,
CloneableService<S>,
CloneableService<X>,
)>,
),
2019-03-07 06:56:34 +00:00
Handshake(Option<(Handshake<Io<T>, Bytes>, ServiceConfig, CloneableService<S>)>),
}
2019-04-05 23:46:44 +00:00
pub struct HttpServiceHandlerResponse<T, S, B, X>
2019-03-07 06:56:34 +00:00
where
2019-04-04 17:59:34 +00:00
T: AsyncRead + AsyncWrite,
S: Service<Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
B: MessageBody + 'static,
2019-04-05 23:46:44 +00:00
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
2019-04-05 23:46:44 +00:00
state: State<T, S, B, X>,
2019-03-07 06:56:34 +00:00
}
const HTTP2_PREFACE: [u8; 14] = *b"PRI * HTTP/2.0";
2019-04-05 23:46:44 +00:00
impl<T, S, B, X> Future for HttpServiceHandlerResponse<T, S, B, X>
2019-03-07 06:56:34 +00:00
where
T: AsyncRead + AsyncWrite,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
2019-03-07 06:56:34 +00:00
S::Response: Into<Response<B>>,
B: MessageBody,
2019-04-05 23:46:44 +00:00
X: Service<Request = Request, Response = Request>,
X::Error: Into<Error>,
2019-03-07 06:56:34 +00:00
{
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();
let n = try_ready!(item.0.poll_read(b));
if n == 0 {
return Ok(Async::Ready(()));
}
2019-03-07 06:56:34 +00:00
item.1.advance_mut(n);
if item.1.len() >= HTTP2_PREFACE.len() {
break;
}
}
}
} else {
panic!()
}
2019-04-05 23:46:44 +00:00
let (io, buf, cfg, srv, expect) = data.take().unwrap();
2019-03-07 06:56:34 +00:00
if buf[..14] == HTTP2_PREFACE[..] {
let io = Io {
inner: io,
unread: Some(buf),
};
self.state =
State::Handshake(Some((server::handshake(io), cfg, srv)));
} else {
2019-04-06 07:16:04 +00:00
self.state = State::H1(h1::Dispatcher::with_timeout(
2019-03-07 06:56:34 +00:00
io,
h1::Codec::new(cfg.clone()),
2019-04-06 07:16:04 +00:00
cfg,
2019-03-07 06:56:34 +00:00
buf,
2019-04-06 07:16:04 +00:00
None,
srv,
expect,
2019-04-05 23:46:44 +00:00
))
2019-03-07 06:56:34 +00:00
}
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()
}
}
2019-04-04 17:59:34 +00:00
impl<T: AsyncRead> AsyncRead for Io<T> {
2019-03-07 06:56:34 +00:00
unsafe fn prepare_uninitialized_buffer(&self, buf: &mut [u8]) -> bool {
self.inner.prepare_uninitialized_buffer(buf)
}
}
2019-04-04 17:59:34 +00:00
impl<T: AsyncWrite> AsyncWrite for Io<T> {
2019-03-07 06:56:34 +00:00
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)
}
}