2023-04-16 11:05:41 +02:00
|
|
|
use std::{
|
|
|
|
fs::File,
|
|
|
|
io::Read,
|
|
|
|
path::PathBuf,
|
|
|
|
process::{Command, Stdio},
|
|
|
|
};
|
2023-04-15 23:22:00 +02:00
|
|
|
|
2023-03-01 00:25:05 +01:00
|
|
|
use crate::{
|
2023-04-15 10:03:52 +02:00
|
|
|
argument_parsing::{Backends, BuildOrCheck, ExtraArguments, Globals, PackageOpt, TestMetadata},
|
2023-04-16 11:02:49 +02:00
|
|
|
cargo_command::{BuildMode, CargoCommand},
|
2023-04-16 11:05:41 +02:00
|
|
|
command_parser, RunResult, TestRunError,
|
2023-03-01 00:25:05 +01:00
|
|
|
};
|
2023-04-16 11:05:41 +02:00
|
|
|
use log::{error, info, Level};
|
2023-04-15 12:21:11 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "rayon")]
|
2023-03-01 00:25:05 +01:00
|
|
|
use rayon::prelude::*;
|
|
|
|
|
2023-04-15 12:21:11 +02:00
|
|
|
use iters::*;
|
|
|
|
|
2023-04-16 11:05:41 +02:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
|
|
pub enum OutputMode {
|
|
|
|
PipedAndCollected,
|
|
|
|
Inherited,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<OutputMode> for Stdio {
|
|
|
|
fn from(value: OutputMode) -> Self {
|
|
|
|
match value {
|
|
|
|
OutputMode::PipedAndCollected => Stdio::piped(),
|
|
|
|
OutputMode::Inherited => Stdio::inherit(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-15 20:44:06 +02:00
|
|
|
#[derive(Debug)]
|
2023-04-15 13:45:58 +02:00
|
|
|
pub enum FinalRunResult<'c> {
|
2023-04-15 12:21:11 +02:00
|
|
|
Success(CargoCommand<'c>, RunResult),
|
|
|
|
Failed(CargoCommand<'c>, RunResult),
|
2023-04-15 20:44:06 +02:00
|
|
|
CommandError(CargoCommand<'c>, anyhow::Error),
|
2023-04-15 12:21:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn run_and_convert<'a>(
|
|
|
|
(global, command, overwrite): (&Globals, CargoCommand<'a>, bool),
|
|
|
|
) -> FinalRunResult<'a> {
|
|
|
|
// Run the command
|
|
|
|
let result = command_parser(global, &command, overwrite);
|
2023-04-15 20:44:06 +02:00
|
|
|
|
|
|
|
let output = match result {
|
2023-04-15 12:21:11 +02:00
|
|
|
// If running the command succeeded without looking at any of the results,
|
|
|
|
// log the data and see if the actual execution was succesfull too.
|
|
|
|
Ok(result) => {
|
|
|
|
if result.exit_status.success() {
|
|
|
|
FinalRunResult::Success(command, result)
|
|
|
|
} else {
|
|
|
|
FinalRunResult::Failed(command, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If it didn't and some IO error occured, just panic
|
2023-04-15 20:44:06 +02:00
|
|
|
Err(e) => FinalRunResult::CommandError(command, e),
|
|
|
|
};
|
|
|
|
|
|
|
|
log::trace!("Final result: {output:?}");
|
|
|
|
|
|
|
|
output
|
2023-04-15 12:21:11 +02:00
|
|
|
}
|
|
|
|
|
2023-04-15 13:45:58 +02:00
|
|
|
pub trait CoalescingRunner<'c> {
|
2023-04-15 12:21:11 +02:00
|
|
|
/// Run all the commands in this iterator, and coalesce the results into
|
|
|
|
/// one error (if any individual commands failed)
|
2023-04-15 13:45:58 +02:00
|
|
|
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>>;
|
2023-04-15 12:21:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "rayon"))]
|
|
|
|
mod iters {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub fn examples_iter(examples: &[String]) -> impl Iterator<Item = &String> {
|
|
|
|
examples.into_iter()
|
|
|
|
}
|
|
|
|
|
2023-04-15 13:45:58 +02:00
|
|
|
impl<'g, 'c, I> CoalescingRunner<'c> for I
|
2023-04-15 12:21:11 +02:00
|
|
|
where
|
|
|
|
I: Iterator<Item = (&'g Globals, CargoCommand<'c>, bool)>,
|
|
|
|
{
|
2023-04-15 13:45:58 +02:00
|
|
|
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>> {
|
|
|
|
self.map(run_and_convert).collect()
|
2023-04-15 12:21:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rayon")]
|
|
|
|
mod iters {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub fn examples_iter(examples: &[String]) -> impl ParallelIterator<Item = &String> {
|
|
|
|
examples.into_par_iter()
|
|
|
|
}
|
|
|
|
|
2023-04-15 13:45:58 +02:00
|
|
|
impl<'g, 'c, I> CoalescingRunner<'c> for I
|
2023-04-15 12:21:11 +02:00
|
|
|
where
|
|
|
|
I: ParallelIterator<Item = (&'g Globals, CargoCommand<'c>, bool)>,
|
|
|
|
{
|
2023-04-15 13:45:58 +02:00
|
|
|
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>> {
|
|
|
|
self.map(run_and_convert).collect()
|
2023-04-15 12:21:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-01 00:25:05 +01:00
|
|
|
/// Cargo command to either build or check
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-03-01 00:25:05 +01:00
|
|
|
operation: BuildOrCheck,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
|
|
|
package: &'c PackageOpt,
|
2023-03-01 00:25:05 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 14:28:24 +02:00
|
|
|
let runner = package
|
|
|
|
.packages()
|
|
|
|
.flat_map(|package| {
|
|
|
|
let target = backend.to_target();
|
|
|
|
let features = package.features(target, backend, globals.partial);
|
|
|
|
|
|
|
|
#[cfg(feature = "rayon")]
|
|
|
|
{
|
|
|
|
features.into_par_iter().map(move |f| (package, target, f))
|
|
|
|
}
|
2023-04-15 12:21:11 +02:00
|
|
|
|
2023-04-15 14:28:24 +02:00
|
|
|
#[cfg(not(feature = "rayon"))]
|
|
|
|
{
|
|
|
|
features.into_iter().map(move |f| (package, target, f))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(move |(package, target, features)| {
|
2023-04-16 11:00:39 +02:00
|
|
|
let target = target.into();
|
2023-04-15 14:28:24 +02:00
|
|
|
let command = match operation {
|
|
|
|
BuildOrCheck::Check => CargoCommand::Check {
|
|
|
|
cargoarg,
|
2023-04-16 09:44:30 +02:00
|
|
|
package: Some(package.name()),
|
2023-04-15 14:28:24 +02:00
|
|
|
target,
|
|
|
|
features,
|
|
|
|
mode: BuildMode::Release,
|
2023-04-16 11:00:39 +02:00
|
|
|
dir: None,
|
2023-04-15 14:28:24 +02:00
|
|
|
},
|
|
|
|
BuildOrCheck::Build => CargoCommand::Build {
|
|
|
|
cargoarg,
|
2023-04-16 09:44:30 +02:00
|
|
|
package: Some(package.name()),
|
2023-04-15 14:28:24 +02:00
|
|
|
target,
|
|
|
|
features,
|
|
|
|
mode: BuildMode::Release,
|
2023-04-16 11:00:39 +02:00
|
|
|
dir: None,
|
2023-04-15 14:28:24 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
(globals, command, false)
|
|
|
|
});
|
2023-03-01 00:25:05 +01:00
|
|
|
|
2023-04-15 12:21:11 +02:00
|
|
|
runner.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-14 23:59:23 +02:00
|
|
|
/// Cargo command to build a usage example.
|
|
|
|
///
|
|
|
|
/// The usage examples are in examples/
|
|
|
|
pub fn cargo_usage_example(
|
|
|
|
globals: &Globals,
|
|
|
|
operation: BuildOrCheck,
|
|
|
|
usage_examples: Vec<String>,
|
|
|
|
) -> Vec<FinalRunResult<'_>> {
|
|
|
|
examples_iter(&usage_examples)
|
|
|
|
.map(|example| {
|
|
|
|
let path = format!("examples/{example}");
|
|
|
|
|
|
|
|
let command = match operation {
|
2023-04-16 11:00:39 +02:00
|
|
|
BuildOrCheck::Check => CargoCommand::Check {
|
|
|
|
cargoarg: &None,
|
2023-04-14 23:59:23 +02:00
|
|
|
mode: BuildMode::Release,
|
2023-04-16 11:00:39 +02:00
|
|
|
dir: Some(path.into()),
|
|
|
|
package: None,
|
|
|
|
target: None,
|
|
|
|
features: None,
|
2023-04-14 23:59:23 +02:00
|
|
|
},
|
2023-04-16 11:00:39 +02:00
|
|
|
BuildOrCheck::Build => CargoCommand::Build {
|
|
|
|
cargoarg: &None,
|
|
|
|
package: None,
|
|
|
|
target: None,
|
|
|
|
features: None,
|
2023-04-14 23:59:23 +02:00
|
|
|
mode: BuildMode::Release,
|
2023-04-16 11:00:39 +02:00
|
|
|
dir: Some(path.into()),
|
2023-04-14 23:59:23 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
(globals, command, false)
|
|
|
|
})
|
|
|
|
.run_and_coalesce()
|
|
|
|
}
|
|
|
|
|
2023-03-01 00:25:05 +01:00
|
|
|
/// Cargo command to either build or check all examples
|
|
|
|
///
|
|
|
|
/// The examples are in rtic/examples
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_example<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-03-01 00:25:05 +01:00
|
|
|
operation: BuildOrCheck,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
2023-03-01 00:25:05 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
examples: &'c [String],
|
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 12:21:11 +02:00
|
|
|
let runner = examples_iter(examples).map(|example| {
|
2023-04-15 00:50:46 +02:00
|
|
|
let features = Some(backend.to_target().and_features(backend.to_rtic_feature()));
|
2023-03-01 00:25:05 +01:00
|
|
|
|
|
|
|
let command = match operation {
|
|
|
|
BuildOrCheck::Check => CargoCommand::ExampleCheck {
|
|
|
|
cargoarg,
|
|
|
|
example,
|
2023-04-16 11:00:39 +02:00
|
|
|
target: Some(backend.to_target()),
|
2023-03-01 00:25:05 +01:00
|
|
|
features,
|
|
|
|
mode: BuildMode::Release,
|
|
|
|
},
|
|
|
|
BuildOrCheck::Build => CargoCommand::ExampleBuild {
|
|
|
|
cargoarg,
|
|
|
|
example,
|
2023-04-16 11:00:39 +02:00
|
|
|
target: Some(backend.to_target()),
|
2023-03-01 00:25:05 +01:00
|
|
|
features,
|
|
|
|
mode: BuildMode::Release,
|
2023-04-15 23:22:00 +02:00
|
|
|
dir: Some(PathBuf::from("./rtic")),
|
2023-03-01 00:25:05 +01:00
|
|
|
},
|
|
|
|
};
|
2023-04-15 12:21:11 +02:00
|
|
|
(globals, command, false)
|
2023-03-01 00:25:05 +01:00
|
|
|
});
|
2023-04-15 12:21:11 +02:00
|
|
|
runner.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Run cargo clippy on selected package
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_clippy<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
|
|
|
package: &'c PackageOpt,
|
2023-03-01 00:25:05 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 14:28:24 +02:00
|
|
|
let runner = package
|
|
|
|
.packages()
|
|
|
|
.flat_map(|package| {
|
|
|
|
let target = backend.to_target();
|
|
|
|
let features = package.features(target, backend, globals.partial);
|
|
|
|
|
|
|
|
#[cfg(feature = "rayon")]
|
|
|
|
{
|
|
|
|
features.into_par_iter().map(move |f| (package, target, f))
|
|
|
|
}
|
2023-04-15 10:03:52 +02:00
|
|
|
|
2023-04-15 14:28:24 +02:00
|
|
|
#[cfg(not(feature = "rayon"))]
|
|
|
|
{
|
|
|
|
features.into_iter().map(move |f| (package, target, f))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(move |(package, target, features)| {
|
2023-04-16 11:00:39 +02:00
|
|
|
let command = CargoCommand::Clippy {
|
|
|
|
cargoarg,
|
|
|
|
package: Some(package.name()),
|
|
|
|
target: target.into(),
|
|
|
|
features,
|
|
|
|
};
|
|
|
|
|
|
|
|
(globals, command, false)
|
2023-04-15 14:28:24 +02:00
|
|
|
});
|
2023-04-15 10:03:52 +02:00
|
|
|
|
2023-04-15 12:21:11 +02:00
|
|
|
runner.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Run cargo fmt on selected package
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_format<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
|
|
|
package: &'c PackageOpt,
|
2023-03-01 00:25:05 +01:00
|
|
|
check_only: bool,
|
2023-04-15 13:45:58 +02:00
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 12:21:11 +02:00
|
|
|
let runner = package.packages().map(|p| {
|
|
|
|
(
|
2023-04-15 10:03:52 +02:00
|
|
|
globals,
|
2023-04-15 12:21:11 +02:00
|
|
|
CargoCommand::Format {
|
2023-04-15 10:03:52 +02:00
|
|
|
cargoarg,
|
2023-04-16 09:44:30 +02:00
|
|
|
package: Some(p.name()),
|
2023-04-15 10:03:52 +02:00
|
|
|
check_only,
|
|
|
|
},
|
|
|
|
false,
|
2023-04-15 12:21:11 +02:00
|
|
|
)
|
2023-04-15 10:03:52 +02:00
|
|
|
});
|
2023-04-15 12:21:11 +02:00
|
|
|
runner.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Run cargo doc
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_doc<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
2023-03-02 22:02:19 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
arguments: &'c Option<ExtraArguments>,
|
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 00:50:46 +02:00
|
|
|
let features = Some(backend.to_target().and_features(backend.to_rtic_feature()));
|
2023-03-01 00:25:05 +01:00
|
|
|
|
2023-04-15 13:45:58 +02:00
|
|
|
let command = CargoCommand::Doc {
|
|
|
|
cargoarg,
|
|
|
|
features,
|
|
|
|
arguments: arguments.clone(),
|
|
|
|
};
|
|
|
|
|
|
|
|
vec![run_and_convert((globals, command, false))]
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
2023-04-15 00:50:46 +02:00
|
|
|
/// Run cargo test on the selected package or all packages
|
2023-03-01 00:25:05 +01:00
|
|
|
///
|
|
|
|
/// If no package is specified, loop through all packages
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_test<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
package: &'c PackageOpt,
|
2023-04-15 00:26:16 +02:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 12:21:11 +02:00
|
|
|
package
|
|
|
|
.packages()
|
|
|
|
.map(|p| (globals, TestMetadata::match_package(p, backend), false))
|
|
|
|
.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Use mdbook to build the book
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn cargo_book<'c>(
|
2023-04-15 12:21:11 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
arguments: &'c Option<ExtraArguments>,
|
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
|
|
|
vec![run_and_convert((
|
2023-04-15 00:26:16 +02:00
|
|
|
globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
CargoCommand::Book {
|
2023-03-02 22:02:19 +01:00
|
|
|
arguments: arguments.clone(),
|
2023-03-01 00:25:05 +01:00
|
|
|
},
|
|
|
|
false,
|
2023-04-15 13:45:58 +02:00
|
|
|
))]
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Run examples
|
|
|
|
///
|
|
|
|
/// Supports updating the expected output via the overwrite argument
|
2023-04-15 22:19:13 +02:00
|
|
|
pub fn qemu_run_examples<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
2023-03-01 00:25:05 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
examples: &'c [String],
|
2023-03-01 00:25:05 +01:00
|
|
|
overwrite: bool,
|
2023-04-15 13:45:58 +02:00
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 00:50:46 +02:00
|
|
|
let target = backend.to_target();
|
|
|
|
let features = Some(target.and_features(backend.to_rtic_feature()));
|
|
|
|
|
2023-04-15 22:40:25 +02:00
|
|
|
examples_iter(examples)
|
|
|
|
.flat_map(|example| {
|
2023-04-16 11:00:39 +02:00
|
|
|
let target = target.into();
|
2023-04-15 22:40:25 +02:00
|
|
|
let cmd_build = CargoCommand::ExampleBuild {
|
|
|
|
cargoarg: &None,
|
|
|
|
example,
|
|
|
|
target,
|
|
|
|
features: features.clone(),
|
|
|
|
mode: BuildMode::Release,
|
2023-04-15 23:22:00 +02:00
|
|
|
dir: Some(PathBuf::from("./rtic")),
|
2023-04-15 22:40:25 +02:00
|
|
|
};
|
2023-03-01 00:25:05 +01:00
|
|
|
|
2023-04-15 22:40:25 +02:00
|
|
|
let cmd_qemu = CargoCommand::Qemu {
|
|
|
|
cargoarg,
|
|
|
|
example,
|
|
|
|
target,
|
|
|
|
features: features.clone(),
|
|
|
|
mode: BuildMode::Release,
|
2023-04-15 23:22:00 +02:00
|
|
|
dir: Some(PathBuf::from("./rtic")),
|
2023-04-15 22:40:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#[cfg(not(feature = "rayon"))]
|
|
|
|
{
|
|
|
|
[cmd_build, cmd_qemu].into_iter()
|
|
|
|
}
|
2023-03-01 00:25:05 +01:00
|
|
|
|
2023-04-15 22:40:25 +02:00
|
|
|
#[cfg(feature = "rayon")]
|
|
|
|
{
|
|
|
|
[cmd_build, cmd_qemu].into_par_iter()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(|cmd| (globals, cmd, overwrite))
|
|
|
|
.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Check the binary sizes of examples
|
2023-04-15 13:45:58 +02:00
|
|
|
pub fn build_and_check_size<'c>(
|
2023-04-15 00:26:16 +02:00
|
|
|
globals: &Globals,
|
2023-04-15 13:45:58 +02:00
|
|
|
cargoarg: &'c Option<&'c str>,
|
2023-03-01 00:25:05 +01:00
|
|
|
backend: Backends,
|
2023-04-15 13:45:58 +02:00
|
|
|
examples: &'c [String],
|
|
|
|
arguments: &'c Option<ExtraArguments>,
|
|
|
|
) -> Vec<FinalRunResult<'c>> {
|
2023-04-15 00:50:46 +02:00
|
|
|
let target = backend.to_target();
|
|
|
|
let features = Some(target.and_features(backend.to_rtic_feature()));
|
|
|
|
|
2023-04-15 12:21:11 +02:00
|
|
|
let runner = examples_iter(examples).map(|example| {
|
2023-04-16 11:00:39 +02:00
|
|
|
let target = target.into();
|
|
|
|
|
2023-03-01 00:25:05 +01:00
|
|
|
// Make sure the requested example(s) are built
|
|
|
|
let cmd = CargoCommand::ExampleBuild {
|
|
|
|
cargoarg: &Some("--quiet"),
|
|
|
|
example,
|
2023-04-15 00:50:46 +02:00
|
|
|
target,
|
|
|
|
features: features.clone(),
|
2023-03-01 00:25:05 +01:00
|
|
|
mode: BuildMode::Release,
|
2023-04-15 23:22:00 +02:00
|
|
|
dir: Some(PathBuf::from("./rtic")),
|
2023-03-01 00:25:05 +01:00
|
|
|
};
|
2023-04-15 00:26:16 +02:00
|
|
|
if let Err(err) = command_parser(globals, &cmd, false) {
|
2023-03-01 00:25:05 +01:00
|
|
|
error!("{err}");
|
|
|
|
}
|
|
|
|
|
|
|
|
let cmd = CargoCommand::ExampleSize {
|
|
|
|
cargoarg,
|
|
|
|
example,
|
2023-04-16 11:00:39 +02:00
|
|
|
target,
|
2023-04-15 00:50:46 +02:00
|
|
|
features: features.clone(),
|
2023-03-01 00:25:05 +01:00
|
|
|
mode: BuildMode::Release,
|
2023-03-02 22:02:19 +01:00
|
|
|
arguments: arguments.clone(),
|
2023-04-15 23:22:00 +02:00
|
|
|
dir: Some(PathBuf::from("./rtic")),
|
2023-03-01 00:25:05 +01:00
|
|
|
};
|
2023-04-15 12:21:11 +02:00
|
|
|
(globals, cmd, false)
|
2023-03-01 00:25:05 +01:00
|
|
|
});
|
|
|
|
|
2023-04-15 12:21:11 +02:00
|
|
|
runner.run_and_coalesce()
|
2023-03-01 00:25:05 +01:00
|
|
|
}
|
2023-04-16 11:05:41 +02:00
|
|
|
|
|
|
|
pub fn run_command(command: &CargoCommand, stderr_mode: OutputMode) -> anyhow::Result<RunResult> {
|
|
|
|
log::info!("👟 {command}");
|
|
|
|
|
|
|
|
let mut process = Command::new(command.executable());
|
|
|
|
|
|
|
|
process
|
|
|
|
.args(command.args())
|
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.stderr(stderr_mode);
|
|
|
|
|
|
|
|
if let Some(dir) = command.chdir() {
|
|
|
|
process.current_dir(dir.canonicalize()?);
|
|
|
|
}
|
|
|
|
|
|
|
|
let result = process.output()?;
|
|
|
|
|
|
|
|
let exit_status = result.status;
|
|
|
|
let stderr = String::from_utf8(result.stderr).unwrap_or("Not displayable".into());
|
|
|
|
let stdout = String::from_utf8(result.stdout).unwrap_or("Not displayable".into());
|
|
|
|
|
|
|
|
if command.print_stdout_intermediate() && exit_status.success() {
|
|
|
|
log::info!("\n{}", stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
if exit_status.success() {
|
|
|
|
log::info!("✅ Success.")
|
|
|
|
} else {
|
|
|
|
log::error!("❌ Command failed. Run to completion for the summary.");
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(RunResult {
|
|
|
|
exit_status,
|
|
|
|
stdout,
|
|
|
|
stderr,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if `run` was successful.
|
|
|
|
/// returns Ok in case the run went as expected,
|
|
|
|
/// Err otherwise
|
|
|
|
pub fn run_successful(run: &RunResult, expected_output_file: &str) -> Result<(), TestRunError> {
|
|
|
|
let mut file_handle =
|
|
|
|
File::open(expected_output_file).map_err(|_| TestRunError::FileError {
|
|
|
|
file: expected_output_file.to_owned(),
|
|
|
|
})?;
|
|
|
|
let mut expected_output = String::new();
|
|
|
|
file_handle
|
|
|
|
.read_to_string(&mut expected_output)
|
|
|
|
.map_err(|_| TestRunError::FileError {
|
|
|
|
file: expected_output_file.to_owned(),
|
|
|
|
})?;
|
|
|
|
|
|
|
|
if expected_output != run.stdout {
|
|
|
|
Err(TestRunError::FileCmpError {
|
|
|
|
expected: expected_output.clone(),
|
|
|
|
got: run.stdout.clone(),
|
|
|
|
})
|
|
|
|
} else if !run.exit_status.success() {
|
|
|
|
Err(TestRunError::CommandError(run.clone()))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn handle_results(globals: &Globals, results: Vec<FinalRunResult>) -> Result<(), ()> {
|
|
|
|
let errors = results.iter().filter_map(|r| {
|
|
|
|
if let FinalRunResult::Failed(c, r) = r {
|
|
|
|
Some((c, &r.stdout, &r.stderr))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let successes = results.iter().filter_map(|r| {
|
|
|
|
if let FinalRunResult::Success(c, r) = r {
|
|
|
|
Some((c, &r.stdout, &r.stderr))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let command_errors = results.iter().filter_map(|r| {
|
|
|
|
if let FinalRunResult::CommandError(c, e) = r {
|
|
|
|
Some((c, e))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let log_stdout_stderr = |level: Level| {
|
|
|
|
move |(cmd, stdout, stderr): (&CargoCommand, &String, &String)| {
|
|
|
|
let cmd = cmd.as_cmd_string();
|
|
|
|
if !stdout.is_empty() && !stderr.is_empty() {
|
|
|
|
log::log!(level, "\n{cmd}\nStdout:\n{stdout}\nStderr:\n{stderr}");
|
|
|
|
} else if !stdout.is_empty() {
|
|
|
|
log::log!(level, "\n{cmd}\nStdout:\n{}", stdout.trim_end());
|
|
|
|
} else if !stderr.is_empty() {
|
|
|
|
log::log!(level, "\n{cmd}\nStderr:\n{}", stderr.trim_end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
successes.for_each(|(cmd, stdout, stderr)| {
|
|
|
|
if globals.verbose > 0 {
|
|
|
|
info!("✅ Success: {cmd}\n {}", cmd.as_cmd_string());
|
|
|
|
} else {
|
|
|
|
info!("✅ Success: {cmd}");
|
|
|
|
}
|
|
|
|
|
|
|
|
log_stdout_stderr(Level::Debug)((cmd, stdout, stderr));
|
|
|
|
});
|
|
|
|
|
|
|
|
errors.clone().for_each(|(cmd, stdout, stderr)| {
|
|
|
|
error!("❌ Failed: {cmd}\n {}", cmd.as_cmd_string());
|
|
|
|
log_stdout_stderr(Level::Error)((cmd, stdout, stderr));
|
|
|
|
});
|
|
|
|
|
|
|
|
command_errors
|
|
|
|
.clone()
|
|
|
|
.for_each(|(cmd, error)| error!("❌ Failed: {cmd}\n {}\n{error}", cmd.as_cmd_string()));
|
|
|
|
|
|
|
|
let ecount = errors.count() + command_errors.count();
|
|
|
|
if ecount != 0 {
|
|
|
|
log::error!("{ecount} commands failed.");
|
|
|
|
Err(())
|
|
|
|
} else {
|
|
|
|
info!("🚀🚀🚀 All tasks succeeded 🚀🚀🚀");
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|