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
use std::fmt;
use std::str::FromStr;
use time::Tm;
use header::{Header, HeaderFormat};
use header::parsing::from_one_raw_str;
use header::parsing::tm_from_str;

/// The `LastModified` header field.
#[derive(Copy, PartialEq, Clone, Debug)]
pub struct LastModified(pub Tm);

deref!(LastModified => Tm);

impl Header for LastModified {
    fn header_name() -> &'static str {
        "Last-Modified"
    }

    fn parse_header(raw: &[Vec<u8>]) -> Option<LastModified> {
        from_one_raw_str(raw)
    }
}


impl HeaderFormat for LastModified {
    fn fmt_header(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        let tm = self.0;
        let tm = match tm.tm_utcoff {
            0 => tm,
            _ => tm.to_utc(),
        };
        fmt::Display::fmt(&tm.rfc822(), fmt)
    }
}

impl FromStr for LastModified {
    type Err = ();
    fn from_str(s: &str) -> Result<LastModified, ()> {
        tm_from_str(s).map(LastModified).ok_or(())
    }
}

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()] });