2017-10-22 07:59:09 +02:00
|
|
|
use std::{io, net};
|
2017-10-07 06:48:14 +02:00
|
|
|
use std::rc::Rc;
|
2017-10-22 07:59:09 +02:00
|
|
|
use std::cell::UnsafeCell;
|
2017-10-14 01:33:23 +02:00
|
|
|
use std::time::Duration;
|
2017-10-16 22:13:32 +02:00
|
|
|
use std::marker::PhantomData;
|
2017-10-07 06:48:14 +02:00
|
|
|
use std::collections::VecDeque;
|
|
|
|
|
|
|
|
use actix::dev::*;
|
2017-10-16 22:13:32 +02:00
|
|
|
use futures::{Future, Poll, Async, Stream};
|
2017-10-14 01:33:23 +02:00
|
|
|
use tokio_core::reactor::Timeout;
|
2017-10-07 06:48:14 +02:00
|
|
|
use tokio_core::net::{TcpListener, TcpStream};
|
2017-10-16 22:13:32 +02:00
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-22 07:59:09 +02:00
|
|
|
use task::Task;
|
2017-10-14 01:33:23 +02:00
|
|
|
use reader::{Reader, ReaderError};
|
2017-10-22 03:54:24 +02:00
|
|
|
use payload::Payload;
|
|
|
|
use httpcodes::HTTPNotFound;
|
|
|
|
use httprequest::HttpRequest;
|
|
|
|
|
|
|
|
/// Low level http request handler
|
|
|
|
pub trait HttpHandler: 'static {
|
|
|
|
/// Http handler prefix
|
|
|
|
fn prefix(&self) -> &str;
|
|
|
|
/// Handle request
|
2017-10-22 07:59:09 +02:00
|
|
|
fn handle(&self, req: &mut HttpRequest, payload: Payload) -> Task;
|
2017-10-22 03:54:24 +02:00
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-08 23:56:51 +02:00
|
|
|
/// An HTTP Server
|
2017-10-16 22:13:32 +02:00
|
|
|
///
|
|
|
|
/// `T` - async stream, anything that implements `AsyncRead` + `AsyncWrite`.
|
|
|
|
///
|
|
|
|
/// `A` - peer address
|
2017-10-22 03:54:24 +02:00
|
|
|
///
|
|
|
|
/// `H` - request handler
|
|
|
|
pub struct HttpServer<T, A, H> {
|
|
|
|
h: Rc<Vec<H>>,
|
2017-10-16 22:13:32 +02:00
|
|
|
io: PhantomData<T>,
|
|
|
|
addr: PhantomData<A>,
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T: 'static, A: 'static, H: 'static> Actor for HttpServer<T, A, H> {
|
2017-10-07 06:48:14 +02:00
|
|
|
type Context = Context<Self>;
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> HttpServer<T, A, H> where H: HttpHandler
|
|
|
|
{
|
|
|
|
/// Create new http server with vec of http handlers
|
|
|
|
pub fn new<U: IntoIterator<Item=H>>(handler: U) -> Self {
|
|
|
|
let apps: Vec<_> = handler.into_iter().map(|h| h.into()).collect();
|
|
|
|
|
|
|
|
HttpServer {h: Rc::new(apps),
|
|
|
|
io: PhantomData,
|
|
|
|
addr: PhantomData}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-16 22:13:32 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> HttpServer<T, A, H>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
2017-10-22 03:54:24 +02:00
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler,
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
|
|
|
/// Start listening for incomming connections from stream.
|
|
|
|
pub fn serve_incoming<S, Addr>(self, stream: S) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: Stream<Item=(T, A), Error=io::Error> + 'static
|
|
|
|
{
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
2017-10-22 00:21:16 +02:00
|
|
|
ctx.add_stream(stream.map(|(t, a)| IoStream(t, a)));
|
2017-10-16 22:13:32 +02:00
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<H: HttpHandler> HttpServer<TcpStream, net::SocketAddr, H> {
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Start listening for incomming connections.
|
2017-10-16 22:13:32 +02:00
|
|
|
///
|
|
|
|
/// This methods converts address to list of `SocketAddr`
|
|
|
|
/// then binds to all available addresses.
|
2017-10-15 23:53:03 +02:00
|
|
|
pub fn serve<S, Addr>(self, addr: S) -> io::Result<Addr>
|
|
|
|
where Self: ActorAddress<Self, Addr>,
|
|
|
|
S: net::ToSocketAddrs,
|
2017-10-07 06:48:14 +02:00
|
|
|
{
|
2017-10-15 23:53:03 +02:00
|
|
|
let mut err = None;
|
|
|
|
let mut addrs = Vec::new();
|
2017-10-16 10:19:23 +02:00
|
|
|
if let Ok(iter) = addr.to_socket_addrs() {
|
2017-10-15 23:53:03 +02:00
|
|
|
for addr in iter {
|
|
|
|
match TcpListener::bind(&addr, Arbiter::handle()) {
|
|
|
|
Ok(tcp) => addrs.push(tcp),
|
|
|
|
Err(e) => err = Some(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if addrs.is_empty() {
|
|
|
|
if let Some(e) = err.take() {
|
|
|
|
Err(e)
|
|
|
|
} else {
|
|
|
|
Err(io::Error::new(io::ErrorKind::Other, "Can not bind to address."))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(HttpServer::create(move |ctx| {
|
|
|
|
for tcp in addrs {
|
2017-10-22 00:21:16 +02:00
|
|
|
ctx.add_stream(tcp.incoming().map(|(t, a)| IoStream(t, a)));
|
2017-10-15 23:53:03 +02:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}))
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-22 00:21:16 +02:00
|
|
|
struct IoStream<T, A>(T, A);
|
|
|
|
|
|
|
|
impl<T, A> ResponseType for IoStream<T, A>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static
|
|
|
|
{
|
2017-10-07 06:48:14 +02:00
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> StreamHandler<IoStream<T, A>, io::Error> for HttpServer<T, A, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static {}
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> Handler<IoStream<T, A>, io::Error> for HttpServer<T, A, H>
|
2017-10-16 22:13:32 +02:00
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
2017-10-22 03:54:24 +02:00
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static,
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
2017-10-22 00:21:16 +02:00
|
|
|
fn handle(&mut self, msg: IoStream<T, A>, _: &mut Context<Self>)
|
|
|
|
-> Response<Self, IoStream<T, A>>
|
2017-10-07 06:48:14 +02:00
|
|
|
{
|
|
|
|
Arbiter::handle().spawn(
|
2017-10-22 03:54:24 +02:00
|
|
|
HttpChannel{router: Rc::clone(&self.h),
|
2017-10-07 06:48:14 +02:00
|
|
|
addr: msg.1,
|
|
|
|
stream: msg.0,
|
|
|
|
reader: Reader::new(),
|
2017-10-13 23:43:17 +02:00
|
|
|
error: false,
|
2017-10-07 06:48:14 +02:00
|
|
|
items: VecDeque::new(),
|
2017-10-21 08:12:36 +02:00
|
|
|
inactive: VecDeque::new(),
|
2017-10-14 01:33:23 +02:00
|
|
|
keepalive: true,
|
|
|
|
keepalive_timer: None,
|
2017-10-07 06:48:14 +02:00
|
|
|
});
|
2017-10-07 09:22:09 +02:00
|
|
|
Self::empty()
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
task: Task,
|
2017-10-22 07:59:09 +02:00
|
|
|
req: UnsafeCell<HttpRequest>,
|
2017-10-07 06:48:14 +02:00
|
|
|
eof: bool,
|
|
|
|
error: bool,
|
|
|
|
finished: bool,
|
|
|
|
}
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
const KEEPALIVE_PERIOD: u64 = 15; // seconds
|
|
|
|
const MAX_PIPELINED_MESSAGES: usize = 16;
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
pub struct HttpChannel<T: 'static, A: 'static, H: 'static> {
|
|
|
|
router: Rc<Vec<H>>,
|
2017-10-07 06:48:14 +02:00
|
|
|
#[allow(dead_code)]
|
2017-10-16 22:13:32 +02:00
|
|
|
addr: A,
|
|
|
|
stream: T,
|
2017-10-07 06:48:14 +02:00
|
|
|
reader: Reader,
|
2017-10-13 23:43:17 +02:00
|
|
|
error: bool,
|
2017-10-07 06:48:14 +02:00
|
|
|
items: VecDeque<Entry>,
|
2017-10-21 08:12:36 +02:00
|
|
|
inactive: VecDeque<Entry>,
|
2017-10-14 01:33:23 +02:00
|
|
|
keepalive: bool,
|
|
|
|
keepalive_timer: Option<Timeout>,
|
|
|
|
}
|
|
|
|
|
2017-10-21 06:08:38 +02:00
|
|
|
/*impl<T: 'static, A: 'static> Drop for HttpChannel<T, A> {
|
2017-10-14 01:33:23 +02:00
|
|
|
fn drop(&mut self) {
|
|
|
|
println!("Drop http channel");
|
|
|
|
}
|
2017-10-21 06:08:38 +02:00
|
|
|
}*/
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> Actor for HttpChannel<T, A, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
2017-10-07 06:48:14 +02:00
|
|
|
type Context = Context<Self>;
|
|
|
|
}
|
|
|
|
|
2017-10-22 03:54:24 +02:00
|
|
|
impl<T, A, H> Future for HttpChannel<T, A, H>
|
|
|
|
where T: AsyncRead + AsyncWrite + 'static,
|
|
|
|
A: 'static,
|
|
|
|
H: HttpHandler + 'static
|
2017-10-16 22:13:32 +02:00
|
|
|
{
|
2017-10-07 06:48:14 +02:00
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
2017-10-14 01:33:23 +02:00
|
|
|
// keep-alive timer
|
|
|
|
if let Some(ref mut timeout) = self.keepalive_timer {
|
|
|
|
match timeout.poll() {
|
|
|
|
Ok(Async::Ready(_)) =>
|
|
|
|
return Ok(Async::Ready(())),
|
|
|
|
Ok(Async::NotReady) => (),
|
|
|
|
Err(_) => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
loop {
|
|
|
|
// check in-flight messages
|
|
|
|
let mut idx = 0;
|
|
|
|
while idx < self.items.len() {
|
|
|
|
if idx == 0 {
|
|
|
|
if self.items[idx].error {
|
|
|
|
return Err(())
|
|
|
|
}
|
2017-10-13 23:43:17 +02:00
|
|
|
|
|
|
|
// this is anoying
|
2017-10-22 07:59:09 +02:00
|
|
|
let req = unsafe {self.items[idx].req.get().as_mut().unwrap()};
|
2017-10-13 23:43:17 +02:00
|
|
|
match self.items[idx].task.poll_io(&mut self.stream, req)
|
|
|
|
{
|
2017-10-21 08:12:36 +02:00
|
|
|
Ok(Async::Ready(ready)) => {
|
2017-10-07 06:48:14 +02:00
|
|
|
let mut item = self.items.pop_front().unwrap();
|
2017-10-14 01:33:23 +02:00
|
|
|
|
|
|
|
// overide keep-alive state
|
|
|
|
if self.keepalive {
|
|
|
|
self.keepalive = item.task.keepalive();
|
|
|
|
}
|
2017-10-21 08:12:36 +02:00
|
|
|
if !ready {
|
2017-10-07 06:48:14 +02:00
|
|
|
item.eof = true;
|
2017-10-21 08:12:36 +02:00
|
|
|
self.inactive.push_back(item);
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-14 01:33:23 +02:00
|
|
|
|
|
|
|
// no keep-alive
|
2017-10-21 08:12:36 +02:00
|
|
|
if ready && !self.keepalive &&
|
|
|
|
self.items.is_empty() && self.inactive.is_empty()
|
|
|
|
{
|
2017-10-14 01:33:23 +02:00
|
|
|
return Ok(Async::Ready(()))
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
continue
|
|
|
|
},
|
|
|
|
Ok(Async::NotReady) => (),
|
2017-10-13 23:43:17 +02:00
|
|
|
Err(_) => {
|
|
|
|
// it is not possible to recover from error
|
|
|
|
// during task handling, so just drop connection
|
|
|
|
return Err(())
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-21 08:12:36 +02:00
|
|
|
} else if !self.items[idx].finished && !self.items[idx].error {
|
2017-10-07 06:48:14 +02:00
|
|
|
match self.items[idx].task.poll() {
|
2017-10-21 08:12:36 +02:00
|
|
|
Ok(Async::NotReady) => (),
|
2017-10-07 06:48:14 +02:00
|
|
|
Ok(Async::Ready(_)) =>
|
|
|
|
self.items[idx].finished = true,
|
|
|
|
Err(_) =>
|
|
|
|
self.items[idx].error = true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
idx += 1;
|
|
|
|
}
|
|
|
|
|
2017-10-21 08:12:36 +02:00
|
|
|
// check inactive tasks
|
|
|
|
let mut idx = 0;
|
|
|
|
while idx < self.inactive.len() {
|
|
|
|
if idx == 0 && self.inactive[idx].error && self.inactive[idx].finished {
|
|
|
|
let _ = self.inactive.pop_front();
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !self.inactive[idx].finished && !self.inactive[idx].error {
|
|
|
|
match self.inactive[idx].task.poll() {
|
|
|
|
Ok(Async::NotReady) => (),
|
|
|
|
Ok(Async::Ready(_)) =>
|
|
|
|
self.inactive[idx].finished = true,
|
|
|
|
Err(_) =>
|
|
|
|
self.inactive[idx].error = true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
idx += 1;
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
// read incoming data
|
2017-10-14 01:33:23 +02:00
|
|
|
if !self.error && self.items.len() < MAX_PIPELINED_MESSAGES {
|
2017-10-13 23:43:17 +02:00
|
|
|
match self.reader.parse(&mut self.stream) {
|
2017-10-22 07:59:09 +02:00
|
|
|
Ok(Async::Ready((mut req, payload))) => {
|
2017-10-14 01:33:23 +02:00
|
|
|
// stop keepalive timer
|
|
|
|
self.keepalive_timer.take();
|
|
|
|
|
|
|
|
// start request processing
|
2017-10-22 03:54:24 +02:00
|
|
|
let mut task = None;
|
|
|
|
for h in self.router.iter() {
|
|
|
|
if req.path().starts_with(h.prefix()) {
|
2017-10-22 07:59:09 +02:00
|
|
|
task = Some(h.handle(&mut req, payload));
|
2017-10-22 03:54:24 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 23:43:17 +02:00
|
|
|
self.items.push_back(
|
2017-10-22 03:54:24 +02:00
|
|
|
Entry {task: task.unwrap_or_else(|| Task::reply(HTTPNotFound)),
|
2017-10-22 07:59:09 +02:00
|
|
|
req: UnsafeCell::new(req),
|
2017-10-13 23:43:17 +02:00
|
|
|
eof: false,
|
|
|
|
error: false,
|
|
|
|
finished: false});
|
|
|
|
}
|
2017-10-14 01:33:23 +02:00
|
|
|
Err(err) => {
|
|
|
|
// kill keepalive
|
|
|
|
self.keepalive = false;
|
|
|
|
self.keepalive_timer.take();
|
|
|
|
|
|
|
|
// on parse error, stop reading stream but
|
2017-10-21 08:12:36 +02:00
|
|
|
// tasks need to be completed
|
2017-10-14 01:33:23 +02:00
|
|
|
self.error = true;
|
|
|
|
|
|
|
|
if let ReaderError::Error(err) = err {
|
|
|
|
self.items.push_back(
|
|
|
|
Entry {task: Task::reply(err),
|
2017-10-22 07:59:09 +02:00
|
|
|
req: UnsafeCell::new(HttpRequest::for_error()),
|
2017-10-14 01:33:23 +02:00
|
|
|
eof: false,
|
|
|
|
error: false,
|
|
|
|
finished: false});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => {
|
|
|
|
// start keep-alive timer, this is also slow request timeout
|
2017-10-21 08:12:36 +02:00
|
|
|
if self.items.is_empty() && self.inactive.is_empty() {
|
2017-10-14 01:33:23 +02:00
|
|
|
if self.keepalive {
|
|
|
|
if self.keepalive_timer.is_none() {
|
|
|
|
trace!("Start keep-alive timer");
|
|
|
|
let mut timeout = Timeout::new(
|
|
|
|
Duration::new(KEEPALIVE_PERIOD, 0),
|
|
|
|
Arbiter::handle()).unwrap();
|
|
|
|
// register timeout
|
|
|
|
let _ = timeout.poll();
|
|
|
|
self.keepalive_timer = Some(timeout);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// keep-alive disable, drop connection
|
|
|
|
return Ok(Async::Ready(()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Ok(Async::NotReady)
|
|
|
|
}
|
2017-10-13 23:43:17 +02:00
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-14 01:33:23 +02:00
|
|
|
|
|
|
|
// check for parse error
|
2017-10-21 08:12:36 +02:00
|
|
|
if self.items.is_empty() && self.inactive.is_empty() && self.error {
|
2017-10-14 01:33:23 +02:00
|
|
|
return Ok(Async::Ready(()))
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|