mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
parent
9bdd334bb4
commit
67d2845882
@ -1,6 +1,11 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
### Changed
|
||||||
|
* Guarantee ordering of `header::GetAll` iterator to be same as insertion order. [#2467]
|
||||||
|
* Expose `header::{GetAll, Removed}` iterators. [#2467]
|
||||||
|
|
||||||
|
[#2467]: https://github.com/actix/actix-web/pull/2467
|
||||||
|
|
||||||
|
|
||||||
## 3.0.0-beta.13 - 2021-11-22
|
## 3.0.0-beta.13 - 2021-11-22
|
||||||
|
@ -288,7 +288,7 @@ impl HeaderMap {
|
|||||||
/// Returns an iterator over all values associated with a header name.
|
/// Returns an iterator over all values associated with a header name.
|
||||||
///
|
///
|
||||||
/// The returned iterator does not incur any allocations and will yield no items if there are no
|
/// The returned iterator does not incur any allocations and will yield no items if there are no
|
||||||
/// values associated with the key. Iteration order is **not** guaranteed to be the same as
|
/// values associated with the key. Iteration order is guaranteed to be the same as
|
||||||
/// insertion order.
|
/// insertion order.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
@ -355,6 +355,19 @@ impl HeaderMap {
|
|||||||
///
|
///
|
||||||
/// assert_eq!(map.len(), 1);
|
/// assert_eq!(map.len(), 1);
|
||||||
/// ```
|
/// ```
|
||||||
|
///
|
||||||
|
/// A convenience method is provided on the returned iterator to check if the insertion replaced
|
||||||
|
/// any values.
|
||||||
|
/// ```
|
||||||
|
/// # use actix_http::http::{header, HeaderMap, HeaderValue};
|
||||||
|
/// let mut map = HeaderMap::new();
|
||||||
|
///
|
||||||
|
/// let removed = map.insert(header::ACCEPT, HeaderValue::from_static("text/plain"));
|
||||||
|
/// assert!(removed.is_empty());
|
||||||
|
///
|
||||||
|
/// let removed = map.insert(header::ACCEPT, HeaderValue::from_static("text/html"));
|
||||||
|
/// assert!(!removed.is_empty());
|
||||||
|
/// ```
|
||||||
pub fn insert(&mut self, key: HeaderName, val: HeaderValue) -> Removed {
|
pub fn insert(&mut self, key: HeaderName, val: HeaderValue) -> Removed {
|
||||||
let value = self.inner.insert(key, Value::one(val));
|
let value = self.inner.insert(key, Value::one(val));
|
||||||
Removed::new(value)
|
Removed::new(value)
|
||||||
@ -393,6 +406,9 @@ impl HeaderMap {
|
|||||||
|
|
||||||
/// Removes all headers for a particular header name from the map.
|
/// Removes all headers for a particular header name from the map.
|
||||||
///
|
///
|
||||||
|
/// Providing an invalid header names (as a string argument) will have no effect and return
|
||||||
|
/// without error.
|
||||||
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
/// ```
|
/// ```
|
||||||
/// # use actix_http::http::{header, HeaderMap, HeaderValue};
|
/// # use actix_http::http::{header, HeaderMap, HeaderValue};
|
||||||
@ -409,6 +425,21 @@ impl HeaderMap {
|
|||||||
/// assert!(removed.next().is_none());
|
/// assert!(removed.next().is_none());
|
||||||
///
|
///
|
||||||
/// assert!(map.is_empty());
|
/// assert!(map.is_empty());
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// A convenience method is provided on the returned iterator to check if the `remove` call
|
||||||
|
/// actually removed any values.
|
||||||
|
/// ```
|
||||||
|
/// # use actix_http::http::{header, HeaderMap, HeaderValue};
|
||||||
|
/// let mut map = HeaderMap::new();
|
||||||
|
///
|
||||||
|
/// let removed = map.remove("accept");
|
||||||
|
/// assert!(removed.is_empty());
|
||||||
|
///
|
||||||
|
/// map.insert(header::ACCEPT, HeaderValue::from_static("text/html"));
|
||||||
|
/// let removed = map.remove("accept");
|
||||||
|
/// assert!(!removed.is_empty());
|
||||||
|
/// ```
|
||||||
pub fn remove(&mut self, key: impl AsHeaderName) -> Removed {
|
pub fn remove(&mut self, key: impl AsHeaderName) -> Removed {
|
||||||
let value = match key.try_as_name(super::as_name::Seal) {
|
let value = match key.try_as_name(super::as_name::Seal) {
|
||||||
Ok(Cow::Borrowed(name)) => self.inner.remove(name),
|
Ok(Cow::Borrowed(name)) => self.inner.remove(name),
|
||||||
@ -571,7 +602,7 @@ impl<'a> IntoIterator for &'a HeaderMap {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Iterator for all values with the same header name.
|
/// Iterator for references of [`HeaderValue`]s with the same associated [`HeaderName`].
|
||||||
///
|
///
|
||||||
/// See [`HeaderMap::get_all`].
|
/// See [`HeaderMap::get_all`].
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
@ -613,18 +644,32 @@ impl<'a> Iterator for GetAll<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Iterator for owned [`HeaderValue`]s with the same associated [`HeaderName`] returned from methods
|
/// Iterator for owned [`HeaderValue`]s with the same associated [`HeaderName`] returned from
|
||||||
/// on [`HeaderMap`] that remove or replace items.
|
/// methods that remove or replace items.
|
||||||
|
///
|
||||||
|
/// See [`HeaderMap::insert`] and [`HeaderMap::remove`].
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Removed {
|
pub struct Removed {
|
||||||
inner: Option<smallvec::IntoIter<[HeaderValue; 4]>>,
|
inner: Option<smallvec::IntoIter<[HeaderValue; 4]>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Removed {
|
impl Removed {
|
||||||
fn new(value: Option<Value>) -> Self {
|
fn new(value: Option<Value>) -> Self {
|
||||||
let inner = value.map(|value| value.inner.into_iter());
|
let inner = value.map(|value| value.inner.into_iter());
|
||||||
Self { inner }
|
Self { inner }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns true if iterator contains no elements, without consuming it.
|
||||||
|
///
|
||||||
|
/// If called immediately after [`HeaderMap::insert`] or [`HeaderMap::remove`], it will indicate
|
||||||
|
/// wether any items were actually replaced or removed, respectively.
|
||||||
|
pub fn is_empty(&self) -> bool {
|
||||||
|
match self.inner {
|
||||||
|
// size hint lower bound of smallvec is the correct length
|
||||||
|
Some(ref iter) => iter.size_hint().0 == 0,
|
||||||
|
None => true,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Iterator for Removed {
|
impl Iterator for Removed {
|
||||||
@ -945,6 +990,53 @@ mod tests {
|
|||||||
assert_eq!(vals.next(), removed.next().as_ref());
|
assert_eq!(vals.next(), removed.next().as_ref());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn get_all_iteration_order_matches_insertion_order() {
|
||||||
|
let mut map = HeaderMap::new();
|
||||||
|
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("1"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"1");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("2"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"1");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"2");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("3"));
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("4"));
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("5"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"1");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"2");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"3");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"4");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"5");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
let _ = map.insert(header::COOKIE, HeaderValue::from_static("6"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"6");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
let _ = map.insert(header::COOKIE, HeaderValue::from_static("7"));
|
||||||
|
let _ = map.insert(header::COOKIE, HeaderValue::from_static("8"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"8");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
|
||||||
|
map.append(header::COOKIE, HeaderValue::from_static("9"));
|
||||||
|
let mut vals = map.get_all(header::COOKIE);
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"8");
|
||||||
|
assert_eq!(vals.next().unwrap().as_bytes(), b"9");
|
||||||
|
assert!(vals.next().is_none());
|
||||||
|
}
|
||||||
|
|
||||||
fn owned_pair<'a>(
|
fn owned_pair<'a>(
|
||||||
(name, val): (&'a HeaderName, &'a HeaderValue),
|
(name, val): (&'a HeaderName, &'a HeaderValue),
|
||||||
) -> (HeaderName, HeaderValue) {
|
) -> (HeaderName, HeaderValue) {
|
||||||
|
@ -29,16 +29,14 @@ pub use http::header::{
|
|||||||
X_FRAME_OPTIONS, X_XSS_PROTECTION,
|
X_FRAME_OPTIONS, X_XSS_PROTECTION,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::error::ParseError;
|
use crate::{error::ParseError, HttpMessage};
|
||||||
use crate::HttpMessage;
|
|
||||||
|
|
||||||
mod as_name;
|
mod as_name;
|
||||||
mod into_pair;
|
mod into_pair;
|
||||||
mod into_value;
|
mod into_value;
|
||||||
mod utils;
|
|
||||||
|
|
||||||
pub(crate) mod map;
|
pub(crate) mod map;
|
||||||
mod shared;
|
mod shared;
|
||||||
|
mod utils;
|
||||||
|
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
pub use self::shared::*;
|
pub use self::shared::*;
|
||||||
@ -46,10 +44,10 @@ pub use self::shared::*;
|
|||||||
pub use self::as_name::AsHeaderName;
|
pub use self::as_name::AsHeaderName;
|
||||||
pub use self::into_pair::IntoHeaderPair;
|
pub use self::into_pair::IntoHeaderPair;
|
||||||
pub use self::into_value::IntoHeaderValue;
|
pub use self::into_value::IntoHeaderValue;
|
||||||
#[doc(hidden)]
|
pub use self::map::{GetAll, HeaderMap, Removed};
|
||||||
pub use self::map::GetAll;
|
pub use self::utils::{
|
||||||
pub use self::map::HeaderMap;
|
fmt_comma_delimited, from_comma_delimited, from_one_raw_str, http_percent_encode,
|
||||||
pub use self::utils::*;
|
};
|
||||||
|
|
||||||
/// A trait for any object that already represents a valid header field and value.
|
/// A trait for any object that already represents a valid header field and value.
|
||||||
pub trait Header: IntoHeaderValue {
|
pub trait Header: IntoHeaderValue {
|
||||||
@ -68,7 +66,7 @@ impl From<http::HeaderMap> for HeaderMap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// This encode set is used for HTTP header values and is defined at
|
/// This encode set is used for HTTP header values and is defined at
|
||||||
/// https://tools.ietf.org/html/rfc5987#section-3.2.
|
/// <https://tools.ietf.org/html/rfc5987#section-3.2>.
|
||||||
pub(crate) const HTTP_VALUE: &AsciiSet = &CONTROLS
|
pub(crate) const HTTP_VALUE: &AsciiSet = &CONTROLS
|
||||||
.add(b' ')
|
.add(b' ')
|
||||||
.add(b'"')
|
.add(b'"')
|
||||||
|
@ -56,6 +56,7 @@ where
|
|||||||
|
|
||||||
/// Percent encode a sequence of bytes with a character set defined in
|
/// Percent encode a sequence of bytes with a character set defined in
|
||||||
/// <https://tools.ietf.org/html/rfc5987#section-3.2>
|
/// <https://tools.ietf.org/html/rfc5987#section-3.2>
|
||||||
|
#[inline]
|
||||||
pub fn http_percent_encode(f: &mut fmt::Formatter<'_>, bytes: &[u8]) -> fmt::Result {
|
pub fn http_percent_encode(f: &mut fmt::Formatter<'_>, bytes: &[u8]) -> fmt::Result {
|
||||||
let encoded = percent_encoding::percent_encode(bytes, HTTP_VALUE);
|
let encoded = percent_encoding::percent_encode(bytes, HTTP_VALUE);
|
||||||
fmt::Display::fmt(&encoded, f)
|
fmt::Display::fmt(&encoded, f)
|
||||||
|
@ -220,7 +220,7 @@ impl<T: Into<String>> From<(CloseCode, T)> for CloseReason {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The WebSocket GUID as stated in the spec. See https://tools.ietf.org/html/rfc6455#section-1.3.
|
/// The WebSocket GUID as stated in the spec. See <https://tools.ietf.org/html/rfc6455#section-1.3>.
|
||||||
static WS_GUID: &[u8] = b"258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
|
static WS_GUID: &[u8] = b"258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
|
||||||
|
|
||||||
/// Hashes the `Sec-WebSocket-Key` header according to the WebSocket spec.
|
/// Hashes the `Sec-WebSocket-Key` header according to the WebSocket spec.
|
||||||
|
Loading…
Reference in New Issue
Block a user