2018-01-28 07:03:03 +01:00
|
|
|
//! Http response
|
2018-06-25 05:08:28 +02:00
|
|
|
use std::cell::RefCell;
|
2017-12-16 01:24:15 +01:00
|
|
|
use std::collections::VecDeque;
|
2018-04-14 01:02:01 +02:00
|
|
|
use std::io::Write;
|
2018-11-18 05:21:28 +01:00
|
|
|
use std::{fmt, str};
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
use bytes::{BufMut, Bytes, BytesMut};
|
2018-01-28 07:03:03 +01:00
|
|
|
use cookie::{Cookie, CookieJar};
|
2018-03-08 02:40:13 +01:00
|
|
|
use futures::Stream;
|
2017-10-10 08:07:32 +02:00
|
|
|
use http::header::{self, HeaderName, HeaderValue};
|
2018-04-14 01:02:01 +02:00
|
|
|
use http::{Error as HttpError, HeaderMap, HttpTryFrom, StatusCode, Version};
|
2017-11-27 19:39:47 +01:00
|
|
|
use serde::Serialize;
|
2018-04-14 01:02:01 +02:00
|
|
|
use serde_json;
|
2017-12-08 01:40:29 +01:00
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
use body::{Body, BodyStream, MessageBody};
|
2017-11-25 18:03:44 +01:00
|
|
|
use error::Error;
|
2018-11-18 22:48:42 +01:00
|
|
|
use header::{Header, IntoHeaderValue};
|
2018-11-17 18:03:35 +01:00
|
|
|
use message::{Head, MessageFlags, ResponseHead};
|
2017-10-15 07:52:38 +02:00
|
|
|
|
2018-03-09 19:00:15 +01:00
|
|
|
/// max write buffer size 64k
|
|
|
|
pub(crate) const MAX_WRITE_BUFFER_SIZE: usize = 65_536;
|
|
|
|
|
2017-12-16 01:24:15 +01:00
|
|
|
/// An HTTP Response
|
2018-11-18 22:48:42 +01:00
|
|
|
pub struct Response<B: MessageBody = Body>(Box<InnerResponse>, B);
|
2017-12-16 01:24:15 +01:00
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl Response<Body> {
|
2017-11-27 07:31:29 +01:00
|
|
|
/// Create http response builder with specific status.
|
2017-10-11 01:03:32 +02:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn build(status: StatusCode) -> ResponseBuilder {
|
|
|
|
ResponsePool::get(status)
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
|
2018-03-22 03:54:21 +01:00
|
|
|
/// Create http response builder
|
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn build_from<T: Into<ResponseBuilder>>(source: T) -> ResponseBuilder {
|
2018-03-22 03:54:21 +01:00
|
|
|
source.into()
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Constructs a response
|
2017-10-07 06:48:14 +02:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn new(status: StatusCode) -> Response {
|
2018-11-18 22:48:42 +01:00
|
|
|
ResponsePool::with_body(status, Body::Empty)
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2018-05-29 18:11:10 +02:00
|
|
|
/// Constructs an error response
|
2017-11-25 18:03:44 +01:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn from_error(error: Error) -> Response {
|
2018-06-07 18:53:27 +02:00
|
|
|
let mut resp = error.as_response_error().error_response();
|
2017-12-16 01:24:15 +01:00
|
|
|
resp.get_mut().error = Some(error);
|
2017-11-25 18:03:44 +01:00
|
|
|
resp
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Convert `Response` to a `ResponseBuilder`
|
2018-03-30 23:30:24 +02:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn into_builder(self) -> ResponseBuilder {
|
2018-06-12 15:49:07 +02:00
|
|
|
// If this response has cookies, load them into a jar
|
|
|
|
let mut jar: Option<CookieJar> = None;
|
|
|
|
for c in self.cookies() {
|
|
|
|
if let Some(ref mut j) = jar {
|
|
|
|
j.add_original(c.into_owned());
|
|
|
|
} else {
|
|
|
|
let mut j = CookieJar::new();
|
|
|
|
j.add_original(c.into_owned());
|
|
|
|
jar = Some(j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
ResponseBuilder {
|
2018-06-25 05:08:28 +02:00
|
|
|
response: Some(self.0),
|
2018-03-30 23:30:24 +02:00
|
|
|
err: None,
|
2018-06-12 15:49:07 +02:00
|
|
|
cookies: jar,
|
2018-03-30 23:30:24 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-18 05:21:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<B: MessageBody> Response<B> {
|
|
|
|
#[inline]
|
|
|
|
fn get_ref(&self) -> &InnerResponse {
|
|
|
|
self.0.as_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn get_mut(&mut self) -> &mut InnerResponse {
|
|
|
|
self.0.as_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub(crate) fn head_mut(&mut self) -> &mut ResponseHead {
|
|
|
|
&mut self.0.as_mut().head
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Constructs a response with body
|
|
|
|
#[inline]
|
|
|
|
pub fn with_body(status: StatusCode, body: B) -> Response<B> {
|
|
|
|
ResponsePool::with_body(status, body.into())
|
|
|
|
}
|
2018-03-30 23:30:24 +02:00
|
|
|
|
2017-11-25 18:03:44 +01:00
|
|
|
/// The source `error` for this response
|
|
|
|
#[inline]
|
|
|
|
pub fn error(&self) -> Option<&Error> {
|
2017-12-16 01:24:15 +01:00
|
|
|
self.get_ref().error.as_ref()
|
2017-11-25 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
2018-11-18 05:21:28 +01:00
|
|
|
/// Get the response status code
|
|
|
|
#[inline]
|
|
|
|
pub fn status(&self) -> StatusCode {
|
|
|
|
self.get_ref().head.status
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the `StatusCode` for this response
|
|
|
|
#[inline]
|
|
|
|
pub fn status_mut(&mut self) -> &mut StatusCode {
|
|
|
|
&mut self.get_mut().head.status
|
|
|
|
}
|
|
|
|
|
2018-01-29 20:39:26 +01:00
|
|
|
/// Get the headers from the response
|
2017-10-07 06:48:14 +02:00
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn headers(&self) -> &HeaderMap {
|
2018-11-17 17:56:40 +01:00
|
|
|
&self.get_ref().head.headers
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2018-01-29 20:39:26 +01:00
|
|
|
/// Get a mutable reference to the headers
|
2017-10-07 06:48:14 +02:00
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
2018-11-17 17:56:40 +01:00
|
|
|
&mut self.get_mut().head.headers
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 15:49:07 +02:00
|
|
|
/// Get an iterator for the cookies set by this response
|
|
|
|
#[inline]
|
|
|
|
pub fn cookies(&self) -> CookieIter {
|
|
|
|
CookieIter {
|
2018-11-17 18:03:35 +01:00
|
|
|
iter: self
|
|
|
|
.get_ref()
|
|
|
|
.head
|
|
|
|
.headers
|
|
|
|
.get_all(header::SET_COOKIE)
|
|
|
|
.iter(),
|
2018-06-12 15:49:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a cookie to this response
|
|
|
|
#[inline]
|
2018-06-14 08:37:19 +02:00
|
|
|
pub fn add_cookie(&mut self, cookie: &Cookie) -> Result<(), HttpError> {
|
2018-11-17 17:56:40 +01:00
|
|
|
let h = &mut self.get_mut().head.headers;
|
2018-06-12 15:49:07 +02:00
|
|
|
HeaderValue::from_str(&cookie.to_string())
|
2018-06-14 08:37:19 +02:00
|
|
|
.map(|c| {
|
|
|
|
h.append(header::SET_COOKIE, c);
|
2018-08-23 18:48:01 +02:00
|
|
|
}).map_err(|e| e.into())
|
2018-06-12 15:49:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Remove all cookies with the given name from this response. Returns
|
|
|
|
/// the number of cookies removed.
|
|
|
|
#[inline]
|
|
|
|
pub fn del_cookie(&mut self, name: &str) -> usize {
|
2018-11-17 17:56:40 +01:00
|
|
|
let h = &mut self.get_mut().head.headers;
|
2018-06-14 08:37:19 +02:00
|
|
|
let vals: Vec<HeaderValue> = h
|
|
|
|
.get_all(header::SET_COOKIE)
|
2018-06-12 15:49:07 +02:00
|
|
|
.iter()
|
|
|
|
.map(|v| v.to_owned())
|
|
|
|
.collect();
|
|
|
|
h.remove(header::SET_COOKIE);
|
|
|
|
|
|
|
|
let mut count: usize = 0;
|
|
|
|
for v in vals {
|
|
|
|
if let Ok(s) = v.to_str() {
|
2018-07-17 07:38:18 +02:00
|
|
|
if let Ok(c) = Cookie::parse_encoded(s) {
|
2018-06-12 15:49:07 +02:00
|
|
|
if c.name() == name {
|
|
|
|
count += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h.append(header::SET_COOKIE, v);
|
|
|
|
}
|
2018-06-14 08:37:19 +02:00
|
|
|
count
|
2018-06-12 15:49:07 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 06:48:00 +02:00
|
|
|
/// Connection upgrade status
|
2018-01-01 02:26:32 +01:00
|
|
|
#[inline]
|
2017-10-08 06:48:00 +02:00
|
|
|
pub fn upgrade(&self) -> bool {
|
2018-11-19 02:52:56 +01:00
|
|
|
self.get_ref().head.upgrade()
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
/// Keep-alive status for this connection
|
2018-11-19 02:52:56 +01:00
|
|
|
pub fn keep_alive(&self) -> bool {
|
|
|
|
self.get_ref().head.keep_alive()
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Get body os this response
|
2018-01-01 02:26:32 +01:00
|
|
|
#[inline]
|
2018-11-18 05:21:28 +01:00
|
|
|
pub fn body(&self) -> &B {
|
|
|
|
&self.1
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 06:48:00 +02:00
|
|
|
/// Set a body
|
2018-11-18 05:21:28 +01:00
|
|
|
pub fn set_body<B2: MessageBody>(self, body: B2) -> Response<B2> {
|
|
|
|
Response(self.0, body)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
/// Drop request's body
|
|
|
|
pub fn drop_body(self) -> Response<()> {
|
|
|
|
Response(self.0, ())
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Set a body and return previous body value
|
2018-11-18 05:21:28 +01:00
|
|
|
pub fn replace_body<B2: MessageBody>(self, body: B2) -> (Response<B2>, B) {
|
|
|
|
(Response(self.0, body), self.1)
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-11-10 21:29:54 +01:00
|
|
|
|
|
|
|
/// Size of response in bytes, excluding HTTP headers
|
|
|
|
pub fn response_size(&self) -> u64 {
|
2017-12-16 01:24:15 +01:00
|
|
|
self.get_ref().response_size
|
2017-11-10 21:29:54 +01:00
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
/// Set response size
|
2017-11-10 21:29:54 +01:00
|
|
|
pub(crate) fn set_response_size(&mut self, size: u64) {
|
2017-12-16 01:24:15 +01:00
|
|
|
self.get_mut().response_size = size;
|
2017-11-10 21:29:54 +01:00
|
|
|
}
|
2018-03-09 19:00:15 +01:00
|
|
|
|
2018-06-25 06:10:02 +02:00
|
|
|
pub(crate) fn release(self) {
|
2018-11-17 17:56:40 +01:00
|
|
|
ResponsePool::release(self.0);
|
2018-06-25 06:10:02 +02:00
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
pub(crate) fn into_parts(self) -> ResponseParts {
|
2018-06-25 05:08:28 +02:00
|
|
|
self.0.into_parts()
|
2018-06-12 03:52:54 +02:00
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
pub(crate) fn from_parts(parts: ResponseParts) -> Response {
|
2018-11-18 22:48:42 +01:00
|
|
|
Response(Box::new(InnerResponse::from_parts(parts)), Body::Empty)
|
2018-06-12 03:52:54 +02:00
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-10-11 01:03:32 +02:00
|
|
|
|
2018-11-19 02:52:56 +01:00
|
|
|
impl<B: MessageBody> fmt::Debug for Response<B> {
|
2017-11-09 04:31:25 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2018-04-14 01:02:01 +02:00
|
|
|
let res = writeln!(
|
|
|
|
f,
|
2018-10-05 20:04:59 +02:00
|
|
|
"\nResponse {:?} {}{}",
|
2018-11-17 17:56:40 +01:00
|
|
|
self.get_ref().head.version,
|
|
|
|
self.get_ref().head.status,
|
2018-11-19 02:52:56 +01:00
|
|
|
self.get_ref().head.reason.unwrap_or(""),
|
2018-04-14 01:02:01 +02:00
|
|
|
);
|
2018-04-09 23:25:30 +02:00
|
|
|
let _ = writeln!(f, " headers:");
|
2018-11-17 17:56:40 +01:00
|
|
|
for (key, val) in self.get_ref().head.headers.iter() {
|
2018-04-09 23:25:30 +02:00
|
|
|
let _ = writeln!(f, " {:?}: {:?}", key, val);
|
2017-11-09 04:31:25 +01:00
|
|
|
}
|
2018-11-19 02:52:56 +01:00
|
|
|
let _ = writeln!(f, " body: {:?}", self.body().length());
|
2017-11-09 04:31:25 +01:00
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-12 15:49:07 +02:00
|
|
|
pub struct CookieIter<'a> {
|
|
|
|
iter: header::ValueIter<'a, HeaderValue>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Iterator for CookieIter<'a> {
|
|
|
|
type Item = Cookie<'a>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn next(&mut self) -> Option<Cookie<'a>> {
|
|
|
|
for v in self.iter.by_ref() {
|
2018-07-17 07:38:18 +02:00
|
|
|
if let Ok(c) = Cookie::parse_encoded(v.to_str().ok()?) {
|
2018-06-12 15:49:07 +02:00
|
|
|
return Some(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 01:03:32 +02:00
|
|
|
/// An HTTP response builder
|
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// This type can be used to construct an instance of `Response` through a
|
2017-10-11 01:03:32 +02:00
|
|
|
/// builder-like pattern.
|
2018-10-05 20:04:59 +02:00
|
|
|
pub struct ResponseBuilder {
|
|
|
|
response: Option<Box<InnerResponse>>,
|
2017-10-22 18:13:29 +02:00
|
|
|
err: Option<HttpError>,
|
2017-12-14 01:44:35 +01:00
|
|
|
cookies: Option<CookieJar>,
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
impl ResponseBuilder {
|
2018-03-06 09:43:25 +01:00
|
|
|
/// Set HTTP status code of this response.
|
|
|
|
#[inline]
|
|
|
|
pub fn status(&mut self, status: StatusCode) -> &mut Self {
|
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.status = status;
|
2018-03-06 09:43:25 +01:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-03-06 04:28:42 +01:00
|
|
|
/// Set a header.
|
|
|
|
///
|
2018-10-05 06:14:18 +02:00
|
|
|
/// ```rust,ignore
|
2018-03-06 04:28:42 +01:00
|
|
|
/// # extern crate actix_web;
|
2018-10-05 20:04:59 +02:00
|
|
|
/// use actix_web::{http, Request, Response, Result};
|
2018-03-06 04:28:42 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// fn index(req: HttpRequest) -> Result<Response> {
|
|
|
|
/// Ok(Response::Ok()
|
2018-06-01 18:37:14 +02:00
|
|
|
/// .set(http::header::IfModifiedSince(
|
|
|
|
/// "Sun, 07 Nov 1994 08:48:37 GMT".parse()?,
|
|
|
|
/// ))
|
2018-03-31 08:07:33 +02:00
|
|
|
/// .finish())
|
2018-03-06 04:28:42 +01:00
|
|
|
/// }
|
|
|
|
/// fn main() {}
|
|
|
|
/// ```
|
|
|
|
#[doc(hidden)]
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn set<H: Header>(&mut self, hdr: H) -> &mut Self {
|
2018-03-06 04:28:42 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
|
|
|
match hdr.try_into() {
|
2018-04-14 01:02:01 +02:00
|
|
|
Ok(value) => {
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.headers.append(H::name(), value);
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2018-03-06 04:28:42 +01:00
|
|
|
Err(e) => self.err = Some(e.into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-10-11 01:03:32 +02:00
|
|
|
/// Set a header.
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 06:14:18 +02:00
|
|
|
/// ```rust,ignore
|
2017-12-21 08:19:21 +01:00
|
|
|
/// # extern crate actix_web;
|
2018-10-05 20:04:59 +02:00
|
|
|
/// use actix_web::{http, Request, Response};
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// fn index(req: HttpRequest) -> Response {
|
|
|
|
/// Response::Ok()
|
2017-12-21 08:19:21 +01:00
|
|
|
/// .header("X-TEST", "value")
|
2018-03-31 08:07:33 +02:00
|
|
|
/// .header(http::header::CONTENT_TYPE, "application/json")
|
|
|
|
/// .finish()
|
2017-12-21 08:19:21 +01:00
|
|
|
/// }
|
|
|
|
/// fn main() {}
|
|
|
|
/// ```
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn header<K, V>(&mut self, key: K, value: V) -> &mut Self
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
2017-10-11 01:03:32 +02:00
|
|
|
{
|
2017-12-14 01:44:35 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
2017-10-11 01:03:32 +02:00
|
|
|
match HeaderName::try_from(key) {
|
2018-04-14 01:02:01 +02:00
|
|
|
Ok(key) => match value.try_into() {
|
|
|
|
Ok(value) => {
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.headers.append(key, value);
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
2018-04-14 01:02:01 +02:00
|
|
|
Err(e) => self.err = Some(e.into()),
|
2017-10-11 01:03:32 +02:00
|
|
|
},
|
|
|
|
Err(e) => self.err = Some(e.into()),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the custom reason for the response.
|
|
|
|
#[inline]
|
|
|
|
pub fn reason(&mut self, reason: &'static str) -> &mut Self {
|
2017-12-14 01:44:35 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.reason = Some(reason);
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-11-19 02:52:56 +01:00
|
|
|
/// Set connection type to KeepAlive
|
2017-12-04 05:47:15 +01:00
|
|
|
#[inline]
|
2018-11-19 02:52:56 +01:00
|
|
|
pub fn keep_alive(&mut self) -> &mut Self {
|
2017-12-14 01:44:35 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
2018-11-19 02:52:56 +01:00
|
|
|
parts.head.set_keep_alive();
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-10-14 19:01:53 +02:00
|
|
|
/// Set connection type to Upgrade
|
2017-12-04 05:47:15 +01:00
|
|
|
#[inline]
|
2017-10-14 19:01:53 +02:00
|
|
|
pub fn upgrade(&mut self) -> &mut Self {
|
2018-11-19 02:52:56 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
|
|
|
parts.head.set_upgrade();
|
|
|
|
}
|
|
|
|
self
|
2017-10-14 19:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Force close connection, even if it is marked as keep-alive
|
2017-12-04 05:47:15 +01:00
|
|
|
#[inline]
|
2017-10-14 19:01:53 +02:00
|
|
|
pub fn force_close(&mut self) -> &mut Self {
|
2018-11-19 02:52:56 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
|
|
|
parts.head.force_close();
|
|
|
|
}
|
|
|
|
self
|
2017-10-14 19:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Set response content type
|
2017-12-04 05:47:15 +01:00
|
|
|
#[inline]
|
2017-10-14 19:01:53 +02:00
|
|
|
pub fn content_type<V>(&mut self, value: V) -> &mut Self
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
|
|
|
HeaderValue: HttpTryFrom<V>,
|
2017-10-14 19:01:53 +02:00
|
|
|
{
|
2017-12-14 01:44:35 +01:00
|
|
|
if let Some(parts) = parts(&mut self.response, &self.err) {
|
2017-10-14 19:01:53 +02:00
|
|
|
match HeaderValue::try_from(value) {
|
2018-04-14 01:02:01 +02:00
|
|
|
Ok(value) => {
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.headers.insert(header::CONTENT_TYPE, value);
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-10-14 19:01:53 +02:00
|
|
|
Err(e) => self.err = Some(e.into()),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-01-12 01:22:27 +01:00
|
|
|
/// Set content length
|
|
|
|
#[inline]
|
|
|
|
pub fn content_length(&mut self, len: u64) -> &mut Self {
|
|
|
|
let mut wrt = BytesMut::new().writer();
|
|
|
|
let _ = write!(wrt, "{}", len);
|
|
|
|
self.header(header::CONTENT_LENGTH, wrt.get_mut().take().freeze())
|
|
|
|
}
|
|
|
|
|
2017-10-14 19:40:58 +02:00
|
|
|
/// Set a cookie
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 06:14:18 +02:00
|
|
|
/// ```rust,ignore
|
2017-12-21 08:19:21 +01:00
|
|
|
/// # extern crate actix_web;
|
2018-10-05 20:04:59 +02:00
|
|
|
/// use actix_web::{http, HttpRequest, Response, Result};
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// fn index(req: HttpRequest) -> Response {
|
|
|
|
/// Response::Ok()
|
2017-12-21 08:19:21 +01:00
|
|
|
/// .cookie(
|
2018-03-31 02:31:18 +02:00
|
|
|
/// http::Cookie::build("name", "value")
|
2017-12-21 08:19:21 +01:00
|
|
|
/// .domain("www.rust-lang.org")
|
|
|
|
/// .path("/")
|
|
|
|
/// .secure(true)
|
|
|
|
/// .http_only(true)
|
2018-06-01 18:37:14 +02:00
|
|
|
/// .finish(),
|
|
|
|
/// )
|
2018-03-31 08:07:33 +02:00
|
|
|
/// .finish()
|
2017-12-21 08:19:21 +01:00
|
|
|
/// }
|
|
|
|
/// ```
|
2017-10-14 19:40:58 +02:00
|
|
|
pub fn cookie<'c>(&mut self, cookie: Cookie<'c>) -> &mut Self {
|
2017-12-14 01:44:35 +01:00
|
|
|
if self.cookies.is_none() {
|
|
|
|
let mut jar = CookieJar::new();
|
|
|
|
jar.add(cookie.into_owned());
|
|
|
|
self.cookies = Some(jar)
|
|
|
|
} else {
|
2018-05-16 01:41:46 +02:00
|
|
|
self.cookies.as_mut().unwrap().add(cookie.into_owned());
|
2017-10-14 19:40:58 +02:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-05-24 20:36:17 +02:00
|
|
|
/// Remove cookie
|
|
|
|
///
|
2018-10-05 06:14:18 +02:00
|
|
|
/// ```rust,ignore
|
2018-05-24 20:36:17 +02:00
|
|
|
/// # extern crate actix_web;
|
2018-10-05 20:04:59 +02:00
|
|
|
/// use actix_web::{http, HttpRequest, Response, Result};
|
2018-05-24 20:36:17 +02:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// fn index(req: &HttpRequest) -> Response {
|
|
|
|
/// let mut builder = Response::Ok();
|
2018-05-24 20:36:17 +02:00
|
|
|
///
|
2018-06-25 06:58:04 +02:00
|
|
|
/// if let Some(ref cookie) = req.cookie("name") {
|
2018-05-24 20:36:17 +02:00
|
|
|
/// builder.del_cookie(cookie);
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// builder.finish()
|
|
|
|
/// }
|
|
|
|
/// ```
|
2017-10-14 19:40:58 +02:00
|
|
|
pub fn del_cookie<'a>(&mut self, cookie: &Cookie<'a>) -> &mut Self {
|
2017-12-14 01:44:35 +01:00
|
|
|
{
|
|
|
|
if self.cookies.is_none() {
|
|
|
|
self.cookies = Some(CookieJar::new())
|
2017-12-13 06:32:58 +01:00
|
|
|
}
|
2017-12-14 01:44:35 +01:00
|
|
|
let jar = self.cookies.as_mut().unwrap();
|
2017-10-14 19:40:58 +02:00
|
|
|
let cookie = cookie.clone().into_owned();
|
2017-12-13 06:32:58 +01:00
|
|
|
jar.add_original(cookie.clone());
|
|
|
|
jar.remove(cookie);
|
2017-10-14 19:40:58 +02:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
/// This method calls provided closure with builder reference if value is
|
|
|
|
/// true.
|
2017-10-29 22:51:02 +01:00
|
|
|
pub fn if_true<F>(&mut self, value: bool, f: F) -> &mut Self
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
2018-10-05 20:04:59 +02:00
|
|
|
F: FnOnce(&mut ResponseBuilder),
|
2017-10-29 22:51:02 +01:00
|
|
|
{
|
|
|
|
if value {
|
|
|
|
f(self);
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
/// This method calls provided closure with builder reference if value is
|
|
|
|
/// Some.
|
2018-01-21 01:36:57 +01:00
|
|
|
pub fn if_some<T, F>(&mut self, value: Option<T>, f: F) -> &mut Self
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
2018-10-05 20:04:59 +02:00
|
|
|
F: FnOnce(T, &mut ResponseBuilder),
|
2018-01-10 08:55:42 +01:00
|
|
|
{
|
|
|
|
if let Some(val) = value {
|
|
|
|
f(val, self);
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-11-18 05:21:28 +01:00
|
|
|
// /// Set write buffer capacity
|
|
|
|
// ///
|
|
|
|
// /// This parameter makes sense only for streaming response
|
|
|
|
// /// or actor. If write buffer reaches specified capacity, stream or actor
|
|
|
|
// /// get paused.
|
|
|
|
// ///
|
|
|
|
// /// Default write buffer capacity is 64kb
|
|
|
|
// pub fn write_buffer_capacity(&mut self, cap: usize) -> &mut Self {
|
|
|
|
// if let Some(parts) = parts(&mut self.response, &self.err) {
|
|
|
|
// parts.write_capacity = cap;
|
|
|
|
// }
|
|
|
|
// self
|
|
|
|
// }
|
2018-03-09 19:00:15 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Set a body and generate `Response`.
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn body<B: Into<Body>>(&mut self, body: B) -> Response {
|
|
|
|
self.message_body(body.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a body and generate `Response`.
|
|
|
|
///
|
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
|
|
|
pub fn message_body<B: MessageBody>(&mut self, body: B) -> Response<B> {
|
2018-11-18 05:21:28 +01:00
|
|
|
let mut error = if let Some(e) = self.err.take() {
|
|
|
|
Some(Error::from(e))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2018-05-16 01:41:46 +02:00
|
|
|
let mut response = self.response.take().expect("cannot reuse response builder");
|
2017-12-14 01:44:35 +01:00
|
|
|
if let Some(ref jar) = self.cookies {
|
2017-12-13 06:32:58 +01:00
|
|
|
for cookie in jar.delta() {
|
2018-03-31 08:07:33 +02:00
|
|
|
match HeaderValue::from_str(&cookie.to_string()) {
|
2018-11-18 05:21:28 +01:00
|
|
|
Ok(val) => {
|
|
|
|
let _ = response.head.headers.append(header::SET_COOKIE, val);
|
|
|
|
}
|
|
|
|
Err(e) => if error.is_none() {
|
|
|
|
error = Some(Error::from(e));
|
|
|
|
},
|
2018-03-31 08:07:33 +02:00
|
|
|
};
|
2017-12-13 06:32:58 +01:00
|
|
|
}
|
2017-10-14 19:40:58 +02:00
|
|
|
}
|
2018-11-18 05:21:28 +01:00
|
|
|
if let Some(error) = error {
|
|
|
|
response.error = Some(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
Response(response, body)
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
2017-10-24 08:52:20 +02:00
|
|
|
|
2018-03-31 08:07:33 +02:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Set a streaming body and generate `Response`.
|
2018-03-08 02:40:13 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn streaming<S, E>(&mut self, stream: S) -> Response
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
|
|
|
S: Stream<Item = Bytes, Error = E> + 'static,
|
2018-11-18 22:48:42 +01:00
|
|
|
E: Into<Error> + 'static,
|
2018-03-08 02:40:13 +01:00
|
|
|
{
|
2018-11-18 22:48:42 +01:00
|
|
|
self.body(Body::from_message(BodyStream::new(stream)))
|
2018-03-08 02:40:13 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Set a json body and generate `Response`
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn json<T: Serialize>(&mut self, value: T) -> Response {
|
2018-08-08 19:11:15 +02:00
|
|
|
self.json2(&value)
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Set a json body and generate `Response`
|
2018-08-08 19:11:15 +02:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn json2<T: Serialize>(&mut self, value: &T) -> Response {
|
2018-08-08 19:11:15 +02:00
|
|
|
match serde_json::to_string(value) {
|
2018-03-31 08:07:33 +02:00
|
|
|
Ok(body) => {
|
2018-04-14 01:02:01 +02:00
|
|
|
let contains = if let Some(parts) = parts(&mut self.response, &self.err)
|
|
|
|
{
|
2018-11-17 17:56:40 +01:00
|
|
|
parts.head.headers.contains_key(header::CONTENT_TYPE)
|
2018-04-14 01:02:01 +02:00
|
|
|
} else {
|
|
|
|
true
|
|
|
|
};
|
2018-03-31 08:07:33 +02:00
|
|
|
if !contains {
|
|
|
|
self.header(header::CONTENT_TYPE, "application/json");
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
self.body(Body::from(body))
|
2018-11-18 05:21:28 +01:00
|
|
|
}
|
2018-11-18 22:48:42 +01:00
|
|
|
Err(e) => Error::from(e).into(),
|
2017-11-27 19:39:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 08:07:33 +02:00
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Set an empty body and generate `Response`
|
2017-12-21 08:19:21 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// `ResponseBuilder` can not be used after this call.
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn finish(&mut self) -> Response {
|
|
|
|
self.body(Body::Empty)
|
2017-10-24 08:52:20 +02:00
|
|
|
}
|
2018-01-01 02:26:32 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// This method construct new `ResponseBuilder`
|
|
|
|
pub fn take(&mut self) -> ResponseBuilder {
|
|
|
|
ResponseBuilder {
|
2018-01-01 02:26:32 +01:00
|
|
|
response: self.response.take(),
|
|
|
|
err: self.err.take(),
|
|
|
|
cookies: self.cookies.take(),
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
|
2017-12-16 05:00:12 +01:00
|
|
|
#[inline]
|
2018-10-30 00:39:46 +01:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(borrowed_box))]
|
2018-04-14 01:02:01 +02:00
|
|
|
fn parts<'a>(
|
2018-10-30 00:39:46 +01:00
|
|
|
parts: &'a mut Option<Box<InnerResponse>>,
|
|
|
|
err: &Option<HttpError>,
|
2018-10-05 20:04:59 +02:00
|
|
|
) -> Option<&'a mut Box<InnerResponse>> {
|
2017-10-11 01:03:32 +02:00
|
|
|
if err.is_some() {
|
2018-04-14 01:02:01 +02:00
|
|
|
return None;
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
parts.as_mut()
|
|
|
|
}
|
2017-10-23 07:54:11 +02:00
|
|
|
|
2017-11-28 22:52:53 +01:00
|
|
|
/// Helper converters
|
2018-10-05 20:04:59 +02:00
|
|
|
impl<I: Into<Response>, E: Into<Error>> From<Result<I, E>> for Response {
|
2017-11-28 22:52:53 +01:00
|
|
|
fn from(res: Result<I, E>) -> Self {
|
|
|
|
match res {
|
|
|
|
Ok(val) => val.into(),
|
|
|
|
Err(err) => err.into().into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
impl From<ResponseBuilder> for Response {
|
|
|
|
fn from(mut builder: ResponseBuilder) -> Self {
|
2018-03-31 08:07:33 +02:00
|
|
|
builder.finish()
|
2017-11-29 18:17:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl From<&'static str> for Response {
|
2017-11-29 18:17:00 +01:00
|
|
|
fn from(val: &'static str) -> Self {
|
2018-10-05 20:04:59 +02:00
|
|
|
Response::Ok()
|
2018-04-29 18:09:08 +02:00
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(val)
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl From<&'static [u8]> for Response {
|
2017-11-29 18:17:00 +01:00
|
|
|
fn from(val: &'static [u8]) -> Self {
|
2018-10-05 20:04:59 +02:00
|
|
|
Response::Ok()
|
2018-04-29 18:09:08 +02:00
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(val)
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl From<String> for Response {
|
2017-11-29 18:17:00 +01:00
|
|
|
fn from(val: String) -> Self {
|
2018-10-05 20:04:59 +02:00
|
|
|
Response::Ok()
|
2018-04-29 18:09:08 +02:00
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(val)
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl<'a> From<&'a String> for Response {
|
|
|
|
fn from(val: &'a String) -> Self {
|
|
|
|
Response::Ok()
|
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Bytes> for Response {
|
2017-11-29 18:17:00 +01:00
|
|
|
fn from(val: Bytes) -> Self {
|
2018-10-05 20:04:59 +02:00
|
|
|
Response::Ok()
|
2018-04-29 18:09:08 +02:00
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(val)
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
impl From<BytesMut> for Response {
|
2017-11-29 18:17:00 +01:00
|
|
|
fn from(val: BytesMut) -> Self {
|
2018-10-05 20:04:59 +02:00
|
|
|
Response::Ok()
|
2018-04-29 18:09:08 +02:00
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(val)
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
struct InnerResponse {
|
2018-11-17 17:56:40 +01:00
|
|
|
head: ResponseHead,
|
2017-12-16 05:00:12 +01:00
|
|
|
response_size: u64,
|
|
|
|
error: Option<Error>,
|
2018-11-17 17:56:40 +01:00
|
|
|
pool: &'static ResponsePool,
|
2017-12-16 05:00:12 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
pub(crate) struct ResponseParts {
|
2018-11-17 17:56:40 +01:00
|
|
|
head: ResponseHead,
|
2018-06-21 06:45:24 +02:00
|
|
|
error: Option<Error>,
|
|
|
|
}
|
2018-06-12 03:52:54 +02:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
impl InnerResponse {
|
2017-12-16 05:00:12 +01:00
|
|
|
#[inline]
|
2018-11-18 05:21:28 +01:00
|
|
|
fn new(status: StatusCode, pool: &'static ResponsePool) -> InnerResponse {
|
2018-10-05 20:04:59 +02:00
|
|
|
InnerResponse {
|
2018-11-17 17:56:40 +01:00
|
|
|
head: ResponseHead {
|
|
|
|
status,
|
2018-11-17 18:03:35 +01:00
|
|
|
version: Version::default(),
|
2018-11-17 17:56:40 +01:00
|
|
|
headers: HeaderMap::with_capacity(16),
|
|
|
|
reason: None,
|
|
|
|
flags: MessageFlags::empty(),
|
|
|
|
},
|
|
|
|
pool,
|
2017-12-16 05:00:12 +01:00
|
|
|
response_size: 0,
|
|
|
|
error: None,
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 21:27:41 +02:00
|
|
|
|
|
|
|
/// This is for failure, we can not have Send + Sync on Streaming and Actor response
|
2018-11-18 05:21:28 +01:00
|
|
|
fn into_parts(self) -> ResponseParts {
|
2018-10-05 20:04:59 +02:00
|
|
|
ResponseParts {
|
2018-11-17 17:56:40 +01:00
|
|
|
head: self.head,
|
2018-06-21 06:45:24 +02:00
|
|
|
error: self.error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
fn from_parts(parts: ResponseParts) -> InnerResponse {
|
|
|
|
InnerResponse {
|
2018-11-17 17:56:40 +01:00
|
|
|
head: parts.head,
|
2018-06-21 06:45:24 +02:00
|
|
|
response_size: 0,
|
|
|
|
error: parts.error,
|
2018-11-17 17:56:40 +01:00
|
|
|
pool: ResponsePool::pool(),
|
2018-06-19 21:27:41 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-16 05:00:12 +01:00
|
|
|
}
|
|
|
|
|
2018-06-21 09:34:36 +02:00
|
|
|
/// Internal use only!
|
2018-10-05 20:04:59 +02:00
|
|
|
pub(crate) struct ResponsePool(RefCell<VecDeque<Box<InnerResponse>>>);
|
2018-03-23 05:14:57 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
thread_local!(static POOL: &'static ResponsePool = ResponsePool::pool());
|
2017-12-16 05:00:12 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
impl ResponsePool {
|
|
|
|
fn pool() -> &'static ResponsePool {
|
|
|
|
let pool = ResponsePool(RefCell::new(VecDeque::with_capacity(128)));
|
2018-06-25 05:08:28 +02:00
|
|
|
Box::leak(Box::new(pool))
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn get_pool() -> &'static ResponsePool {
|
2018-06-25 05:08:28 +02:00
|
|
|
POOL.with(|p| *p)
|
2018-03-23 05:14:57 +01:00
|
|
|
}
|
2017-12-16 05:00:12 +01:00
|
|
|
|
2017-12-16 07:49:48 +01:00
|
|
|
#[inline]
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn get_builder(
|
2018-10-30 00:39:46 +01:00
|
|
|
pool: &'static ResponsePool,
|
|
|
|
status: StatusCode,
|
2018-10-05 20:04:59 +02:00
|
|
|
) -> ResponseBuilder {
|
2018-06-25 05:08:28 +02:00
|
|
|
if let Some(mut msg) = pool.0.borrow_mut().pop_front() {
|
2018-11-17 17:56:40 +01:00
|
|
|
msg.head.status = status;
|
2018-10-05 20:04:59 +02:00
|
|
|
ResponseBuilder {
|
2018-03-23 05:14:57 +01:00
|
|
|
response: Some(msg),
|
|
|
|
err: None,
|
2018-04-14 01:02:01 +02:00
|
|
|
cookies: None,
|
|
|
|
}
|
2018-03-23 05:14:57 +01:00
|
|
|
} else {
|
2018-11-18 05:21:28 +01:00
|
|
|
let msg = Box::new(InnerResponse::new(status, pool));
|
2018-10-05 20:04:59 +02:00
|
|
|
ResponseBuilder {
|
2018-03-23 05:14:57 +01:00
|
|
|
response: Some(msg),
|
|
|
|
err: None,
|
2018-04-14 01:02:01 +02:00
|
|
|
cookies: None,
|
|
|
|
}
|
2018-03-23 05:14:57 +01:00
|
|
|
}
|
2017-12-16 05:00:12 +01:00
|
|
|
}
|
|
|
|
|
2017-12-16 07:49:48 +01:00
|
|
|
#[inline]
|
2018-11-18 05:21:28 +01:00
|
|
|
pub fn get_response<B: MessageBody>(
|
2018-10-30 00:39:46 +01:00
|
|
|
pool: &'static ResponsePool,
|
|
|
|
status: StatusCode,
|
2018-11-18 05:21:28 +01:00
|
|
|
body: B,
|
|
|
|
) -> Response<B> {
|
2018-06-25 05:08:28 +02:00
|
|
|
if let Some(mut msg) = pool.0.borrow_mut().pop_front() {
|
2018-11-17 17:56:40 +01:00
|
|
|
msg.head.status = status;
|
2018-11-18 05:21:28 +01:00
|
|
|
Response(msg, body)
|
2018-03-23 05:14:57 +01:00
|
|
|
} else {
|
2018-11-18 05:21:28 +01:00
|
|
|
Response(Box::new(InnerResponse::new(status, pool)), body)
|
2018-03-23 05:14:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-10-05 20:04:59 +02:00
|
|
|
fn get(status: StatusCode) -> ResponseBuilder {
|
|
|
|
POOL.with(|pool| ResponsePool::get_builder(pool, status))
|
2018-03-23 05:14:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-11-18 05:21:28 +01:00
|
|
|
fn with_body<B: MessageBody>(status: StatusCode, body: B) -> Response<B> {
|
2018-10-05 20:04:59 +02:00
|
|
|
POOL.with(|pool| ResponsePool::get_response(pool, status, body))
|
2017-12-16 05:00:12 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 05:08:28 +02:00
|
|
|
#[inline]
|
2018-11-17 17:56:40 +01:00
|
|
|
fn release(mut inner: Box<InnerResponse>) {
|
|
|
|
let mut p = inner.pool.0.borrow_mut();
|
2018-06-25 06:10:02 +02:00
|
|
|
if p.len() < 128 {
|
2018-11-17 17:56:40 +01:00
|
|
|
inner.head.clear();
|
2018-06-25 06:10:02 +02:00
|
|
|
inner.response_size = 0;
|
|
|
|
inner.error = None;
|
|
|
|
p.push_front(inner);
|
|
|
|
}
|
2017-12-16 05:00:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-23 07:54:11 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2018-11-18 22:48:42 +01:00
|
|
|
use body::Body;
|
2018-03-31 08:07:33 +02:00
|
|
|
use http;
|
2018-04-14 01:02:01 +02:00
|
|
|
use http::header::{HeaderValue, CONTENT_TYPE, COOKIE};
|
2017-12-13 20:16:26 +01:00
|
|
|
|
2018-10-07 06:14:02 +02:00
|
|
|
// use test::TestRequest;
|
2018-06-25 06:58:04 +02:00
|
|
|
|
2017-12-13 20:16:26 +01:00
|
|
|
#[test]
|
|
|
|
fn test_debug() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::Ok()
|
2018-03-08 07:40:46 +01:00
|
|
|
.header(COOKIE, HeaderValue::from_static("cookie1=value1; "))
|
|
|
|
.header(COOKIE, HeaderValue::from_static("cookie2=value2; "))
|
2018-03-31 08:07:33 +02:00
|
|
|
.finish();
|
2017-12-13 20:16:26 +01:00
|
|
|
let dbg = format!("{:?}", resp);
|
2018-10-05 20:04:59 +02:00
|
|
|
assert!(dbg.contains("Response"));
|
2017-12-13 20:16:26 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
// #[test]
|
|
|
|
// fn test_response_cookies() {
|
|
|
|
// let req = TestRequest::default()
|
|
|
|
// .header(COOKIE, "cookie1=value1")
|
|
|
|
// .header(COOKIE, "cookie2=value2")
|
|
|
|
// .finish();
|
|
|
|
// let cookies = req.cookies().unwrap();
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
// let resp = Response::Ok()
|
2018-10-05 06:14:18 +02:00
|
|
|
// .cookie(
|
|
|
|
// http::Cookie::build("name", "value")
|
|
|
|
// .domain("www.rust-lang.org")
|
|
|
|
// .path("/test")
|
|
|
|
// .http_only(true)
|
|
|
|
// .max_age(Duration::days(1))
|
|
|
|
// .finish(),
|
|
|
|
// ).del_cookie(&cookies[0])
|
|
|
|
// .finish();
|
|
|
|
|
|
|
|
// let mut val: Vec<_> = resp
|
|
|
|
// .headers()
|
|
|
|
// .get_all("Set-Cookie")
|
|
|
|
// .iter()
|
|
|
|
// .map(|v| v.to_str().unwrap().to_owned())
|
|
|
|
// .collect();
|
|
|
|
// val.sort();
|
|
|
|
// assert!(val[0].starts_with("cookie1=; Max-Age=0;"));
|
|
|
|
// assert_eq!(
|
|
|
|
// val[1],
|
|
|
|
// "name=value; HttpOnly; Path=/test; Domain=www.rust-lang.org; Max-Age=86400"
|
|
|
|
// );
|
|
|
|
// }
|
2017-10-23 07:54:11 +02:00
|
|
|
|
2018-06-12 15:49:07 +02:00
|
|
|
#[test]
|
|
|
|
fn test_update_response_cookies() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let mut r = Response::Ok()
|
2018-06-12 15:49:07 +02:00
|
|
|
.cookie(http::Cookie::new("original", "val100"))
|
|
|
|
.finish();
|
|
|
|
|
2018-06-14 08:37:19 +02:00
|
|
|
r.add_cookie(&http::Cookie::new("cookie2", "val200"))
|
|
|
|
.unwrap();
|
|
|
|
r.add_cookie(&http::Cookie::new("cookie2", "val250"))
|
|
|
|
.unwrap();
|
|
|
|
r.add_cookie(&http::Cookie::new("cookie3", "val300"))
|
|
|
|
.unwrap();
|
2018-06-12 15:49:07 +02:00
|
|
|
|
|
|
|
assert_eq!(r.cookies().count(), 4);
|
|
|
|
r.del_cookie("cookie2");
|
|
|
|
|
|
|
|
let mut iter = r.cookies();
|
|
|
|
let v = iter.next().unwrap();
|
|
|
|
assert_eq!((v.name(), v.value()), ("original", "val100"));
|
|
|
|
let v = iter.next().unwrap();
|
|
|
|
assert_eq!((v.name(), v.value()), ("cookie3", "val300"));
|
|
|
|
}
|
|
|
|
|
2017-11-28 23:29:22 +01:00
|
|
|
#[test]
|
|
|
|
fn test_basic_builder() {
|
2018-11-17 18:03:35 +01:00
|
|
|
let resp = Response::Ok().header("X-TEST", "value").finish();
|
2017-12-21 08:36:52 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2017-11-28 23:29:22 +01:00
|
|
|
}
|
|
|
|
|
2017-10-23 07:54:11 +02:00
|
|
|
#[test]
|
|
|
|
fn test_upgrade() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK).upgrade().finish();
|
2017-10-23 07:54:11 +02:00
|
|
|
assert!(resp.upgrade())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_force_close() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK).force_close().finish();
|
2018-11-19 02:52:56 +01:00
|
|
|
assert!(!resp.keep_alive())
|
2017-10-23 07:54:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_content_type() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK)
|
2018-04-14 01:02:01 +02:00
|
|
|
.content_type("text/plain")
|
|
|
|
.body(Body::Empty);
|
2018-05-16 01:41:46 +02:00
|
|
|
assert_eq!(resp.headers().get(CONTENT_TYPE).unwrap(), "text/plain")
|
2017-10-23 07:54:11 +02:00
|
|
|
}
|
2017-11-06 23:56:38 +01:00
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
// #[test]
|
|
|
|
// fn test_content_encoding() {
|
|
|
|
// let resp = Response::build(StatusCode::OK).finish();
|
|
|
|
// assert_eq!(resp.content_encoding(), None);
|
|
|
|
|
|
|
|
// #[cfg(feature = "brotli")]
|
|
|
|
// {
|
|
|
|
// let resp = Response::build(StatusCode::OK)
|
|
|
|
// .content_encoding(ContentEncoding::Br)
|
|
|
|
// .finish();
|
|
|
|
// assert_eq!(resp.content_encoding(), Some(ContentEncoding::Br));
|
|
|
|
// }
|
2018-03-21 16:03:21 +01:00
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
// let resp = Response::build(StatusCode::OK)
|
|
|
|
// .content_encoding(ContentEncoding::Gzip)
|
|
|
|
// .finish();
|
|
|
|
// assert_eq!(resp.content_encoding(), Some(ContentEncoding::Gzip));
|
|
|
|
// }
|
2017-11-27 19:39:47 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_json() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK).json(vec!["v1", "v2", "v3"]);
|
2018-03-06 04:28:42 +01:00
|
|
|
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
|
2018-03-06 09:43:25 +01:00
|
|
|
assert_eq!(ct, HeaderValue::from_static("application/json"));
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
*resp.body(),
|
|
|
|
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
|
|
|
|
);
|
2017-11-27 19:39:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_json_ct() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK)
|
2018-03-06 04:28:42 +01:00
|
|
|
.header(CONTENT_TYPE, "text/json")
|
2018-03-31 08:07:33 +02:00
|
|
|
.json(vec!["v1", "v2", "v3"]);
|
2018-03-06 04:28:42 +01:00
|
|
|
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
|
2018-03-06 09:43:25 +01:00
|
|
|
assert_eq!(ct, HeaderValue::from_static("text/json"));
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
*resp.body(),
|
|
|
|
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
|
|
|
|
);
|
2017-11-27 19:39:47 +01:00
|
|
|
}
|
2017-11-28 22:52:53 +01:00
|
|
|
|
2018-08-08 19:58:56 +02:00
|
|
|
#[test]
|
|
|
|
fn test_json2() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK).json2(&vec!["v1", "v2", "v3"]);
|
2018-08-08 19:58:56 +02:00
|
|
|
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
|
|
|
|
assert_eq!(ct, HeaderValue::from_static("application/json"));
|
|
|
|
assert_eq!(
|
|
|
|
*resp.body(),
|
|
|
|
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_json2_ct() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp = Response::build(StatusCode::OK)
|
2018-08-08 19:58:56 +02:00
|
|
|
.header(CONTENT_TYPE, "text/json")
|
|
|
|
.json2(&vec!["v1", "v2", "v3"]);
|
|
|
|
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
|
|
|
|
assert_eq!(ct, HeaderValue::from_static("text/json"));
|
|
|
|
assert_eq!(
|
|
|
|
*resp.body(),
|
|
|
|
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-11-28 22:52:53 +01:00
|
|
|
#[test]
|
|
|
|
fn test_into_response() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = "test".into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2017-11-28 22:52:53 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = b"test".as_ref().into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2017-11-28 22:52:53 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = "test".to_owned().into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2018-04-14 01:02:01 +02:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = (&"test".to_owned()).into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2018-04-14 01:02:01 +02:00
|
|
|
|
2017-11-28 22:52:53 +01:00
|
|
|
let b = Bytes::from_static(b"test");
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = b.into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2017-11-28 22:52:53 +01:00
|
|
|
|
2017-12-03 23:22:04 +01:00
|
|
|
let b = Bytes::from_static(b"test");
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = b.into();
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
2017-11-28 22:52:53 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2017-12-03 23:22:04 +01:00
|
|
|
|
|
|
|
let b = BytesMut::from("test");
|
2018-10-05 20:04:59 +02:00
|
|
|
let resp: Response = b.into();
|
2017-12-03 23:22:04 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
2017-12-03 23:22:04 +01:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2018-11-18 22:48:42 +01:00
|
|
|
assert_eq!(resp.body().get_ref(), b"test");
|
2017-11-28 22:52:53 +01:00
|
|
|
}
|
2018-03-30 23:30:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_into_builder() {
|
2018-10-05 20:04:59 +02:00
|
|
|
let mut resp: Response = "test".into();
|
2018-03-30 23:30:24 +02:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
2018-06-14 08:37:19 +02:00
|
|
|
resp.add_cookie(&http::Cookie::new("cookie1", "val100"))
|
|
|
|
.unwrap();
|
2018-06-12 15:49:07 +02:00
|
|
|
|
2018-03-30 23:30:24 +02:00
|
|
|
let mut builder = resp.into_builder();
|
2018-03-31 08:07:33 +02:00
|
|
|
let resp = builder.status(StatusCode::BAD_REQUEST).finish();
|
2018-03-30 23:30:24 +02:00
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
2018-06-12 15:49:07 +02:00
|
|
|
|
|
|
|
let cookie = resp.cookies().next().unwrap();
|
|
|
|
assert_eq!((cookie.name(), cookie.value()), ("cookie1", "val100"));
|
2018-03-30 23:30:24 +02:00
|
|
|
}
|
2017-10-23 07:54:11 +02:00
|
|
|
}
|