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
160
161
162
|
use colored::Colorize;
#[macro_export]
macro_rules! run_cmd {
($fmt:literal, $($arg:tt)*) => {
$crate::run_cmd(format!($fmt, $($arg)*))
};
($cmd:expr) => {
$crate::run_cmd($cmd)
};
}
/// Run a shell command and capture its combined stdout+stderr output.
/// Returns `Ok(output)` on success, `Err((exit_code, stderr))` on failure.
#[macro_export]
macro_rules! run_cmd_and_capture_stderr {
($fmt:literal, $($arg:tt)*) => {
$crate::run_cmd_capture(format!($fmt, $($arg)*))
};
($cmd:expr) => {
$crate::run_cmd_capture($cmd)
};
}
#[macro_export]
macro_rules! println_cargo_style {
($fmt:literal, $($arg:tt)*) => {
$crate::println_cargo_style(format!($fmt, $($arg)*))
};
($cmd:expr) => {
$crate::println_cargo_style($cmd)
};
}
#[macro_export]
macro_rules! eprintln_cargo_style {
($fmt:literal, $($arg:tt)*) => {
$crate::eprintln_cargo_style(format!($fmt, $($arg)*))
};
($cmd:expr) => {
$crate::eprintln_cargo_style($cmd)
};
}
/// Print a message in cargo style format, with bold green prefix.
///
/// # Panics
///
/// Panics if the prefix (text before the first `:`) exceeds 12 characters.
pub fn println_cargo_style(str: impl Into<String>) {
let s = str.into();
let (prefix, content) = if let Some(pos) = s.find(':') {
(
s[..pos].trim().to_string(),
s[pos + 1..].trim_start().to_string(),
)
} else {
(String::new(), s.trim().to_string())
};
assert!(
prefix.len() <= 12,
"prefix length exceeds 12: '{}' has length {}",
prefix,
prefix.len()
);
let padding = " ".repeat(12 - prefix.len());
println!(
"{}{} {}",
padding,
prefix.bold().bright_green(),
content.trim()
);
}
pub fn eprintln_cargo_style(str: impl Into<String>) {
println!("{}: {}", "error".bold().bright_red(), str.into());
}
/// Run a shell command and return its exit status.
///
/// # Panics
///
/// Panics if the shell command cannot be spawned (e.g. the shell binary is not found).
///
/// # Errors
///
/// Returns `Err` with the exit code if the command finishes with a non-zero exit code.
pub fn run_cmd(cmd: impl Into<String>) -> Result<(), i32> {
let shell = if cfg!(target_os = "windows") {
"powershell"
} else {
"sh"
};
let status = std::process::Command::new(shell)
.arg("-c")
.arg(cmd.into())
.current_dir(std::env::current_dir().unwrap_or_else(|_| std::path::PathBuf::from(".")))
.status()
.expect("failed to execute command");
let exit_code = status.code().unwrap_or(1);
if exit_code == 0 {
Ok(())
} else {
Err(exit_code)
}
}
/// Run a shell command and capture its combined stdout+stderr output.
///
/// On success returns `Ok(combined_output)`. On failure returns `Err((exit_code, stderr))`.
/// Stderr falls back to stdout if stderr is empty.
pub fn run_cmd_capture(cmd: impl Into<String>) -> Result<String, (i32, String)> {
let shell = if cfg!(target_os = "windows") {
"powershell"
} else {
"sh"
};
let output = std::process::Command::new(shell)
.arg("-c")
.arg(cmd.into())
.current_dir(std::env::current_dir().unwrap_or_else(|_| std::path::PathBuf::from(".")))
.output()
.expect("failed to execute command");
let exit_code = output.status.code().unwrap_or(1);
let stderr = String::from_utf8_lossy(&output.stderr).to_string();
let stdout = String::from_utf8_lossy(&output.stdout).to_string();
let combined = if stderr.is_empty() { stdout } else { stderr };
if exit_code == 0 {
Ok(combined)
} else {
Err((exit_code, combined))
}
}
#[must_use]
pub fn cargo_tomls() -> Vec<std::path::PathBuf> {
let mut cargo_tomls = Vec::new();
let mut dirs = vec![std::path::PathBuf::from(".")];
while let Some(dir) = dirs.pop() {
if let Ok(entries) = std::fs::read_dir(&dir) {
for entry in entries.flatten() {
let path = entry.path();
if path.is_dir() {
// Skip the dev_tools directory
if path.file_name().and_then(|n| n.to_str()) == Some("dev_tools") {
continue;
}
dirs.push(path);
} else if path.file_name().and_then(|n| n.to_str()) == Some("Cargo.toml") {
cargo_tomls.push(path);
}
}
}
}
cargo_tomls
}
|