2022-08-03 02:11:51 -05:00
|
|
|
/*
|
2022-08-05 06:22:23 -05:00
|
|
|
* Copyright (c) 2022, Umut İnan Erdoğan <umutinanerdogan@pm.me>
|
|
|
|
* Copyright (c) 2022, able <abl3theabove@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
2022-08-03 02:11:51 -05:00
|
|
|
|
|
|
|
use std::{fs, process::Command};
|
|
|
|
|
|
|
|
use colored::*;
|
|
|
|
|
|
|
|
struct Options {
|
2022-08-07 00:24:11 -05:00
|
|
|
pub subcommand: Subcommand,
|
|
|
|
pub arguments: Vec<String>,
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
enum Subcommand {
|
2022-08-07 00:24:11 -05:00
|
|
|
Doc,
|
|
|
|
Help,
|
|
|
|
Run,
|
|
|
|
Empty,
|
|
|
|
/// Run all tests for all architectures
|
|
|
|
Test,
|
|
|
|
Unknown(String),
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Subcommand {
|
2022-08-07 00:24:11 -05:00
|
|
|
fn from_str<S: AsRef<str>>(str: S) -> Subcommand {
|
|
|
|
match str.as_ref() {
|
|
|
|
"doc" => Subcommand::Doc,
|
|
|
|
"help" => Subcommand::Help,
|
2022-08-07 16:42:23 -05:00
|
|
|
"run" | "r" => Subcommand::Run,
|
|
|
|
"test" | "t" => Subcommand::Test,
|
2022-08-07 00:24:11 -05:00
|
|
|
"" => Subcommand::Empty,
|
|
|
|
unknown => Subcommand::Unknown(unknown.to_string()),
|
|
|
|
}
|
|
|
|
}
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
enum MachineType {
|
2022-08-07 00:24:11 -05:00
|
|
|
X86_64,
|
|
|
|
RiscV64,
|
|
|
|
AArch64,
|
|
|
|
Unknown(String),
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-08-07 00:24:11 -05:00
|
|
|
let options = options();
|
|
|
|
|
|
|
|
match options.subcommand {
|
|
|
|
Subcommand::Test => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["test", "--target=json_targets/x86_64-ableos.json"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// panic!("Test Infrastructure missing");
|
|
|
|
}
|
|
|
|
Subcommand::Doc => {
|
|
|
|
let machine_text = options.arguments.get(0).cloned().unwrap_or_default();
|
|
|
|
|
|
|
|
match machine(machine_text) {
|
|
|
|
MachineType::X86_64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["doc", "--open"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
2022-08-07 00:24:11 -05:00
|
|
|
MachineType::RiscV64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["doc", "--open", "--target=riscv64gc-unknown-none-elf"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
2022-08-07 00:24:11 -05:00
|
|
|
MachineType::AArch64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["doc", "--open", "--target=json_targets/aarch64-ableos.json"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
MachineType::Unknown(unknown) => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: unknown machine type `{}`",
|
|
|
|
"error".red().bold(),
|
|
|
|
unknown.bold(),
|
|
|
|
);
|
|
|
|
eprintln!("expected one of x86_64, riscv64 or aarch64");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Subcommand::Help => help(),
|
|
|
|
Subcommand::Run => {
|
|
|
|
let machine_text = options.arguments.get(0).cloned().unwrap_or_default();
|
|
|
|
let debug = options.arguments.get(1).cloned().unwrap_or_default();
|
|
|
|
let debug = matches!(debug.as_str(), "--debug" | "--dbg" | "-d");
|
|
|
|
|
|
|
|
match machine(machine_text) {
|
|
|
|
MachineType::X86_64 if debug => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["run", "--", "-S", "-gdb", "tcp:9000"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
MachineType::X86_64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["run", "--release"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
MachineType::RiscV64 if debug => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: debug is not implemented for riscv64",
|
|
|
|
"error".red().bold()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
MachineType::RiscV64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args(["build", "--release", "--target=riscv64gc-unknown-none-elf"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
Command::new("qemu-system-riscv64")
|
|
|
|
.args(["-machine", "virt"])
|
|
|
|
.args(["-cpu", "rv64"])
|
|
|
|
.args(["-smp", "8"])
|
|
|
|
.args(["-m", "128M"])
|
|
|
|
.arg("-bios")
|
|
|
|
.arg("src/arch/riscv/firmwear/opensbi-riscv64-generic-fw_jump.bin")
|
|
|
|
.arg("-kernel")
|
|
|
|
.arg("target/riscv64gc-unknown-none-elf/release/ableos")
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
MachineType::AArch64 if debug => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: debug is not implemented for aarch64",
|
|
|
|
"error".red().bold()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
MachineType::AArch64 => {
|
|
|
|
Command::new("cargo")
|
|
|
|
.args([
|
|
|
|
"build",
|
|
|
|
"--release",
|
|
|
|
"--target=json_targets/aarch64-ableos.json",
|
|
|
|
])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
Command::new("qemu-system-aarch64")
|
|
|
|
.args(["-machine", "virt"])
|
|
|
|
.args(["-m", "1024M"])
|
|
|
|
.args(["-cpu", "cortex-a53"])
|
|
|
|
.args(["-kernel", "target/aarch64-ableos/release/ableos"])
|
|
|
|
.args(["-device", "virtio-keyboard"])
|
|
|
|
.current_dir(fs::canonicalize("./ableos").unwrap())
|
|
|
|
.status()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
MachineType::Unknown(unknown) => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: unknown machine type `{}`",
|
|
|
|
"error".red().bold(),
|
|
|
|
unknown.bold(),
|
|
|
|
);
|
|
|
|
eprintln!("expected one of x86_64, riscv64 or aarch64");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Subcommand::Empty => {
|
|
|
|
eprintln!("{}: no subcommand passed", "error".red().bold());
|
|
|
|
help();
|
|
|
|
}
|
|
|
|
Subcommand::Unknown(unknown) => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: unknown subcommand `{}`",
|
|
|
|
"error".red().bold(),
|
|
|
|
unknown.bold()
|
|
|
|
);
|
|
|
|
help();
|
|
|
|
}
|
|
|
|
}
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn options() -> Options {
|
2022-08-07 00:24:11 -05:00
|
|
|
let subcommand = std::env::args().nth(1).unwrap_or_default();
|
|
|
|
let arguments = std::env::args().skip(2).collect();
|
2022-08-03 02:11:51 -05:00
|
|
|
|
2022-08-07 00:24:11 -05:00
|
|
|
Options {
|
|
|
|
subcommand: Subcommand::from_str(subcommand),
|
|
|
|
arguments,
|
|
|
|
}
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn machine<S: AsRef<str>>(text: S) -> MachineType {
|
2022-08-07 00:24:11 -05:00
|
|
|
match text.as_ref() {
|
|
|
|
"x86" | "x86_64" => MachineType::X86_64,
|
|
|
|
"riscv" | "riscv64" => MachineType::RiscV64,
|
|
|
|
"arm" | "arm64" | "aarch64" => MachineType::AArch64,
|
|
|
|
"" => {
|
|
|
|
eprintln!(
|
|
|
|
"{}: no machine type passed, defaulting to x86_64",
|
|
|
|
"warning".yellow().bold()
|
|
|
|
);
|
|
|
|
MachineType::X86_64
|
|
|
|
}
|
|
|
|
unknown => MachineType::Unknown(unknown.to_string()),
|
|
|
|
}
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn help() {
|
2022-08-07 00:24:11 -05:00
|
|
|
todo!("`help`")
|
2022-08-03 02:11:51 -05:00
|
|
|
}
|