events.rs 995 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. use comm::Channel;
  2. use config::Config;
  3. use rustc_serialize::json;
  4. use std::io;
  5. use std::process::Command;
  6. #[allow(dead_code)]
  7. #[derive(RustcDecodable)]
  8. struct I3Event {
  9. name: Option<String>,
  10. instance: Option<String>,
  11. button: u32,
  12. x: u32,
  13. y: u32
  14. }
  15. pub fn handle(_tx: &Channel, _cfg: &Config) {
  16. let mut line = String::new();
  17. // read opening [
  18. io::stdin().read_line(&mut line).ok().expect("Failed to read line");
  19. loop {
  20. line.clear();
  21. io::stdin().read_line(&mut line).ok().expect("Failed to read line");
  22. // the input has commas because it's supposed to be an endless array
  23. // of click events but we don't really care about it
  24. let event: I3Event = json::decode(line.trim_matches(',')).unwrap();
  25. match event.name.as_ref().map(String::as_ref) {
  26. Some("mpd") => Command::new("mpc")
  27. .arg("toggle")
  28. .output()
  29. .ok(),
  30. _ => None
  31. };
  32. }
  33. }