dev_prune/output.rs
1// Copyright 2026 VKrishna04
2// SPDX-License-Identifier: Apache-2.0
3
4// Pretty-print helpers for terminal output.
5//
6// Provides colored, formatted output for CLI commands and terminal spinners.
7
8use colored::Colorize;
9use indicatif::{ProgressBar, ProgressStyle};
10use std::path::Path;
11use std::time::Duration;
12use unicode_width::{UnicodeWidthChar, UnicodeWidthStr};
13
14/// Truncate `s` to at most `cells` terminal columns, marking the cut with an ellipsis.
15///
16/// Returns a string exactly `cells` columns wide whenever it truncates. A wide
17/// character straddling the boundary is dropped rather than split, which can leave the
18/// result one column short — the trailing space closes that gap, so callers can rely on
19/// the width being exact.
20pub fn truncate_display(s: &str, cells: usize) -> String {
21 if UnicodeWidthStr::width(s) <= cells {
22 return s.to_string();
23 }
24 if cells == 0 {
25 return String::new();
26 }
27 // One column is reserved for the ellipsis itself.
28 let budget = cells - 1;
29 let mut out = String::new();
30 let mut used = 0usize;
31 for c in s.chars() {
32 let w = UnicodeWidthChar::width(c).unwrap_or(0);
33 if used + w > budget {
34 break;
35 }
36 out.push(c);
37 used += w;
38 }
39 out.push('…');
40 used += 1;
41 out.extend(std::iter::repeat_n(' ', cells.saturating_sub(used)));
42 out
43}
44
45/// Left-align `s` in a column exactly `cells` terminal columns wide.
46///
47/// This is `{:<width$}` corrected for the fact that Rust pads to a count of `char`s and
48/// a terminal draws in columns. A CJK or emoji character occupies two of them, so a
49/// path whose name is eight Chinese characters measures 8 and draws 16 — and under
50/// `{:<35}` every column to its right shifts by eight. Anything wider than the column
51/// is truncated rather than allowed to push its neighbours off the edge.
52pub fn pad_display(s: &str, cells: usize) -> String {
53 let width = UnicodeWidthStr::width(s);
54 if width > cells {
55 return truncate_display(s, cells);
56 }
57 let mut out = s.to_string();
58 out.extend(std::iter::repeat_n(' ', cells - width));
59 out
60}
61
62/// Helper to strip Windows UNC `\\?\` prefix, macOS `/private/` prefix, and collapse double slashes.
63pub fn clean_path<P: AsRef<Path>>(path: P) -> String {
64 let s = path.as_ref().display().to_string();
65 // `\\?\UNC\server\share` is the verbatim spelling of `\\server\share` — dropping
66 // the whole prefix must put the `\\` back, or the result names a relative path
67 // `UNC\server\share` that nothing can open.
68 let s = if let Some(stripped) = s.strip_prefix(r"\\?\UNC\") {
69 format!(r"\\{stripped}")
70 } else if let Some(stripped) = s.strip_prefix(r"\\?\") {
71 stripped.to_string()
72 } else {
73 s
74 };
75 let s = if let Some(stripped) = s.strip_prefix("/private/var/") {
76 format!("/var/{stripped}")
77 } else if let Some(stripped) = s.strip_prefix("/private/tmp/") {
78 format!("/tmp/{stripped}")
79 } else {
80 s
81 };
82 // Collapse doubled separators left by path joins — but never a leading `//`:
83 // `//server/share` names a network share, and `/server/share` does not. A single
84 // `replace` also leaves `///` half-collapsed, so loop until settled.
85 let (head, tail) = match s.strip_prefix("//") {
86 Some(rest) => ("//", rest),
87 None => ("", s.as_str()),
88 };
89 let mut tail = tail.to_string();
90 while tail.contains("//") {
91 tail = tail.replace("//", "/");
92 }
93 format!("{head}{tail}")
94}
95
96/// Reduce a package manager's failure output to the part that says what went wrong.
97///
98/// A failing `npm ci` prints its entire usage screen — around a hundred and twenty lines
99/// of flags — and dev-prune used to relay every one of them into the middle of a prune
100/// report. The three lines that identified the problem were somewhere in there, and the
101/// report they were in became unreadable.
102///
103/// So: if any line looks like a diagnostic, show only those; otherwise show the first
104/// few lines, which is where a tool that is not npm usually puts its complaint. The
105/// count of what was dropped is always printed, and the line naming a full log file is
106/// always kept — the whole point of condensing is that the full text stays reachable.
107pub fn condense_tool_output(raw: &str, max_lines: usize) -> String {
108 let lines: Vec<&str> = raw
109 .lines()
110 .map(str::trim_end)
111 .filter(|l| !l.trim().is_empty())
112 .collect();
113 if lines.len() <= max_lines {
114 return lines.join("\n");
115 }
116
117 let is_diagnostic = |l: &&str| {
118 let low = l.to_lowercase();
119 low.contains("error")
120 || low.contains("err!")
121 || low.contains("fatal")
122 || low.contains("failed")
123 || low.contains("cannot")
124 || low.contains("unable to")
125 || low.contains("not found")
126 || low.contains("warn")
127 };
128 // The log-file pointer is the escape hatch, so it survives even when it is neither a
129 // diagnostic nor near the top.
130 let is_log_pointer = |l: &&str| l.to_lowercase().contains("log of this run can be found");
131
132 let diagnostics: Vec<&str> = lines.iter().copied().filter(is_diagnostic).collect();
133 let mut kept: Vec<&str> = if diagnostics.is_empty() {
134 lines.iter().copied().take(max_lines).collect()
135 } else {
136 diagnostics.into_iter().take(max_lines).collect()
137 };
138 for line in lines.iter().copied().filter(is_log_pointer) {
139 if !kept.contains(&line) {
140 kept.push(line);
141 }
142 }
143
144 let dropped = lines.len().saturating_sub(kept.len());
145 let mut out = kept.join("\n");
146 if dropped > 0 {
147 out.push_str(&format!(
148 "\n… {dropped} more {} of output",
149 plural(dropped, "line", "lines")
150 ));
151 }
152 out
153}
154
155/// Create an animated terminal loading spinner for long-running operations.
156pub fn create_spinner(msg: &'static str) -> ProgressBar {
157 let pb = ProgressBar::new_spinner();
158 pb.set_style(
159 ProgressStyle::default_spinner()
160 .tick_chars("⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏")
161 .template("{spinner:.cyan} {msg}")
162 .expect("Invalid progress bar template"),
163 );
164 pb.set_message(msg);
165 pb.enable_steady_tick(Duration::from_millis(80));
166 pb
167}
168
169/// A determinate progress bar for a pass whose total is known up front.
170///
171/// A spinner says only "still going". Sizing eighty repositories takes long enough that
172/// the difference matters: `41/80` and a bar that visibly moves is the difference
173/// between waiting and reaching for Ctrl-C. Use it wherever the count is known before
174/// the work starts, and [`create_spinner`] only where it genuinely is not.
175///
176/// Safe to advance from several threads at once — `indicatif` synchronises internally,
177/// which is what lets the parallel status scan report from every worker.
178pub fn create_progress_bar(msg: &'static str, total: u64) -> ProgressBar {
179 let pb = ProgressBar::new(total);
180 pb.set_style(
181 ProgressStyle::default_bar()
182 // Eighth-block partials, so the bar advances smoothly at one repository per
183 // step instead of jumping a whole cell every third one.
184 .progress_chars("█▉▊▋▌▍▎▏ ")
185 .tick_chars("⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏")
186 .template("{spinner:.cyan} {msg} {bar:28.green/dim} {pos}/{len} {elapsed}")
187 .expect("Invalid progress bar template"),
188 );
189 pb.set_message(msg);
190 // The spinner has to keep turning between updates: a repository holding a multi-
191 // gigabyte dependency tree can hold its worker for seconds, and a frozen bar during
192 // that is exactly the impression this is here to avoid.
193 pb.enable_steady_tick(Duration::from_millis(80));
194 pb
195}
196
197/// Color the contents of `backtick` spans — commands, flags, filenames — so the part
198/// the user is meant to type or look for stands out from the prose around it.
199///
200/// Pairs only: an odd trailing backtick is left exactly as typed. The backticks
201/// themselves are kept, because the `colored` crate emits no escape codes when stdout
202/// is not a terminal (or `NO_COLOR` is set), and in that plain rendering the backticks
203/// are what marks the span.
204fn highlight_code_spans(msg: &str) -> String {
205 if !msg.contains('`') {
206 return msg.to_string();
207 }
208 let mut out = String::with_capacity(msg.len() + 16);
209 let mut rest = msg;
210 while let Some(start) = rest.find('`') {
211 let Some(len) = rest[start + 1..].find('`') else {
212 break;
213 };
214 out.push_str(&rest[..start]);
215 out.push('`');
216 out.push_str(&rest[start + 1..start + 1 + len].cyan().to_string());
217 out.push('`');
218 rest = &rest[start + len + 2..];
219 }
220 out.push_str(rest);
221 out
222}
223
224/// Print a success message (green checkmark)
225pub fn print_success(msg: &str) {
226 println!("{} {}", "✓".green().bold(), highlight_code_spans(msg));
227}
228
229/// Print a warning message (yellow exclamation)
230///
231/// To stderr, like errors: warnings can fire while stdout is a pipe or holds a pending
232/// `--json` document (adapter drift notices, the criterion note), and a warning printed
233/// into that stream is either invisible or a parse error.
234pub fn print_warning(msg: &str) {
235 eprintln!("{} {}", "⚠".yellow().bold(), highlight_code_spans(msg));
236}
237
238/// Print an error message (red X)
239pub fn print_error(msg: &str) {
240 eprintln!("{} {}", "✗".red().bold(), highlight_code_spans(msg));
241}
242
243/// Print an info message (dimmed arrow)
244///
245/// Dimmed rather than coloured on purpose. Info lines are the most common thing this
246/// tool prints, and a bold blue marker on every one of them competes with the ✓ and ⚠
247/// that actually need to be noticed — blue is also the worst colour to bet on, being
248/// close to unreadable against the default background of several popular terminals.
249pub fn print_info(msg: &str) {
250 println!("{} {}", "→".dimmed(), highlight_code_spans(msg));
251}
252
253/// Print a line in the terminal's dimmed style, with no marker glyph.
254///
255/// For text that belongs to the item above it rather than being an item of its own —
256/// the "and 13 more" under a list. A `→` there would announce it as a new point.
257pub fn print_dimmed(msg: &str) {
258 println!("{}", highlight_code_spans(msg).dimmed());
259}
260
261/// Print a notice to stderr.
262///
263/// For anything the user should see that is *about* the command rather than part of its
264/// output — a deprecated flag, say. It has to be stderr: `--json` promises stdout carries
265/// one JSON document and nothing else, and a friendly note printed above it is the
266/// difference between a parseable contract and a parse error.
267pub fn print_notice(msg: &str) {
268 eprintln!("{} {}", "→".dimmed(), highlight_code_spans(msg));
269}
270
271/// Widest line this tool will print prose at, however wide the terminal is.
272///
273/// A paragraph set to the full width of a maximised terminal is measurably harder to
274/// read than the same paragraph at ninety columns: the eye loses the line it was on
275/// when it travels back to the left edge. Tables and paths are exempt — truncating
276/// those loses information, whereas wrapping prose loses nothing.
277const MAX_PROSE_WIDTH: usize = 90;
278
279/// Print an explanatory paragraph, wrapped to the terminal and indented under `indent`.
280///
281/// The alternative is what `devp run` did until a machine with twenty-one unreadable
282/// repositories showed it: three-line explanations soft-wrapped by the terminal back to
283/// column zero, so the continuation of an indented note started further left than the
284/// note did and read as a new item.
285pub fn print_wrapped(indent: &str, msg: &str) {
286 let width = crossterm::terminal::size()
287 .map(|(cols, _)| cols as usize)
288 .unwrap_or(MAX_PROSE_WIDTH)
289 .min(MAX_PROSE_WIDTH);
290 // A terminal narrow enough to make the wrap width zero would loop forever below.
291 let room = width.saturating_sub(indent.len()).max(20);
292
293 let mut line = String::new();
294 for word in msg.split_whitespace() {
295 if !line.is_empty() && line.width() + 1 + word.width() > room {
296 println!("{indent}{}", highlight_code_spans(&line));
297 line.clear();
298 }
299 if !line.is_empty() {
300 line.push(' ');
301 }
302 line.push_str(word);
303 }
304 if !line.is_empty() {
305 println!("{indent}{}", highlight_code_spans(&line));
306 }
307}
308
309/// Print a section header
310///
311/// Weight, not colour. A header is structure — the reader finds it by scanning down the
312/// left edge, which bold already serves. Colouring and underlining it as well spends
313/// two more signals on something that was already unambiguous, and leaves the palette
314/// with nothing distinct to say when a line genuinely means "this went wrong".
315pub fn print_header(msg: &str) {
316 println!("\n{}", msg.bold());
317}
318
319/// A heading *inside* a report that already opened with a [`print_header`].
320///
321/// Same reasoning as `print_header` — weight, not colour — set one indent in, so it reads
322/// as a division of the list under it rather than the start of a second report.
323pub fn print_section(msg: &str) {
324 println!("\n {}", msg.bold());
325}
326
327/// A byte figure styled as "space you got back" — the number this tool exists for.
328pub fn format_bytes_styled(bytes: u64) -> String {
329 format_bytes(bytes).green().bold().to_string()
330}
331
332/// A byte figure styled as "this is the number to look at", saying nothing about whether
333/// it is good news.
334///
335/// [`format_bytes_styled`]'s green means "space you got back". A cache's cost per
336/// repository is not that: it is the figure a decision turns on, and green would promise
337/// the reader something the number does not mean. Weight rather than colour, the same
338/// choice [`print_header`] makes and for the same reason.
339pub fn format_bytes_weighted(bytes: u64) -> String {
340 format_bytes(bytes).bold().to_string()
341}
342
343/// A filesystem path, styled. One place to change if cyan-on-cyan ever clashes.
344pub fn styled_path<P: AsRef<Path>>(path: P) -> String {
345 clean_path(path).cyan().to_string()
346}
347
348/// A package-manager name, deliberately left in the terminal's default colour.
349///
350/// It used to be magenta, which put a fifth hue on a status row that already carried
351/// green, cyan and a state colour — and an adapter name is an identifier, not a status,
352/// so the colour was decorating rather than saying anything. Plain text is also what
353/// keeps a wall of coloured columns readable: something has to be the resting state.
354///
355/// Still a function, and still called everywhere an adapter is named, so this stays one
356/// decision in one place rather than a hundred call sites to revisit.
357pub fn styled_adapter(name: &str) -> String {
358 name.to_string()
359}
360
361/// Print the dev-prune ASCII art banner
362pub fn print_banner() {
363 let art = format!(
364 r#"
365 ___ _____ __ __ ____ ____ _ _ _ _ _____
366| _ \ | ____|\ \ / / | _ \| _ \| | | | \ | | ____|
367| | | || _| \ \ / / | |_) | |_) | | | | \| | _|
368| |_| || |___ \ V / | __/| _ <| |_| | |\ | |___
369|____/ |_____| \_/ |_| |_| \_\\___/|_| \_|_____| v{}
370"#,
371 crate::constants::VERSION
372 );
373 // Cyan, not a hard-coded RGB. `truecolor` degrades to nothing useful on a 16- or
374 // 256-colour terminal, and it ignored the palette the user picked for their own
375 // terminal — a named colour honours it and matches the cyan used everywhere else.
376 println!("{}", art.cyan().bold());
377}
378
379/// Print the one-line credit, if anything is going to read it.
380///
381/// Gated on stdout being a terminal, which is the whole of the logic — a person watching
382/// the command run sees it, a pipe, a redirect, a CI log and every `--json` consumer does
383/// not. There is no other condition: no build flag, no environment variable, no check
384/// that the binary is called `devp`. Forks are welcome to change
385/// [`constants::ATTRIBUTION_LINE`] or delete this function, and nothing anywhere will
386/// notice or complain.
387pub fn print_attribution() {
388 use std::io::IsTerminal;
389 if std::io::stdout().is_terminal() {
390 println!("{}", crate::constants::ATTRIBUTION_LINE.dimmed());
391 }
392}
393
394/// Pick the singular or plural form for a count.
395///
396/// Small, but "Unregistered 1 repositories" is the kind of thing people notice and
397/// nothing else in the codebase was doing it consistently.
398pub fn plural<'a>(count: usize, one: &'a str, many: &'a str) -> &'a str {
399 if count == 1 { one } else { many }
400}
401
402/// Format bytes into human-readable string (e.g., "1.2 GB", "450 MB")
403pub fn format_bytes(bytes: u64) -> String {
404 use humansize::{BINARY, format_size};
405 format_size(bytes, BINARY)
406}
407
408/// A duration in seconds, at the precision a person would actually say it in.
409///
410/// Deliberately coarse above a minute: an estimate printed as "14m 37s" claims a second
411/// of accuracy that a throughput average over a handful of restores does not have, and
412/// reads as a measurement rather than as the guess it is.
413pub fn format_seconds(secs: u64) -> String {
414 match secs {
415 s if s < 60 => format!("{s}s"),
416 s if s < 3600 => format!("{}m", s.div_ceil(60)),
417 s => {
418 let hours = s / 3600;
419 let minutes = (s % 3600) / 60;
420 if minutes == 0 {
421 format!("{hours}h")
422 } else {
423 format!("{hours}h {minutes}m")
424 }
425 }
426 }
427}
428
429/// The suffix explaining bytes a prune does not free because a package-manager store
430/// hardlinks them (pnpm, bun). Empty when there is nothing to explain, so call sites
431/// can append it unconditionally.
432///
433/// This line exists because `du` and Explorer report the *apparent* size: without it,
434/// "node_modules (40 MiB)" beside a 2 GiB folder reads as a bug rather than as pnpm
435/// working exactly as designed.
436pub fn shared_note(shared_bytes: u64, adapter: &str) -> String {
437 if shared_bytes == 0 {
438 String::new()
439 } else {
440 format!(
441 " (+{} hardlinked into the {adapter} store — not counted, the store keeps them)",
442 format_bytes(shared_bytes)
443 )
444 }
445}
446
447#[cfg(test)]
448mod tests {
449 use super::*;
450
451 #[test]
452 fn test_format_bytes() {
453 assert_eq!(format_bytes(0), "0 B");
454 assert_eq!(format_bytes(1024), "1 KiB");
455 assert_eq!(format_bytes(1024 * 1024), "1 MiB");
456 assert_eq!(format_bytes(1024 * 1024 * 1024), "1 GiB");
457 }
458
459 #[test]
460 fn code_spans_survive_highlighting_verbatim_when_color_is_off() {
461 // The test harness has no TTY, so `colored` emits nothing — which is itself the
462 // property under test: piped output must be byte-identical to the input,
463 // including the backticks and any odd trailing one.
464 colored::control::set_override(false);
465 assert_eq!(
466 highlight_code_spans("run `devp setup` again"),
467 "run `devp setup` again"
468 );
469 assert_eq!(highlight_code_spans("no spans here"), "no spans here");
470 assert_eq!(
471 highlight_code_spans("odd `tick remains"),
472 "odd `tick remains"
473 );
474 assert_eq!(
475 highlight_code_spans("`a` and `b`, plus `stray"),
476 "`a` and `b`, plus `stray"
477 );
478 colored::control::unset_override();
479 }
480
481 #[test]
482 fn a_wide_name_is_padded_to_columns_not_to_char_count() {
483 // Eight Chinese characters: eight `char`s, sixteen columns. `{:<20}` would add
484 // twelve spaces and draw twenty-eight columns wide; this adds four.
485 let cjk = "项目目录名称测试";
486 assert_eq!(cjk.chars().count(), 8);
487 assert_eq!(UnicodeWidthStr::width(cjk), 16);
488 let padded = pad_display(cjk, 20);
489 assert_eq!(UnicodeWidthStr::width(padded.as_str()), 20);
490 assert!(padded.ends_with(" "));
491 }
492
493 #[test]
494 fn ascii_padding_still_matches_the_format_specifier_it_replaces() {
495 assert_eq!(pad_display("repo", 10), format!("{:<10}", "repo"));
496 assert_eq!(pad_display("", 3), " ");
497 }
498
499 #[test]
500 fn an_overlong_name_is_truncated_rather_than_pushing_the_next_column() {
501 let long = "a".repeat(50);
502 let out = pad_display(&long, 10);
503 assert_eq!(UnicodeWidthStr::width(out.as_str()), 10);
504 assert!(out.ends_with('…'));
505 }
506
507 #[test]
508 fn a_wide_char_straddling_the_cut_is_dropped_and_the_gap_is_closed() {
509 // Budget after the ellipsis is 4 columns; the third character would need
510 // columns 5–6, so it is dropped and a space keeps the width exact.
511 let out = truncate_display("测试字符", 5);
512 assert_eq!(UnicodeWidthStr::width(out.as_str()), 5);
513 assert!(out.starts_with("测试"));
514 }
515
516 #[test]
517 fn an_emoji_path_component_counts_as_two_columns() {
518 let s = "🚀repo";
519 assert_eq!(UnicodeWidthStr::width(s), 6);
520 assert_eq!(UnicodeWidthStr::width(pad_display(s, 12).as_str()), 12);
521 }
522
523 #[test]
524 fn a_zero_width_column_produces_nothing() {
525 assert_eq!(truncate_display("anything", 0), "");
526 }
527
528 #[test]
529 fn test_clean_path() {
530 assert_eq!(clean_path(r"\\?\C:\Users\krish"), r"C:\Users\krish");
531 assert_eq!(
532 clean_path(r"\\?\UNC\server\share\repo"),
533 r"\\server\share\repo"
534 );
535 assert_eq!(clean_path(r"/private/var/tmp/repo"), r"/var/tmp/repo");
536 // A leading `//` is a network-share spelling and survives; only the doubled
537 // separators inside the path collapse.
538 assert_eq!(clean_path(r"//server//share//repo"), r"//server/share/repo");
539 assert_eq!(clean_path(r"/home//user///repo"), r"/home/user/repo");
540 }
541
542 #[test]
543 fn short_output_is_relayed_whole() {
544 let raw = "npm error code EUSAGE\nnpm error requires an existing package-lock.json";
545 assert_eq!(condense_tool_output(raw, 6), raw);
546 }
547
548 #[test]
549 fn a_usage_screen_is_reduced_to_its_diagnostics() {
550 // The shape that motivated this: `npm ci` failed, printed its whole usage
551 // screen, and dev-prune relayed all of it into the middle of a prune report.
552 let mut raw = String::from("npm error code EUSAGE\nnpm error\n");
553 raw.push_str("Usage:\nnpm ci\n");
554 for i in 0..120 {
555 raw.push_str(&format!(" --flag-{i} <value>\n"));
556 }
557 raw.push_str("npm error A complete log of this run can be found in: /tmp/log\n");
558
559 let out = condense_tool_output(&raw, 6);
560 assert!(out.contains("EUSAGE"), "{out}");
561 // The escape hatch survives even though it is the very last line.
562 assert!(out.contains("complete log of this run"), "{out}");
563 assert!(!out.contains("--flag-50"), "{out}");
564 assert!(out.contains("more lines of output"), "{out}");
565 }
566
567 #[test]
568 fn output_with_no_diagnostics_keeps_the_top_of_it() {
569 // Not every tool marks its complaint. Falling back to the first few lines beats
570 // dropping everything, and the count still says what was hidden.
571 let raw: String = (0..40).map(|i| format!("line {i}\n")).collect();
572 let out = condense_tool_output(&raw, 3);
573 assert!(out.starts_with("line 0\nline 1\nline 2\n…"), "{out}");
574 assert!(out.contains("37 more lines"), "{out}");
575 }
576
577 #[test]
578 fn the_dropped_count_never_claims_more_than_there_was() {
579 // Blank lines are removed before counting, so a command that padded its output
580 // must not be reported as having said more than it did.
581 let raw = "a\n\n\nb\n\n\nc\n\n\nd\n";
582 let out = condense_tool_output(raw, 2);
583 assert!(out.contains("2 more lines"), "{out}");
584 }
585
586 #[test]
587 fn an_estimate_is_stated_at_the_precision_it_has() {
588 assert_eq!(format_seconds(45), "45s");
589 // Rounded up: "0m" for a 61-second restore reads as instant.
590 assert_eq!(format_seconds(61), "2m");
591 assert_eq!(format_seconds(3600), "1h");
592 assert_eq!(format_seconds(4500), "1h 15m");
593 }
594}