All threads now send input to a single mapping/output device
This commit is contained in:
parent
47f8231d33
commit
ca28b96982
14
src/error.rs
14
src/error.rs
@ -2,11 +2,14 @@ use std::fmt;
|
||||
use std::error;
|
||||
use std::ffi;
|
||||
use std::io;
|
||||
use std::sync::mpsc;
|
||||
use nix;
|
||||
|
||||
#[cfg(feature = "udev")]
|
||||
use udev;
|
||||
|
||||
use libc;
|
||||
|
||||
/// UInput error.
|
||||
#[derive(Debug)]
|
||||
pub enum Error {
|
||||
@ -22,6 +25,8 @@ pub enum Error {
|
||||
|
||||
Io(io::Error),
|
||||
|
||||
Send(mpsc::SendError<libc::input_event>),
|
||||
|
||||
/// The uinput file could not be found.
|
||||
NotFound,
|
||||
|
||||
@ -54,6 +59,12 @@ impl From<io::Error> for Error {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<mpsc::SendError<libc::input_event>> for Error {
|
||||
fn from(value: mpsc::SendError<libc::input_event>) -> Self {
|
||||
Error::Send(value)
|
||||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||
f.write_str(error::Error::description(self))
|
||||
@ -76,6 +87,9 @@ impl error::Error for Error {
|
||||
&Error::Io(ref err) =>
|
||||
err.description(),
|
||||
|
||||
&Error::Send(ref err) =>
|
||||
err.description(),
|
||||
|
||||
&Error::NotFound =>
|
||||
"Device not found.",
|
||||
|
||||
|
80
src/main.rs
80
src/main.rs
@ -20,8 +20,8 @@ use std::fs::File;
|
||||
use std::io::Read;
|
||||
use std::{env, mem};
|
||||
use std::thread;
|
||||
use std::sync::{Arc, mpsc};
|
||||
use std::collections::HashMap;
|
||||
use std::sync::mpsc;
|
||||
use std::sync::mpsc::Sender;
|
||||
|
||||
use std::os::unix::io::AsRawFd;
|
||||
|
||||
@ -50,38 +50,43 @@ impl Config {
|
||||
}
|
||||
|
||||
fn main() {
|
||||
main_res().ok();
|
||||
}
|
||||
|
||||
fn main_res() -> Result<()> {
|
||||
let config = parse_args();
|
||||
//println!("Config: {:?}", config);
|
||||
|
||||
let key_map = Arc::new(KeyMaps::key_map());
|
||||
let key_map = KeyMaps::key_map();
|
||||
//println!("key_map: {:?}", key_map);
|
||||
|
||||
let device = rusty_keys::open("/dev/uinput")
|
||||
.or_else(|_| rusty_keys::open("/dev/input/uinput"))
|
||||
.or_else(|_| rusty_keys::default())?
|
||||
.name("rusty-keys")?
|
||||
.event(key_map.values())?
|
||||
.create()?;
|
||||
|
||||
let mut key_map = KeyMaps::from_cfg(&key_map, &config.config_file);
|
||||
//println!("keymaps: {:?}", keymaps);
|
||||
|
||||
let (tx, rx) = mpsc::channel();
|
||||
|
||||
if config.device_files.len() > 0 {
|
||||
// we only want to operate on device files sent in then quit
|
||||
let (tx, rx) = mpsc::channel();
|
||||
|
||||
for device_file in config.device_files.iter() {
|
||||
let device_file = device_file.clone();
|
||||
let config_file = config.config_file.clone();
|
||||
let tx = tx.clone();
|
||||
let key_map = Arc::clone(&key_map);
|
||||
thread::spawn(move || {
|
||||
let ret = spawn_map_thread(key_map, &device_file, &config_file);
|
||||
let ret = spawn_map_thread(tx, &device_file);
|
||||
if let Err(e) = ret {
|
||||
println!("mapping for {} ended due to error: {}", device_file, e);
|
||||
}
|
||||
tx.send(1).ok();
|
||||
});
|
||||
}
|
||||
// wait for all threads to finish
|
||||
let mut num_threads = config.device_files.len();
|
||||
for received in rx {
|
||||
num_threads -= received;
|
||||
if num_threads == 0 {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
let tx = tx.clone();
|
||||
thread::spawn(move || {
|
||||
// we want to wait forever starting new threads for any new keyboard devices
|
||||
let mut inotify = Inotify::init().expect("Failed to initialize inotify");
|
||||
|
||||
@ -90,7 +95,7 @@ fn main() {
|
||||
let device_files = get_keyboard_device_filenames();
|
||||
println!("Detected devices: {:?}", device_files);
|
||||
for device_file in device_files.iter() {
|
||||
inotify_spawn_thread(&key_map, device_file, config.config_file.clone());
|
||||
inotify_spawn_thread(&tx, device_file);
|
||||
}
|
||||
|
||||
let mut buffer = [0u8; 4096];
|
||||
@ -107,48 +112,45 @@ fn main() {
|
||||
continue;
|
||||
}
|
||||
println!("starting mapping thread for: {}", device_file);
|
||||
inotify_spawn_thread(&key_map, device_file.clone(), config.config_file.clone());
|
||||
inotify_spawn_thread(&tx, device_file.clone());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
drop(tx); // drop our last one, so when the threads finish, everything stops
|
||||
// process all events
|
||||
for mut event in rx {
|
||||
if event.type_ == EV_KEY_U16 {
|
||||
key_map.send_event(&mut event, &device)?
|
||||
} else {
|
||||
device.write_event(&mut event)?
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn inotify_spawn_thread(key_map: &Arc<HashMap<&'static str, c_int>>, device_file: &str, config_file: String) {
|
||||
fn inotify_spawn_thread(tx: &Sender<input_event>, device_file: &str) {
|
||||
let mut filename = "/dev/input/".to_string();
|
||||
filename.push_str(&device_file);
|
||||
let key_map = Arc::clone(&key_map);
|
||||
let tx = tx.clone();
|
||||
thread::spawn(move || {
|
||||
let ret = spawn_map_thread(key_map, &filename, &config_file);
|
||||
let ret = spawn_map_thread(tx, &filename);
|
||||
if let Err(e) = ret {
|
||||
println!("mapping for {} ended due to error: {}", filename, e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
fn spawn_map_thread(key_map: Arc<HashMap<&'static str, c_int>>, device_file: &str, config_file: &str) -> Result<()> {
|
||||
fn spawn_map_thread(tx: Sender<input_event>, device_file: &str) -> Result<()> {
|
||||
let mut input_device = InputDevice::open(device_file)?;
|
||||
input_device.grab()?;
|
||||
|
||||
let device = rusty_keys::open("/dev/uinput")
|
||||
.or_else(|_| rusty_keys::open("/dev/input/uinput"))
|
||||
.or_else(|_| rusty_keys::default())?
|
||||
.name("rusty-keys")?
|
||||
.event(key_map.values())?
|
||||
.create()?;
|
||||
|
||||
let mut key_map = KeyMaps::from_cfg(&key_map, config_file);
|
||||
//println!("keymaps: {:?}", keymaps);
|
||||
|
||||
loop {
|
||||
let mut event = input_device.read_event()?;
|
||||
if event.type_ == EV_KEY_U16 {
|
||||
key_map.send_event(&mut event, &device)?
|
||||
} else {
|
||||
device.write_event(&mut event)?
|
||||
}
|
||||
let event = input_device.read_event()?;
|
||||
tx.send(event)?
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user