summaryrefslogtreecommitdiffstats
path: root/src/display/ui.rs
blob: e6036016ada5f5e9fb3f29f634951ba9236f0159 (plain)
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
use ::std::collections::HashMap;

use ::tui::backend::Backend;
use ::tui::Terminal;

use crate::display::UIState;
use crate::network::{Connection, Utilization};
use crate::display::components::{Table, Layout, TotalBandwidth};

use ::std::net::Ipv4Addr;

pub struct Ui<B>
where
    B: Backend,
{
    terminal: Terminal<B>,
    state: UIState,
    ip_to_host: HashMap<Ipv4Addr, String>,
}

impl<B> Ui<B>
where
    B: Backend,
{
    pub fn new(terminal_backend: B) -> Self {
        let mut terminal = Terminal::new(terminal_backend).unwrap();
        terminal.clear().unwrap();
        terminal.hide_cursor().unwrap();
        Ui {
            terminal,
            state: Default::default(),
            ip_to_host: Default::default(),
        }
    }
    pub fn draw(&mut self) {
        let state = &self.state;
        let ip_to_host = &self.ip_to_host;
        self.terminal
            .draw(|mut frame| {
                let size = frame.size();
                let connections = Table::create_connections_table(&state, &ip_to_host);
                let processes = Table::create_processes_table(&state);
                let remote_ips = Table::create_remote_ips_table(&state, &ip_to_host);
                let total_bandwidth = TotalBandwidth { state: &state };
                let layout = Layout {
                    header: total_bandwidth,
                    children: vec![connections, processes, remote_ips],
                };
                layout.render(&mut frame, size);
            })
            .unwrap();
    }
    pub fn update_state(
        &mut self,
        connections_to_procs: HashMap<Connection, String>,
        utilization: Utilization,
        ip_to_host: HashMap<Ipv4Addr, String>,
    ) {
        self.state = UIState::new(connections_to_procs, utilization);
        self.ip_to_host = ip_to_host;
    }
    pub fn end(&mut self) {
        // TODO: destroy?
        self.terminal.clear().unwrap();
        self.terminal.show_cursor().unwrap();
    }
}