1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-25 08:52:42 +01:00
actix-web/src/request.rs

240 lines
5.9 KiB
Rust
Raw Normal View History

2018-06-25 06:58:04 +02:00
use std::cell::{Cell, Ref, RefCell, RefMut};
use std::collections::VecDeque;
2018-10-02 04:18:24 +02:00
use std::fmt;
2018-06-25 06:58:04 +02:00
use std::net::SocketAddr;
2018-07-04 18:52:49 +02:00
use std::rc::Rc;
2018-06-25 06:58:04 +02:00
use http::{header, HeaderMap, Method, Uri, Version};
use extensions::Extensions;
use httpmessage::HttpMessage;
use payload::Payload;
use uri::Url as InnerUrl;
bitflags! {
pub(crate) struct MessageFlags: u8 {
const KEEPALIVE = 0b0000_0001;
const CONN_INFO = 0b0000_0010;
}
}
/// Request's context
pub struct Request {
2018-07-04 18:52:49 +02:00
pub(crate) inner: Rc<InnerRequest>,
2018-06-25 06:58:04 +02:00
}
pub(crate) struct InnerRequest {
pub(crate) version: Version,
pub(crate) method: Method,
pub(crate) url: InnerUrl,
pub(crate) flags: Cell<MessageFlags>,
pub(crate) headers: HeaderMap,
pub(crate) extensions: RefCell<Extensions>,
pub(crate) payload: RefCell<Option<Payload>>,
pub(crate) stream_extensions: Option<Rc<Extensions>>,
2018-07-04 18:52:49 +02:00
pool: &'static RequestPool,
}
impl InnerRequest {
#[inline]
/// Reset request instance
pub fn reset(&mut self) {
self.headers.clear();
self.extensions.borrow_mut().clear();
self.flags.set(MessageFlags::empty());
*self.payload.borrow_mut() = None;
}
2018-06-25 06:58:04 +02:00
}
impl HttpMessage for Request {
type Stream = Payload;
fn headers(&self) -> &HeaderMap {
&self.inner.headers
}
#[inline]
fn payload(&self) -> Payload {
if let Some(payload) = self.inner.payload.borrow_mut().take() {
payload
} else {
Payload::empty()
}
}
}
impl Request {
2018-10-05 05:02:10 +02:00
/// Create new Request instance
pub fn new() -> Request {
Request::with_pool(RequestPool::pool())
}
/// Create new Request instance with pool
pub(crate) fn with_pool(pool: &'static RequestPool) -> Request {
2018-06-25 06:58:04 +02:00
Request {
2018-07-04 18:52:49 +02:00
inner: Rc::new(InnerRequest {
pool,
2018-06-25 06:58:04 +02:00
method: Method::GET,
url: InnerUrl::default(),
version: Version::HTTP_11,
headers: HeaderMap::with_capacity(16),
flags: Cell::new(MessageFlags::empty()),
payload: RefCell::new(None),
extensions: RefCell::new(Extensions::new()),
stream_extensions: None,
2018-06-25 06:58:04 +02:00
}),
}
}
2018-07-04 18:52:49 +02:00
#[inline]
pub(crate) fn inner(&self) -> &InnerRequest {
self.inner.as_ref()
}
#[inline]
pub(crate) fn inner_mut(&mut self) -> &mut InnerRequest {
Rc::get_mut(&mut self.inner).expect("Multiple copies exist")
}
2018-06-25 06:58:04 +02:00
#[inline]
pub(crate) fn url(&self) -> &InnerUrl {
2018-07-04 18:52:49 +02:00
&self.inner().url
2018-06-25 06:58:04 +02:00
}
/// Read the Request Uri.
#[inline]
pub fn uri(&self) -> &Uri {
2018-07-04 18:52:49 +02:00
self.inner().url.uri()
2018-06-25 06:58:04 +02:00
}
/// Read the Request method.
#[inline]
pub fn method(&self) -> &Method {
2018-07-04 18:52:49 +02:00
&self.inner().method
2018-06-25 06:58:04 +02:00
}
/// Read the Request Version.
#[inline]
pub fn version(&self) -> Version {
2018-07-04 18:52:49 +02:00
self.inner().version
2018-06-25 06:58:04 +02:00
}
/// The target path of this Request.
#[inline]
pub fn path(&self) -> &str {
2018-07-04 18:52:49 +02:00
self.inner().url.path()
2018-06-25 06:58:04 +02:00
}
#[inline]
/// Returns Request's headers.
pub fn headers(&self) -> &HeaderMap {
2018-07-04 18:52:49 +02:00
&self.inner().headers
2018-06-25 06:58:04 +02:00
}
#[inline]
/// Returns mutable Request's headers.
pub fn headers_mut(&mut self) -> &mut HeaderMap {
2018-07-04 18:52:49 +02:00
&mut self.inner_mut().headers
2018-06-25 06:58:04 +02:00
}
/// Checks if a connection should be kept alive.
#[inline]
pub fn keep_alive(&self) -> bool {
2018-07-04 18:52:49 +02:00
self.inner().flags.get().contains(MessageFlags::KEEPALIVE)
2018-06-25 06:58:04 +02:00
}
/// Request extensions
#[inline]
pub fn extensions(&self) -> Ref<Extensions> {
2018-07-04 18:52:49 +02:00
self.inner().extensions.borrow()
2018-06-25 06:58:04 +02:00
}
/// Mutable reference to a the request's extensions
#[inline]
pub fn extensions_mut(&self) -> RefMut<Extensions> {
2018-07-04 18:52:49 +02:00
self.inner().extensions.borrow_mut()
2018-06-25 06:58:04 +02:00
}
/// Check if request requires connection upgrade
pub fn upgrade(&self) -> bool {
2018-07-04 18:52:49 +02:00
if let Some(conn) = self.inner().headers.get(header::CONNECTION) {
2018-06-25 06:58:04 +02:00
if let Ok(s) = conn.to_str() {
return s.to_lowercase().contains("upgrade");
}
}
2018-07-04 18:52:49 +02:00
self.inner().method == Method::CONNECT
2018-06-25 06:58:04 +02:00
}
2018-07-04 18:57:40 +02:00
pub(crate) fn clone(&self) -> Self {
Request {
inner: self.inner.clone(),
}
}
2018-07-04 18:52:49 +02:00
pub(crate) fn release(self) {
let mut inner = self.inner;
if let Some(r) = Rc::get_mut(&mut inner) {
r.reset();
} else {
return;
}
inner.pool.release(inner);
2018-06-25 06:58:04 +02:00
}
}
2018-10-02 04:18:24 +02:00
impl fmt::Debug for Request {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
writeln!(
f,
"\nRequest {:?} {}:{}",
self.version(),
self.method(),
self.path()
)?;
if let Some(q) = self.uri().query().as_ref() {
writeln!(f, " query: ?{:?}", q)?;
}
writeln!(f, " headers:")?;
for (key, val) in self.headers().iter() {
writeln!(f, " {:?}: {:?}", key, val)?;
}
Ok(())
}
}
2018-10-05 05:02:10 +02:00
/// Request's objects pool
pub(crate) struct RequestPool(RefCell<VecDeque<Rc<InnerRequest>>>);
2018-06-25 06:58:04 +02:00
thread_local!(static POOL: &'static RequestPool = RequestPool::create());
impl RequestPool {
fn create() -> &'static RequestPool {
2018-10-05 02:34:57 +02:00
let pool = RequestPool(RefCell::new(VecDeque::with_capacity(128)));
2018-06-25 06:58:04 +02:00
Box::leak(Box::new(pool))
}
2018-10-05 05:02:10 +02:00
/// Get default request's pool
pub fn pool() -> &'static RequestPool {
2018-10-05 02:34:57 +02:00
POOL.with(|p| *p)
2018-06-25 06:58:04 +02:00
}
2018-10-05 05:02:10 +02:00
/// Get Request object
2018-06-25 06:58:04 +02:00
#[inline]
2018-07-04 18:52:49 +02:00
pub fn get(pool: &'static RequestPool) -> Request {
if let Some(msg) = pool.0.borrow_mut().pop_front() {
Request { inner: msg }
2018-06-25 06:58:04 +02:00
} else {
2018-10-05 05:02:10 +02:00
Request::with_pool(pool)
2018-06-25 06:58:04 +02:00
}
}
#[inline]
2018-07-04 17:01:27 +02:00
/// Release request instance
2018-10-05 01:22:00 +02:00
pub(crate) fn release(&self, msg: Rc<InnerRequest>) {
2018-06-25 06:58:04 +02:00
let v = &mut self.0.borrow_mut();
if v.len() < 128 {
v.push_front(msg);
}
}
}