summaryrefslogtreecommitdiffstats
path: root/src/modules/cmd_duration.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/cmd_duration.rs')
-rw-r--r--src/modules/cmd_duration.rs53
1 files changed, 1 insertions, 52 deletions
diff --git a/src/modules/cmd_duration.rs b/src/modules/cmd_duration.rs
index 1d732d299..a6556ea62 100644
--- a/src/modules/cmd_duration.rs
+++ b/src/modules/cmd_duration.rs
@@ -2,6 +2,7 @@ use super::{Context, Module, RootModuleConfig};
use crate::configs::cmd_duration::CmdDurationConfig;
use crate::formatter::StringFormatter;
+use crate::utils::render_time;
/// Outputs the time it took the last command to execute
///
@@ -50,36 +51,6 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
Some(undistract_me(module, &config, elapsed))
}
-// Render the time into a nice human-readable string
-fn render_time(raw_millis: u128, show_millis: bool) -> String {
- // Calculate a simple breakdown into days/hours/minutes/seconds/milliseconds
- let (millis, raw_seconds) = (raw_millis % 1000, raw_millis / 1000);
- let (seconds, raw_minutes) = (raw_seconds % 60, raw_seconds / 60);
- let (minutes, raw_hours) = (raw_minutes % 60, raw_minutes / 60);
- let (hours, days) = (raw_hours % 24, raw_hours / 24);
-
- let components = [days, hours, minutes, seconds];
- let suffixes = ["d", "h", "m", "s"];
-
- let mut rendered_components: Vec<String> = components
- .iter()
- .zip(&suffixes)
- .map(render_time_component)
- .collect();
- if show_millis || raw_millis < 1000 {
- rendered_components.push(render_time_component((&millis, &"ms")));
- }
- rendered_components.join("")
-}
-
-/// Render a single component of the time string, giving an empty string if component is zero
-fn render_time_component((component, suffix): (&u128, &&str)) -> String {
- match component {
- 0 => String::new(),
- n => format!("{}{}", n, suffix),
- }
-}
-
#[cfg(not(feature = "notify-rust"))]
fn undistract_me<'a, 'b>(
module: Module<'a>,
@@ -125,32 +96,10 @@ fn undistract_me<'a, 'b>(
#[cfg(test)]
mod tests {
- use super::*;
use crate::test::ModuleRenderer;
use ansi_term::Color;
#[test]
- fn test_500ms() {
- assert_eq!(render_time(500_u128, true), "500ms")
- }
- #[test]
- fn test_10s() {
- assert_eq!(render_time(10_000_u128, true), "10s")
- }
- #[test]
- fn test_90s() {
- assert_eq!(render_time(90_000_u128, true), "1m30s")
- }
- #[test]
- fn test_10110s() {
- assert_eq!(render_time(10_110_000_u128, true), "2h48m30s")
- }
- #[test]
- fn test_1d() {
- assert_eq!(render_time(86_400_000_u128, true), "1d")
- }
-
- #[test]
fn config_blank_duration_1s() {
let actual = ModuleRenderer::new("cmd_duration")
.cmd_duration(1000)