pinenote-service 1.0.1

Management dervice for Pine64's PineNote device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
use std::{
    collections::{HashMap, HashSet},
    time::Duration,
};

use anyhow::{Context, Result, bail};
use futures_lite::stream::StreamExt;
use nalgebra::Matrix3;
use nix::libc::pid_t;
use pinenote_service::types::{Rect, rockchip_ebc::Hint};
use swayipc_async::{
    Connection, Event, EventStream, EventType, Node, NodeBorder, NodeType, Rect as SwayRect,
};
use tokio::sync::{
    mpsc::{self, Sender},
    oneshot,
};

use crate::ebc;

mod utils;

#[derive(Debug, PartialEq)]
struct SwayWindow {
    id: i64,
    pid: pid_t,
    title: String,
    area: Rect,
    visible: bool,
    floating: bool,
    fullscreen: bool,
    hint: Option<Hint>,
    z_index: i32,
}

impl SwayWindow {
    fn diff(&self, other: &Self) -> Option<ebc::WindowUpdate> {
        if self != other {
            let &Self {
                ref title,
                ref area,
                visible,
                fullscreen,
                hint,
                z_index,
                ..
            } = other;

            Some(ebc::WindowUpdate {
                title: if &self.title != title {
                    Some(title.clone())
                } else {
                    None
                },
                area: if &self.area != area {
                    Some(area.clone())
                } else {
                    None
                },
                visible: if self.visible != visible {
                    Some(visible)
                } else {
                    None
                },
                fullscreen: if self.fullscreen != fullscreen {
                    Some(fullscreen)
                } else {
                    None
                },
                hint: if self.hint != hint { Some(hint) } else { None },
                z_index: if self.z_index != z_index {
                    Some(z_index)
                } else {
                    None
                },
            })
        } else {
            None
        }
    }
}

pub struct SwayWindowError;

impl TryFrom<&Node> for SwayWindow {
    type Error = SwayWindowError;

    fn try_from(node: &Node) -> std::result::Result<Self, Self::Error> {
        let Some(_shell) = node.shell else {
            return Err(SwayWindowError);
        };
        let Some(visible) = node.visible else {
            return Err(SwayWindowError);
        };
        let Some(pid) = node.pid else {
            return Err(SwayWindowError);
        };

        let SwayRect {
            x,
            mut y,
            width,
            mut height,
            ..
        } = node.rect;

        if node.node_type == NodeType::FloatingCon && node.border == NodeBorder::Normal {
            y -= node.deco_rect.height;
            height += node.deco_rect.height;
        }

        let title = node.name.as_deref().unwrap_or("NO_TITLE").to_owned();

        let area = Rect::from_xywh(x, y, width, height);

        let hint = node.marks.iter().find_map(|m| {
            if m.starts_with("ebchint:") || m.starts_with("_ebchint:") {
                m.split(':')
                    .nth(2)
                    .and_then(|s| Hint::try_from_human_readable(s).ok())
            } else {
                None
            }
        });

        Ok(Self {
            id: node.id,
            pid,
            title,
            area,
            visible,
            floating: node.node_type == NodeType::FloatingCon,
            fullscreen: node.fullscreen_mode.unwrap_or_default() != 0,
            hint,
            z_index: 0,
            //_data
        })
    }
}

pub struct SwayBridge {
    swayipc: Connection,
    swayevents: EventStream,
    transform: Matrix3<f64>,
    app_meta: HashMap<pid_t, (String, HashSet<i64>)>,
    window_meta: HashMap<i64, (String, SwayWindow)>,
}

impl SwayBridge {
    const OUTPUT_NAME: &str = "DPI-1";

    pub async fn new() -> Result<Self> {
        let mut swayipc = Connection::new()
            .await
            .context("Failed to connect to Sway IPC")?;

        let transform = utils::get_output(&mut swayipc, Self::OUTPUT_NAME)
            .await
            .and_then(|o| utils::output_to_transform(&o))?;

        let events = vec![
            EventType::Output,
            EventType::Window,
            EventType::Workspace,
            EventType::Shutdown,
        ];

        let swayevents = Connection::new()
            .await
            .context("Failed to connect to Sway IPC")?
            .subscribe(events)
            .await
            .context("Failed to subscibe to Sway Event")?;

        Ok(Self {
            swayipc,
            swayevents,
            transform,
            app_meta: Default::default(),
            window_meta: Default::default(),
        })
    }

    /// Add an application
    async fn add_app(&mut self, pid: pid_t, tx: &mut ebc::CommandSender) -> Result<()> {
        let (ret_tx, ret_rx) = oneshot::channel::<String>();
        let app_key = tx
            .with_reply(ebc::command::Application::Add(pid, ret_tx), ret_rx)
            .await
            .context("Failed to add application '{pid}'")?;

        self.app_meta
            .insert(pid, (app_key.clone(), Default::default()));

        Ok(())
    }

    /// Remove stale app from the app_meta map, notifying the EbcService in the process.
    async fn remove_stale_apps(
        &mut self,
        stale_pid: Vec<pid_t>,
        tx: &mut ebc::CommandSender,
    ) -> Result<()> {
        for p in stale_pid {
            let Some((app_key, win_ids)) = self.app_meta.remove(&p) else {
                continue;
            };

            tx.send(ebc::command::Application::Remove(app_key))
                .await
                .context("Failed to send remove '{app_key}'")?;

            for id in win_ids {
                self.window_meta.remove(&id);
            }
        }

        Ok(())
    }

    /// Add a new window
    async fn add_window(&mut self, win: SwayWindow, tx: &mut ebc::CommandSender) -> Result<()> {
        let (rtx, rx) = oneshot::channel::<String>();

        let app_meta = self
            .app_meta
            .get_mut(&win.pid)
            .expect("Window should be added after apps");
        let app_key = app_meta.0.clone();

        let cmd = ebc::command::Window::Add {
            app_key,
            title: win.title.clone(),
            area: win.area.clone(),
            hint: win.hint,
            visible: win.visible,
            fullscreen: win.fullscreen,
            z_index: win.z_index,
            reply: rtx,
        };

        let win_key = tx
            .with_reply(cmd, rx)
            .await
            .with_context(|| "Failed to add window '{title}")?;

        let id = win.id;
        self.window_meta.insert(id, (win_key, win));
        app_meta.1.insert(id);

        Ok(())
    }

    /// Update Window
    async fn update_window(
        &mut self,
        up_win: SwayWindow,
        tx: &mut ebc::CommandSender,
    ) -> Result<()> {
        let &mut (ref win_key, ref mut win) = self.window_meta.get_mut(&up_win.id).unwrap();

        if let Some(update) = win.diff(&up_win) {
            tx.send(ebc::command::Window::Update {
                win_key: win_key.clone(),
                update,
            })
            .await
            .context("Failed to update window '{win_key}'")?;

            self.window_meta
                .entry(up_win.id)
                .and_modify(|e| e.1 = up_win);
        }

        Ok(())
    }

    async fn remove_stale_windows(
        &mut self,
        stale_id: Vec<i64>,
        tx: &mut ebc::CommandSender,
    ) -> Result<()> {
        for wid in stale_id {
            let Some((win_key, win)) = self.window_meta.remove(&wid) else {
                continue;
            };

            tx.send(ebc::command::Window::Remove(win_key))
                .await
                .context("Failed to remove window '{win_key}'")?;

            self.app_meta.entry(win.pid).and_modify(|e| {
                e.1.remove(&wid);
            });
        }

        Ok(())
    }

    async fn process_tree(&mut self, tx: &mut ebc::CommandSender) -> Result<()> {
        let swaytree = self
            .swayipc
            .get_tree()
            .await
            .context("Failed to get Sway Tree")?;

        let Some(output) = swaytree.find_as_ref(|n| {
            n.node_type == NodeType::Output && n.name.as_deref().unwrap_or("") == Self::OUTPUT_NAME
        }) else {
            bail!("Could not find output '{}'", Self::OUTPUT_NAME)
        };
        let Some(workspace) = output.find_focused_as_ref(|n| n.node_type == NodeType::Workspace)
        else {
            bail!("No focused workspace for output '{}", Self::OUTPUT_NAME)
        };

        let (pid_set, windows) = utils::get_all_windows_and_app(workspace, &self.transform);

        let stale_pid: Vec<pid_t> = self
            .app_meta
            .keys()
            .filter(|k| !pid_set.contains(k))
            .copied()
            .collect();

        self.remove_stale_apps(stale_pid, tx)
            .await
            .context("SwayBridge::remove_stale_apps failed")?;

        for pid in pid_set {
            if !self.app_meta.contains_key(&pid) {
                self.add_app(pid, tx)
                    .await
                    .context("SwayBridge::add_app failed")?;
            }
        }

        let mut win_set: HashSet<i64> = HashSet::new();
        for w in windows {
            win_set.insert(w.id);

            if !self.window_meta.contains_key(&w.id) {
                self.add_window(w, tx)
                    .await
                    .context("SwayBridge::add_window failed")?;
            } else {
                self.update_window(w, tx)
                    .await
                    .context("SwayBridge::update_window failed")?;
            }
        }

        let stale_window = self
            .window_meta
            .keys()
            .filter(|k| !win_set.contains(k))
            .copied()
            .collect();

        self.remove_stale_windows(stale_window, tx)
            .await
            .context("SwayBridge::remove_stale_window failed")?;

        Ok(())
    }

    pub async fn run(mut self, tx: Sender<ebc::Command>) -> Result<()> {
        let mut tx: ebc::CommandSender = tx.into();
        let mut process_tree = true;

        loop {
            if process_tree {
                if let Err(e) = self
                    .process_tree(&mut tx)
                    .await
                    .context("Failed to process_tree")
                {
                    eprintln!("{e:?}");
                };
                process_tree = false;
            }

            match tokio::time::timeout(Duration::from_millis(100), self.swayevents.next()).await {
                Err(_) => process_tree = true,
                Ok(Some(evt)) => {
                    let event = evt?;

                    match event {
                        Event::Shutdown(_) => break,
                        Event::Window(_) => {
                            process_tree = true;
                        }
                        Event::Output(_) => {
                            match utils::get_output(&mut self.swayipc, Self::OUTPUT_NAME)
                                .await
                                .and_then(|o| utils::output_to_transform(&o))
                            {
                                Ok(t) => {
                                    self.transform = t;
                                }
                                Err(e) => {
                                    self.transform = Matrix3::identity();
                                    eprintln!("{e:#?}");
                                }
                            }
                            process_tree = true;
                        }
                        Event::Workspace(_) => {
                            process_tree = true;
                        }
                        _ => {}
                    }
                }
                Ok(None) => {
                    eprintln!("SwayIPC EventStream is done");
                    break;
                }
            }
        }

        eprintln!("Implement proper exit");

        Ok(())
    }
}

const SWAY_BRIDGE: &str = "Sway";

pub async fn start(tx: mpsc::Sender<ebc::Command>) -> Result<String> {
    let sway_bridge = SwayBridge::new()
        .await
        .context("While trying to start Sway bridge")?;

    tokio::spawn(async move {
        let _ = sway_bridge.run(tx).await;
    });

    Ok(SWAY_BRIDGE.into())
}