From 0297147dd1d379869eac6049f8ecbe2483bb3ca1 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Sun, 30 Nov 2014 15:59:40 -0800 Subject: [PATCH] feat(headers): add LastModified header --- src/header/common/last_modified.rs | 42 ++++++++++++++++++++++++++++++ src/header/common/mod.rs | 5 ++++ 2 files changed, 47 insertions(+) create mode 100644 src/header/common/last_modified.rs diff --git a/src/header/common/last_modified.rs b/src/header/common/last_modified.rs new file mode 100644 index 00000000..83e19ad1 --- /dev/null +++ b/src/header/common/last_modified.rs @@ -0,0 +1,42 @@ +use std::fmt::{mod, Show}; +use std::str::FromStr; +use time::Tm; +use header::{Header, HeaderFormat}; +use super::util::{from_one_raw_str, tm_from_str}; + +/// The `LastModified` header field. +#[deriving(PartialEq, Clone)] +pub struct LastModified(pub Tm); + +deref!(LastModified -> Tm) + +impl Header for LastModified { + fn header_name(_: Option) -> &'static str { + "Last-Modified" + } + + fn parse_header(raw: &[Vec]) -> Option { + from_one_raw_str(raw) + } +} + + +impl HeaderFormat for LastModified { + fn fmt_header(&self, fmt: &mut fmt::Formatter) -> fmt::Result { + let tm = **self; + match tm.tm_utcoff { + 0 => tm.rfc822().fmt(fmt), + _ => tm.to_utc().rfc822().fmt(fmt) + } + } +} + +impl FromStr for LastModified { + fn from_str(s: &str) -> Option { + tm_from_str(s).map(LastModified) + } +} + +bench_header!(imf_fixdate, LastModified, { vec![b"Sun, 07 Nov 1994 08:48:37 GMT".to_vec()] }) +bench_header!(rfc_850, LastModified, { vec![b"Sunday, 06-Nov-94 08:49:37 GMT".to_vec()] }) +bench_header!(asctime, LastModified, { vec![b"Sun Nov 6 08:49:37 1994".to_vec()] }) diff --git a/src/header/common/mod.rs b/src/header/common/mod.rs index dd3a0d9f..f262622d 100644 --- a/src/header/common/mod.rs +++ b/src/header/common/mod.rs @@ -13,7 +13,9 @@ pub use self::connection::Connection; pub use self::content_length::ContentLength; pub use self::content_type::ContentType; pub use self::date::Date; +pub use self::expires::Expires; pub use self::host::Host; +pub use self::last_modified::LastModified; pub use self::location::Location; pub use self::transfer_encoding::TransferEncoding; pub use self::upgrade::Upgrade; @@ -102,6 +104,9 @@ pub mod expires; /// Exposes the Host header. pub mod host; +/// Exposes the LastModified header. +pub mod last_modified; + /// Exposes the Location header. pub mod location;