rtic/xtask/src/cargo_commands.rs

391 lines
11 KiB
Rust
Raw Normal View History

use std::path::PathBuf;
2023-03-01 00:25:05 +01:00
use crate::{
argument_parsing::{Backends, BuildOrCheck, ExtraArguments, Globals, PackageOpt, TestMetadata},
2023-03-01 00:25:05 +01:00
command::{BuildMode, CargoCommand},
command_parser, RunResult,
2023-03-01 00:25:05 +01:00
};
use log::error;
#[cfg(feature = "rayon")]
2023-03-01 00:25:05 +01:00
use rayon::prelude::*;
use iters::*;
#[derive(Debug)]
pub enum FinalRunResult<'c> {
Success(CargoCommand<'c>, RunResult),
Failed(CargoCommand<'c>, RunResult),
CommandError(CargoCommand<'c>, anyhow::Error),
}
fn run_and_convert<'a>(
(global, command, overwrite): (&Globals, CargoCommand<'a>, bool),
) -> FinalRunResult<'a> {
// Run the command
let result = command_parser(global, &command, overwrite);
let output = match result {
// 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
Err(e) => FinalRunResult::CommandError(command, e),
};
log::trace!("Final result: {output:?}");
output
}
pub trait CoalescingRunner<'c> {
/// Run all the commands in this iterator, and coalesce the results into
/// one error (if any individual commands failed)
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>>;
}
#[cfg(not(feature = "rayon"))]
mod iters {
use super::*;
pub fn examples_iter(examples: &[String]) -> impl Iterator<Item = &String> {
examples.into_iter()
}
impl<'g, 'c, I> CoalescingRunner<'c> for I
where
I: Iterator<Item = (&'g Globals, CargoCommand<'c>, bool)>,
{
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>> {
self.map(run_and_convert).collect()
}
}
}
#[cfg(feature = "rayon")]
mod iters {
use super::*;
pub fn examples_iter(examples: &[String]) -> impl ParallelIterator<Item = &String> {
examples.into_par_iter()
}
impl<'g, 'c, I> CoalescingRunner<'c> for I
where
I: ParallelIterator<Item = (&'g Globals, CargoCommand<'c>, bool)>,
{
fn run_and_coalesce(self) -> Vec<FinalRunResult<'c>> {
self.map(run_and_convert).collect()
}
}
}
2023-03-01 00:25:05 +01:00
/// Cargo command to either build or check
pub fn cargo<'c>(
globals: &Globals,
2023-03-01 00:25:05 +01:00
operation: BuildOrCheck,
cargoarg: &'c Option<&'c str>,
package: &'c PackageOpt,
2023-03-01 00:25:05 +01:00
backend: Backends,
) -> 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 14:28:24 +02:00
#[cfg(not(feature = "rayon"))]
{
features.into_iter().map(move |f| (package, target, f))
}
})
.map(move |(package, target, features)| {
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,
},
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,
},
};
(globals, command, false)
});
2023-03-01 00:25:05 +01:00
runner.run_and_coalesce()
2023-03-01 00:25:05 +01: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 {
BuildOrCheck::Check => CargoCommand::CheckInDir {
mode: BuildMode::Release,
dir: path.into(),
},
BuildOrCheck::Build => CargoCommand::BuildInDir {
mode: BuildMode::Release,
dir: path.into(),
},
};
(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
pub fn cargo_example<'c>(
globals: &Globals,
2023-03-01 00:25:05 +01:00
operation: BuildOrCheck,
cargoarg: &'c Option<&'c str>,
2023-03-01 00:25:05 +01:00
backend: Backends,
examples: &'c [String],
) -> Vec<FinalRunResult<'c>> {
let runner = examples_iter(examples).map(|example| {
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,
target: backend.to_target(),
features,
mode: BuildMode::Release,
},
BuildOrCheck::Build => CargoCommand::ExampleBuild {
cargoarg,
example,
target: backend.to_target(),
features,
mode: BuildMode::Release,
dir: Some(PathBuf::from("./rtic")),
2023-03-01 00:25:05 +01:00
},
};
(globals, command, false)
2023-03-01 00:25:05 +01:00
});
runner.run_and_coalesce()
2023-03-01 00:25:05 +01:00
}
/// Run cargo clippy on selected package
pub fn cargo_clippy<'c>(
globals: &Globals,
cargoarg: &'c Option<&'c str>,
package: &'c PackageOpt,
2023-03-01 00:25:05 +01:00
backend: Backends,
) -> 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 14:28:24 +02:00
#[cfg(not(feature = "rayon"))]
{
features.into_iter().map(move |f| (package, target, f))
}
})
.map(move |(package, target, features)| {
(
globals,
CargoCommand::Clippy {
cargoarg,
2023-04-16 09:44:30 +02:00
package: Some(package.name()),
2023-04-15 14:28:24 +02:00
target,
features,
},
false,
)
});
runner.run_and_coalesce()
2023-03-01 00:25:05 +01:00
}
/// Run cargo fmt on selected package
pub fn cargo_format<'c>(
globals: &Globals,
cargoarg: &'c Option<&'c str>,
package: &'c PackageOpt,
2023-03-01 00:25:05 +01:00
check_only: bool,
) -> Vec<FinalRunResult<'c>> {
let runner = package.packages().map(|p| {
(
globals,
CargoCommand::Format {
cargoarg,
2023-04-16 09:44:30 +02:00
package: Some(p.name()),
check_only,
},
false,
)
});
runner.run_and_coalesce()
2023-03-01 00:25:05 +01:00
}
/// Run cargo doc
pub fn cargo_doc<'c>(
globals: &Globals,
cargoarg: &'c Option<&'c str>,
backend: Backends,
arguments: &'c Option<ExtraArguments>,
) -> Vec<FinalRunResult<'c>> {
let features = Some(backend.to_target().and_features(backend.to_rtic_feature()));
2023-03-01 00:25:05 +01: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
}
/// 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
pub fn cargo_test<'c>(
globals: &Globals,
package: &'c PackageOpt,
backend: Backends,
) -> Vec<FinalRunResult<'c>> {
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
pub fn cargo_book<'c>(
globals: &Globals,
arguments: &'c Option<ExtraArguments>,
) -> Vec<FinalRunResult<'c>> {
vec![run_and_convert((
globals,
CargoCommand::Book {
arguments: arguments.clone(),
2023-03-01 00:25:05 +01:00
},
false,
))]
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>(
globals: &Globals,
cargoarg: &'c Option<&'c str>,
2023-03-01 00:25:05 +01:00
backend: Backends,
examples: &'c [String],
2023-03-01 00:25:05 +01:00
overwrite: bool,
) -> Vec<FinalRunResult<'c>> {
let target = backend.to_target();
let features = Some(target.and_features(backend.to_rtic_feature()));
examples_iter(examples)
.flat_map(|example| {
let cmd_build = CargoCommand::ExampleBuild {
cargoarg: &None,
example,
target,
features: features.clone(),
mode: BuildMode::Release,
dir: Some(PathBuf::from("./rtic")),
};
2023-03-01 00:25:05 +01:00
let cmd_qemu = CargoCommand::Qemu {
cargoarg,
example,
target,
features: features.clone(),
mode: BuildMode::Release,
dir: Some(PathBuf::from("./rtic")),
};
#[cfg(not(feature = "rayon"))]
{
[cmd_build, cmd_qemu].into_iter()
}
2023-03-01 00:25:05 +01: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
pub fn build_and_check_size<'c>(
globals: &Globals,
cargoarg: &'c Option<&'c str>,
2023-03-01 00:25:05 +01:00
backend: Backends,
examples: &'c [String],
arguments: &'c Option<ExtraArguments>,
) -> Vec<FinalRunResult<'c>> {
let target = backend.to_target();
let features = Some(target.and_features(backend.to_rtic_feature()));
let runner = examples_iter(examples).map(|example| {
2023-03-01 00:25:05 +01:00
// Make sure the requested example(s) are built
let cmd = CargoCommand::ExampleBuild {
cargoarg: &Some("--quiet"),
example,
target,
features: features.clone(),
2023-03-01 00:25:05 +01:00
mode: BuildMode::Release,
dir: Some(PathBuf::from("./rtic")),
2023-03-01 00:25:05 +01: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,
target: backend.to_target(),
features: features.clone(),
2023-03-01 00:25:05 +01:00
mode: BuildMode::Release,
arguments: arguments.clone(),
dir: Some(PathBuf::from("./rtic")),
2023-03-01 00:25:05 +01:00
};
(globals, cmd, false)
2023-03-01 00:25:05 +01:00
});
runner.run_and_coalesce()
2023-03-01 00:25:05 +01:00
}