mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-29 15:04:32 +01:00
Add some QoL to run_command
This commit is contained in:
parent
f741475a3f
commit
fa92d8abe7
3 changed files with 24 additions and 18 deletions
|
@ -6,7 +6,6 @@ publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.43"
|
anyhow = "1.0.43"
|
||||||
os_pipe = "1.1.2"
|
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
use crate::{debug, ExtraArguments, Package, RunResult, TestRunError};
|
use crate::{debug, ExtraArguments, Package, RunResult, TestRunError};
|
||||||
use core::fmt;
|
use core::fmt;
|
||||||
use os_pipe::pipe;
|
use std::{
|
||||||
use std::{fs::File, io::Read, process::Command};
|
fs::File,
|
||||||
|
io::Read,
|
||||||
|
process::{Command, Stdio},
|
||||||
|
};
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
#[derive(Debug, Clone, Copy, PartialEq)]
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||||
|
@ -412,26 +415,26 @@ impl fmt::Display for BuildMode {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run_command(command: &CargoCommand) -> anyhow::Result<RunResult> {
|
pub fn run_command(command: &CargoCommand) -> anyhow::Result<RunResult> {
|
||||||
let (mut reader, writer) = pipe()?;
|
let command_display = command.executable();
|
||||||
let (mut error_reader, error_writer) = pipe()?;
|
let args = command.args();
|
||||||
debug!("👟 {} {}", command.executable(), command.args().join(" "));
|
|
||||||
|
|
||||||
let mut handle = Command::new(command.executable())
|
let full_command = format!("\"{command_display}\" {}", args.join(" "));
|
||||||
|
|
||||||
|
debug!("👟 {full_command}");
|
||||||
|
|
||||||
|
let result = Command::new(command.executable())
|
||||||
.args(command.args())
|
.args(command.args())
|
||||||
.stdout(writer)
|
.stdout(Stdio::piped())
|
||||||
.stderr(error_writer)
|
.stderr(Stdio::piped())
|
||||||
.spawn()?;
|
.output()?;
|
||||||
|
|
||||||
// retrieve output and clean up
|
let exit_status = result.status;
|
||||||
let mut stdout = String::new();
|
let stderr = String::from_utf8(result.stderr).unwrap_or("Not displayable".into());
|
||||||
reader.read_to_string(&mut stdout)?;
|
let stdout = String::from_utf8(result.stdout).unwrap_or("Not displayable".into());
|
||||||
let exit_status = handle.wait()?;
|
|
||||||
|
|
||||||
let mut stderr = String::new();
|
|
||||||
error_reader.read_to_string(&mut stderr)?;
|
|
||||||
|
|
||||||
Ok(RunResult {
|
Ok(RunResult {
|
||||||
exit_status,
|
exit_status,
|
||||||
|
full_command,
|
||||||
stdout,
|
stdout,
|
||||||
stderr,
|
stderr,
|
||||||
})
|
})
|
||||||
|
|
|
@ -44,6 +44,7 @@ const DEFAULT_FEATURES: &str = "test-critical-section";
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct RunResult {
|
pub struct RunResult {
|
||||||
exit_status: ExitStatus,
|
exit_status: ExitStatus,
|
||||||
|
full_command: String,
|
||||||
stdout: String,
|
stdout: String,
|
||||||
stderr: String,
|
stderr: String,
|
||||||
}
|
}
|
||||||
|
@ -329,9 +330,12 @@ fn command_parser(command: &CargoCommand, overwrite: bool) -> anyhow::Result<()>
|
||||||
| CargoCommand::Book { .. }
|
| CargoCommand::Book { .. }
|
||||||
| CargoCommand::ExampleSize { .. } => {
|
| CargoCommand::ExampleSize { .. } => {
|
||||||
let cargo_result = run_command(command)?;
|
let cargo_result = run_command(command)?;
|
||||||
|
let command = cargo_result.full_command;
|
||||||
if let Some(exit_code) = cargo_result.exit_status.code() {
|
if let Some(exit_code) = cargo_result.exit_status.code() {
|
||||||
if exit_code != exitcode::OK {
|
if exit_code != exitcode::OK {
|
||||||
error!("Exit code from command: {exit_code}");
|
error!("Command {command} failed.");
|
||||||
|
error!("Exit code: {exit_code}");
|
||||||
|
|
||||||
if !cargo_result.stdout.is_empty() {
|
if !cargo_result.stdout.is_empty() {
|
||||||
info!("{}", cargo_result.stdout);
|
info!("{}", cargo_result.stdout);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue