use std::fmt::Debug; use std::marker::PhantomData; use actix_codec::{AsyncRead, AsyncWrite, Framed}; use actix_server_config::{Io, ServerConfig as SrvConfig}; use actix_service::{IntoNewService, NewService, Service}; use actix_utils::cloneable::CloneableService; use futures::future::{ok, FutureResult}; use futures::{try_ready, Async, Future, IntoFuture, Poll, Stream}; use crate::body::MessageBody; use crate::config::{KeepAlive, ServiceConfig}; use crate::error::{DispatchError, ParseError}; use crate::request::Request; use crate::response::Response; use super::codec::Codec; use super::dispatcher::Dispatcher; use super::Message; /// `NewService` implementation for HTTP1 transport pub struct H1Service { srv: S, cfg: ServiceConfig, _t: PhantomData<(T, P, B)>, } impl H1Service where S: NewService, S::Error: Debug, S::Response: Into>, B: MessageBody, { /// Create new `HttpService` instance with default config. pub fn new>(service: F) -> Self { let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0); H1Service { cfg, srv: service.into_new_service(), _t: PhantomData, } } /// Create new `HttpService` instance with config. pub fn with_config>( cfg: ServiceConfig, service: F, ) -> Self { H1Service { cfg, srv: service.into_new_service(), _t: PhantomData, } } } impl NewService for H1Service where T: AsyncRead + AsyncWrite, S: NewService, S::Error: Debug, S::Response: Into>, B: MessageBody, { type Request = Io; type Response = (); type Error = DispatchError; type InitError = S::InitError; type Service = H1ServiceHandler; type Future = H1ServiceResponse; fn new_service(&self, cfg: &SrvConfig) -> Self::Future { H1ServiceResponse { fut: self.srv.new_service(cfg).into_future(), cfg: Some(self.cfg.clone()), _t: PhantomData, } } } #[doc(hidden)] pub struct H1ServiceResponse, B> { fut: ::Future, cfg: Option, _t: PhantomData<(T, P, B)>, } impl Future for H1ServiceResponse where T: AsyncRead + AsyncWrite, S: NewService, S::Error: Debug, S::Response: Into>, B: MessageBody, { type Item = H1ServiceHandler; type Error = S::InitError; fn poll(&mut self) -> Poll { let service = try_ready!(self.fut.poll()); Ok(Async::Ready(H1ServiceHandler::new( self.cfg.take().unwrap(), service, ))) } } /// `Service` implementation for HTTP1 transport pub struct H1ServiceHandler { srv: CloneableService, cfg: ServiceConfig, _t: PhantomData<(T, P, B)>, } impl H1ServiceHandler where S: Service, S::Error: Debug, S::Response: Into>, B: MessageBody, { fn new(cfg: ServiceConfig, srv: S) -> H1ServiceHandler { H1ServiceHandler { srv: CloneableService::new(srv), cfg, _t: PhantomData, } } } impl Service for H1ServiceHandler where T: AsyncRead + AsyncWrite, S: Service, S::Error: Debug, S::Response: Into>, B: MessageBody, { type Request = Io; type Response = (); type Error = DispatchError; type Future = Dispatcher; fn poll_ready(&mut self) -> Poll<(), Self::Error> { self.srv.poll_ready().map_err(|e| { log::error!("Http service readiness error: {:?}", e); DispatchError::Service }) } fn call(&mut self, req: Self::Request) -> Self::Future { Dispatcher::new(req.into_parts().0, self.cfg.clone(), self.srv.clone()) } } /// `NewService` implementation for `OneRequestService` service #[derive(Default)] pub struct OneRequest { config: ServiceConfig, _t: PhantomData<(T, P)>, } impl OneRequest where T: AsyncRead + AsyncWrite, { /// Create new `H1SimpleService` instance. pub fn new() -> Self { OneRequest { config: ServiceConfig::default(), _t: PhantomData, } } } impl NewService for OneRequest where T: AsyncRead + AsyncWrite, { type Request = Io; type Response = (Request, Framed); type Error = ParseError; type InitError = (); type Service = OneRequestService; type Future = FutureResult; fn new_service(&self, _: &SrvConfig) -> Self::Future { ok(OneRequestService { config: self.config.clone(), _t: PhantomData, }) } } /// `Service` implementation for HTTP1 transport. Reads one request and returns /// request and framed object. pub struct OneRequestService { config: ServiceConfig, _t: PhantomData<(T, P)>, } impl Service for OneRequestService where T: AsyncRead + AsyncWrite, { type Request = Io; type Response = (Request, Framed); type Error = ParseError; type Future = OneRequestServiceResponse; fn poll_ready(&mut self) -> Poll<(), Self::Error> { Ok(Async::Ready(())) } fn call(&mut self, req: Self::Request) -> Self::Future { OneRequestServiceResponse { framed: Some(Framed::new( req.into_parts().0, Codec::new(self.config.clone()), )), } } } #[doc(hidden)] pub struct OneRequestServiceResponse where T: AsyncRead + AsyncWrite, { framed: Option>, } impl Future for OneRequestServiceResponse where T: AsyncRead + AsyncWrite, { type Item = (Request, Framed); type Error = ParseError; fn poll(&mut self) -> Poll { match self.framed.as_mut().unwrap().poll()? { Async::Ready(Some(req)) => match req { Message::Item(req) => { Ok(Async::Ready((req, self.framed.take().unwrap()))) } Message::Chunk(_) => unreachable!("Something is wrong"), }, Async::Ready(None) => Err(ParseError::Incomplete), Async::NotReady => Ok(Async::NotReady), } } }