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
use {
    crate::*,
    anyhow::*,
    flate2::bufread::GzDecoder,
    std::{
        fs::File,
        io::{BufRead, BufReader},
        path::{Path, PathBuf},
        str::FromStr,
    },
};

pub struct LogFile {
    pub path: PathBuf,
    // by construction, lines is guaranteed not empty
    pub lines: Vec<LogLine>,
}

impl LogFile {
    pub fn new(path: PathBuf) -> Result<LogFile> {
        let file = File::open(&path)?;
        if path.extension().and_then(|e| e.to_str()) == Some("gz") {
            let file = BufReader::new(file);
            LogFile::read(GzDecoder::new(file), path)
        } else {
            LogFile::read(file, path)
        }
    }
    fn read<R: Read>(file: R, path: PathBuf) -> Result<LogFile> {
        let mut reader = BufReader::new(file);
        let mut lines = Vec::new();
        let mut line = String::new();
        loop {
            line.clear();
            if reader.read_line(&mut line)? == 0 {
                break; // EOF
            }
            match LogLine::from_str(&line) {
                Ok(log_line) => {
                    lines.push(log_line);
                }
                Err(e) => {
                    eprintln!("{} in {}", e, line);
                }
            }
        }
        if lines.is_empty() {
            bail!("empty log file");
        }
        Ok(Self {
            path,
            lines,
        })
    }
    pub fn is_access_log_path(path: &Path) -> bool {
        path.file_name()
            .and_then(|n| n.to_str())
            .map_or(false, |name| {
                let mut tokens = name.split('.');
                tokens.next() == Some("access") && tokens.next() == Some("log")
            })
    }
    pub fn start_time(&self) -> Date {
        self.lines[0].date
    }
    pub fn end_time(&self) -> Date {
        self.lines[self.lines.len()-1].date
    }
}