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
|
use colored::Colorize;
use serde::{Deserialize, Serialize};
use std::fmt;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(thiserror::Error, Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
pub enum Error {
#[error("Could not get standard output from runner")]
StandardOutput,
#[error("Could not get mullvad app logs from runner")]
Logs(String),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Output {
Error(String),
Warning(String),
Info(String),
Other(String),
}
impl fmt::Display for Output {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Output::Error(s) => f.write_fmt(format_args!("{}", s.as_str().red())),
Output::Warning(s) => f.write_fmt(format_args!("{}", s.as_str().yellow())),
Output::Info(s) => f.write_fmt(format_args!("{}", s.as_str())),
Output::Other(s) => f.write_fmt(format_args!("{}", s.as_str())),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LogOutput {
pub settings_json: Result<String>,
pub log_files: Result<Vec<Result<LogFile>>>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LogFile {
pub name: std::path::PathBuf,
pub content: String,
}
|