mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-25 16:32:43 +01:00
129 lines
3.2 KiB
Rust
129 lines
3.2 KiB
Rust
use std::cell::{Cell, Ref, RefCell, RefMut};
|
|
use std::fmt;
|
|
use std::rc::Rc;
|
|
|
|
use http::{HeaderMap, Method, StatusCode, Version};
|
|
|
|
use extensions::Extensions;
|
|
use httpmessage::HttpMessage;
|
|
use payload::Payload;
|
|
use request::{Message, MessageFlags, MessagePool};
|
|
use uri::Url;
|
|
|
|
/// Client Response
|
|
pub struct ClientResponse {
|
|
pub(crate) inner: Rc<Message>,
|
|
}
|
|
|
|
impl HttpMessage for ClientResponse {
|
|
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 ClientResponse {
|
|
/// Create new Request instance
|
|
pub fn new() -> ClientResponse {
|
|
ClientResponse::with_pool(MessagePool::pool())
|
|
}
|
|
|
|
/// Create new Request instance with pool
|
|
pub(crate) fn with_pool(pool: &'static MessagePool) -> ClientResponse {
|
|
ClientResponse {
|
|
inner: Rc::new(Message {
|
|
pool,
|
|
method: Method::GET,
|
|
status: StatusCode::OK,
|
|
url: Url::default(),
|
|
version: Version::HTTP_11,
|
|
headers: HeaderMap::with_capacity(16),
|
|
flags: Cell::new(MessageFlags::empty()),
|
|
payload: RefCell::new(None),
|
|
extensions: RefCell::new(Extensions::new()),
|
|
}),
|
|
}
|
|
}
|
|
|
|
#[inline]
|
|
pub(crate) fn inner(&self) -> &Message {
|
|
self.inner.as_ref()
|
|
}
|
|
|
|
#[inline]
|
|
pub(crate) fn inner_mut(&mut self) -> &mut Message {
|
|
Rc::get_mut(&mut self.inner).expect("Multiple copies exist")
|
|
}
|
|
|
|
/// Read the Request Version.
|
|
#[inline]
|
|
pub fn version(&self) -> Version {
|
|
self.inner().version
|
|
}
|
|
|
|
/// Get the status from the server.
|
|
#[inline]
|
|
pub fn status(&self) -> StatusCode {
|
|
self.inner().status
|
|
}
|
|
|
|
#[inline]
|
|
/// Returns Request's headers.
|
|
pub fn headers(&self) -> &HeaderMap {
|
|
&self.inner().headers
|
|
}
|
|
|
|
#[inline]
|
|
/// Returns mutable Request's headers.
|
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
|
&mut self.inner_mut().headers
|
|
}
|
|
|
|
/// Checks if a connection should be kept alive.
|
|
#[inline]
|
|
pub fn keep_alive(&self) -> bool {
|
|
self.inner().flags.get().contains(MessageFlags::KEEPALIVE)
|
|
}
|
|
|
|
/// Request extensions
|
|
#[inline]
|
|
pub fn extensions(&self) -> Ref<Extensions> {
|
|
self.inner().extensions.borrow()
|
|
}
|
|
|
|
/// Mutable reference to a the request's extensions
|
|
#[inline]
|
|
pub fn extensions_mut(&self) -> RefMut<Extensions> {
|
|
self.inner().extensions.borrow_mut()
|
|
}
|
|
}
|
|
|
|
impl Drop for ClientResponse {
|
|
fn drop(&mut self) {
|
|
if Rc::strong_count(&self.inner) == 1 {
|
|
self.inner.pool.release(self.inner.clone());
|
|
}
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for ClientResponse {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
writeln!(f, "\nClientResponse {:?} {}", self.version(), self.status(),)?;
|
|
writeln!(f, " headers:")?;
|
|
for (key, val) in self.headers().iter() {
|
|
writeln!(f, " {:?}: {:?}", key, val)?;
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|