ableos/kernel/src/kmain.rs

55 lines
1.4 KiB
Rust
Raw Normal View History

2023-03-30 21:43:04 +00:00
//! AbleOS Kernel Entrypoint
2023-04-07 21:44:33 +00:00
// use std::collections::HashMap;
2023-04-05 17:29:20 +00:00
use log::{info, trace};
2023-04-07 21:44:33 +00:00
use spin::{Lazy, Mutex};
2023-04-05 17:29:20 +00:00
2023-04-07 21:44:33 +00:00
use crate::arch::{hardware_random_u64, sloop};
use crate::handle::Handle;
2023-04-05 17:29:20 +00:00
use crate::{interp, task};
use crate::alloc::string::ToString;
2023-03-30 21:43:04 +00:00
pub fn kmain(cmdline: &str, bootstrap: Option<&'static [u8]>) -> ! {
log::debug!("Entered kmain");
2023-04-05 17:29:20 +00:00
let mut cmdline = cmdline.to_string();
cmdline.pop();
cmdline.remove(0);
let kcmd = clparse::Arguments::parse(cmdline.to_string()).unwrap();
log::info!("Cmdline: {kcmd:?}");
2023-04-07 21:44:33 +00:00
if kcmd.arguments.get("baka") == Some(&"true".to_string()) {
2023-03-30 21:43:04 +00:00
let _ = crate::arch::log(format_args!(include_str!("../data/⑨. バカ")));
}
2023-04-07 21:44:33 +00:00
if kcmd.arguments.get("foobles") == Some(&"true".to_string()) {
let _ = crate::arch::log(format_args!("foobles\n"));
}
2023-04-05 17:29:20 +00:00
let bootstrap = bootstrap/*.expect("no bootstrap found")*/;
match bootstrap {
Some(bootstrap_mod) => {}
None => {
info!("No bootstrap module loaded.")
}
}
2023-04-07 21:44:33 +00:00
use xml::XMLElement;
let kcmd = XMLElement::new("cmdline");
let hnd = Handle::new();
OBJECTS.lock().insert(hnd, kcmd);
2023-04-05 17:29:20 +00:00
let abc = interp::wasm();
2023-03-30 21:43:04 +00:00
2023-04-05 17:29:20 +00:00
trace!("{:?}", abc);
2023-03-30 21:43:04 +00:00
crate::arch::sloop()
}
2023-04-07 21:44:33 +00:00
pub const OBJECTS: Lazy<Mutex<HashMap<Handle, xml::XMLElement>>> = Lazy::new(|| {
let mut obj: HashMap<Handle, xml::XMLElement> = HashMap::new();
Mutex::new(obj)
});
use hashbrown::HashMap;