mirror of
https://github.com/actix/actix-extras.git
synced 2024-12-01 10:50:05 +01:00
103 lines
2.4 KiB
Rust
103 lines
2.4 KiB
Rust
|
use std::cell::{Ref, RefMut};
|
||
|
use std::fmt;
|
||
|
|
||
|
use bytes::Bytes;
|
||
|
use futures::{Poll, Stream};
|
||
|
|
||
|
use actix_http::error::PayloadError;
|
||
|
use actix_http::http::{HeaderMap, StatusCode, Version};
|
||
|
use actix_http::{Extensions, Head, HttpMessage, Payload, PayloadStream, ResponseHead};
|
||
|
|
||
|
/// Client Response
|
||
|
pub struct ClientResponse {
|
||
|
pub(crate) head: ResponseHead,
|
||
|
pub(crate) payload: Payload,
|
||
|
}
|
||
|
|
||
|
impl HttpMessage for ClientResponse {
|
||
|
type Stream = PayloadStream;
|
||
|
|
||
|
fn headers(&self) -> &HeaderMap {
|
||
|
&self.head.headers
|
||
|
}
|
||
|
|
||
|
fn extensions(&self) -> Ref<Extensions> {
|
||
|
self.head.extensions()
|
||
|
}
|
||
|
|
||
|
fn extensions_mut(&self) -> RefMut<Extensions> {
|
||
|
self.head.extensions_mut()
|
||
|
}
|
||
|
|
||
|
fn take_payload(&mut self) -> Payload {
|
||
|
std::mem::replace(&mut self.payload, Payload::None)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ClientResponse {
|
||
|
/// Create new Request instance
|
||
|
pub(crate) fn new(head: ResponseHead, payload: Payload) -> ClientResponse {
|
||
|
ClientResponse { head, payload }
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
pub(crate) fn head(&self) -> &ResponseHead {
|
||
|
&self.head
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
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 {
|
||
|
self.head().status
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
/// Returns Request's headers.
|
||
|
pub fn headers(&self) -> &HeaderMap {
|
||
|
&self.head().headers
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
/// Returns mutable Request's headers.
|
||
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
||
|
&mut self.head_mut().headers
|
||
|
}
|
||
|
|
||
|
/// Checks if a connection should be kept alive.
|
||
|
#[inline]
|
||
|
pub fn keep_alive(&self) -> bool {
|
||
|
self.head().keep_alive()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Stream for ClientResponse {
|
||
|
type Item = Bytes;
|
||
|
type Error = PayloadError;
|
||
|
|
||
|
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
|
||
|
self.payload.poll()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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(())
|
||
|
}
|
||
|
}
|