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

111 lines
2.5 KiB
Rust
Raw Normal View History

2018-11-17 04:28:07 +01:00
use std::cell::RefCell;
use std::fmt;
2018-11-14 07:53:30 +01:00
use bytes::Bytes;
use futures::{Async, Poll, Stream};
2018-11-16 07:34:29 +01:00
use http::{HeaderMap, StatusCode, Version};
2018-12-06 23:32:52 +01:00
use crate::body::PayloadStream;
use crate::error::PayloadError;
use crate::httpmessage::HttpMessage;
use crate::message::{Head, ResponseHead};
2019-01-29 05:41:09 +01:00
use super::h1proto::Payload;
/// Client Response
pub struct ClientResponse {
2018-11-17 04:28:07 +01:00
pub(crate) head: ResponseHead,
pub(crate) payload: RefCell<Option<PayloadStream>>,
}
impl HttpMessage for ClientResponse {
type Stream = PayloadStream;
fn headers(&self) -> &HeaderMap {
2018-11-17 04:28:07 +01:00
&self.head.headers
}
#[inline]
fn payload(&self) -> Self::Stream {
if let Some(payload) = self.payload.borrow_mut().take() {
payload
} else {
Payload::empty()
}
}
}
impl ClientResponse {
/// Create new Request instance
pub fn new() -> ClientResponse {
ClientResponse {
2018-11-17 04:28:07 +01:00
head: ResponseHead::default(),
payload: RefCell::new(None),
}
}
#[inline]
2018-11-17 04:28:07 +01:00
pub(crate) fn head(&self) -> &ResponseHead {
&self.head
}
#[inline]
2018-11-17 04:28:07 +01:00
pub(crate) fn head_mut(&mut self) -> &mut ResponseHead {
&mut self.head
}
/// Read the Request Version.
#[inline]
pub fn version(&self) -> Version {
self.head().version
}
/// Get the status from the server.
#[inline]
pub fn status(&self) -> StatusCode {
2018-11-17 04:28:07 +01:00
self.head().status
}
#[inline]
/// Returns Request's headers.
pub fn headers(&self) -> &HeaderMap {
2018-11-17 04:28:07 +01:00
&self.head().headers
}
#[inline]
/// Returns mutable Request's headers.
pub fn headers_mut(&mut self) -> &mut HeaderMap {
2018-11-17 04:28:07 +01:00
&mut self.head_mut().headers
}
/// Checks if a connection should be kept alive.
#[inline]
pub fn keep_alive(&self) -> bool {
2018-11-19 02:52:56 +01:00
self.head().keep_alive()
}
}
2018-11-14 07:53:30 +01:00
impl Stream for ClientResponse {
type Item = Bytes;
type Error = PayloadError;
2018-11-14 07:53:30 +01:00
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
if let Some(ref mut payload) = &mut *self.payload.borrow_mut() {
2018-11-14 07:53:30 +01:00
payload.poll()
} else {
Ok(Async::Ready(None))
}
}
}
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(())
}
}