Files
asterinas/osdk/src/commands/mod.rs

89 lines
2.9 KiB
Rust

// SPDX-License-Identifier: MPL-2.0
//! This module contains subcommands of cargo-osdk.
mod build;
mod debug;
mod new;
mod profile;
mod run;
mod test;
mod util;
use util::DEFAULT_TARGET_RELPATH;
pub use self::{
build::execute_build_command, debug::execute_debug_command, new::execute_new_command,
profile::execute_profile_command, run::execute_run_command, test::execute_test_command,
};
use crate::{
arch::get_default_arch,
base_crate::{new_base_crate, BaseCrateType},
error_msg,
util::{get_current_crates, get_target_directory, DirGuard},
};
/// Execute the forwarded cargo command with arguments.
///
/// The `cfg_ktest` parameter controls whether `cfg(ktest)` is enabled.
pub fn execute_forwarded_command(subcommand: &str, args: &Vec<String>, cfg_ktest: bool) {
let mut cargo = util::cargo();
cargo.arg(subcommand).args(util::COMMON_CARGO_ARGS);
if !args.contains(&"--target".to_owned()) {
cargo.arg("--target").arg(get_default_arch().triple());
}
cargo.args(args);
let env_rustflags = std::env::var("RUSTFLAGS").unwrap_or_default();
let rustflags = env_rustflags + " --check-cfg cfg(ktest)";
let rustflags = if cfg_ktest {
rustflags + " --cfg ktest"
} else {
rustflags
};
cargo.env("RUSTFLAGS", rustflags);
let status = cargo.status().expect("Failed to execute cargo");
if !status.success() {
error_msg!("Command {:?} failed with status: {:?}", cargo, status);
std::process::exit(status.code().unwrap_or(1));
}
}
/// Execute the forwarded cargo command on each crate in the workspace.
///
/// It works like invoking [`execute_forwarded_command`] on each crate in the
/// workspace, but it creates a base crate that depends on the target crate and
/// executes the command on the base crate if a target crate is a kernel crate.
///
/// It invokes Cargo on the base crate only if the target crate is a kernel
/// crate. Otherwise, it behaves just like [`execute_forwarded_command`].
pub fn execute_forwarded_command_on_each_crate(
subcommand: &str,
args: &Vec<String>,
cfg_ktest: bool,
) {
let cargo_target_directory = get_target_directory();
let osdk_output_directory = cargo_target_directory.join(DEFAULT_TARGET_RELPATH);
let target_crates = get_current_crates();
for target in target_crates {
if !target.is_kernel_crate {
let _dir_guard = DirGuard::change_dir(target.path);
execute_forwarded_command(subcommand, args, cfg_ktest);
} else {
let base_crate_path = new_base_crate(
BaseCrateType::Other,
osdk_output_directory.join(&target.name),
&target.name,
target.path,
false,
);
let _dir_guard = DirGuard::change_dir(&base_crate_path);
execute_forwarded_command(subcommand, args, cfg_ktest);
}
}
}