2021-11-16 00:09:27 -06:00
|
|
|
#![allow(clippy::empty_loop)]
|
2021-11-28 14:50:14 -06:00
|
|
|
|
2022-01-16 19:42:11 -06:00
|
|
|
use alloc::{fmt, format};
|
|
|
|
use shadeable::rhai_test;
|
2022-01-16 14:55:58 -06:00
|
|
|
use vga::{colors::Color16, writers::GraphicsWriter};
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
use crate::{
|
2022-01-16 19:42:11 -06:00
|
|
|
logger,
|
2022-01-16 14:55:58 -06:00
|
|
|
relib::network::socket::SocketReturns,
|
2022-01-16 19:42:11 -06:00
|
|
|
unicode_utils,
|
2022-01-16 14:55:58 -06:00
|
|
|
vga_e::{self, VGAE},
|
|
|
|
};
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 19:42:11 -06:00
|
|
|
use log::*;
|
|
|
|
|
2021-12-24 03:30:27 -06:00
|
|
|
use {
|
|
|
|
crate::{
|
|
|
|
arch::{drivers::graphics::GraphicsBuffer, init, sloop},
|
|
|
|
driver_traits::graphics::Graphics,
|
2022-01-16 09:23:19 -06:00
|
|
|
experiments::{
|
|
|
|
info::master,
|
|
|
|
systeminfo::{KERNEL_VERSION, RELEASE_TYPE},
|
|
|
|
},
|
2022-01-16 14:55:58 -06:00
|
|
|
// log::LOG_STATE,
|
2021-12-24 03:30:27 -06:00
|
|
|
relib::math::rand::RAND_HANDLE,
|
2022-01-16 19:42:11 -06:00
|
|
|
relib::network::socket::Socket,
|
2021-12-24 03:30:27 -06:00
|
|
|
scheduler::{test_fn, Thread, ThreadList},
|
2022-01-16 09:23:19 -06:00
|
|
|
},
|
|
|
|
alloc::{
|
|
|
|
string::{String, ToString},
|
|
|
|
vec,
|
2021-12-24 03:30:27 -06:00
|
|
|
},
|
|
|
|
lazy_static::lazy_static,
|
2021-11-16 00:09:27 -06:00
|
|
|
};
|
2022-01-13 08:54:33 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
#[no_mangle]
|
|
|
|
#[allow(unconditional_recursion)]
|
|
|
|
pub extern "C" fn stack_overflow() -> u8 {
|
|
|
|
stack_overflow();
|
2021-11-23 05:54:57 -06:00
|
|
|
// meme number
|
2022-01-07 10:31:47 -06:00
|
|
|
69 // NOTE: Any specific reason for this number aside from memes?
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
lazy_static! {
|
2022-01-07 10:31:47 -06:00
|
|
|
pub static ref KEY_BUFFER: spin::Mutex<String> = spin::Mutex::new("".to_string());
|
2021-12-24 03:30:27 -06:00
|
|
|
pub static ref THREAD_LIST: spin::Mutex<ThreadList> = spin::Mutex::new(vec![]);
|
|
|
|
pub static ref TICK: spin::Mutex<u64> = spin::Mutex::new(0);
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
2021-11-23 06:01:42 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
#[no_mangle]
|
2021-11-23 06:01:42 -06:00
|
|
|
pub fn kernel_main() -> ! {
|
2021-11-16 00:09:27 -06:00
|
|
|
init::init();
|
2022-01-07 10:31:47 -06:00
|
|
|
|
2022-01-16 19:42:11 -06:00
|
|
|
log::set_max_level(LevelFilter::Info);
|
|
|
|
|
2022-01-13 08:54:33 -06:00
|
|
|
{
|
|
|
|
let mut a_thread = Thread::new();
|
2021-12-24 13:00:20 -06:00
|
|
|
|
2022-01-13 08:54:33 -06:00
|
|
|
a_thread.new_task(test_fn);
|
|
|
|
a_thread.new_task(test_fn);
|
|
|
|
THREAD_LIST.lock().push(a_thread);
|
|
|
|
GraphicsBuffer::draw();
|
|
|
|
GraphicsBuffer::hide_cursor();
|
|
|
|
}
|
2021-12-24 03:30:27 -06:00
|
|
|
|
2021-12-24 08:04:07 -06:00
|
|
|
crate::wasm::evaluate();
|
2022-01-02 04:04:36 -06:00
|
|
|
{
|
2022-01-13 08:54:33 -06:00
|
|
|
info!("{} v{}", RELEASE_TYPE, KERNEL_VERSION);
|
|
|
|
info!(
|
|
|
|
"Brand String: {:?}",
|
|
|
|
master().unwrap().brand_string().unwrap()
|
|
|
|
);
|
|
|
|
if false {
|
|
|
|
println!("$PINK$Hi$RED$ from$GREEN$ able!$RESET$");
|
|
|
|
println!("$RED$hi$RESET$");
|
|
|
|
}
|
2022-01-02 04:04:36 -06:00
|
|
|
}
|
2022-01-16 14:55:58 -06:00
|
|
|
|
2022-01-16 09:23:19 -06:00
|
|
|
{
|
|
|
|
use crate::relib::network::socket::SimpleSock;
|
2022-01-16 14:55:58 -06:00
|
|
|
|
2022-01-16 09:23:19 -06:00
|
|
|
let mut xyz = SimpleSock::new();
|
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
xyz.peek();
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
xyz.write(vec![0, 1, 2, 3]);
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
let x = "simple 🧦".to_string().into_bytes();
|
|
|
|
xyz.write(x);
|
|
|
|
|
|
|
|
info!("{:?}", &xyz.read(4).unwrap());
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
println!("{:?}", &xyz.peek().unwrap());
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
match &xyz.peek() {
|
|
|
|
SocketReturns::ReadOk(strr) => {
|
|
|
|
let out = String::from_utf8_lossy(strr);
|
|
|
|
|
|
|
|
info!("{}", out);
|
|
|
|
}
|
|
|
|
SocketReturns::ReadIndexOutOfBounds => todo!(),
|
|
|
|
SocketReturns::WriteOk => todo!(),
|
|
|
|
}
|
2022-01-16 09:23:19 -06:00
|
|
|
}
|
|
|
|
|
2022-01-16 14:55:58 -06:00
|
|
|
println!("$GREEN$able$RESET$@$LIGHTBLUE$stAble$ $RED$->$RESET$");
|
2022-01-16 09:23:19 -06:00
|
|
|
|
2022-01-16 19:42:11 -06:00
|
|
|
if false {
|
|
|
|
VGAE.lock().clear_screen(Color16::Black);
|
2022-01-07 10:31:47 -06:00
|
|
|
|
2022-01-16 19:42:11 -06:00
|
|
|
let xyz = format!("\u{e100}ableOS");
|
|
|
|
|
|
|
|
for x in xyz.chars().enumerate() {
|
|
|
|
vga_e::draw_char(x.1, x.0);
|
|
|
|
}
|
2022-01-16 14:55:58 -06:00
|
|
|
}
|
2022-01-16 19:42:11 -06:00
|
|
|
for y in 0..480 {
|
|
|
|
for x in 0..640 {
|
|
|
|
// info!("{x}");
|
|
|
|
VGAE.lock().set_pixel(x, y, Color16::Blue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = rhai_test();
|
|
|
|
|
|
|
|
println!("hi");
|
2022-01-16 14:55:58 -06:00
|
|
|
// vga_e::test_it_fucko();
|
2021-11-16 00:09:27 -06:00
|
|
|
// stack_overflow();
|
2022-01-13 08:54:33 -06:00
|
|
|
|
2021-11-23 05:54:57 -06:00
|
|
|
sloop()
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
2021-11-23 08:49:41 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
/// called by arch specific timers to tick up all kernel related functions
|
|
|
|
pub fn tick() {
|
|
|
|
let mut data = TICK.lock();
|
|
|
|
*data += 1;
|
|
|
|
RAND_HANDLE.lock().seed_entropy_timer(*data);
|
2022-01-13 08:54:33 -06:00
|
|
|
|
|
|
|
// println!("{}", *data);
|
|
|
|
crate::kernel_state::KERNEL_STATE.lock().update_state();
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
2021-11-23 08:49:41 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
pub fn key_entropy(key: u8) {
|
|
|
|
RAND_HANDLE.lock().seed_entropy_keyboard(key);
|
|
|
|
}
|