#![cfg_attr(not(any(windows, unix)), no_std)]
#![cfg(any(windows, unix))]
#[macro_use]
extern crate log;
#[macro_use]
extern crate anyhow;
use clap::{Args, Parser, Subcommand};
use crate::{arceos::ArceOS, axvisor::Axvisor, starry::Starry};
pub mod arceos;
pub mod axvisor;
mod board;
mod clippy;
mod command_flow;
pub mod context;
mod download;
mod logging;
pub mod process;
pub mod starry;
mod test_qemu;
mod test_std;
#[derive(Parser)]
struct Cli {
#[command(subcommand)]
command: Commands,
}
#[derive(Args, Clone, Debug, PartialEq, Eq)]
pub(crate) struct ClippyArgs {
#[arg(long)]
pub(crate) all: bool,
#[arg(long = "package", value_name = "PACKAGE")]
pub(crate) packages: Vec<String>,
}
#[derive(Subcommand)]
enum Commands {
Test,
Clippy(ClippyArgs),
Board {
#[command(subcommand)]
command: board::Command,
},
Axvisor {
#[command(subcommand)]
command: axvisor::Command,
},
Arceos {
#[command(subcommand)]
command: arceos::Command,
},
Starry {
#[command(subcommand)]
command: starry::Command,
},
}
pub async fn run() -> anyhow::Result<()> {
let cli = Cli::parse();
run_root_cli(cli).await
}
async fn run_root_cli(cli: Cli) -> anyhow::Result<()> {
match cli.command {
Commands::Test => test_std::run_std_test_command(),
Commands::Clippy(args) => clippy::run_workspace_clippy_command(&args),
Commands::Board { command } => board::execute(command).await,
Commands::Axvisor { command } => Axvisor::new()?.execute(command).await,
Commands::Arceos { command } => ArceOS::new()?.execute(command).await,
Commands::Starry { command } => Starry::new()?.execute(command).await,
}
}