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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
extern crate term;

use std::fmt;
use std::io::prelude::*;

#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Progress {
    Section,
    Headline,
    Item,
    Bottom,
}

impl Progress {
    pub fn enter<D: fmt::Display>(self, name: D) -> Self {
        let mut t = term::stderr().unwrap();

        match self {
            Progress::Section => {
                t.fg(term::color::BLUE).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                write!(t, ":: ").unwrap();

                t.reset().unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "{}", name).unwrap();

                t.reset().unwrap();

                Progress::Headline
            }
            Progress::Headline => {
                t.fg(term::color::GREEN).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                write!(t, "==> ").unwrap();

                t.reset().unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "{}", name).unwrap();

                t.reset().unwrap();

                Progress::Item
            }
            Progress::Item | Progress::Bottom => {
                t.fg(term::color::BLUE).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                write!(t, "  -> ").unwrap();

                t.reset().unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "{}", name).unwrap();

                t.reset().unwrap();

                Progress::Bottom
            }
        }
    }

    pub fn leave(self) -> Progress {
        match self {
            Progress::Bottom => Progress::Item,
            Progress::Item => Progress::Headline,
            Progress::Headline | Progress::Section => {
                // empty line after section end
                let mut t = term::stderr().unwrap();
                writeln!(t, "").unwrap();

                Progress::Section
            }
        }
    }

    pub fn root(mut self) -> Progress {
        loop {
            if let Progress::Section = self {
                break self;
            }
            self = self.leave()
        }
    }

    pub fn error<D: fmt::Display>(&self, msg: D) {
        let mut t = term::stderr().unwrap();

        match self {
            Progress::Section => {
                t.fg(term::color::RED).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, ":: ERROR: {}", msg).unwrap();
                t.reset().unwrap();
            }
            Progress::Headline => {
                t.fg(term::color::RED).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                write!(t, "==> ERROR: ").unwrap();

                t.reset().unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "{}", msg).unwrap();

                t.reset().unwrap();
            }
            Progress::Item | Progress::Bottom => {
                t.fg(term::color::RED).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "  -> {}", msg).unwrap();
                t.reset().unwrap();
            }
        }
    }

    pub fn warn<D: fmt::Display>(&self, msg: D) {
        let mut t = term::stderr().unwrap();

        match self {
            Progress::Section => {
                t.fg(term::color::YELLOW).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, ":: WARN: {}", msg).unwrap();
                t.reset().unwrap();
            }
            Progress::Headline => {
                t.fg(term::color::YELLOW).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                write!(t, "==> WARN: ").unwrap();

                t.reset().unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "{}", msg).unwrap();

                t.reset().unwrap();
            }
            Progress::Item | Progress::Bottom => {
                t.fg(term::color::YELLOW).unwrap();
                t.attr(term::Attr::Bold).unwrap();
                writeln!(t, "  -> {}", msg).unwrap();
                t.reset().unwrap();
            }
        }
    }

    pub fn single<D: fmt::Display>(&self, name: D) {
        self.clone().enter(name).leave();
    }
}

pub fn start() -> Progress {
    Progress::Section
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}