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
use std::fmt;
use std::time::Instant;

pub struct Benchmark {
    started: Instant,
    iterations: u32,
}

impl Default for Benchmark {
    fn default() -> Self {
        Self::new0()
    }
}

impl fmt::Display for Benchmark {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.to_string_for(self.iterations))
    }
}

impl Benchmark {
    pub fn new0() -> Self {
        Self {
            started: Instant::now(),
            iterations: 0,
        }
    }

    pub fn new(iterations: u32) -> Self {
        Self {
            started: Instant::now(),
            iterations,
        }
    }

    pub fn print(&self) {
        self.print_for(self.iterations);
    }

    pub fn print_for(&self, iterations: u32) {
        println!("{}", self.to_string_for(iterations));
    }

    pub fn to_string_for(&self, iterations: u32) -> String {
        let elapsed = self.started.elapsed().as_secs_f64();
        format!(
            "Elapsed: {:.3} secs ({:.0} iters/s)",
            elapsed,
            f64::from(iterations) / elapsed
        )
    }

    pub fn increment(&mut self) {
        self.iterations += 1;
    }
}