1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-11 04:32:28 +00:00
actix-web/src/channel.rs

134 lines
3.4 KiB
Rust
Raw Normal View History

2017-12-08 17:24:05 +00:00
use std::rc::Rc;
use std::net::SocketAddr;
use actix::dev::*;
use bytes::Bytes;
use futures::{Future, Poll, Async};
use tokio_io::{AsyncRead, AsyncWrite};
use h1;
use h2;
2017-12-09 12:33:40 +00:00
use error::Error;
use h1writer::Writer;
use httprequest::HttpRequest;
2017-12-28 20:38:37 +00:00
use server::ServerSettings;
use worker::WorkerSettings;
/// Low level http request handler
2017-12-08 17:24:05 +00:00
#[allow(unused_variables)]
pub trait HttpHandler: 'static {
2017-12-09 12:33:40 +00:00
/// Handle request
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest) -> Result<Box<HttpHandlerTask>, HttpRequest>;
2017-12-08 17:24:05 +00:00
/// Set server settings
fn server_settings(&mut self, settings: ServerSettings) {}
}
2017-12-09 12:33:40 +00: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 19:00:39 +00: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
}
}
enum HttpProtocol<T, H>
2017-12-09 12:33:40 +00:00
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
{
H1(h1::Http1<T, H>),
H2(h2::Http2<T, H>),
}
2017-11-27 06:53:28 +00:00
#[doc(hidden)]
pub struct HttpChannel<T, H>
2017-12-09 12:33:40 +00:00
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
{
proto: Option<HttpProtocol<T, H>>,
}
impl<T, H> HttpChannel<T, H>
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
{
2017-12-14 05:38:47 +00:00
pub(crate) fn new(h: Rc<WorkerSettings<H>>,
io: T, peer: Option<SocketAddr>, http2: bool) -> HttpChannel<T, H>
{
if http2 {
HttpChannel {
proto: Some(HttpProtocol::H2(
2017-12-08 17:24:05 +00:00
h2::Http2::new(h, io, peer, Bytes::new()))) }
} else {
HttpChannel {
proto: Some(HttpProtocol::H1(
2017-12-08 17:24:05 +00:00
h1::Http1::new(h, io, peer))) }
}
}
}
/*impl<T: 'static, A: 'static, H: 'static> Drop for HttpChannel<T, A, H> {
fn drop(&mut self) {
println!("Drop http channel");
}
}*/
impl<T, H> Actor for HttpChannel<T, H>
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
{
type Context = Context<Self>;
}
impl<T, H> Future for HttpChannel<T, H>
where T: AsyncRead + AsyncWrite + 'static, H: HttpHandler + 'static
{
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 20:49:05 +00:00
Ok(Async::Ready(h1::Http1Result::Switch)) => (),
Ok(Async::NotReady) =>
return Ok(Async::NotReady),
Err(_) =>
return Err(()),
}
}
2017-12-08 17:24:05 +00:00
Some(HttpProtocol::H2(ref mut h2)) => return h2.poll(),
None => unreachable!(),
}
// upgrade to h2
let proto = self.proto.take().unwrap();
match proto {
HttpProtocol::H1(h1) => {
2017-12-08 17:24:05 +00:00
let (h, io, addr, buf) = h1.into_inner();
2017-12-08 06:54:44 +00:00
self.proto = Some(
2017-12-08 17:24:05 +00:00
HttpProtocol::H2(h2::Http2::new(h, io, addr, buf)));
self.poll()
}
_ => unreachable!()
}
}
}