mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
327 lines
8.3 KiB
Rust
327 lines
8.3 KiB
Rust
use std::cell::{RefCell, RefMut, UnsafeCell};
|
|
use std::collections::VecDeque;
|
|
use std::fmt::Write;
|
|
use std::rc::Rc;
|
|
use std::time::{Duration, Instant};
|
|
use std::{env, fmt, net};
|
|
|
|
use actix::Arbiter;
|
|
use bytes::BytesMut;
|
|
use futures::Stream;
|
|
use futures_cpupool::CpuPool;
|
|
use http::StatusCode;
|
|
use lazycell::LazyCell;
|
|
use parking_lot::Mutex;
|
|
use time;
|
|
use tokio_timer::Interval;
|
|
|
|
use super::channel::Node;
|
|
use super::message::{Request, RequestPool};
|
|
use super::server::{ConnectionRateTag, ConnectionTag, Connections};
|
|
use super::KeepAlive;
|
|
use body::Body;
|
|
use httpresponse::{HttpResponse, HttpResponseBuilder, HttpResponsePool};
|
|
|
|
/// Env variable for default cpu pool size
|
|
const ENV_CPU_POOL_VAR: &str = "ACTIX_CPU_POOL";
|
|
|
|
lazy_static! {
|
|
pub(crate) static ref DEFAULT_CPUPOOL: Mutex<CpuPool> = {
|
|
let default = match env::var(ENV_CPU_POOL_VAR) {
|
|
Ok(val) => {
|
|
if let Ok(val) = val.parse() {
|
|
val
|
|
} else {
|
|
error!("Can not parse ACTIX_CPU_POOL value");
|
|
20
|
|
}
|
|
}
|
|
Err(_) => 20,
|
|
};
|
|
Mutex::new(CpuPool::new(default))
|
|
};
|
|
}
|
|
|
|
/// Various server settings
|
|
pub struct ServerSettings {
|
|
addr: Option<net::SocketAddr>,
|
|
secure: bool,
|
|
host: String,
|
|
cpu_pool: LazyCell<CpuPool>,
|
|
responses: &'static HttpResponsePool,
|
|
}
|
|
|
|
impl Clone for ServerSettings {
|
|
fn clone(&self) -> Self {
|
|
ServerSettings {
|
|
addr: self.addr,
|
|
secure: self.secure,
|
|
host: self.host.clone(),
|
|
cpu_pool: LazyCell::new(),
|
|
responses: HttpResponsePool::get_pool(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Default for ServerSettings {
|
|
fn default() -> Self {
|
|
ServerSettings {
|
|
addr: None,
|
|
secure: false,
|
|
host: "localhost:8080".to_owned(),
|
|
responses: HttpResponsePool::get_pool(),
|
|
cpu_pool: LazyCell::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ServerSettings {
|
|
/// Crate server settings instance
|
|
pub(crate) fn new(
|
|
addr: Option<net::SocketAddr>, host: &Option<String>, secure: bool,
|
|
) -> ServerSettings {
|
|
let host = if let Some(ref host) = *host {
|
|
host.clone()
|
|
} else if let Some(ref addr) = addr {
|
|
format!("{}", addr)
|
|
} else {
|
|
"localhost".to_owned()
|
|
};
|
|
let cpu_pool = LazyCell::new();
|
|
let responses = HttpResponsePool::get_pool();
|
|
ServerSettings {
|
|
addr,
|
|
secure,
|
|
host,
|
|
cpu_pool,
|
|
responses,
|
|
}
|
|
}
|
|
|
|
/// Returns the socket address of the local half of this TCP connection
|
|
pub fn local_addr(&self) -> Option<net::SocketAddr> {
|
|
self.addr
|
|
}
|
|
|
|
/// Returns true if connection is secure(https)
|
|
pub fn secure(&self) -> bool {
|
|
self.secure
|
|
}
|
|
|
|
/// Returns host header value
|
|
pub fn host(&self) -> &str {
|
|
&self.host
|
|
}
|
|
|
|
/// Returns default `CpuPool` for server
|
|
pub fn cpu_pool(&self) -> &CpuPool {
|
|
self.cpu_pool.borrow_with(|| DEFAULT_CPUPOOL.lock().clone())
|
|
}
|
|
|
|
#[inline]
|
|
pub(crate) fn get_response(&self, status: StatusCode, body: Body) -> HttpResponse {
|
|
HttpResponsePool::get_response(&self.responses, status, body)
|
|
}
|
|
|
|
#[inline]
|
|
pub(crate) fn get_response_builder(
|
|
&self, status: StatusCode,
|
|
) -> HttpResponseBuilder {
|
|
HttpResponsePool::get_builder(&self.responses, status)
|
|
}
|
|
}
|
|
|
|
// "Sun, 06 Nov 1994 08:49:37 GMT".len()
|
|
const DATE_VALUE_LENGTH: usize = 29;
|
|
|
|
pub(crate) struct WorkerSettings<H> {
|
|
h: Vec<H>,
|
|
keep_alive: u64,
|
|
ka_enabled: bool,
|
|
bytes: Rc<SharedBytesPool>,
|
|
messages: &'static RequestPool,
|
|
conns: Connections,
|
|
node: RefCell<Node<()>>,
|
|
date: UnsafeCell<Date>,
|
|
}
|
|
|
|
impl<H: 'static> WorkerSettings<H> {
|
|
pub(crate) fn create(
|
|
apps: Vec<H>, keep_alive: KeepAlive, settings: ServerSettings,
|
|
conns: Connections,
|
|
) -> Rc<WorkerSettings<H>> {
|
|
let settings = Rc::new(Self::new(apps, keep_alive, settings, conns));
|
|
|
|
// periodic date update
|
|
let s = settings.clone();
|
|
Arbiter::spawn(
|
|
Interval::new(Instant::now(), Duration::from_secs(1))
|
|
.map_err(|_| ())
|
|
.and_then(move |_| {
|
|
s.update_date();
|
|
Ok(())
|
|
}).fold((), |(), _| Ok(())),
|
|
);
|
|
|
|
settings
|
|
}
|
|
}
|
|
|
|
impl<H> WorkerSettings<H> {
|
|
pub(crate) fn new(
|
|
h: Vec<H>, keep_alive: KeepAlive, settings: ServerSettings, conns: Connections,
|
|
) -> WorkerSettings<H> {
|
|
let (keep_alive, ka_enabled) = match keep_alive {
|
|
KeepAlive::Timeout(val) => (val as u64, true),
|
|
KeepAlive::Os | KeepAlive::Tcp(_) => (0, true),
|
|
KeepAlive::Disabled => (0, false),
|
|
};
|
|
|
|
WorkerSettings {
|
|
h,
|
|
bytes: Rc::new(SharedBytesPool::new()),
|
|
messages: RequestPool::pool(settings),
|
|
node: RefCell::new(Node::head()),
|
|
date: UnsafeCell::new(Date::new()),
|
|
keep_alive,
|
|
ka_enabled,
|
|
conns,
|
|
}
|
|
}
|
|
|
|
pub fn head(&self) -> RefMut<Node<()>> {
|
|
self.node.borrow_mut()
|
|
}
|
|
|
|
pub fn handlers(&self) -> &Vec<H> {
|
|
&self.h
|
|
}
|
|
|
|
pub fn keep_alive(&self) -> u64 {
|
|
self.keep_alive
|
|
}
|
|
|
|
pub fn keep_alive_enabled(&self) -> bool {
|
|
self.ka_enabled
|
|
}
|
|
|
|
pub fn get_bytes(&self) -> BytesMut {
|
|
self.bytes.get_bytes()
|
|
}
|
|
|
|
pub fn release_bytes(&self, bytes: BytesMut) {
|
|
self.bytes.release_bytes(bytes)
|
|
}
|
|
|
|
pub fn get_request(&self) -> Request {
|
|
RequestPool::get(self.messages)
|
|
}
|
|
|
|
pub fn connection(&self) -> ConnectionTag {
|
|
self.conns.connection()
|
|
}
|
|
|
|
fn update_date(&self) {
|
|
// Unsafe: WorkerSetting is !Sync and !Send
|
|
unsafe { &mut *self.date.get() }.update();
|
|
}
|
|
|
|
pub fn set_date(&self, dst: &mut BytesMut, full: bool) {
|
|
// Unsafe: WorkerSetting is !Sync and !Send
|
|
let date_bytes = unsafe { &(*self.date.get()).bytes };
|
|
if full {
|
|
let mut buf: [u8; 39] = [0; 39];
|
|
buf[..6].copy_from_slice(b"date: ");
|
|
buf[6..35].copy_from_slice(date_bytes);
|
|
buf[35..].copy_from_slice(b"\r\n\r\n");
|
|
dst.extend_from_slice(&buf);
|
|
} else {
|
|
dst.extend_from_slice(date_bytes);
|
|
}
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub(crate) fn connection_rate(&self) -> ConnectionRateTag {
|
|
self.conns.connection_rate()
|
|
}
|
|
}
|
|
|
|
struct Date {
|
|
bytes: [u8; DATE_VALUE_LENGTH],
|
|
pos: usize,
|
|
}
|
|
|
|
impl Date {
|
|
fn new() -> Date {
|
|
let mut date = Date {
|
|
bytes: [0; DATE_VALUE_LENGTH],
|
|
pos: 0,
|
|
};
|
|
date.update();
|
|
date
|
|
}
|
|
fn update(&mut self) {
|
|
self.pos = 0;
|
|
write!(self, "{}", time::at_utc(time::get_time()).rfc822()).unwrap();
|
|
}
|
|
}
|
|
|
|
impl fmt::Write for Date {
|
|
fn write_str(&mut self, s: &str) -> fmt::Result {
|
|
let len = s.len();
|
|
self.bytes[self.pos..self.pos + len].copy_from_slice(s.as_bytes());
|
|
self.pos += len;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub(crate) struct SharedBytesPool(RefCell<VecDeque<BytesMut>>);
|
|
|
|
impl SharedBytesPool {
|
|
pub fn new() -> SharedBytesPool {
|
|
SharedBytesPool(RefCell::new(VecDeque::with_capacity(128)))
|
|
}
|
|
|
|
pub fn get_bytes(&self) -> BytesMut {
|
|
if let Some(bytes) = self.0.borrow_mut().pop_front() {
|
|
bytes
|
|
} else {
|
|
BytesMut::new()
|
|
}
|
|
}
|
|
|
|
pub fn release_bytes(&self, mut bytes: BytesMut) {
|
|
let v = &mut self.0.borrow_mut();
|
|
if v.len() < 128 {
|
|
bytes.clear();
|
|
v.push_front(bytes);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_date_len() {
|
|
assert_eq!(DATE_VALUE_LENGTH, "Sun, 06 Nov 1994 08:49:37 GMT".len());
|
|
}
|
|
|
|
#[test]
|
|
fn test_date() {
|
|
let settings = WorkerSettings::<()>::new(
|
|
Vec::new(),
|
|
KeepAlive::Os,
|
|
ServerSettings::default(),
|
|
Connections::default(),
|
|
);
|
|
let mut buf1 = BytesMut::with_capacity(DATE_VALUE_LENGTH + 10);
|
|
settings.set_date(&mut buf1, true);
|
|
let mut buf2 = BytesMut::with_capacity(DATE_VALUE_LENGTH + 10);
|
|
settings.set_date(&mut buf2, true);
|
|
assert_eq!(buf1, buf2);
|
|
}
|
|
}
|