2016-12-15 20:37:17 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::borrow::{Borrow, Cow};
|
2016-12-15 08:47:31 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2016-12-15 20:37:17 +00:00
|
|
|
use http::hyper::header as hyper;
|
|
|
|
|
2016-12-15 08:47:31 +00:00
|
|
|
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct Header<'h> {
|
|
|
|
pub name: Cow<'h, str>,
|
|
|
|
pub value: Cow<'h, str>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'h> Header<'h> {
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn new<'a: 'h, 'b: 'h, N, V>(name: N, value: V) -> Header<'h>
|
|
|
|
where N: Into<Cow<'a, str>>, V: Into<Cow<'b, str>>
|
|
|
|
{
|
|
|
|
Header {
|
|
|
|
name: name.into(),
|
|
|
|
value: value.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'h> fmt::Display for Header<'h> {
|
|
|
|
#[inline(always)]
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}: {}", self.name, self.value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 20:37:17 +00:00
|
|
|
impl<T> From<T> for Header<'static> where T: hyper::Header + hyper::HeaderFormat {
|
2016-12-15 08:47:31 +00:00
|
|
|
fn from(hyper_header: T) -> Header<'static> {
|
2016-12-15 20:37:17 +00:00
|
|
|
let formatter = hyper::HeaderFormatter(&hyper_header);
|
2016-12-15 08:47:31 +00:00
|
|
|
Header::new(T::header_name(), format!("{}", formatter))
|
|
|
|
}
|
|
|
|
}
|
2016-12-15 20:37:17 +00:00
|
|
|
|
|
|
|
pub struct HeaderMap<'h> {
|
|
|
|
headers: HashMap<Cow<'h, str>, Vec<Cow<'h, str>>>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'h> HeaderMap<'h> {
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn new() -> HeaderMap<'h> {
|
|
|
|
HeaderMap { headers: HashMap::new() }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn get<'a>(&'a self, name: &str) -> impl Iterator<Item=&'a str> {
|
|
|
|
self.headers.get(name).into_iter().flat_map(|values| {
|
|
|
|
values.iter().map(|val| val.borrow())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn replace<'p: 'h, H: Into<Header<'p>>>(&mut self, header: H) -> bool {
|
|
|
|
let header = header.into();
|
|
|
|
self.headers.insert(header.name, vec![header.value]).is_some()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn replace_all<'n, 'v: 'h, H>(&mut self, name: H, values: Vec<Cow<'v, str>>)
|
|
|
|
where 'n: 'h, H: Into<Cow<'n, str>>
|
|
|
|
{
|
|
|
|
self.headers.insert(name.into(), values);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn add<'p: 'h, H: Into<Header<'p>>>(&mut self, header: H) {
|
|
|
|
let header = header.into();
|
|
|
|
self.headers.entry(header.name).or_insert(vec![]).push(header.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn add_all<'n, H>(&mut self, name: H, values: &mut Vec<Cow<'h, str>>)
|
|
|
|
where 'n:'h, H: Into<Cow<'n, str>>
|
|
|
|
{
|
|
|
|
self.headers.entry(name.into()).or_insert(vec![]).append(values)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn remove(&mut self, name: &str) {
|
|
|
|
self.headers.remove(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn iter<'s>(&'s self) -> impl Iterator<Item=Header<'s>> {
|
|
|
|
self.headers.iter().flat_map(|(key, values)| {
|
|
|
|
values.iter().map(move |val| {
|
|
|
|
Header::new(key.borrow(), val.borrow())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn into_iter<'s>(self)
|
|
|
|
-> impl Iterator<Item=(Cow<'h, str>, Vec<Cow<'h, str>>)> {
|
|
|
|
self.headers.into_iter()
|
|
|
|
}
|
|
|
|
}
|