Struct fyi_msg::Progless

source ·
pub struct Progless { /* private fields */ }
Available on crate feature progress only.
Expand description

§Progless.

This is a simple, thread-safe, steady-ticking CLI progress bar that can be used to entertain users while long jobs are running.

To use it, enable the progress crate flag.

§Examples

Initialize and use as follows:

use fyi_msg::Progless;

// You can use [`Progless::try_from`] for any unsigned integer type, or the
// infallible [`Progless::from`] on an [`std::num::NonZeroU32`].
let pbar = Progless::try_from(1001_u32).unwrap();

// Iterate your taskwork or whatever.
for i in 0..1001 {
    // Do some work.
    // ...

    // Increment the count.
    pbar.increment();
}

// Close it off.
pbar.finish();

Progless is thread-safe so can be called from parallel iterators like those from rayon without any special fuss.

When doing parallel work, many tasks might be “in progress” simultaneously. To that end, you may wish to use the Progless::add and Progless::remove methods at the start and end of each iteration instead of manually incrementing the counts.

Doing this, a list of active tasks will be maintained and printed along with the progress. Removing a task automatically increments the done count, so if you’re tracking tasks, you should not call Progless::increment.



// ... snip

// Iterate in Parallel.
(0..1001).into_par_iter().for_each(|i| {
    let task: String = format!("Task #{}.", i);
    pbar.add(&task);

    // Do some work.

    pbar.remove(&task);
});

// ... snip

Implementations§

source§

impl Progless

§Constants.

source

pub const MAX_TOTAL: usize = 4_294_967_295usize

§Max Total.

A Progless instance cannot have a total higher than this value. This is technically u32::MAX, but in practice usize is used more often, so this value reflects whichever of the two is smaller. Regardless, it’s an awful lot of tasks to try to visualize. Haha.

source

pub const MAX_TOTAL_ERROR: ProglessError = ProglessError::TotalOverflow

§Total Error.

This is the error message that is returned when a total is too high for a Progless instance.

source§

impl Progless

§Construction/Destruction.

source

pub fn with_title<S>(self, title: Option<S>) -> Self
where S: Into<Msg>,

§With Title.

Add a title to the progress bar. When present, this will print on its own line immediately before the progress line.

Titles are formatted as Msg objects. You can pass a Msg directly, or something that implements AsRef<str> or Borrow<str>.

As this takes an Option, you can pass None to unset the title entirely.

§Examples
use fyi_msg::{Msg, Progless};

// Initialize with a `u32` total.
let pbar = Progless::try_from(1001_u32).unwrap()
    .with_title(Some(Msg::info("Doing things!")));

// Iterate your taskwork or whatever.
for i in 0..1001 {
    // Do some work.
    // ...

    // Increment the done count.
    pbar.increment();
}

pbar.finish();
source

pub fn with_reticulating_splines<S>(self, app: S) -> Self
where S: AsRef<str>,

§Set Title As X: Reticulating Splines…

This is simply shorthand for generating a “Reticulating Splines…” title, where X is the value passed in (usually the app name).

It’s a sort of default…

source

pub fn finish(&self) -> Duration

§Stop.

Finish the progress bar, shut down the steady ticker, and return the time elapsed.

Calling this method will also erase any previously-printed progress information from the CLI screen.

§Examples
use fyi_msg::Progless;

// Initialize with a `u32` total.
let pbar = Progless::try_from(1001_u32).unwrap();

// Iterate your taskwork or whatever.
for i in 0..1001 {
    // Do some work.
    // ...

    // Increment the done count.
    pbar.increment();
}

// Finish it off!
pbar.finish();
source

pub fn summary<S>(&self, kind: MsgKind, singular: S, plural: S) -> Msg
where S: AsRef<str>,

§Summarize.

Generate a formatted Msg summary of the (finished) progress using the supplied verb and noun.

If you just want a generic “Finished in X.” message, use Msg::from instead.

Note: if you called Progless::reset anywhere along the way, this won’t include totals from the previous run(s). (The duration is the only constant.)

§Examples
use fyi_msg::{MsgKind, Progless};

// Initialize with a `u32` total.
let pbar = Progless::try_from(1001_u32).unwrap();

// Iterate your taskwork or whatever.
for i in 0..1001 {
    // Do some work.
    // ...

    // Increment the done count.
    pbar.increment();
}

pbar.finish();

// Print something like "Crunched X files in Y seconds."
pbar.summary(MsgKind::Crunched, "file", "files").print();
source§

impl Progless

§Passthrough Setters.

source

pub fn add<S>(&self, txt: S)
where S: AsRef<str>,

§Add a task.

The progress bar can optionally keep track of tasks that are actively “in progress”, which can be particularly useful when operating in parallel.

Any AsRef<str> value will do. See the module documentation for example usage.

§Examples
use fyi_msg::Progless;

// Initialize with a `u32` total.
let pbar = Progless::try_from(1001_u32).unwrap();

// Iterate your taskwork or whatever.
for i in 0..1001 {
    let task: String = format!("Task #{}.", i);
    pbar.add(&task);

    // Do some work.

    pbar.remove(&task);
}

pbar.finish();
source

pub fn increment(&self)

§Increment Done.

Increase the completed count by exactly one. This is safer to use than set_done() in cases where multiple tasks are happening at once as it will not accidentally decrease the value, etc.

See the various examples all over this page for more information.

source

pub fn increment_n(&self, n: u32)

§Increment Done by N.

Increase the completed count by n. This is safer to use than set_done() and more efficient than calling increment() a million times in a row.

source

pub fn push_msg<S>(&self, msg: S, stderr: bool)
where S: Into<Msg>,

§Push Message.

“Insert” (print) a line before the running progress bar, useful for debug logs, warnings, etc., that would otherwise have to wait for the Progless instance to finish hogging the display.

Note: This will add a \n to the end of the string.

The message will be printed to STDERR if stderr, otherwise STDOUT.

source

pub fn remove<S>(&self, txt: S)
where S: AsRef<str>,

§Remove a task.

This is the equal and opposite companion to Progless::add. Calling this will automatically increment the done count by one, so should not be used in cases where you’re triggering done changes manually.

See Progless::add for more details. If you use one, you must use both.

source

pub fn reset(&self, total: u32) -> Result<(), ProglessError>

§Reset.

Stop the current run (if any), clear the done/doing metrics, and assign a new total so you can re-use the Progless instance for a new set of tasks.

Note: the start/elapsed times for a given Progless instance are continuous. If you need the time counter to reset to [00:00:00], you need start a brand new instance instead of resetting an existing one.

§Errors

This will return an error if the new total is zero.

source

pub fn set_done(&self, done: u32)

§Set Done.

Set the done count to a specific value.

In general, you should either use Progless::add/Progless::remove or Progless::increment rather than this method, as they ensure any changes made are relative.

This method overrides the done value instead, so can cause regressions if you’re doing task work in parallel and one thread finishes before another, etc.

source

pub fn set_title<S>(&self, title: Option<S>)
where S: Into<Msg>,

§Set Title.

Give the progress bar a title, which will be shown above the progress bits while progress is progressing, and removed afterward with everything else.

See Progless::with_title for more details.

source

pub fn set_reticulating_splines<S>(&self, app: S)
where S: AsRef<str>,

§Set Title As X: Reticulating Splines…

This is simply shorthand for generating a “Reticulating Splines…” title, where X is the value passed in (usually the app name).

It’s a sort of default…

source

pub fn sigint(&self)

§Set SIGINT.

This method is used to indicate that a SIGINT was received and that the tasks are being wound down (early).

For the running Progless, all this really means is that the title will be changed to “Early shutdown in progress.” (This is purely a visual thing.)

The caller must still run Progless::finish to close everything up when the early shutdown actually arrives.

Trait Implementations§

source§

impl Clone for Progless

source§

fn clone(&self) -> Progless

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Progless

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Progless

source§

fn default() -> Progless

Returns the “default value” for a type. Read more
source§

impl From<NonZero<u32>> for Progless

source§

fn from(total: NonZeroU32) -> Self

Converts to this type from the input type.
source§

impl From<Progless> for Msg

source§

fn from(src: Progless) -> Self

§Into Msg

This provides a simple way to convert a (finished) Progless instance into a generic summary Msg that can e.g. be printed.

For a more advanced summary, use the Progless::summary method.

source§

impl TryFrom<u128> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: u128) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u16> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: u16) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u32> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: u32) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u64> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: u64) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u8> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: u8) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<usize> for Progless

§

type Error = ProglessError

The type returned in the event of a conversion error.
source§

fn try_from(total: usize) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.