act.rs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. use std::collections::HashMap;
  2. use std::fs::File;
  3. use std::cell::RefCell;
  4. use super::sway;
  5. #[derive(Default, serde::Serialize, serde::Deserialize)]
  6. pub struct SwayKeyStore {
  7. pub last_act: Option<String>,
  8. pub act_map: HashMap<String, String>,
  9. }
  10. impl SwayKeyStore {
  11. pub fn load() -> Self {
  12. let f = File::open(format!("{}/swaynav.json", std::env::var("XDG_RUNTIME_DIR").unwrap()));
  13. if f.is_err() { return Self::default() }
  14. serde_json::from_reader(f.unwrap()).expect("valid JSON in swaynav temp storage")
  15. }
  16. pub fn save(&self) {
  17. let f = File::create(format!("{}/swaynav.json", std::env::var("XDG_RUNTIME_DIR").unwrap()));
  18. serde_json::to_writer(f.unwrap(), self).expect("Successful serialization")
  19. }
  20. }
  21. fn update_act_map(key: &ActivityWorkspace) {
  22. let mut store = SwayKeyStore::load();
  23. store.act_map.insert(
  24. if key.group.as_ref().is_some() {
  25. key.group.as_ref().unwrap().to_string()
  26. } else {
  27. "default".to_string()
  28. },
  29. key.index.to_string()
  30. );
  31. store.save();
  32. }
  33. #[derive(Clone)]
  34. pub struct ActivityWorkspace {
  35. pub index: usize,
  36. pub group: Option<String>
  37. }
  38. impl ActivityWorkspace {
  39. pub fn from_string(s: &str) -> Self {
  40. let sep = s.find(":");
  41. let (index, group) = match sep {
  42. None => {
  43. (s, None)
  44. },
  45. Some(pos) => {
  46. let (a, b) = s.split_at(pos);
  47. (a, Some(b[1..].to_string()))
  48. }
  49. };
  50. Self { index: index.parse().unwrap(), group }
  51. }
  52. pub fn to_string(&self) -> String {
  53. format!("{}{}", self.index,
  54. match &self.group {
  55. None => "".to_string(),
  56. Some(g) => format!(":{}", g)
  57. })
  58. }
  59. pub fn set_index(&mut self, index: usize) {
  60. self.index = index;
  61. }
  62. pub fn shift_index(&mut self, by: isize) {
  63. self.index = ((self.index + 9).wrapping_add_signed(by) % 10) + 1;
  64. }
  65. }
  66. pub struct Activity<'a> {
  67. si: &'a sway::SwayInterface,
  68. active: RefCell<ActivityWorkspace>
  69. }
  70. impl<'a> Activity<'a> {
  71. pub fn current(si: &'a sway::SwayInterface) -> Self {
  72. let current = si.get_current_workspace().unwrap();
  73. Self { si, active: RefCell::new(ActivityWorkspace::from_string(&current)) }
  74. }
  75. pub fn by_name(si: &'a sway::SwayInterface, name: &str) -> Self {
  76. let store = SwayKeyStore::load();
  77. let one = "1".to_string();
  78. let index = store.act_map.get(&name.to_string()).unwrap_or(&one);
  79. let group = if name == "default" { None } else { Some(name.to_string()) };
  80. Self { si, active: RefCell::new(ActivityWorkspace { index: index.parse().unwrap(), group }) }
  81. }
  82. pub fn group(&self) -> Option<String> {
  83. self.active.borrow().group.clone()
  84. }
  85. pub fn shift_ws(&self, by: isize) {
  86. self.active.borrow_mut().shift_index(by);
  87. self.si.switch_to_workspace(self.active.borrow().to_string().as_str()).unwrap();
  88. update_act_map(&self.active.borrow());
  89. }
  90. pub fn set_ws(&self, to: usize) {
  91. self.active.borrow_mut().set_index(to);
  92. self.si.switch_to_workspace(self.active.borrow().to_string().as_str()).unwrap();
  93. update_act_map(&self.active.borrow());
  94. }
  95. pub fn move_to_ws(&self, to: usize) {
  96. let mut k = self.active.borrow().clone();
  97. k.set_index(to);
  98. self.si.move_to_workspace(k.to_string().as_str()).unwrap();
  99. }
  100. }