forked from AbleOS/ableos
117 lines
3.2 KiB
Rust
117 lines
3.2 KiB
Rust
use std::io::Write;
|
|
pub mod idl;
|
|
|
|
pub enum Options {
|
|
Build,
|
|
Clean,
|
|
New,
|
|
Run,
|
|
}
|
|
#[derive(PartialEq)]
|
|
pub enum DevelopmentType {
|
|
Program,
|
|
Library,
|
|
IDL,
|
|
}
|
|
|
|
fn main() {
|
|
let mut args: Vec<String> = std::env::args().collect();
|
|
args.remove(0);
|
|
args.reverse();
|
|
|
|
let binding = args.pop().unwrap_or("help".to_string());
|
|
let subcommand = binding.as_str();
|
|
|
|
match subcommand {
|
|
"build" => {
|
|
let name = &args[1];
|
|
build(name.to_string())
|
|
}
|
|
"new" => {
|
|
let binding = args.pop().unwrap();
|
|
let dev_type = binding.as_str();
|
|
let name = args.pop().unwrap();
|
|
use DevelopmentType::*;
|
|
match dev_type {
|
|
"lib" | "library" => new(Library, name),
|
|
"prog" | "program" => new(Program, name),
|
|
"idl" => {
|
|
new(IDL, name);
|
|
// idl::main();
|
|
panic!("IDL is not finalized yet.")
|
|
}
|
|
_ => {}
|
|
};
|
|
}
|
|
"run" => run(),
|
|
"help" => help(),
|
|
_ => {
|
|
println!("Error");
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn new(development_type: DevelopmentType, name: String) {
|
|
let (folder_hierarchy, entry_name) = match development_type {
|
|
DevelopmentType::Program => ("programs", "main.hb"),
|
|
DevelopmentType::Library => ("libraries", "lib.hb"),
|
|
DevelopmentType::IDL => ("idl", "protocol.aidl"),
|
|
};
|
|
let project_folder_path_string = format!("sysdata/{folder_hierarchy}/{name}");
|
|
|
|
if std::path::Path::new(&project_folder_path_string).exists() {
|
|
panic!("Project already exists.")
|
|
}
|
|
|
|
std::fs::create_dir(project_folder_path_string.clone()).unwrap();
|
|
let readme_path_string = format!("{}/README.md", project_folder_path_string);
|
|
let mut readme_file = std::fs::File::create(readme_path_string.clone()).unwrap();
|
|
|
|
let readme_contents = format!("# {}", name);
|
|
readme_file.write_all(readme_contents.as_bytes()).unwrap();
|
|
|
|
let src_folder_path_string = format!("{}/src", project_folder_path_string);
|
|
std::fs::create_dir(src_folder_path_string.clone()).unwrap();
|
|
|
|
let full_path_string = format!("{src_folder_path_string}/{entry_name}");
|
|
let mut file = std::fs::File::create(full_path_string.clone()).unwrap();
|
|
let file_contents = match development_type {
|
|
DevelopmentType::Program => "main := fn(): int {
|
|
return 0
|
|
}"
|
|
.to_string(),
|
|
DevelopmentType::Library => "".to_string(),
|
|
DevelopmentType::IDL => format!(
|
|
"protocol {} {{
|
|
}}",
|
|
name
|
|
)
|
|
.to_owned(),
|
|
}
|
|
.to_string();
|
|
file.write_all(file_contents.as_bytes()).unwrap();
|
|
|
|
println!("New project created.");
|
|
if development_type == DevelopmentType::Program {
|
|
println!("You should add your project into the ableOS system configuration in sysdata/system_config.toml")
|
|
}
|
|
}
|
|
|
|
fn run() {
|
|
println!("Running is not supported on a non-ableOS platform");
|
|
}
|
|
|
|
fn build(name: String) {
|
|
println!("building {}", name);
|
|
}
|
|
|
|
fn help() {
|
|
println!(
|
|
"==========
|
|
= Help =
|
|
==========
|
|
Subcommands
|
|
- new Usage: `cargo dev new library name` or `cargo dev new program name`"
|
|
)
|
|
}
|