mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
49 lines
1.3 KiB
Rust
49 lines
1.3 KiB
Rust
use crate::{interrupts, print};
|
|
use core::future::Future;
|
|
use core::{
|
|
pin::Pin,
|
|
task::{Context, Poll},
|
|
};
|
|
use pc_keyboard::{layouts, DecodedKey, Keyboard, ScancodeSet1};
|
|
|
|
fn next_scancode() -> impl Future<Output = u8> {
|
|
NextScancode
|
|
}
|
|
|
|
struct NextScancode;
|
|
|
|
impl Future for NextScancode {
|
|
type Output = u8;
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<u8> {
|
|
let scancodes = interrupts::SCANCODE_QUEUE
|
|
.try_get()
|
|
.expect("scancode queue not initialized");
|
|
// fast path
|
|
if let Ok(scancode) = scancodes.pop() {
|
|
return Poll::Ready(scancode);
|
|
}
|
|
|
|
interrupts::KEYBOARD_INTERRUPT_WAKER.register(&cx.waker());
|
|
match scancodes.pop() {
|
|
Ok(scancode) => Poll::Ready(scancode),
|
|
Err(crossbeam_queue::PopError) => Poll::Pending,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub async fn print_keypresses() {
|
|
let mut keyboard = Keyboard::new(layouts::Us104Key, ScancodeSet1);
|
|
|
|
loop {
|
|
if let Ok(Some(key_event)) = keyboard.add_byte(next_scancode().await) {
|
|
if let Some(key) = keyboard.process_keyevent(key_event) {
|
|
match key {
|
|
DecodedKey::Unicode(character) => print!("{}", character),
|
|
DecodedKey::RawKey(key) => print!("{:?}", key),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|