|
@@ -5,11 +5,7 @@ mod netspeed;
|
|
mod time;
|
|
mod time;
|
|
mod temperature;
|
|
mod temperature;
|
|
|
|
|
|
-use comm;
|
|
|
|
-use comm::Channel;
|
|
|
|
use config::Config;
|
|
use config::Config;
|
|
-use std::thread;
|
|
|
|
-use std::time::Duration;
|
|
|
|
use self::battery::BatterySensor;
|
|
use self::battery::BatterySensor;
|
|
use self::tp_battery::TPBatterySensor;
|
|
use self::tp_battery::TPBatterySensor;
|
|
use self::disk::DiskSensor;
|
|
use self::disk::DiskSensor;
|
|
@@ -23,7 +19,7 @@ pub trait Sensor {
|
|
fn process(&mut self);
|
|
fn process(&mut self);
|
|
}
|
|
}
|
|
|
|
|
|
-pub fn sensors(tx: &Channel, config: &Config) {
|
|
|
|
|
|
+pub fn sensor_list(config: &Config) -> Vec<Box<Sensor>> {
|
|
let zone = config.lookup("sensors.thermal_zone").unwrap();
|
|
let zone = config.lookup("sensors.thermal_zone").unwrap();
|
|
let zone = zone.as_str().unwrap();
|
|
let zone = zone.as_str().unwrap();
|
|
|
|
|
|
@@ -49,25 +45,5 @@ pub fn sensors(tx: &Channel, config: &Config) {
|
|
items.iter().flat_map(|elem| elem.as_str()).collect::<Vec<&str>>()
|
|
items.iter().flat_map(|elem| elem.as_str()).collect::<Vec<&str>>()
|
|
});
|
|
});
|
|
tp_bat.map(|bats| sensors.insert(1, Box::new(TPBatterySensor::new(&bats))));
|
|
tp_bat.map(|bats| sensors.insert(1, Box::new(TPBatterySensor::new(&bats))));
|
|
-
|
|
|
|
- let delay = Duration::from_secs(1);
|
|
|
|
- loop {
|
|
|
|
- let status = sensors.iter_mut()
|
|
|
|
- .map(|sensor| {
|
|
|
|
- sensor.process();
|
|
|
|
- format!(
|
|
|
|
- "%{{B#666666}} {} %{{B-}} {}",
|
|
|
|
- sensor.icon(),
|
|
|
|
- sensor.status()
|
|
|
|
- )
|
|
|
|
- })
|
|
|
|
- .collect::<Vec<String>>();
|
|
|
|
-
|
|
|
|
- comm::send(tx, "sensors", &reduce(status));
|
|
|
|
- thread::sleep(delay);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-fn reduce(arr: Vec<String>) -> String {
|
|
|
|
- arr.into_iter().fold("".to_string(), |acc, elem| format!("{} {}", acc, elem))
|
|
|
|
|
|
+ sensors
|
|
}
|
|
}
|