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
use std::time::Instant;
use anyhow::{anyhow, Result};
use log::{error, info, trace};
use crate::app;
use crate::{Config, ConfigState, Operation};
pub fn switch(
config: &Config,
name: &str,
was_requested: bool,
operation: &Operation,
) -> Result<()> {
let start = Instant::now();
let app = match app::get(name) {
None => {
return Ok(());
}
Some(app) => app,
};
match app.config_state(config) {
ConfigState::NoDefault => {
if was_requested {
error!(target: name, "skipping (needs manual configuration)");
trace!(
target: name,
"completed in {} ms",
(Instant::now() - start).as_millis()
);
Err(anyhow!("skipping {} (needs manual configuration)", name))
} else {
info!(target: name, "skipping (needs manual configuration)");
trace!(
target: name,
"completed in {} ms",
(Instant::now() - start).as_millis()
);
Ok(())
}
}
ConfigState::Disabled => {
info!(target: name, "skipping (disabled)");
trace!(
target: name,
"completed in {} ms",
(Instant::now() - start).as_millis()
);
Ok(())
}
ConfigState::Default => {
info!(target: name, "{}ing (default configuration)", operation);
let res = app.switch(config, operation);
if let Err(ref e) = res {
error!(target: name, "{:#}", e);
}
trace!(
target: name,
"completed in {} ms",
(Instant::now() - start).as_millis()
);
res
}
ConfigState::Enabled => {
info!(target: name, "{}ing", operation);
let res = app.switch(config, operation);
if let Err(ref e) = res {
error!(target: name, "{:#}", e);
}
trace!(
target: name,
"completed in {} ms",
(Instant::now() - start).as_millis()
);
res
}
}
}