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
71
72
73
74
75
76
77
78
79
80
81
82
use super::Output;
use super::Timer;
use crate::error::{ClimerError, ClimerResult};
use crate::time::Time;

/// The builder struct for `Timer`.
#[derive(Default)]
pub struct TimerBuilder {
    time:           Option<String>,
    quiet:          bool,
    format:         Option<String>,
    output_format:  Option<String>,
    print_interval: Option<Time>,
    write:          Option<String>,
}

impl TimerBuilder {
    /// Set the `time` as a string.
    pub fn time<T>(mut self, time: T) -> Self
    where
        T: ToString,
    {
        self.time = Some(time.to_string());
        self
    }

    /// Set the `quiet` flag, used for printing to stdout.
    pub fn quiet(mut self, quiet: bool) -> Self {
        self.quiet = quiet;
        self
    }

    /// TODO: Unimplemented
    /// Set the `format` string, used for parsing the given time string.
    pub fn format<T>(mut self, format: T) -> Self
    where
        T: ToString,
    {
        self.format = Some(format.to_string());
        self
    }

    /// Set the interval in which output should be printed to stdout.
    pub fn print_interval(mut self, print_interval: Time) -> Self {
        self.print_interval = Some(print_interval);
        self
    }

    /// Set a file for the output to be written to, instead of stdout.
    pub fn write<T>(mut self, write: T) -> Self
    where
        T: ToString,
    {
        self.write = Some(write.to_string());
        self
    }

    /// Build a `Timer`.
    pub fn build(self) -> ClimerResult<Timer> {
        let time = if let Some(t) = self.time.clone() {
            t
        } else {
            return Err(ClimerError::NoTimeGiven);
        };
        let format = self.format.clone();
        let output = self.build_output();
        Ok(Timer::new(time, format, output)?)
    }

    /// Build the `Output` used by the `Timer`.
    fn build_output(self) -> Option<Output> {
        if self.quiet {
            None
        } else {
            Some(Output::new(
                self.output_format,
                self.print_interval,
                self.write,
            ))
        }
    }
}