2018-01-12 03:35:05 +01:00
|
|
|
//! Http server
|
|
|
|
use std::{time, io};
|
|
|
|
use std::net::Shutdown;
|
|
|
|
|
2018-02-12 21:17:30 +01:00
|
|
|
use actix;
|
2018-01-12 03:35:05 +01:00
|
|
|
use futures::Poll;
|
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
2018-01-12 07:06:06 +01:00
|
|
|
use tokio_core::net::TcpStream;
|
2018-01-12 03:35:05 +01:00
|
|
|
|
|
|
|
mod srv;
|
|
|
|
mod worker;
|
|
|
|
mod channel;
|
2018-01-28 07:03:03 +01:00
|
|
|
pub(crate) mod encoding;
|
|
|
|
pub(crate) mod h1;
|
2018-01-12 03:35:05 +01:00
|
|
|
mod h2;
|
|
|
|
mod h1writer;
|
|
|
|
mod h2writer;
|
|
|
|
mod settings;
|
2018-03-29 19:44:26 +02:00
|
|
|
pub(crate) mod helpers;
|
2018-01-28 07:03:03 +01:00
|
|
|
pub(crate) mod shared;
|
|
|
|
pub(crate) mod utils;
|
2018-01-12 03:35:05 +01:00
|
|
|
|
|
|
|
pub use self::srv::HttpServer;
|
|
|
|
pub use self::settings::ServerSettings;
|
|
|
|
|
2018-01-14 22:50:38 +01:00
|
|
|
use body::Binary;
|
2018-01-12 03:35:05 +01:00
|
|
|
use error::Error;
|
2018-03-29 20:06:44 +02:00
|
|
|
use header::ContentEncoding;
|
2018-02-28 00:03:28 +01:00
|
|
|
use httprequest::{HttpInnerMessage, HttpRequest};
|
2018-01-12 03:35:05 +01:00
|
|
|
use httpresponse::HttpResponse;
|
|
|
|
|
|
|
|
/// max buffer size 64k
|
|
|
|
pub(crate) const MAX_WRITE_BUFFER_SIZE: usize = 65_536;
|
|
|
|
|
2018-03-31 03:54:38 +02:00
|
|
|
/// Create new http server with application factory
|
2018-03-31 08:07:33 +02:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # extern crate actix;
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// use actix::*;
|
2018-03-31 09:16:55 +02:00
|
|
|
/// use actix_web::{server, App, HttpResponse};
|
2018-03-31 08:07:33 +02:00
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let sys = actix::System::new("guide");
|
|
|
|
///
|
|
|
|
/// server::new(
|
2018-03-31 09:16:55 +02:00
|
|
|
/// || App::new()
|
2018-03-31 08:07:33 +02:00
|
|
|
/// .resource("/", |r| r.f(|_| HttpResponse::Ok())))
|
|
|
|
/// .bind("127.0.0.1:59080").unwrap()
|
|
|
|
/// .start();
|
|
|
|
///
|
|
|
|
/// # actix::Arbiter::system().do_send(actix::msgs::SystemExit(0));
|
|
|
|
/// let _ = sys.run();
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-03-31 03:54:38 +02:00
|
|
|
pub fn new<F, U, H>(factory: F) -> HttpServer<H>
|
|
|
|
where F: Fn() -> U + Sync + Send + 'static,
|
|
|
|
U: IntoIterator<Item=H> + 'static,
|
|
|
|
H: IntoHttpHandler + 'static
|
|
|
|
{
|
|
|
|
HttpServer::new(factory)
|
|
|
|
}
|
|
|
|
|
2018-03-10 01:21:14 +01:00
|
|
|
#[derive(Debug, PartialEq, Clone, Copy)]
|
|
|
|
/// Server keep-alive setting
|
|
|
|
pub enum KeepAlive {
|
|
|
|
/// Keep alive in seconds
|
|
|
|
Timeout(usize),
|
|
|
|
/// Use `SO_KEEPALIVE` socket option, value in seconds
|
|
|
|
Tcp(usize),
|
|
|
|
/// Relay on OS to shutdown tcp connection
|
|
|
|
Os,
|
|
|
|
/// Disabled
|
|
|
|
Disabled,
|
|
|
|
}
|
|
|
|
|
2018-03-10 10:40:36 +01:00
|
|
|
impl From<usize> for KeepAlive {
|
|
|
|
fn from(keepalive: usize) -> Self {
|
|
|
|
KeepAlive::Timeout(keepalive)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Option<usize>> for KeepAlive {
|
|
|
|
fn from(keepalive: Option<usize>) -> Self {
|
|
|
|
if let Some(keepalive) = keepalive {
|
|
|
|
KeepAlive::Timeout(keepalive)
|
|
|
|
} else {
|
|
|
|
KeepAlive::Disabled
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 03:35:05 +01:00
|
|
|
/// Pause accepting incoming connections
|
|
|
|
///
|
|
|
|
/// If socket contains some pending connection, they might be dropped.
|
|
|
|
/// All opened connection remains active.
|
|
|
|
#[derive(Message)]
|
|
|
|
pub struct PauseServer;
|
|
|
|
|
|
|
|
/// Resume accepting incoming connections
|
|
|
|
#[derive(Message)]
|
|
|
|
pub struct ResumeServer;
|
|
|
|
|
|
|
|
/// Stop incoming connection processing, stop all workers and exit.
|
|
|
|
///
|
|
|
|
/// If server starts with `spawn()` method, then spawned thread get terminated.
|
|
|
|
pub struct StopServer {
|
|
|
|
pub graceful: bool
|
|
|
|
}
|
|
|
|
|
2018-02-12 21:17:30 +01:00
|
|
|
impl actix::Message for StopServer {
|
|
|
|
type Result = Result<(), ()>;
|
|
|
|
}
|
|
|
|
|
2018-01-12 03:35:05 +01:00
|
|
|
/// Low level http request handler
|
|
|
|
#[allow(unused_variables)]
|
|
|
|
pub trait HttpHandler: 'static {
|
|
|
|
|
|
|
|
/// Handle request
|
|
|
|
fn handle(&mut self, req: HttpRequest) -> Result<Box<HttpHandlerTask>, HttpRequest>;
|
|
|
|
}
|
|
|
|
|
2018-01-14 03:58:17 +01:00
|
|
|
impl HttpHandler for Box<HttpHandler> {
|
|
|
|
fn handle(&mut self, req: HttpRequest) -> Result<Box<HttpHandlerTask>, HttpRequest> {
|
|
|
|
self.as_mut().handle(req)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 03:35:05 +01:00
|
|
|
pub trait HttpHandlerTask {
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<(), Error>;
|
|
|
|
|
2018-01-12 07:06:06 +01:00
|
|
|
fn poll_io(&mut self, io: &mut Writer) -> Poll<bool, Error>;
|
|
|
|
|
2018-01-12 03:35:05 +01:00
|
|
|
fn disconnected(&mut self);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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, settings: ServerSettings) -> Self::Handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: HttpHandler> IntoHttpHandler for T {
|
|
|
|
type Handler = T;
|
|
|
|
|
|
|
|
fn into_handler(self, _: ServerSettings) -> Self::Handler {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum WriterState {
|
|
|
|
Done,
|
|
|
|
Pause,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Stream writer
|
|
|
|
pub trait Writer {
|
|
|
|
fn written(&self) -> u64;
|
|
|
|
|
2018-02-28 00:03:28 +01:00
|
|
|
fn start(&mut self, req: &mut HttpInnerMessage, resp: &mut HttpResponse, encoding: ContentEncoding)
|
2018-02-19 07:23:17 +01:00
|
|
|
-> io::Result<WriterState>;
|
2018-01-12 03:35:05 +01:00
|
|
|
|
2018-01-14 22:50:38 +01:00
|
|
|
fn write(&mut self, payload: Binary) -> io::Result<WriterState>;
|
2018-01-12 03:35:05 +01:00
|
|
|
|
2018-01-14 22:50:38 +01:00
|
|
|
fn write_eof(&mut self) -> io::Result<WriterState>;
|
2018-01-12 03:35:05 +01:00
|
|
|
|
|
|
|
fn poll_completed(&mut self, shutdown: bool) -> Poll<(), io::Error>;
|
|
|
|
}
|
2018-01-12 07:06:06 +01:00
|
|
|
|
|
|
|
/// Low-level io stream operations
|
|
|
|
pub trait IoStream: AsyncRead + AsyncWrite + 'static {
|
|
|
|
fn shutdown(&mut self, how: Shutdown) -> io::Result<()>;
|
|
|
|
|
|
|
|
fn set_nodelay(&mut self, nodelay: bool) -> io::Result<()>;
|
|
|
|
|
|
|
|
fn set_linger(&mut self, dur: Option<time::Duration>) -> io::Result<()>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IoStream for TcpStream {
|
|
|
|
#[inline]
|
|
|
|
fn shutdown(&mut self, how: Shutdown) -> io::Result<()> {
|
|
|
|
TcpStream::shutdown(self, how)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_nodelay(&mut self, nodelay: bool) -> io::Result<()> {
|
|
|
|
TcpStream::set_nodelay(self, nodelay)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_linger(&mut self, dur: Option<time::Duration>) -> io::Result<()> {
|
|
|
|
TcpStream::set_linger(self, dur)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
use tokio_openssl::SslStream;
|
|
|
|
|
|
|
|
#[cfg(feature="alpn")]
|
|
|
|
impl IoStream for SslStream<TcpStream> {
|
|
|
|
#[inline]
|
|
|
|
fn shutdown(&mut self, _how: Shutdown) -> io::Result<()> {
|
|
|
|
let _ = self.get_mut().shutdown();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_nodelay(&mut self, nodelay: bool) -> io::Result<()> {
|
|
|
|
self.get_mut().get_mut().set_nodelay(nodelay)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_linger(&mut self, dur: Option<time::Duration>) -> io::Result<()> {
|
|
|
|
self.get_mut().get_mut().set_linger(dur)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature="tls")]
|
|
|
|
use tokio_tls::TlsStream;
|
|
|
|
|
|
|
|
#[cfg(feature="tls")]
|
|
|
|
impl IoStream for TlsStream<TcpStream> {
|
|
|
|
#[inline]
|
|
|
|
fn shutdown(&mut self, _how: Shutdown) -> io::Result<()> {
|
|
|
|
let _ = self.get_mut().shutdown();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_nodelay(&mut self, nodelay: bool) -> io::Result<()> {
|
|
|
|
self.get_mut().get_mut().set_nodelay(nodelay)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_linger(&mut self, dur: Option<time::Duration>) -> io::Result<()> {
|
|
|
|
self.get_mut().get_mut().set_linger(dur)
|
|
|
|
}
|
|
|
|
}
|