-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathinput.rs
174 lines (161 loc) · 5.38 KB
/
input.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// SPDX-License-Identifier: MIT OR Apache-2.0
use crate::proto::unsafe_protocol;
use crate::{Char16, Event, Result, Status, StatusExt};
use core::mem::MaybeUninit;
use uefi_raw::protocol::console::{InputKey, SimpleTextInputProtocol};
/// Simple Text Input [`Protocol`]. Interface for text-based input devices.
///
/// [`Protocol`]: uefi::proto::Protocol
#[derive(Debug)]
#[repr(transparent)]
#[unsafe_protocol(SimpleTextInputProtocol::GUID)]
pub struct Input(SimpleTextInputProtocol);
impl Input {
/// Resets the input device hardware.
///
/// The `extended_verification` parameter is used to request that UEFI
/// performs an extended check and reset of the input device.
///
/// # Errors
///
/// - `DeviceError` if the device is malfunctioning and cannot be reset.
pub fn reset(&mut self, extended_verification: bool) -> Result {
unsafe { (self.0.reset)(&mut self.0, extended_verification.into()) }.to_result()
}
/// Reads the next keystroke from the input device, if any.
///
/// Use [`wait_for_key_event`] with the [`boot::wait_for_event`]
/// interface in order to wait for a key to be pressed.
///
/// [`boot::wait_for_event`]: crate::boot::wait_for_event
/// [`wait_for_key_event`]: Self::wait_for_key_event
///
/// # Errors
///
/// - [`Status::DEVICE_ERROR`] if there was an issue with the input device
///
/// # Examples
///
/// ```
/// use log::info;
/// use uefi::proto::console::text::{Input, Key, ScanCode};
/// use uefi::{boot, Char16, Result, ResultExt};
///
/// fn read_keyboard_events(input: &mut Input) -> Result {
/// loop {
/// // Pause until a keyboard event occurs.
/// let mut events = unsafe { [input.wait_for_key_event().unwrap()] };
/// boot::wait_for_event(&mut events).discard_errdata()?;
///
/// let u_key = Char16::try_from('u').unwrap();
/// match input.read_key()? {
/// // Example of handling a printable key: print a message when
/// // the 'u' key is pressed.
/// Some(Key::Printable(key)) if key == u_key => {
/// info!("the 'u' key was pressed");
/// }
///
/// // Example of handling a special key: exit the loop when the
/// // escape key is pressed.
/// Some(Key::Special(ScanCode::ESCAPE)) => {
/// break;
/// }
/// _ => {}
/// }
/// }
///
/// Ok(())
/// }
/// ```
pub fn read_key(&mut self) -> Result<Option<Key>> {
let mut key = MaybeUninit::<InputKey>::uninit();
match unsafe { (self.0.read_key_stroke)(&mut self.0, key.as_mut_ptr()) } {
Status::NOT_READY => Ok(None),
other => other.to_result_with_val(|| Some(unsafe { key.assume_init() }.into())),
}
}
/// Event to be used with [`boot::wait_for_event`] in order to wait
/// for a key to be available
///
/// [`boot::wait_for_event`]: crate::boot::wait_for_event
#[must_use]
pub fn wait_for_key_event(&self) -> Option<Event> {
unsafe { Event::from_ptr(self.0.wait_for_key) }
}
}
/// A key read from the console (high-level version)
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum Key {
/// The key is associated with a printable Unicode character
Printable(Char16),
/// The key is special (arrow, function, multimedia...)
Special(ScanCode),
}
impl From<InputKey> for Key {
fn from(k: InputKey) -> Self {
if k.scan_code == ScanCode::NULL.0 {
Self::Printable(Char16::try_from(k.unicode_char).unwrap())
} else {
Self::Special(ScanCode(k.scan_code))
}
}
}
newtype_enum! {
/// A keyboard scan code
///
/// Codes 0x8000 -> 0xFFFF are reserved for future OEM extensibility, therefore
/// this C enum is _not_ safe to model as a Rust enum (where the compiler must
/// know about all variants at compile time).
pub enum ScanCode: u16 => #[allow(missing_docs)] {
/// Null scan code, indicates that the Unicode character should be used.
NULL = 0x00,
/// Move cursor up 1 row.
UP = 0x01,
/// Move cursor down 1 row.
DOWN = 0x02,
/// Move cursor right 1 column.
RIGHT = 0x03,
/// Move cursor left 1 column.
LEFT = 0x04,
HOME = 0x05,
END = 0x06,
INSERT = 0x07,
DELETE = 0x08,
PAGE_UP = 0x09,
PAGE_DOWN = 0x0A,
FUNCTION_1 = 0x0B,
FUNCTION_2 = 0x0C,
FUNCTION_3 = 0x0D,
FUNCTION_4 = 0x0E,
FUNCTION_5 = 0x0F,
FUNCTION_6 = 0x10,
FUNCTION_7 = 0x11,
FUNCTION_8 = 0x12,
FUNCTION_9 = 0x13,
FUNCTION_10 = 0x14,
FUNCTION_11 = 0x15,
FUNCTION_12 = 0x16,
ESCAPE = 0x17,
FUNCTION_13 = 0x68,
FUNCTION_14 = 0x69,
FUNCTION_15 = 0x6A,
FUNCTION_16 = 0x6B,
FUNCTION_17 = 0x6C,
FUNCTION_18 = 0x6D,
FUNCTION_19 = 0x6E,
FUNCTION_20 = 0x6F,
FUNCTION_21 = 0x70,
FUNCTION_22 = 0x71,
FUNCTION_23 = 0x72,
FUNCTION_24 = 0x73,
MUTE = 0x7F,
VOLUME_UP = 0x80,
VOLUME_DOWN = 0x81,
BRIGHTNESS_UP = 0x100,
BRIGHTNESS_DOWN = 0x101,
SUSPEND = 0x102,
HIBERNATE = 0x103,
TOGGLE_DISPLAY = 0x104,
RECOVERY = 0x105,
EJECT = 0x106,
}}