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
use InputEvent;
use libc::c_int;
use device::Device;
use std::io;
use std::fs::File;
use std::os::unix::io::FromRawFd;
use util::*;
pub struct UInputDevice {
raw: *mut raw::libevdev_uinput
}
impl UInputDevice {
pub fn create_from_device(device: &Device) -> io::Result<UInputDevice> {
let mut libevdev_uinput = 0 as *mut _;
let result = unsafe {
raw::libevdev_uinput_create_from_device(device.raw, raw::LIBEVDEV_UINPUT_OPEN_MANAGED, &mut libevdev_uinput)
};
match result {
0 => Ok(UInputDevice { raw: libevdev_uinput }),
error => Err(io::Error::from_raw_os_error(-error))
}
}
string_getter!(devnode, libevdev_uinput_get_devnode);
string_getter!(syspath, libevdev_uinput_get_syspath);
pub fn fd(&self) -> Option<File> {
let result = unsafe {
raw::libevdev_uinput_get_fd(self.raw)
};
if result == 0 {
None
} else {
unsafe {
let f = File::from_raw_fd(result);
Some(f)
}
}
}
pub fn write_event(&self, event: &InputEvent) -> io::Result<()> {
let (ev_type, ev_code) = event_code_to_int(&event.event_code);
let ev_value = event.value as c_int;
let result = unsafe {
raw::libevdev_uinput_write_event(self.raw, ev_type, ev_code, ev_value)
};
match result {
0 => Ok(()),
error => Err(io::Error::from_raw_os_error(-error))
}
}
}
impl Drop for UInputDevice {
fn drop(&mut self) {
unsafe {
raw::libevdev_uinput_destroy(self.raw);
}
}
}