main.rs 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. mod sensors;
  2. mod netspeed;
  3. mod comm;
  4. use comm::{Channel, Message};
  5. use std::collections::HashMap;
  6. use std::io;
  7. use std::sync::mpsc;
  8. use std::thread;
  9. fn main() {
  10. let (tx, rx) = mpsc::channel::<Message>();
  11. make_thread(&tx, stdin);
  12. make_thread(&tx, sensors::sensors);
  13. make_thread(&tx, netspeed::netspeed);
  14. let mut data = HashMap::new();
  15. loop {
  16. let msg = rx.recv().unwrap();
  17. let empty = "".to_string();
  18. match msg {
  19. Message { kind, text } => data.insert(kind, text),
  20. };
  21. println!("%{{r}}{} | {}",
  22. data.get("netspeed").unwrap_or(&empty),
  23. data.get("sensors").unwrap_or(&empty)
  24. );
  25. }
  26. }
  27. fn make_thread(tx: &Channel, func: fn(&Channel) -> ()) {
  28. let thread_tx = tx.clone();
  29. thread::spawn(move || {
  30. func(&thread_tx);
  31. });
  32. }
  33. fn stdin(tx: &Channel) {
  34. let mut line = String::new();
  35. loop {
  36. io::stdin().read_line(&mut line).ok().expect("Failed to read line");
  37. }
  38. }