temperature.rs 971 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. use std::fs::File;
  2. use std::io::SeekFrom;
  3. use std::io::prelude::*;
  4. use super::Sensor;
  5. pub struct TempSensor {
  6. file: File,
  7. temp: Option<u32>
  8. }
  9. impl TempSensor {
  10. pub fn new(zone: &str) -> TempSensor {
  11. let path = format!("/sys/class/thermal/{}/temp", zone);
  12. TempSensor {
  13. file: File::open(path).unwrap(),
  14. temp: None
  15. }
  16. }
  17. }
  18. impl Sensor for TempSensor {
  19. fn icon(&self) -> String {
  20. "".to_string()
  21. }
  22. fn status(&self) -> String {
  23. match self.temp {
  24. Some(i) => format!("{}°C", i/1000),
  25. None => "?°C".to_string(),
  26. }
  27. }
  28. fn process(&mut self) {
  29. let mut s = String::new();
  30. self.file.read_to_string(&mut s).ok().expect("Could not read temperature stats");
  31. let i : Option<u32> = s.trim().parse().ok();
  32. self.file.seek(SeekFrom::Start(0)).ok().expect("Could not reread temperature");
  33. self.temp = i;
  34. }
  35. }