http_types/response.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
use futures_lite::{io, prelude::*};
use std::convert::{Into, TryInto};
use std::fmt::Debug;
use std::mem;
use std::ops::Index;
use std::pin::Pin;
use std::task::{Context, Poll};
use crate::convert::DeserializeOwned;
use crate::headers::{
self, HeaderName, HeaderValue, HeaderValues, Headers, Names, ToHeaderValues, Values,
CONTENT_TYPE,
};
use crate::mime::Mime;
use crate::trailers::{self, Trailers};
use crate::upgrade;
use crate::{Body, Extensions, StatusCode, Version};
pin_project_lite::pin_project! {
/// An HTTP response.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), http_types::Error> {
/// #
/// use http_types::{Response, StatusCode};
///
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_body("Hello, Nori!");
/// #
/// # Ok(()) }
/// ```
#[derive(Debug)]
pub struct Response {
status: StatusCode,
headers: Headers,
version: Option<Version>,
has_trailers: bool,
trailers_sender: Option<async_channel::Sender<Trailers>>,
trailers_receiver: Option<async_channel::Receiver<Trailers>>,
upgrade_sender: Option<async_channel::Sender<upgrade::Connection>>,
upgrade_receiver: Option<async_channel::Receiver<upgrade::Connection>>,
has_upgrade: bool,
#[pin]
body: Body,
ext: Extensions,
local_addr: Option<String>,
peer_addr: Option<String>,
}
}
impl Response {
/// Create a new response.
pub fn new<S>(status: S) -> Self
where
S: TryInto<StatusCode>,
S::Error: Debug,
{
let status = status
.try_into()
.expect("Could not convert into a valid `StatusCode`");
let (trailers_sender, trailers_receiver) = async_channel::bounded(1);
let (upgrade_sender, upgrade_receiver) = async_channel::bounded(1);
Self {
status,
headers: Headers::new(),
version: None,
body: Body::empty(),
trailers_sender: Some(trailers_sender),
trailers_receiver: Some(trailers_receiver),
has_trailers: false,
upgrade_sender: Some(upgrade_sender),
upgrade_receiver: Some(upgrade_receiver),
has_upgrade: false,
ext: Extensions::new(),
peer_addr: None,
local_addr: None,
}
}
/// Get the status
pub fn status(&self) -> StatusCode {
self.status
}
/// Get a mutable reference to a header.
pub fn header_mut(&mut self, name: impl Into<HeaderName>) -> Option<&mut HeaderValues> {
self.headers.get_mut(name.into())
}
/// Get an HTTP header.
pub fn header(&self, name: impl Into<HeaderName>) -> Option<&HeaderValues> {
self.headers.get(name.into())
}
/// Remove a header.
pub fn remove_header(&mut self, name: impl Into<HeaderName>) -> Option<HeaderValues> {
self.headers.remove(name.into())
}
/// Set an HTTP header.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
/// #
/// use http_types::{Method, Response, StatusCode, Url};
///
/// let mut req = Response::new(StatusCode::Ok);
/// req.insert_header("Content-Type", "text/plain");
/// #
/// # Ok(()) }
/// ```
pub fn insert_header(
&mut self,
name: impl Into<HeaderName>,
values: impl ToHeaderValues,
) -> Option<HeaderValues> {
self.headers.insert(name, values)
}
/// Append a header to the headers.
///
/// Unlike `insert` this function will not override the contents of a
/// header, but insert a header if there aren't any. Or else append to
/// the existing list of headers.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
/// #
/// use http_types::{Response, StatusCode};
///
/// let mut res = Response::new(StatusCode::Ok);
/// res.append_header("Content-Type", "text/plain");
/// #
/// # Ok(()) }
/// ```
pub fn append_header(&mut self, name: impl Into<HeaderName>, values: impl ToHeaderValues) {
self.headers.append(name, values)
}
/// Set the body reader.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), http_types::Error> {
/// #
/// use http_types::{Response, StatusCode};
///
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_body("Hello, Nori!");
/// #
/// # Ok(()) }
/// ```
pub fn set_body(&mut self, body: impl Into<Body>) {
self.replace_body(body);
}
/// Replace the response body with a new body, returning the old body.
///
/// # Examples
///
/// ```
/// # use async_std::io::prelude::*;
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// #
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// let mut req = Response::new(StatusCode::Ok);
/// req.set_body("Hello, Nori!");
///
/// let mut body: Body = req.replace_body("Hello, Chashu");
///
/// let mut string = String::new();
/// body.read_to_string(&mut string).await?;
/// assert_eq!(&string, "Hello, Nori!");
/// #
/// # Ok(()) }) }
/// ```
pub fn replace_body(&mut self, body: impl Into<Body>) -> Body {
let body = mem::replace(&mut self.body, body.into());
self.copy_content_type_from_body();
body
}
/// Swaps the value of the body with another body, without deinitializing
/// either one.
///
/// # Examples
///
/// ```
/// # use async_std::io::prelude::*;
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// #
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// let mut req = Response::new(StatusCode::Ok);
/// req.set_body("Hello, Nori!");
///
/// let mut body = "Hello, Chashu!".into();
/// req.swap_body(&mut body);
///
/// let mut string = String::new();
/// body.read_to_string(&mut string).await?;
/// assert_eq!(&string, "Hello, Nori!");
/// #
/// # Ok(()) }) }
/// ```
pub fn swap_body(&mut self, body: &mut Body) {
mem::swap(&mut self.body, body);
self.copy_content_type_from_body();
}
/// Take the response body, replacing it with an empty body.
///
/// # Examples
///
/// ```
/// # use async_std::io::prelude::*;
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// #
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// let mut req = Response::new(StatusCode::Ok);
/// req.set_body("Hello, Nori!");
/// let mut body: Body = req.take_body();
///
/// let mut string = String::new();
/// body.read_to_string(&mut string).await?;
/// assert_eq!(&string, "Hello, Nori!");
///
/// # let mut string = String::new();
/// # req.read_to_string(&mut string).await?;
/// # assert_eq!(&string, "");
/// #
/// # Ok(()) }) }
/// ```
pub fn take_body(&mut self) -> Body {
self.replace_body(Body::empty())
}
/// Read the body as a string.
///
/// This consumes the response. If you want to read the body without
/// consuming the response, consider using the `take_body` method and
/// then calling `Body::into_string` or using the Response's AsyncRead
/// implementation to read the body.
///
/// # Examples
///
/// ```
/// # use std::io::prelude::*;
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// use async_std::io::Cursor;
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// let mut res = Response::new(StatusCode::Ok);
/// let cursor = Cursor::new("Hello Nori");
/// let body = Body::from_reader(cursor, None);
/// res.set_body(body);
/// assert_eq!(&res.body_string().await.unwrap(), "Hello Nori");
/// # Ok(()) }) }
/// ```
pub async fn body_string(&mut self) -> crate::Result<String> {
let body = self.take_body();
body.into_string().await
}
/// Read the body as bytes.
///
/// This consumes the `Response`. If you want to read the body without
/// consuming the response, consider using the `take_body` method and
/// then calling `Body::into_bytes` or using the Response's AsyncRead
/// implementation to read the body.
///
/// # Examples
///
/// ```
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// let bytes = vec![1, 2, 3];
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_body(Body::from_bytes(bytes));
///
/// let bytes = res.body_bytes().await?;
/// assert_eq!(bytes, vec![1, 2, 3]);
/// # Ok(()) }) }
/// ```
pub async fn body_bytes(&mut self) -> crate::Result<Vec<u8>> {
let body = self.take_body();
body.into_bytes().await
}
/// Read the body as JSON.
///
/// This consumes the response. If you want to read the body without
/// consuming the response, consider using the `take_body` method and
/// then calling `Body::into_json` or using the Response's AsyncRead
/// implementation to read the body.
///
/// # Examples
///
/// ```
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// use http_types::convert::{Deserialize, Serialize};
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// #[derive(Debug, Serialize, Deserialize)]
/// struct Cat {
/// name: String,
/// }
///
/// let cat = Cat {
/// name: String::from("chashu"),
/// };
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_body(Body::from_json(&cat)?);
///
/// let cat: Cat = res.body_json().await?;
/// assert_eq!(&cat.name, "chashu");
/// # Ok(()) }) }
/// ```
pub async fn body_json<T: DeserializeOwned>(&mut self) -> crate::Result<T> {
let body = self.take_body();
body.into_json().await
}
/// Read the body as `x-www-form-urlencoded`.
///
/// This consumes the request. If you want to read the body without
/// consuming the request, consider using the `take_body` method and
/// then calling `Body::into_json` or using the Response's AsyncRead
/// implementation to read the body.
///
/// # Examples
///
/// ```
/// # fn main() -> http_types::Result<()> { async_std::task::block_on(async {
/// use http_types::convert::{Deserialize, Serialize};
/// use http_types::{Body, Method, Response, StatusCode, Url};
///
/// #[derive(Debug, Serialize, Deserialize)]
/// struct Cat {
/// name: String,
/// }
///
/// let cat = Cat {
/// name: String::from("chashu"),
/// };
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_body(Body::from_form(&cat)?);
///
/// let cat: Cat = res.body_form().await?;
/// assert_eq!(&cat.name, "chashu");
/// # Ok(()) }) }
/// ```
pub async fn body_form<T: DeserializeOwned>(&mut self) -> crate::Result<T> {
let body = self.take_body();
body.into_form().await
}
/// Set the response MIME.
pub fn set_content_type(&mut self, mime: Mime) -> Option<HeaderValues> {
let value: HeaderValue = mime.into();
// A Mime instance is guaranteed to be valid header name.
self.insert_header(CONTENT_TYPE, value)
}
/// Copy MIME data from the body.
fn copy_content_type_from_body(&mut self) {
if self.header(CONTENT_TYPE).is_none() {
self.set_content_type(self.body.mime().clone());
}
}
/// Get the current content type
pub fn content_type(&self) -> Option<Mime> {
self.header(CONTENT_TYPE)?.last().as_str().parse().ok()
}
/// Get the length of the body stream, if it has been set.
///
/// This value is set when passing a fixed-size object into as the body.
/// E.g. a string, or a buffer. Consumers of this API should check this
/// value to decide whether to use `Chunked` encoding, or set the
/// response length.
pub fn len(&self) -> Option<usize> {
self.body.len()
}
/// Returns `true` if the set length of the body stream is zero, `false`
/// otherwise.
pub fn is_empty(&self) -> Option<bool> {
self.body.is_empty()
}
/// Get the HTTP version, if one has been set.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), http_types::Error> {
/// #
/// use http_types::{Response, StatusCode, Version};
///
/// let mut res = Response::new(StatusCode::Ok);
/// assert_eq!(res.version(), None);
///
/// res.set_version(Some(Version::Http2_0));
/// assert_eq!(res.version(), Some(Version::Http2_0));
/// #
/// # Ok(()) }
/// ```
pub fn version(&self) -> Option<Version> {
self.version
}
/// Sets a string representation of the peer address that this
/// response was sent to. This might take the form of an ip/fqdn
/// and port or a local socket address.
pub fn set_peer_addr(&mut self, peer_addr: Option<impl std::string::ToString>) {
self.peer_addr = peer_addr.map(|addr| addr.to_string());
}
/// Sets a string representation of the local address that this
/// response was sent on. This might take the form of an ip/fqdn and
/// port, or a local socket address.
pub fn set_local_addr(&mut self, local_addr: Option<impl std::string::ToString>) {
self.local_addr = local_addr.map(|addr| addr.to_string());
}
/// Get the peer socket address for the underlying transport, if appropriate
pub fn peer_addr(&self) -> Option<&str> {
self.peer_addr.as_deref()
}
/// Get the local socket address for the underlying transport, if
/// appropriate
pub fn local_addr(&self) -> Option<&str> {
self.local_addr.as_deref()
}
/// Set the HTTP version.
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), http_types::Error> {
/// #
/// use http_types::{Response, StatusCode, Version};
///
/// let mut res = Response::new(StatusCode::Ok);
/// res.set_version(Some(Version::Http2_0));
/// #
/// # Ok(()) }
/// ```
pub fn set_version(&mut self, version: Option<Version>) {
self.version = version;
}
/// Set the status.
pub fn set_status(&mut self, status: StatusCode) {
self.status = status;
}
/// Sends trailers to the a receiver.
pub fn send_trailers(&mut self) -> trailers::Sender {
self.has_trailers = true;
let sender = self
.trailers_sender
.take()
.expect("Trailers sender can only be constructed once");
trailers::Sender::new(sender)
}
/// Receive trailers from a sender.
pub fn recv_trailers(&mut self) -> trailers::Receiver {
let receiver = self
.trailers_receiver
.take()
.expect("Trailers receiver can only be constructed once");
trailers::Receiver::new(receiver)
}
/// Returns `true` if sending trailers is in progress.
pub fn has_trailers(&self) -> bool {
self.has_trailers
}
/// Sends an upgrade connection to the a receiver.
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub fn send_upgrade(&mut self) -> upgrade::Sender {
self.has_upgrade = true;
let sender = self
.upgrade_sender
.take()
.expect("Upgrade sender can only be constructed once");
upgrade::Sender::new(sender)
}
/// Receive an upgraded connection from a sender.
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub async fn recv_upgrade(&mut self) -> upgrade::Receiver {
self.has_upgrade = true;
let receiver = self
.upgrade_receiver
.take()
.expect("Upgrade receiver can only be constructed once");
upgrade::Receiver::new(receiver)
}
/// Returns `true` if a protocol upgrade is in progress.
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub fn has_upgrade(&self) -> bool {
self.has_upgrade
}
/// An iterator visiting all header pairs in arbitrary order.
pub fn iter(&self) -> headers::Iter<'_> {
self.headers.iter()
}
/// An iterator visiting all header pairs in arbitrary order, with mutable
/// references to the values.
pub fn iter_mut(&mut self) -> headers::IterMut<'_> {
self.headers.iter_mut()
}
/// An iterator visiting all header names in arbitrary order.
pub fn header_names(&self) -> Names<'_> {
self.headers.names()
}
/// An iterator visiting all header values in arbitrary order.
pub fn header_values(&self) -> Values<'_> {
self.headers.values()
}
/// Returns a reference to the existing local.
pub fn ext(&self) -> &Extensions {
&self.ext
}
/// Returns a mutuable reference to the existing local state.
///
///
/// # Examples
///
/// ```
/// # fn main() -> Result<(), http_types::Error> {
/// #
/// use http_types::{Response, StatusCode, Version};
///
/// let mut res = Response::new(StatusCode::Ok);
/// res.ext_mut().insert("hello from the extension");
/// assert_eq!(res.ext().get(), Some(&"hello from the extension"));
/// #
/// # Ok(()) }
/// ```
pub fn ext_mut(&mut self) -> &mut Extensions {
&mut self.ext
}
}
impl Clone for Response {
/// Clone the response, resolving the body to `Body::empty()` and removing
/// extensions.
fn clone(&self) -> Self {
Self {
status: self.status,
headers: self.headers.clone(),
version: self.version,
trailers_sender: self.trailers_sender.clone(),
trailers_receiver: self.trailers_receiver.clone(),
has_trailers: false,
upgrade_sender: self.upgrade_sender.clone(),
upgrade_receiver: self.upgrade_receiver.clone(),
has_upgrade: false,
body: Body::empty(),
ext: Extensions::new(),
peer_addr: self.peer_addr.clone(),
local_addr: self.local_addr.clone(),
}
}
}
impl AsyncRead for Response {
#[allow(missing_doc_code_examples)]
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<io::Result<usize>> {
Pin::new(&mut self.body).poll_read(cx, buf)
}
}
impl AsyncBufRead for Response {
#[allow(missing_doc_code_examples)]
fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<&'_ [u8]>> {
let this = self.project();
this.body.poll_fill_buf(cx)
}
fn consume(mut self: Pin<&mut Self>, amt: usize) {
Pin::new(&mut self.body).consume(amt)
}
}
impl AsRef<Headers> for Response {
fn as_ref(&self) -> &Headers {
&self.headers
}
}
impl AsMut<Headers> for Response {
fn as_mut(&mut self) -> &mut Headers {
&mut self.headers
}
}
impl From<()> for Response {
fn from(_: ()) -> Self {
Response::new(StatusCode::NoContent)
}
}
impl Index<HeaderName> for Response {
type Output = HeaderValues;
/// Returns a reference to the value corresponding to the supplied name.
///
/// # Panics
///
/// Panics if the name is not present in `Response`.
#[inline]
fn index(&self, name: HeaderName) -> &HeaderValues {
self.headers.index(name)
}
}
impl Index<&str> for Response {
type Output = HeaderValues;
/// Returns a reference to the value corresponding to the supplied name.
///
/// # Panics
///
/// Panics if the name is not present in `Response`.
#[inline]
fn index(&self, name: &str) -> &HeaderValues {
self.headers.index(name)
}
}
impl From<StatusCode> for Response {
fn from(s: StatusCode) -> Self {
Response::new(s)
}
}
impl<T> From<T> for Response
where
T: Into<Body>,
{
fn from(value: T) -> Self {
let body: Body = value.into();
let mut res = Response::new(StatusCode::Ok);
res.set_body(body);
res
}
}
impl IntoIterator for Response {
type Item = (HeaderName, HeaderValues);
type IntoIter = headers::IntoIter;
/// Returns a iterator of references over the remaining items.
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.headers.into_iter()
}
}
impl<'a> IntoIterator for &'a Response {
type Item = (&'a HeaderName, &'a HeaderValues);
type IntoIter = headers::Iter<'a>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.headers.iter()
}
}
impl<'a> IntoIterator for &'a mut Response {
type Item = (&'a HeaderName, &'a mut HeaderValues);
type IntoIter = headers::IterMut<'a>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.headers.iter_mut()
}
}
#[cfg(test)]
mod test {
use super::Response;
#[test]
fn construct_shorthand_with_valid_status_code() {
let _res = Response::new(200);
}
#[test]
#[should_panic(expected = "Could not convert into a valid `StatusCode`")]
fn construct_shorthand_with_invalid_status_code() {
let _res = Response::new(600);
}
}