Skip to content

Commit 0c4987a

Browse files
authored
Table formatting logic overhaul (#305)
* Table formatting logic overhaul - Columns now auto-expand and auto-shrink proportionally - Data column selection logic is now set per-table - Necessary boilerplate added to allow tables with more (or fewer) columns in the future * Better naming: `TableLayout` -> `DisplayLayout` * Fix clippy complaints * Optimise layout cutoff widths - These values are pretty much arbitrary. I'm open to further optimising them in the future. * Updated test snapshots to match new layout settings * Remove unnecessary logging * Correct `debug_fn` impl for `column_selector` * Further optimise bandwidth column display * Update test snapshots * Layout width preset minor adjustment
1 parent d9cc84b commit 0c4987a

File tree

40 files changed

+624
-515
lines changed

40 files changed

+624
-515
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ log = "0.4.20"
4040
simplelog = "0.12.1"
4141
clap-verbosity-flag = "2.0.1"
4242
derivative = "2.2.0"
43+
itertools = "0.11.0"
4344

4445
[target.'cfg(target_os="windows")'.dependencies]
4546
netstat2 = "0.9.1"
@@ -53,7 +54,6 @@ insta = "1.34.0"
5354
pnet_base = "0.34.0"
5455
packet-builder = { version = "0.7.0", git = "https://github.com/cyqsimon/packet_builder.git", branch = "patch-update" }
5556
rstest = "0.18.2"
56-
itertools = "0.11.0"
5757

5858
[target.'cfg(target_os="windows")'.build-dependencies]
5959
anyhow = "1.0.75"

src/display/components/display_bandwidth.rs

+13-15
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@ use std::fmt;
22

33
pub struct DisplayBandwidth {
44
pub bandwidth: f64,
5-
pub as_rate: bool,
65
}
76

87
impl fmt::Display for DisplayBandwidth {
98
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
10-
let suffix = if self.as_rate { "ps" } else { "" };
11-
if self.bandwidth > 999_999_999_999.0 {
12-
// 1024 * 1024 * 1024 * 1024
13-
write!(f, "{:.2}TiB{suffix}", self.bandwidth / 1_099_511_627_776.0,)
14-
} else if self.bandwidth > 999_999_999.0 {
15-
// 1024 * 1024 * 1024
16-
write!(f, "{:.2}GiB{suffix}", self.bandwidth / 1_073_741_824.0)
17-
} else if self.bandwidth > 999_999.0 {
18-
// 1024 * 1024
19-
write!(f, "{:.2}MiB{suffix}", self.bandwidth / 1_048_576.0)
20-
} else if self.bandwidth > 999.0 {
21-
write!(f, "{:.2}KiB{suffix}", self.bandwidth / 1024.0)
9+
// see https://github.com/rust-lang/rust/issues/41620
10+
let (div, suffix) = if self.bandwidth >= 1e12 {
11+
(1_099_511_627_776.0, "TiB")
12+
} else if self.bandwidth >= 1e9 {
13+
(1_073_741_824.0, "GiB")
14+
} else if self.bandwidth >= 1e6 {
15+
(1_048_576.0, "MiB")
16+
} else if self.bandwidth >= 1e3 {
17+
(1024.0, "KiB")
2218
} else {
23-
write!(f, "{}B{suffix}", self.bandwidth)
24-
}
19+
(1.0, "B")
20+
};
21+
22+
write!(f, "{:.2}{suffix}", self.bandwidth / div)
2523
}
2624
}

src/display/components/header_details.rs

+13-13
Original file line numberDiff line numberDiff line change
@@ -80,19 +80,19 @@ impl<'a> HeaderDetails<'a> {
8080
}
8181

8282
fn bandwidth_string(&self) -> String {
83-
let c_mode = self.state.cumulative_mode;
84-
format!(
85-
" Total Up / Down: {} / {}{}",
86-
DisplayBandwidth {
87-
bandwidth: self.state.total_bytes_uploaded as f64,
88-
as_rate: !c_mode,
89-
},
90-
DisplayBandwidth {
91-
bandwidth: self.state.total_bytes_downloaded as f64,
92-
as_rate: !c_mode,
93-
},
94-
if self.paused { " [PAUSED]" } else { "" }
95-
)
83+
let t = if self.state.cumulative_mode {
84+
"Data"
85+
} else {
86+
"Rate"
87+
};
88+
let up = DisplayBandwidth {
89+
bandwidth: self.state.total_bytes_uploaded as f64,
90+
};
91+
let down = DisplayBandwidth {
92+
bandwidth: self.state.total_bytes_downloaded as f64,
93+
};
94+
let paused = if self.paused { " [PAUSED]" } else { "" };
95+
format!(" Total {t} (Up / Down): {up} / {down}{paused}")
9696
}
9797

9898
fn render_elapsed_time(

src/display/components/layout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fn top_app_and_bottom_split(rect: Rect) -> (Rect, Rect, Rect) {
2727

2828
pub struct Layout<'a> {
2929
pub header: HeaderDetails<'a>,
30-
pub children: Vec<Table<'a>>,
30+
pub children: Vec<Table>,
3131
pub footer: HelpText,
3232
}
3333

0 commit comments

Comments
 (0)