我想将ReadConsoleInputW
Windows控制台方法包装到Read
特征中,以便我可以使用chars()
方法,但我还需要知道应用了哪些关键修饰符(< kbd> control , alt / meta )。
一个解决方案(如Unix控制台使用的解决方案)是将关键事件编码为控制字符或ANSI转义码。
另一个解决方案是保持键修饰符,但我无法使其工作,因为chars()
方法消耗/移动输入:
struct InputBuffer {
handle: winapi::HANDLE,
ctrl: bool,
meta: bool,
}
impl Read for InputBuffer {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
let mut rec: winapi::INPUT_RECORD = unsafe { mem::zeroed() };
// kernel32::ReadConsoleInputW(self.0, &mut rec, 1 as winapi::DWORD, &mut count);
// ...
if rec.EventType != winapi::KEY_EVENT {
continue;
}
let key_event = unsafe { rec.KeyEvent() };
// ...
self.ctrl = key_event.dwControlKeyState &
(winapi::LEFT_CTRL_PRESSED | winapi::RIGHT_CTRL_PRESSED) ==
(winapi::LEFT_CTRL_PRESSED | winapi::RIGHT_CTRL_PRESSED);
self.meta = ...;
let utf16 = key_event.UnicodeChar;
// ...
let (bytes, len) = try!(InputBuffer::wide_char_to_multi_byte(utf16));
return (&bytes[..len]).read(buf);
}
}
fn main() {
let handle = try!(get_std_handle(STDIN_FILENO));
let mut stdin = InputBuffer(handle);
let mut chars = stdin.chars(); // stdin moved here
loop {
let c = chars.next().unwrap();
let mut ch = try!(c);
if stdin.ctrl { // use of moved value
//...
}
// ...
}
}
如何在Rust中执行此操作?
答案 0 :(得分:0)
您可以将这些标记放入Rc<RefCell<somestruct>>
并在使用stdin
之前克隆它。
这是一种常见模式,允许您从两个位置“访问”相同的数据。 Rc
负责共享所有权,RefCell
检查您是否没有重叠访问权限。