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
use ansi_term::Colour::{Cyan, Fixed, Green};
use indicatif::{ProgressBar, ProgressStyle};
mod cargo_build;
mod cargo_rustc;
mod change_crate_type;
mod rasterize;
pub mod tasks;
pub use cargo_build::CargoBuild;
pub use cargo_rustc::CargoRustc;
pub use change_crate_type::change_crate_type;
pub use rasterize::rasterize;
pub trait Task {
type Context;
type Error;
fn verb(&self) -> &str;
fn message(&self) -> &str;
fn detail(&self) -> &str;
fn run(
&self,
context: Self::Context,
manager: &mut Manager,
) -> Result<Self::Context, Self::Error>;
}
pub struct Manager<'a> {
verb: &'a str,
message: &'a str,
detail: &'a str,
}
impl<'a> Manager<'a> {
pub fn new<T>(task: &'a T) -> Manager<'a>
where
T: Task + ?Sized,
{
eprint!(
"{} {} {}",
Cyan.bold().paint(format!("{:>12}", task.verb())),
task.message(),
Fixed(8).paint(task.detail())
);
Manager {
verb: task.verb(),
message: task.message(),
detail: task.detail(),
}
}
pub fn progress_bar(&mut self, len: usize) -> ProgressBar {
let bar = ProgressBar::new(len as u64);
eprint!("\r");
bar.set_style(
ProgressStyle::default_bar()
.template(&format!(
"{} [{{bar:57}}] {{pos:>{}}}/{{len}}: {} {}",
Cyan.bold().paint(format!("{:>12}", self.verb)),
1000.0f32.log10().ceil() as usize,
self.message,
Fixed(8).paint(self.detail)
))
.progress_chars("=> "),
);
bar
}
}
impl<'a> Drop for Manager<'a> {
fn drop(&mut self) {
eprintln!(
"\r{} {} {} {}",
Green.bold().paint(format!(" Finished")),
self.verb,
self.message,
Fixed(8).paint(self.detail)
);
}
}
pub struct Executioner;
impl Executioner {
pub fn execute<T>(tasks: &[T], context: T::Context) -> Result<T::Context, T::Error>
where
T: Task,
{
let mut context = context;
for task in tasks {
let mut manager = Manager::new(task);
context = task.run(context, &mut manager)?;
}
Ok(context)
}
}