-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.rs
419 lines (382 loc) · 11.8 KB
/
cmd.rs
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
use std::ffi::{OsStr, OsString};
use std::fmt::{Display, Formatter};
use std::io::{BufRead, BufReader, Write};
use std::path::{Path, PathBuf};
use std::process::{Command, ExitStatus, Stdio};
use std::sync::mpsc::channel;
use std::sync::{Mutex, RwLock};
use std::thread;
use color_eyre::Result;
use duct::{Expression, IntoExecutablePath};
use eyre::Context;
#[cfg(not(any(test, target_os = "windows")))]
use signal_hook::consts::{SIGHUP, SIGINT, SIGQUIT, SIGTERM, SIGUSR1, SIGUSR2};
#[cfg(not(any(test, target_os = "windows")))]
use signal_hook::iterator::Signals;
use crate::config::Settings;
use crate::env;
use crate::errors::Error::ScriptFailed;
use crate::file::display_path;
use crate::ui::progress_report::SingleReport;
/// Create a command with any number of of positional arguments, which may be
/// different types (anything that implements
/// [`Into<OsString>`](https://doc.rust-lang.org/std/convert/trait.From.html)).
/// See also the [`cmd`](fn.cmd.html) function, which takes a collection of
/// arguments.
///
/// # Example
///
/// ```
/// use std::path::Path;
/// use mise::cmd;
///
/// let arg1 = "foo";
/// let arg2 = "bar".to_owned();
/// let arg3 = Path::new("baz");
///
/// let output = cmd!("echo", arg1, arg2, arg3).read();
///
/// assert_eq!("foo bar baz", output.unwrap());
/// ```
#[macro_export]
macro_rules! cmd {
( $program:expr $(, $arg:expr )* $(,)? ) => {
{
use std::ffi::OsString;
let args: std::vec::Vec<OsString> = std::vec![$( Into::<OsString>::into($arg) ),*];
$crate::cmd::cmd($program, args)
}
};
}
/// Create a command with any number of of positional arguments, which may be
/// different types (anything that implements
/// [`Into<OsString>`](https://doc.rust-lang.org/std/convert/trait.From.html)).
/// See also the [`cmd`](fn.cmd.html) function, which takes a collection of
/// arguments.
///
/// # Example
///
/// ```
/// use std::path::Path;
/// use mise::cmd;
///
/// let arg1 = "foo";
/// let arg2 = "bar".to_owned();
/// let arg3 = Path::new("baz");
///
/// let output = cmd!("echo", arg1, arg2, arg3).read();
///
/// assert_eq!("foo bar baz", output.unwrap());
/// ```
pub fn cmd<T, U>(program: T, args: U) -> Expression
where
T: IntoExecutablePath,
U: IntoIterator,
U::Item: Into<OsString>,
{
let program = program.to_executable();
let args: Vec<OsString> = args.into_iter().map(Into::<OsString>::into).collect();
let display_name = program.to_string_lossy();
let display_args = args
.iter()
.map(|s| s.to_string_lossy())
.collect::<Vec<_>>()
.join(" ");
let display_command = [display_name.into(), display_args].join(" ");
debug!("$ {display_command}");
duct::cmd(program, args)
}
pub struct CmdLineRunner<'a> {
cmd: Command,
pr: Option<&'a dyn SingleReport>,
stdin: Option<String>,
prefix: String,
raw: bool,
pass_signals: bool,
}
static OUTPUT_LOCK: Mutex<()> = Mutex::new(());
impl<'a> CmdLineRunner<'a> {
pub fn new<P: AsRef<OsStr>>(program: P) -> Self {
let mut cmd = Command::new(program);
cmd.stdin(Stdio::null());
cmd.stdout(Stdio::piped());
cmd.stderr(Stdio::piped());
Self {
cmd,
pr: None,
stdin: None,
prefix: String::new(),
raw: false,
pass_signals: false,
}
}
pub fn stdin<T: Into<Stdio>>(mut self, cfg: T) -> Self {
self.cmd.stdin(cfg);
self
}
pub fn stdout<T: Into<Stdio>>(mut self, cfg: T) -> Self {
self.cmd.stdout(cfg);
self
}
pub fn stderr<T: Into<Stdio>>(mut self, cfg: T) -> Self {
self.cmd.stderr(cfg);
self
}
pub fn prefix(mut self, prefix: impl Into<String>) -> Self {
self.prefix = prefix.into();
self
}
pub fn current_dir<P: AsRef<Path>>(mut self, dir: P) -> Self {
self.cmd.current_dir(dir);
self
}
pub fn env_clear(mut self) -> Self {
self.cmd.env_clear();
self
}
pub fn env<K, V>(mut self, key: K, val: V) -> Self
where
K: AsRef<OsStr>,
V: AsRef<OsStr>,
{
self.cmd.env(key, val);
self
}
pub fn envs<I, K, V>(mut self, vars: I) -> Self
where
I: IntoIterator<Item = (K, V)>,
K: AsRef<OsStr>,
V: AsRef<OsStr>,
{
self.cmd.envs(vars);
self
}
pub fn prepend_path(mut self, paths: Vec<PathBuf>) -> eyre::Result<Self> {
let existing = self
.get_env("PATH")
.map(|c| c.to_owned())
.unwrap_or_else(|| env::var_os("PATH").unwrap());
let paths = paths
.into_iter()
.chain(env::split_paths(&existing))
.collect::<Vec<_>>();
self.cmd.env("PATH", env::join_paths(paths)?);
Ok(self)
}
fn get_env(&self, key: &str) -> Option<&OsStr> {
for (k, v) in self.cmd.get_envs() {
if k == key {
return v;
}
}
None
}
pub fn arg<S: AsRef<OsStr>>(mut self, arg: S) -> Self {
self.cmd.arg(arg.as_ref());
self
}
pub fn args<I, S>(mut self, args: I) -> Self
where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>,
{
self.cmd.args(args);
self
}
pub fn with_pr(mut self, pr: &'a dyn SingleReport) -> Self {
self.pr = Some(pr);
self
}
pub fn with_raw(&mut self) -> &mut Self {
self.raw = true;
self
}
pub fn with_pass_signals(&mut self) -> &mut Self {
self.pass_signals = true;
self
}
pub fn stdin_string(mut self, input: impl Into<String>) -> Self {
self.cmd.stdin(Stdio::piped());
self.stdin = Some(input.into());
self
}
#[allow(clippy::readonly_write_lock)]
pub fn execute(mut self) -> Result<()> {
static RAW_LOCK: RwLock<()> = RwLock::new(());
let read_lock = RAW_LOCK.read().unwrap();
let settings = &Settings::try_get()?;
debug!("$ {}", self);
if settings.raw || self.raw {
drop(read_lock);
let _write_lock = RAW_LOCK.write().unwrap();
return self.execute_raw();
}
let mut cp = self
.cmd
.spawn()
.wrap_err_with(|| format!("failed to execute command: {self}"))?;
let (tx, rx) = channel();
if let Some(stdout) = cp.stdout.take() {
thread::spawn({
let tx = tx.clone();
move || {
for line in BufReader::new(stdout).lines() {
let line = line.unwrap();
tx.send(ChildProcessOutput::Stdout(line)).unwrap();
}
}
});
}
if let Some(stderr) = cp.stderr.take() {
thread::spawn({
let tx = tx.clone();
move || {
for line in BufReader::new(stderr).lines() {
let line = line.unwrap();
tx.send(ChildProcessOutput::Stderr(line)).unwrap();
}
}
});
}
if let Some(text) = self.stdin.take() {
let mut stdin = cp.stdin.take().unwrap();
thread::spawn(move || {
stdin.write_all(text.as_bytes()).unwrap();
});
}
#[cfg(not(any(test, target_os = "windows")))]
let mut sighandle = None;
#[cfg(not(any(test, target_os = "windows")))]
if self.pass_signals {
let mut signals =
Signals::new([SIGINT, SIGTERM, SIGTERM, SIGHUP, SIGQUIT, SIGUSR1, SIGUSR2])?;
sighandle = Some(signals.handle());
let tx = tx.clone();
thread::spawn(move || {
for sig in &mut signals {
tx.send(ChildProcessOutput::Signal(sig)).unwrap();
}
});
}
#[cfg(not(any(test, target_os = "windows")))]
let id = cp.id();
thread::spawn(move || {
let status = cp.wait().unwrap();
#[cfg(not(any(test, target_os = "windows")))]
if let Some(sighandle) = sighandle {
sighandle.close();
}
tx.send(ChildProcessOutput::ExitStatus(status)).unwrap();
});
let mut combined_output = vec![];
let mut status = None;
for line in rx {
match line {
ChildProcessOutput::Stdout(line) => {
self.on_stdout(&line);
combined_output.push(line);
}
ChildProcessOutput::Stderr(line) => {
self.on_stderr(&line);
combined_output.push(line);
}
ChildProcessOutput::ExitStatus(s) => {
status = Some(s);
}
#[cfg(not(any(test, target_os = "windows")))]
ChildProcessOutput::Signal(sig) => {
if sig != SIGINT {
cmd!("kill", format!("-{sig}"), id.to_string()).run()?;
}
}
}
}
let status = status.unwrap();
if !status.success() {
self.on_error(combined_output.join("\n"), status)?;
}
Ok(())
}
fn execute_raw(mut self) -> Result<()> {
let status = self.cmd.spawn()?.wait()?;
match status.success() {
true => Ok(()),
false => self.on_error(String::new(), status),
}
}
fn on_stdout(&self, line: &str) {
let _lock = OUTPUT_LOCK.lock().unwrap();
if let Some(pr) = self.pr {
if !line.trim().is_empty() {
pr.set_message(line.into())
}
} else if console::colors_enabled() {
println!("{}{line}\x1b[0m", self.prefix);
} else {
println!("{}{line}", self.prefix);
}
}
fn on_stderr(&self, line: &str) {
let _lock = OUTPUT_LOCK.lock().unwrap();
match self.pr {
Some(pr) => {
if !line.trim().is_empty() {
pr.println(line.into())
}
}
None => {
if console::colors_enabled() {
eprintln!("{}{line}\x1b[0m", self.prefix);
} else {
eprintln!("{}{line}", self.prefix);
}
}
}
}
fn on_error(&self, output: String, status: ExitStatus) -> Result<()> {
let settings = Settings::try_get()?;
match self.pr {
Some(pr) => {
error!("{} failed", self.get_program());
if !settings.verbose && !output.trim().is_empty() {
pr.println(output);
}
}
None => {
// eprintln!("{}", output);
}
}
Err(ScriptFailed(self.get_program(), Some(status)))?
}
fn get_program(&self) -> String {
display_path(PathBuf::from(self.cmd.get_program()))
}
fn get_args(&self) -> Vec<String> {
self.cmd
.get_args()
.map(|s| s.to_string_lossy().to_string())
.collect::<Vec<_>>()
}
}
impl Display for CmdLineRunner<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let args = self.get_args().join(" ");
write!(f, "{} {args}", self.get_program())
}
}
enum ChildProcessOutput {
Stdout(String),
Stderr(String),
ExitStatus(ExitStatus),
#[cfg(not(any(test, target_os = "windows")))]
Signal(i32),
}
#[cfg(test)]
mod tests {
use crate::cmd;
#[test]
fn test_cmd() {
let output = cmd!("echo", "foo", "bar").read().unwrap();
assert_eq!("foo bar", output);
}
}