use std::collections::VecDeque; use std::future::Future; use std::marker::PhantomData; use std::pin::Pin; use std::task::{Context, Poll}; use std::time::Instant; use std::{fmt, mem, net}; use actix_codec::{AsyncRead, AsyncWrite}; use actix_server_config::IoStream; use actix_service::Service; use bitflags::bitflags; use bytes::{Bytes, BytesMut}; use futures::{ready, Sink, Stream}; use h2::server::{Connection, SendResponse}; use h2::{RecvStream, SendStream}; use http::header::{ HeaderValue, ACCEPT_ENCODING, CONNECTION, CONTENT_LENGTH, DATE, TRANSFER_ENCODING, }; use http::HttpTryFrom; use log::{debug, error, trace}; use tokio_timer::Delay; use crate::body::{Body, BodySize, MessageBody, ResponseBody}; use crate::cloneable::CloneableService; use crate::config::ServiceConfig; use crate::error::{DispatchError, Error, ParseError, PayloadError, ResponseError}; use crate::helpers::DataFactory; use crate::httpmessage::HttpMessage; use crate::message::ResponseHead; use crate::payload::Payload; use crate::request::Request; use crate::response::Response; const CHUNK_SIZE: usize = 16_384; /// Dispatcher for HTTP/2 protocol pub struct Dispatcher, B: MessageBody> { service: CloneableService, connection: Connection, on_connect: Option>, config: ServiceConfig, peer_addr: Option, ka_expire: Instant, ka_timer: Option, _t: PhantomData, } impl Unpin for Dispatcher where T: IoStream, S: Service, S::Error: Into + Unpin + 'static, S::Future: Unpin + 'static, S::Response: Into> + Unpin + 'static, B: MessageBody + 'static, { } impl Dispatcher where T: IoStream, S: Service, S::Error: Into + Unpin + 'static, S::Future: Unpin + 'static, S::Response: Into> + Unpin + 'static, B: MessageBody + 'static, { pub(crate) fn new( service: CloneableService, connection: Connection, on_connect: Option>, config: ServiceConfig, timeout: Option, peer_addr: Option, ) -> Self { // let keepalive = config.keep_alive_enabled(); // let flags = if keepalive { // Flags::KEEPALIVE | Flags::KEEPALIVE_ENABLED // } else { // Flags::empty() // }; // keep-alive timer let (ka_expire, ka_timer) = if let Some(delay) = timeout { (delay.deadline(), Some(delay)) } else if let Some(delay) = config.keep_alive_timer() { (delay.deadline(), Some(delay)) } else { (config.now(), None) }; Dispatcher { service, config, peer_addr, connection, on_connect, ka_expire, ka_timer, _t: PhantomData, } } } impl Future for Dispatcher where T: IoStream, S: Service, S::Error: Into + Unpin + 'static, S::Future: Unpin + 'static, S::Response: Into> + Unpin + 'static, B: MessageBody + 'static, { type Output = Result<(), DispatchError>; #[inline] fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll { let this = self.get_mut(); loop { match Pin::new(&mut this.connection).poll_accept(cx) { Poll::Ready(None) => return Poll::Ready(Ok(())), Poll::Ready(Some(Err(err))) => return Poll::Ready(Err(err.into())), Poll::Ready(Some(Ok((req, res)))) => { // update keep-alive expire if this.ka_timer.is_some() { if let Some(expire) = this.config.keep_alive_expire() { this.ka_expire = expire; } } let (parts, body) = req.into_parts(); // let b: () = body; let mut req = Request::with_payload(Payload::< crate::payload::PayloadStream, >::H2( crate::h2::Payload::new(body) )); let head = &mut req.head_mut(); head.uri = parts.uri; head.method = parts.method; head.version = parts.version; head.headers = parts.headers.into(); head.peer_addr = this.peer_addr; // set on_connect data if let Some(ref on_connect) = this.on_connect { on_connect.set(&mut req.extensions_mut()); } // tokio_executor::current_thread::spawn(ServiceResponse::< // S::Future, // S::Response, // S::Error, // B, // > { // state: ServiceResponseState::ServiceCall( // this.service.call(req), // Some(res), // ), // config: this.config.clone(), // buffer: None, // _t: PhantomData, // }); } Poll::Pending => return Poll::Pending, } } } } struct ServiceResponse { state: ServiceResponseState, config: ServiceConfig, buffer: Option, _t: PhantomData<(I, E)>, } enum ServiceResponseState { ServiceCall(F, Option>), SendPayload(SendStream, ResponseBody), } impl ServiceResponse where F: Future> + Unpin, E: Into + Unpin + 'static, I: Into> + Unpin + 'static, B: MessageBody + 'static, { fn prepare_response( &self, head: &ResponseHead, size: &mut BodySize, ) -> http::Response<()> { let mut has_date = false; let mut skip_len = size != &BodySize::Stream; let mut res = http::Response::new(()); *res.status_mut() = head.status; *res.version_mut() = http::Version::HTTP_2; // Content length match head.status { http::StatusCode::NO_CONTENT | http::StatusCode::CONTINUE | http::StatusCode::PROCESSING => *size = BodySize::None, http::StatusCode::SWITCHING_PROTOCOLS => { skip_len = true; *size = BodySize::Stream; } _ => (), } let _ = match size { BodySize::None | BodySize::Stream => None, BodySize::Empty => res .headers_mut() .insert(CONTENT_LENGTH, HeaderValue::from_static("0")), BodySize::Sized(len) => res.headers_mut().insert( CONTENT_LENGTH, HeaderValue::try_from(format!("{}", len)).unwrap(), ), BodySize::Sized64(len) => res.headers_mut().insert( CONTENT_LENGTH, HeaderValue::try_from(format!("{}", len)).unwrap(), ), }; // copy headers for (key, value) in head.headers.iter() { match *key { CONNECTION | TRANSFER_ENCODING => continue, // http2 specific CONTENT_LENGTH if skip_len => continue, DATE => has_date = true, _ => (), } res.headers_mut().append(key, value.clone()); } // set date header if !has_date { let mut bytes = BytesMut::with_capacity(29); self.config.set_date_header(&mut bytes); res.headers_mut() .insert(DATE, HeaderValue::try_from(bytes.freeze()).unwrap()); } res } } impl Future for ServiceResponse where F: Future> + Unpin, E: Into + Unpin + 'static, I: Into> + Unpin + 'static, B: MessageBody + 'static, { type Output = (); fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll { let this = self.get_mut(); match this.state { ServiceResponseState::ServiceCall(ref mut call, ref mut send) => { match Pin::new(call).poll(cx) { Poll::Ready(Ok(res)) => { let (res, body) = res.into().replace_body(()); let mut send = send.take().unwrap(); let mut size = body.size(); let h2_res = this.prepare_response(res.head(), &mut size); let stream = match send.send_response(h2_res, size.is_eof()) { Err(e) => { trace!("Error sending h2 response: {:?}", e); return Poll::Ready(()); } Ok(stream) => stream, }; if size.is_eof() { Poll::Ready(()) } else { this.state = ServiceResponseState::SendPayload(stream, body); Pin::new(this).poll(cx) } } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => { let res: Response = e.into().into(); let (res, body) = res.replace_body(()); let mut send = send.take().unwrap(); let mut size = body.size(); let h2_res = this.prepare_response(res.head(), &mut size); let stream = match send.send_response(h2_res, size.is_eof()) { Err(e) => { trace!("Error sending h2 response: {:?}", e); return Poll::Ready(()); } Ok(stream) => stream, }; if size.is_eof() { Poll::Ready(()) } else { this.state = ServiceResponseState::SendPayload( stream, body.into_body(), ); Pin::new(this).poll(cx) } } } } ServiceResponseState::SendPayload(ref mut stream, ref mut body) => loop { loop { if let Some(ref mut buffer) = this.buffer { match stream.poll_capacity(cx) { Poll::Pending => return Poll::Pending, Poll::Ready(None) => return Poll::Ready(()), Poll::Ready(Some(Ok(cap))) => { let len = buffer.len(); let bytes = buffer.split_to(std::cmp::min(cap, len)); if let Err(e) = stream.send_data(bytes, false) { warn!("{:?}", e); return Poll::Ready(()); } else if !buffer.is_empty() { let cap = std::cmp::min(buffer.len(), CHUNK_SIZE); stream.reserve_capacity(cap); } else { this.buffer.take(); } } Poll::Ready(Some(Err(e))) => { warn!("{:?}", e); return Poll::Ready(()); } } } else { match body.poll_next(cx) { Poll::Pending => return Poll::Pending, Poll::Ready(None) => { if let Err(e) = stream.send_data(Bytes::new(), true) { warn!("{:?}", e); } return Poll::Ready(()); } Poll::Ready(Some(Ok(chunk))) => { stream.reserve_capacity(std::cmp::min( chunk.len(), CHUNK_SIZE, )); this.buffer = Some(chunk); } Poll::Ready(Some(Err(e))) => { error!("Response payload stream error: {:?}", e); return Poll::Ready(()); } } } } }, } } }