2017-12-08 18:24:05 +01:00
|
|
|
use std::rc::Rc;
|
2017-11-10 22:08:15 +01:00
|
|
|
use std::net::SocketAddr;
|
2017-11-04 20:33:14 +01:00
|
|
|
|
|
|
|
use actix::dev::*;
|
|
|
|
use bytes::Bytes;
|
|
|
|
use futures::{Future, Poll, Async};
|
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
|
|
|
|
|
|
|
use h1;
|
|
|
|
use h2;
|
2017-12-09 13:33:40 +01:00
|
|
|
use error::Error;
|
|
|
|
use h1writer::Writer;
|
2017-11-04 20:33:14 +01:00
|
|
|
use httprequest::HttpRequest;
|
2017-12-14 06:38:47 +01:00
|
|
|
use server::{ServerSettings, WorkerSettings};
|
2017-11-04 20:33:14 +01:00
|
|
|
|
|
|
|
/// Low level http request handler
|
2017-12-08 18:24:05 +01:00
|
|
|
#[allow(unused_variables)]
|
2017-11-04 20:33:14 +01:00
|
|
|
pub trait HttpHandler: 'static {
|
2017-12-09 13:33:40 +01:00
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
/// Handle request
|
2017-12-26 18:00:45 +01:00
|
|
|
fn handle(&mut self, req: HttpRequest) -> Result<Box<HttpHandlerTask>, HttpRequest>;
|
2017-12-08 18:24:05 +01:00
|
|
|
|
|
|
|
/// Set server settings
|
|
|
|
fn server_settings(&mut self, settings: ServerSettings) {}
|
2017-11-04 20:33:14 +01:00
|
|
|
}
|
|
|
|
|
2017-12-09 13:33:40 +01:00
|
|
|
pub trait HttpHandlerTask {
|
|
|
|
|
|
|
|
fn poll_io(&mut self, io: &mut Writer) -> Poll<bool, Error>;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<(), Error>;
|
|
|
|
|
|
|
|
fn disconnected(&mut self);
|
|
|
|
}
|
|
|
|
|
2017-12-06 20:00:39 +01:00
|
|
|
/// Conversion helper trait
|
|
|
|
pub trait IntoHttpHandler {
|
|
|
|
/// The associated type which is result of conversion.
|
|
|
|
type Handler: HttpHandler;
|
|
|
|
|
|
|
|
/// Convert into `HttpHandler` object.
|
|
|
|
fn into_handler(self) -> Self::Handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: HttpHandler> IntoHttpHandler for T {
|
|
|
|
type Handler = T;
|
|
|
|
|
|
|
|
fn into_handler(self) -> Self::Handler {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:08:15 +01:00
|
|
|
enum HttpProtocol<T, H>
|
2017-12-09 13:33:40 +01:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
|
2017-11-04 20:33:14 +01:00
|
|
|
{
|
2017-11-10 22:08:15 +01:00
|
|
|
H1(h1::Http1<T, H>),
|
|
|
|
H2(h2::Http2<T, H>),
|
2017-11-04 20:33:14 +01:00
|
|
|
}
|
|
|
|
|
2017-11-27 07:53:28 +01:00
|
|
|
#[doc(hidden)]
|
2017-11-10 22:08:15 +01:00
|
|
|
pub struct HttpChannel<T, H>
|
2017-12-09 13:33:40 +01:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
|
2017-11-04 20:33:14 +01:00
|
|
|
{
|
2017-11-10 22:08:15 +01:00
|
|
|
proto: Option<HttpProtocol<T, H>>,
|
2017-11-04 20:33:14 +01:00
|
|
|
}
|
|
|
|
|
2017-11-10 22:08:15 +01:00
|
|
|
impl<T, H> HttpChannel<T, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
|
2017-11-04 20:33:14 +01:00
|
|
|
{
|
2017-12-14 06:38:47 +01:00
|
|
|
pub(crate) fn new(h: Rc<WorkerSettings<H>>,
|
|
|
|
io: T, peer: Option<SocketAddr>, http2: bool) -> HttpChannel<T, H>
|
2017-12-08 06:52:46 +01:00
|
|
|
{
|
2017-11-04 20:33:14 +01:00
|
|
|
if http2 {
|
|
|
|
HttpChannel {
|
|
|
|
proto: Some(HttpProtocol::H2(
|
2017-12-08 18:24:05 +01:00
|
|
|
h2::Http2::new(h, io, peer, Bytes::new()))) }
|
2017-11-04 20:33:14 +01:00
|
|
|
} else {
|
|
|
|
HttpChannel {
|
|
|
|
proto: Some(HttpProtocol::H1(
|
2017-12-08 18:24:05 +01:00
|
|
|
h1::Http1::new(h, io, peer))) }
|
2017-11-04 20:33:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*impl<T: 'static, A: 'static, H: 'static> Drop for HttpChannel<T, A, H> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
println!("Drop http channel");
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
2017-11-10 22:08:15 +01:00
|
|
|
impl<T, H> Actor for HttpChannel<T, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
|
2017-11-04 20:33:14 +01:00
|
|
|
{
|
|
|
|
type Context = Context<Self>;
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:08:15 +01:00
|
|
|
impl<T, H> Future for HttpChannel<T, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
|
2017-11-04 20:33:14 +01:00
|
|
|
{
|
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
match self.proto {
|
|
|
|
Some(HttpProtocol::H1(ref mut h1)) => {
|
|
|
|
match h1.poll() {
|
|
|
|
Ok(Async::Ready(h1::Http1Result::Done)) =>
|
|
|
|
return Ok(Async::Ready(())),
|
2017-11-04 21:49:05 +01:00
|
|
|
Ok(Async::Ready(h1::Http1Result::Switch)) => (),
|
2017-11-04 20:33:14 +01:00
|
|
|
Ok(Async::NotReady) =>
|
|
|
|
return Ok(Async::NotReady),
|
|
|
|
Err(_) =>
|
|
|
|
return Err(()),
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 18:24:05 +01:00
|
|
|
Some(HttpProtocol::H2(ref mut h2)) => return h2.poll(),
|
2017-11-04 20:33:14 +01:00
|
|
|
None => unreachable!(),
|
|
|
|
}
|
|
|
|
|
|
|
|
// upgrade to h2
|
|
|
|
let proto = self.proto.take().unwrap();
|
|
|
|
match proto {
|
|
|
|
HttpProtocol::H1(h1) => {
|
2017-12-08 18:24:05 +01:00
|
|
|
let (h, io, addr, buf) = h1.into_inner();
|
2017-12-08 07:54:44 +01:00
|
|
|
self.proto = Some(
|
2017-12-08 18:24:05 +01:00
|
|
|
HttpProtocol::H2(h2::Http2::new(h, io, addr, buf)));
|
2017-11-04 20:33:14 +01:00
|
|
|
self.poll()
|
|
|
|
}
|
|
|
|
_ => unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|