#console #progress-bar #logging #place #static #bars #words

console_static_text

Logging for text that should stay in the same place in a console

15 unstable releases

0.8.2 Dec 25, 2023
0.8.1 Mar 27, 2023
0.7.1 Mar 9, 2023
0.5.0 Dec 17, 2022

#280 in Text processing

Download history 1200/week @ 2023-12-21 1176/week @ 2023-12-28 1485/week @ 2024-01-04 1782/week @ 2024-01-11 1808/week @ 2024-01-18 1951/week @ 2024-01-25 2164/week @ 2024-02-01 1903/week @ 2024-02-08 1676/week @ 2024-02-15 1766/week @ 2024-02-22 2043/week @ 2024-02-29 1923/week @ 2024-03-07 1670/week @ 2024-03-14 1980/week @ 2024-03-21 2408/week @ 2024-03-28 1829/week @ 2024-04-04

8,243 downloads per month
Used in 23 crates (12 directly)

MIT license

33KB
910 lines

console_static_text

Crate for logging text that should stay in the same place in a console. This measures words to handle wrapping and has some console resizing support. Example use might be for displaying progress bars or rendering selections.

Example use with the console crate:

use console_static_text::ConsoleSize;
use console_static_text::ConsoleStaticText;

let mut static_text = ConsoleStaticText::new(|| {
  let size = console::Term::stderr().size();
  ConsoleSize {
    rows: Some(size.0),
    cols: Some(size.1),
  }
});

static_text.eprint("initial\ntext");
std::thread::sleep_ms(1000);

// will clear the previous text and put this new text
static_text.eprint("new text");
std::thread::sleep_ms(1000);

// or get and output the text manually
if let Some(text) = static_text.render("new text") {
  eprint!("{}", text);
  std::thread::sleep_ms(1000);
}

// clear out the previous text
static_text.eprint_clear();

Hanging indentation

To get hanging indentation, you can use the lower level "items" api.

static_text.eprint_items(vec![
  TextItem::Text(Cow::Borrowed("Some non-hanging text.")),
  TextItem::HangingText {
    text: Cow::Borrowed("some long text that will wrap at a certain width"),
    indent: 4,
  },
].iter());

This is useful when implementing something like a selection UI where you want text to wrap with hanging indentation.

"sized" feature

By default, this crate encourages you to use your own functionality for getting the console size since you'll likely already have a dependency that does that, but if not, then you can use the sized Cargo.toml feature.

[dependencies]
console_static_text = { version = "...", features = ["sized"] }

Then you can use the new_sized function, which will get the console size automatically:

let mut static_text = ConsoleStaticText::new_sized();

static_text.eprint("initial\ntext");
std::thread::sleep_ms(1000);

static_text.eprint("next text");

Dependencies

~0.2–12MB
~119K SLoC