Thomas Dy 9 жил өмнө
parent
commit
cddf44fe48
2 өөрчлөгдсөн 31 нэмэгдсэн , 10 устгасан
  1. 8 10
      src/main.rs
  2. 23 0
      src/store.rs

+ 8 - 10
src/main.rs

@@ -4,10 +4,10 @@ mod comm;
 mod config;
 mod external;
 mod bar;
+mod store;
 
 use comm::{Channel, Message};
 use config::Config;
-use std::collections::HashMap;
 use std::sync::Arc;
 use std::sync::mpsc;
 use std::thread;
@@ -24,20 +24,18 @@ fn main() {
     let mut topbar = bar::Bar::new(true);
     let mut botbar = bar::Bar::new(false);
 
-    let mut data = HashMap::new();
+    let mut data = store::Store::new();
 
     loop {
         let msg = rx.recv().unwrap();
-        let empty = "".to_string();
-        match msg {
-            Message { kind, text } => data.insert(kind, text),
-        };
+        data.save(msg);
+
         topbar.send(&format!("{}%{{r}}{} | {}",
-            data.get("title").unwrap_or(&empty),
-            data.get("netspeed").unwrap_or(&empty),
-            data.get("sensors").unwrap_or(&empty)
+            data.get("title"),
+            data.get("netspeed"),
+            data.get("sensors")
         ));
-        botbar.send(&format!("{}", data.get("cmus").unwrap_or(&empty)));
+        botbar.send(&format!("{}", data.get("cmus")));
     }
 }
 

+ 23 - 0
src/store.rs

@@ -0,0 +1,23 @@
+use comm::Message;
+use std::collections::HashMap;
+
+pub struct Store {
+    data: HashMap<String, String>
+}
+
+impl Store {
+    pub fn new() -> Store {
+        Store { data: HashMap::new() }
+    }
+
+    pub fn save(&mut self, msg: Message) {
+        self.data.insert(msg.kind, msg.text);
+    }
+
+    pub fn get(&self, kind: &str) -> &str {
+        match self.data.get(kind) {
+            Some(res) => res,
+            None => ""
+        }
+    }
+}