bottom/src/canvas.rs

484 lines
16 KiB
Rust
Raw Normal View History

2019-10-12 23:19:53 +00:00
use crate::{app, constants, utils::error};
use tui::{
2019-09-17 03:53:20 +00:00
backend,
2019-10-10 02:00:10 +00:00
layout::{Alignment, Constraint, Direction, Layout},
2019-09-13 20:15:00 +00:00
style::{Color, Modifier, Style},
2019-10-10 02:00:10 +00:00
widgets::{Axis, Block, Borders, Chart, Dataset, Marker, Paragraph, Row, Table, Text, Widget},
2019-09-11 03:37:20 +00:00
Terminal,
};
2019-09-12 02:10:49 +00:00
const COLOUR_LIST: [Color; 6] = [
Color::Red,
Color::Green,
Color::LightYellow,
Color::LightBlue,
Color::LightCyan,
Color::LightMagenta,
];
const TEXT_COLOUR: Color = Color::Gray;
const GRAPH_COLOUR: Color = Color::Gray;
const BORDER_STYLE_COLOUR: Color = Color::Gray;
const HIGHLIGHTED_BORDER_STYLE_COLOUR: Color = Color::LightBlue;
2019-09-12 02:10:49 +00:00
#[derive(Default)]
pub struct CanvasData {
pub rx_display: String,
pub tx_display: String,
pub network_data_rx: Vec<(f64, f64)>,
pub network_data_tx: Vec<(f64, f64)>,
pub disk_data: Vec<Vec<String>>,
pub temp_sensor_data: Vec<Vec<String>>,
pub process_data: Vec<Vec<String>>,
pub mem_data: Vec<(f64, f64)>,
pub mem_values: Vec<(u64, u64)>,
pub swap_data: Vec<(f64, f64)>,
pub cpu_data: Vec<(String, Vec<(f64, f64)>)>,
2019-09-12 02:10:49 +00:00
}
pub fn draw_data<B: backend::Backend>(terminal: &mut Terminal<B>, app_state: &mut app::App, canvas_data: &CanvasData) -> error::Result<()> {
let border_style: Style = Style::default().fg(BORDER_STYLE_COLOUR);
let highlighted_border_style: Style = Style::default().fg(HIGHLIGHTED_BORDER_STYLE_COLOUR);
terminal.autoresize()?;
2019-09-12 02:10:49 +00:00
terminal.draw(|mut f| {
2019-12-07 05:58:52 +00:00
if app_state.show_help {
// Only for the "help" and "are you sure" menus
let vertical_dialog_chunk = Layout::default()
.direction(Direction::Vertical)
.margin(1)
.constraints([Constraint::Percentage(32), Constraint::Percentage(40), Constraint::Percentage(28)].as_ref())
.split(f.size());
2019-09-12 03:15:25 +00:00
2019-12-07 05:58:52 +00:00
let middle_dialog_chunk = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(30), Constraint::Percentage(40), Constraint::Percentage(30)].as_ref())
.split(vertical_dialog_chunk[1]);
2019-10-10 02:00:10 +00:00
2019-12-15 05:17:15 +00:00
let help_text = [
2019-12-22 22:37:07 +00:00
Text::raw("\nGeneral Keybindings\n"),
Text::raw("q, Ctrl-c to quit.\n"),
Text::raw("Ctrl-r to reset all data.\n"),
2019-10-10 02:34:09 +00:00
Text::raw("f to toggle freezing and unfreezing the display.\n"),
2019-12-15 05:17:15 +00:00
Text::raw("Ctrl+Up/k, Ctrl+Down/j, Ctrl+Left/h, Ctrl+Right/l to navigate between panels.\n"),
Text::raw("Up and Down scrolls through a list.\n"),
2019-10-10 02:00:10 +00:00
Text::raw("Esc to close a dialog window (help or dd confirmation).\n"),
Text::raw("? to get this help screen.\n"),
2019-12-22 22:37:07 +00:00
Text::raw("\n Process Panel Keybindings\n"),
2019-10-10 02:00:10 +00:00
Text::raw("dd to kill the selected process.\n"),
Text::raw("c to sort by CPU usage.\n"),
Text::raw("m to sort by memory usage.\n"),
Text::raw("p to sort by PID.\n"),
Text::raw("n to sort by process name.\n"),
];
2019-12-15 05:17:15 +00:00
Paragraph::new(help_text.iter())
.block(Block::default().title("Help (Press Esc to close)").borders(Borders::ALL))
2019-10-10 02:00:10 +00:00
.style(Style::default().fg(Color::Gray))
.alignment(Alignment::Left)
.wrap(true)
.render(&mut f, middle_dialog_chunk[1]);
} else {
2019-10-10 02:00:10 +00:00
let vertical_chunks = Layout::default()
.direction(Direction::Vertical)
.margin(1)
2019-12-07 04:29:23 +00:00
.constraints([Constraint::Percentage(33), Constraint::Percentage(34), Constraint::Percentage(34)].as_ref())
2019-10-10 02:00:10 +00:00
.split(f.size());
let middle_chunks = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(60), Constraint::Percentage(40)].as_ref())
.split(vertical_chunks[1]);
let middle_divided_chunk_2 = Layout::default()
.direction(Direction::Vertical)
.margin(0)
.constraints([Constraint::Percentage(50), Constraint::Percentage(50)].as_ref())
.split(middle_chunks[1]);
let bottom_chunks = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(50), Constraint::Percentage(50)].as_ref())
.split(vertical_chunks[2]);
// Component specific chunks
let _cpu_chunk = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(90), Constraint::Percentage(10)].as_ref())
.split(vertical_chunks[0]);
let _mem_chunk = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(90), Constraint::Percentage(10)].as_ref())
.split(middle_chunks[0]);
let _network_chunk = Layout::default()
.direction(Direction::Horizontal)
.margin(0)
.constraints([Constraint::Percentage(90), Constraint::Percentage(10)].as_ref())
.split(bottom_chunks[0]);
2019-10-10 02:00:10 +00:00
// Set up blocks and their components
// CPU usage graph
{
let x_axis: Axis<String> = Axis::default()
2019-10-12 23:19:53 +00:00
.style(Style::default().fg(GRAPH_COLOUR))
.bounds([0.0, constants::TIME_STARTS_FROM as f64 * 10.0]);
2019-10-10 02:00:10 +00:00
let y_axis = Axis::default()
.style(Style::default().fg(GRAPH_COLOUR))
.bounds([-0.5, 100.5])
.labels(&["0%", "100%"]);
let mut dataset_vector: Vec<Dataset> = Vec::new();
2019-10-10 02:00:10 +00:00
for (i, cpu) in canvas_data.cpu_data.iter().enumerate() {
let mut avg_cpu_exist_offset = 0;
if app_state.show_average_cpu {
if i == 0 {
// Skip, we want to render the average cpu last!
continue;
} else {
2019-10-10 02:00:10 +00:00
avg_cpu_exist_offset = 1;
}
}
2019-10-10 02:00:10 +00:00
dataset_vector.push(
Dataset::default()
.name(&cpu.0)
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(COLOUR_LIST[(i - avg_cpu_exist_offset) % COLOUR_LIST.len()]))
2019-10-10 02:00:10 +00:00
.data(&(cpu.1)),
);
}
2019-10-10 02:00:10 +00:00
if !canvas_data.cpu_data.is_empty() && app_state.show_average_cpu {
// Unwrap should be safe here, this assumes that the cpu_data vector is populated...
2019-10-10 02:00:10 +00:00
dataset_vector.push(
Dataset::default()
.name(&canvas_data.cpu_data.first().unwrap().0)
2019-10-10 02:00:10 +00:00
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(COLOUR_LIST[(canvas_data.cpu_data.len() - 1) % COLOUR_LIST.len()]))
.data(&(canvas_data.cpu_data.first().unwrap().1)),
2019-10-10 02:00:10 +00:00
);
}
2019-09-12 02:10:49 +00:00
2019-10-10 02:00:10 +00:00
Chart::default()
.block(
Block::default()
.title("CPU Usage")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
app::ApplicationPosition::CPU => highlighted_border_style,
_ => border_style,
}),
)
.x_axis(x_axis)
.y_axis(y_axis)
.datasets(&dataset_vector)
.render(&mut f, vertical_chunks[0]);
}
2019-10-10 02:00:10 +00:00
//Memory usage graph
{
let x_axis: Axis<String> = Axis::default()
2019-10-12 23:19:53 +00:00
.style(Style::default().fg(GRAPH_COLOUR))
.bounds([0.0, constants::TIME_STARTS_FROM as f64 * 10.0]);
2019-10-10 02:00:10 +00:00
let y_axis = Axis::default()
.style(Style::default().fg(GRAPH_COLOUR))
.bounds([-0.5, 100.5]) // Offset as the zero value isn't drawn otherwise...
.labels(&["0%", "100%"]);
let mem_name = "RAM:".to_string()
2019-12-17 07:11:40 +00:00
+ &format!("{:3}%", (canvas_data.mem_data.last().unwrap_or(&(0_f64, 0_f64)).1.round() as u64))
2019-10-10 02:00:10 +00:00
+ &format!(
" {:.1}GB/{:.1}GB",
canvas_data.mem_values.first().unwrap_or(&(0, 0)).0 as f64 / 1024.0,
canvas_data.mem_values.first().unwrap_or(&(0, 0)).1 as f64 / 1024.0
2019-10-10 02:00:10 +00:00
);
let swap_name: String;
2019-10-10 02:00:10 +00:00
let mut mem_canvas_vec: Vec<Dataset> = vec![Dataset::default()
2019-10-10 02:00:10 +00:00
.name(&mem_name)
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(Color::LightBlue))
.data(&canvas_data.mem_data)];
if !(&canvas_data.swap_data).is_empty() {
if let Some(last_canvas_result) = (&canvas_data.swap_data).last() {
if last_canvas_result.1 >= 0.0 {
swap_name = "SWP:".to_string()
2019-12-17 07:11:40 +00:00
+ &format!("{:3}%", (canvas_data.swap_data.last().unwrap_or(&(0_f64, 0_f64)).1.round() as u64))
2019-10-10 02:00:10 +00:00
+ &format!(
" {:.1}GB/{:.1}GB",
canvas_data.mem_values[1].0 as f64 / 1024.0,
canvas_data.mem_values[1].1 as f64 / 1024.0
);
mem_canvas_vec.push(
Dataset::default()
.name(&swap_name)
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(Color::LightYellow))
.data(&canvas_data.swap_data),
2019-10-06 01:55:35 +00:00
);
2019-10-10 02:00:10 +00:00
}
2019-10-06 01:55:35 +00:00
}
}
2019-10-10 02:00:10 +00:00
Chart::default()
.block(
Block::default()
.title("Memory Usage")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
app::ApplicationPosition::MEM => highlighted_border_style,
_ => border_style,
}),
)
.x_axis(x_axis)
.y_axis(y_axis)
.datasets(&mem_canvas_vec)
.render(&mut f, middle_chunks[0]);
}
2019-10-10 02:00:10 +00:00
// Temperature table
{
let num_rows = i64::from(middle_divided_chunk_2[0].height) - 4;
2019-10-10 02:00:10 +00:00
let start_position = get_start_position(
num_rows,
&(app_state.scroll_direction),
&mut app_state.previous_temp_position,
&mut app_state.currently_selected_temperature_position,
);
2019-09-12 02:10:49 +00:00
let sliced_vec: Vec<Vec<String>> = (&canvas_data.temp_sensor_data[start_position as usize..]).to_vec();
2019-10-10 02:00:10 +00:00
let mut disk_counter = 0;
2019-09-12 02:10:49 +00:00
2019-10-10 02:00:10 +00:00
let temperature_rows = sliced_vec.iter().map(|disk| {
Row::StyledData(
disk.iter(),
if disk_counter == app_state.currently_selected_temperature_position - start_position {
disk_counter = -1;
Style::default().fg(Color::Black).bg(Color::Cyan)
} else {
2019-10-10 02:00:10 +00:00
if disk_counter >= 0 {
disk_counter += 1;
}
Style::default().fg(TEXT_COLOUR)
},
)
});
2019-10-10 02:00:10 +00:00
let width = f64::from(middle_divided_chunk_2[0].width);
Table::new(["Sensor", "Temp"].iter(), temperature_rows)
.block(
Block::default()
.title("Temperatures")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
app::ApplicationPosition::TEMP => highlighted_border_style,
_ => border_style,
}),
)
.header_style(Style::default().fg(Color::LightBlue))
.widths(&[Constraint::Length((width * 0.45) as u16), Constraint::Length((width * 0.4) as u16)])
2019-10-10 02:00:10 +00:00
.render(&mut f, middle_divided_chunk_2[0]);
}
2019-09-12 02:10:49 +00:00
2019-10-10 02:00:10 +00:00
// Disk usage table
{
let num_rows = i64::from(middle_divided_chunk_2[1].height) - 4;
2019-10-10 02:00:10 +00:00
let start_position = get_start_position(
num_rows,
&(app_state.scroll_direction),
&mut app_state.previous_disk_position,
&mut app_state.currently_selected_disk_position,
);
let sliced_vec: Vec<Vec<String>> = (&canvas_data.disk_data[start_position as usize..]).to_vec();
2019-10-10 02:00:10 +00:00
let mut disk_counter = 0;
let disk_rows = sliced_vec.iter().map(|disk| {
Row::StyledData(
disk.iter(),
if disk_counter == app_state.currently_selected_disk_position - start_position {
disk_counter = -1;
Style::default().fg(Color::Black).bg(Color::Cyan)
} else {
2019-10-10 02:00:10 +00:00
if disk_counter >= 0 {
disk_counter += 1;
}
Style::default().fg(TEXT_COLOUR)
},
)
});
2019-09-16 20:18:42 +00:00
2019-10-10 02:00:10 +00:00
// TODO: We may have to dynamically remove some of these table elements based on size...
let width = f64::from(middle_divided_chunk_2[1].width);
Table::new(["Disk", "Mount", "Used", "Total", "Free", "R/s", "W/s"].iter(), disk_rows)
.block(
Block::default()
.title("Disk Usage")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
app::ApplicationPosition::DISK => highlighted_border_style,
_ => border_style,
}),
)
.header_style(Style::default().fg(Color::LightBlue).modifier(Modifier::BOLD))
.widths(&[
Constraint::Length((width * 0.18).floor() as u16),
Constraint::Length((width * 0.14).floor() as u16),
Constraint::Length((width * 0.11).floor() as u16),
Constraint::Length((width * 0.11).floor() as u16),
Constraint::Length((width * 0.11).floor() as u16),
Constraint::Length((width * 0.11).floor() as u16),
Constraint::Length((width * 0.11).floor() as u16),
2019-10-10 02:00:10 +00:00
])
.render(&mut f, middle_divided_chunk_2[1]);
}
// Network graph
{
let x_axis: Axis<String> = Axis::default().style(Style::default().fg(GRAPH_COLOUR)).bounds([0.0, 600_000.0]);
2019-10-10 02:00:10 +00:00
let y_axis = Axis::default()
.style(Style::default().fg(GRAPH_COLOUR))
.bounds([-0.5, 30_f64])
.labels(&["0B", "1KiB", "1MiB", "1GiB"]);
2019-10-10 02:00:10 +00:00
Chart::default()
.block(
Block::default()
2019-10-10 02:00:10 +00:00
.title("Network")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
2019-10-10 02:00:10 +00:00
app::ApplicationPosition::NETWORK => highlighted_border_style,
_ => border_style,
}),
)
2019-10-10 02:00:10 +00:00
.x_axis(x_axis)
.y_axis(y_axis)
.datasets(&[
Dataset::default()
.name(&(canvas_data.rx_display))
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(Color::LightBlue))
.data(&canvas_data.network_data_rx),
Dataset::default()
.name(&(canvas_data.tx_display))
.marker(if app_state.use_dot { Marker::Dot } else { Marker::Braille })
.style(Style::default().fg(Color::LightYellow))
.data(&canvas_data.network_data_tx),
])
.render(&mut f, bottom_chunks[0]);
}
// Processes table
{
let width = f64::from(bottom_chunks[1].width);
// Admittedly this is kinda a hack... but we need to:
// * Scroll
// * Show/hide elements based on scroll position
// As such, we use a process_counter to know when we've hit the process we've currently scrolled to. We also need to move the list - we can
// do so by hiding some elements!
let num_rows = i64::from(bottom_chunks[1].height) - 4;
2019-10-10 02:00:10 +00:00
let start_position = get_start_position(
num_rows,
&(app_state.scroll_direction),
&mut app_state.previous_process_position,
&mut app_state.currently_selected_process_position,
);
let sliced_vec: Vec<Vec<String>> = (&canvas_data.process_data[start_position as usize..]).to_vec();
2019-10-10 02:00:10 +00:00
let mut process_counter = 0;
let process_rows = sliced_vec.iter().map(|process| {
Row::StyledData(
process.iter(),
if process_counter == app_state.currently_selected_process_position - start_position {
process_counter = -1;
Style::default().fg(Color::Black).bg(Color::Cyan)
} else {
2019-10-10 02:00:10 +00:00
if process_counter >= 0 {
process_counter += 1;
}
Style::default().fg(TEXT_COLOUR)
},
)
});
{
use app::data_collection::processes::ProcessSorting;
let mut pid = "PID(p)".to_string();
let mut name = "Name(n)".to_string();
let mut cpu = "CPU%(c)".to_string();
let mut mem = "Mem%(m)".to_string();
2019-10-10 02:00:10 +00:00
let direction_val = if app_state.process_sorting_reverse {
"".to_string()
} else {
"".to_string()
2019-10-10 02:00:10 +00:00
};
match app_state.process_sorting_type {
ProcessSorting::CPU => cpu += &direction_val,
ProcessSorting::MEM => mem += &direction_val,
ProcessSorting::PID => pid += &direction_val,
ProcessSorting::NAME => name += &direction_val,
};
Table::new([pid, name, cpu, mem].iter(), process_rows)
.block(
Block::default()
.title("Processes")
.borders(Borders::ALL)
.border_style(match app_state.current_application_position {
app::ApplicationPosition::PROCESS => highlighted_border_style,
_ => border_style,
}),
)
.header_style(Style::default().fg(Color::LightBlue))
.widths(&[
Constraint::Length((width * 0.2) as u16),
Constraint::Length((width * 0.35) as u16),
Constraint::Length((width * 0.2) as u16),
Constraint::Length((width * 0.2) as u16),
])
2019-10-10 02:00:10 +00:00
.render(&mut f, bottom_chunks[1]);
}
}
}
2019-09-12 02:10:49 +00:00
})?;
Ok(())
}
fn get_start_position(
num_rows: i64, scroll_direction: &app::ScrollDirection, previous_position: &mut i64, currently_selected_position: &mut i64,
) -> i64 {
match scroll_direction {
app::ScrollDirection::DOWN => {
if *currently_selected_position < num_rows {
0
} else if *currently_selected_position - num_rows < *previous_position {
*previous_position
} else {
*previous_position = *currently_selected_position - num_rows + 1;
*previous_position
}
}
app::ScrollDirection::UP => {
if *currently_selected_position == *previous_position - 1 {
*previous_position = if *previous_position > 0 { *previous_position - 1 } else { 0 };
*previous_position
} else {
*previous_position
}
}
}
}