2016-07-26 17:13:36 +00:00
|
|
|
use std::sync::Arc;
|
2016-07-25 06:00:13 +00:00
|
|
|
|
2016-07-26 19:10:13 +00:00
|
|
|
use std::thread;
|
2016-07-25 06:00:13 +00:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2016-07-27 06:05:18 +00:00
|
|
|
use std::cmp;
|
2016-07-25 06:00:13 +00:00
|
|
|
|
|
|
|
use {Cursive, Printer};
|
2016-07-26 06:54:33 +00:00
|
|
|
use align::HAlign;
|
|
|
|
use theme::{ColorStyle, Effect};
|
2016-07-25 06:00:13 +00:00
|
|
|
use view::View;
|
|
|
|
|
2016-07-25 20:38:13 +00:00
|
|
|
pub type CbPromise = Option<Box<Fn(&mut Cursive) + Send>>;
|
|
|
|
|
2016-07-27 06:29:13 +00:00
|
|
|
/// Atomic counter used by `ProgressBar`.
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Counter(pub Arc<AtomicUsize>);
|
|
|
|
|
|
|
|
impl Counter {
|
|
|
|
/// Creates a new `Counter` starting with the given value.
|
|
|
|
pub fn new(value: usize) -> Self {
|
|
|
|
Counter(Arc::new(AtomicUsize::new(value)))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves the current progress value.
|
|
|
|
pub fn get(&self) -> usize {
|
|
|
|
self.0.load(Ordering::Relaxed)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the current progress value.
|
|
|
|
pub fn set(&self, value: usize) {
|
|
|
|
self.0.store(value, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Increase the current progress by `ticks`.
|
|
|
|
pub fn tick(&self, ticks: usize) {
|
|
|
|
self.0.fetch_add(ticks, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-27 04:48:26 +00:00
|
|
|
/// Animated bar showing a progress value.
|
|
|
|
///
|
|
|
|
/// This bar has an internal counter, and adapts the length of the displayed
|
|
|
|
/// bar to the relative position of the counter between a minimum and maximum
|
|
|
|
/// values.
|
|
|
|
///
|
|
|
|
/// It also prints a customizable text in the center of the bar, which
|
|
|
|
/// defaults to the progression percentage.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use cursive::prelude::*;
|
|
|
|
/// let bar = ProgressBar::new()
|
2016-07-28 07:29:11 +00:00
|
|
|
/// .with_task(|counter| {
|
2016-07-27 04:48:26 +00:00
|
|
|
/// // This closure is called in parallel.
|
|
|
|
/// for _ in 0..100 {
|
|
|
|
/// // Here we can communicate some
|
|
|
|
/// // advancement back to the bar.
|
2016-07-28 07:29:11 +00:00
|
|
|
/// counter.tick(1);
|
2016-07-27 04:48:26 +00:00
|
|
|
/// }
|
|
|
|
/// });
|
|
|
|
/// ```
|
2016-07-25 06:00:13 +00:00
|
|
|
pub struct ProgressBar {
|
|
|
|
min: usize,
|
|
|
|
max: usize,
|
2016-07-27 06:29:13 +00:00
|
|
|
value: Counter,
|
2016-07-25 06:00:13 +00:00
|
|
|
// TODO: use a Promise instead?
|
2016-07-26 06:54:33 +00:00
|
|
|
label_maker: Box<Fn(usize, (usize, usize)) -> String>,
|
|
|
|
}
|
|
|
|
|
2016-07-27 06:29:13 +00:00
|
|
|
|
2016-07-26 06:54:33 +00:00
|
|
|
fn make_percentage(value: usize, (min, max): (usize, usize)) -> String {
|
2016-07-27 06:05:18 +00:00
|
|
|
if value < min {
|
|
|
|
// ?? Negative progress?
|
|
|
|
let percent = 101 * (min - value) / (1 + max - min);
|
|
|
|
format!("-{} %", percent)
|
|
|
|
} else {
|
|
|
|
let percent = 101 * (value - min) / (1 + max - min);
|
|
|
|
format!("{} %", percent)
|
|
|
|
}
|
2016-07-25 06:00:13 +00:00
|
|
|
}
|
|
|
|
|
2016-07-25 20:38:13 +00:00
|
|
|
new_default!(ProgressBar);
|
|
|
|
|
2016-07-25 06:00:13 +00:00
|
|
|
impl ProgressBar {
|
|
|
|
/// Creates a new progress bar.
|
|
|
|
///
|
|
|
|
/// Default values:
|
|
|
|
///
|
|
|
|
/// * `min`: 0
|
|
|
|
/// * `max`: 100
|
|
|
|
/// * `value`: 0
|
|
|
|
pub fn new() -> Self {
|
|
|
|
ProgressBar {
|
|
|
|
min: 0,
|
|
|
|
max: 100,
|
2016-07-27 06:29:13 +00:00
|
|
|
value: Counter::new(0),
|
2016-07-26 06:54:33 +00:00
|
|
|
label_maker: Box::new(make_percentage),
|
2016-07-25 06:00:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the value to follow.
|
2016-07-26 19:10:13 +00:00
|
|
|
///
|
|
|
|
/// Use this to manually control the progress to display
|
|
|
|
/// by directly modifying the value pointed to by `value`.
|
2016-07-27 06:29:13 +00:00
|
|
|
pub fn with_value(mut self, value: Counter) -> Self {
|
2016-07-25 06:00:13 +00:00
|
|
|
self.value = value;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-07-26 19:10:13 +00:00
|
|
|
/// Starts a function in a separate thread, and monitor the progress.
|
|
|
|
///
|
2016-07-28 06:54:49 +00:00
|
|
|
/// `f` will be given a `Counter` to increment the bar's progress.
|
2016-07-27 04:48:26 +00:00
|
|
|
///
|
|
|
|
/// This does not reset the value, so it can be called several times
|
|
|
|
/// to advance the progress in multiple sessions.
|
2016-07-28 06:54:49 +00:00
|
|
|
pub fn start<F: FnOnce(Counter) + Send + 'static>(&mut self, f: F) {
|
2016-07-28 07:29:11 +00:00
|
|
|
let counter: Counter = self.value.clone();
|
2016-07-26 19:10:13 +00:00
|
|
|
|
|
|
|
thread::spawn(move || {
|
2016-07-28 07:29:11 +00:00
|
|
|
f(counter);
|
2016-07-26 19:10:13 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Starts a function in a separate thread, and monitor the progress.
|
|
|
|
///
|
|
|
|
/// Chainable variant.
|
2016-07-28 06:54:49 +00:00
|
|
|
pub fn with_task<F: FnOnce(Counter) + Send + 'static>(mut self, task: F)
|
|
|
|
-> Self {
|
2016-07-26 19:10:13 +00:00
|
|
|
self.start(task);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-07-26 06:54:33 +00:00
|
|
|
/// Sets the label generator.
|
|
|
|
///
|
|
|
|
/// The given function will be called with `(value, (min, max))`.
|
|
|
|
/// Its output will be used as the label to print inside the progress bar.
|
|
|
|
///
|
|
|
|
/// The default one shows a percentage progress:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// fn make_percentage(value: usize, (min, max): (usize, usize)) -> String {
|
|
|
|
/// let percent = 101 * (value - min) / (1 + max - min);
|
|
|
|
/// format!("{} %", percent)
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn with_label<F: Fn(usize, (usize, usize)) -> String + 'static>
|
|
|
|
(mut self, label_maker: F)
|
|
|
|
-> Self {
|
|
|
|
self.label_maker = Box::new(label_maker);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-07-25 06:00:13 +00:00
|
|
|
/// Sets the minimum value.
|
|
|
|
///
|
|
|
|
/// When `value` equals `min`, the bar is at the minimum level.
|
2016-07-27 06:05:18 +00:00
|
|
|
///
|
|
|
|
/// If `self.min > max`, `self.min` is set to `max`.
|
2016-07-25 06:00:13 +00:00
|
|
|
pub fn min(mut self, min: usize) -> Self {
|
|
|
|
self.min = min;
|
2016-07-27 06:05:18 +00:00
|
|
|
self.max = cmp::max(self.max, self.min);
|
|
|
|
|
2016-07-25 06:00:13 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the maximum value.
|
|
|
|
///
|
|
|
|
/// When `value` equals `max`, the bar is at the maximum level.
|
2016-07-27 06:05:18 +00:00
|
|
|
///
|
|
|
|
/// If `min > self.max`, `self.max` is set to `min`.
|
2016-07-25 06:00:13 +00:00
|
|
|
pub fn max(mut self, max: usize) -> Self {
|
|
|
|
self.max = max;
|
2016-07-27 06:05:18 +00:00
|
|
|
self.min = cmp::min(self.min, self.max);
|
|
|
|
|
2016-07-25 06:00:13 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the `min` and `max` range for the value.
|
2016-07-27 06:05:18 +00:00
|
|
|
///
|
|
|
|
/// If `min > max`, swap the two values.
|
2016-07-25 06:00:13 +00:00
|
|
|
pub fn range(self, min: usize, max: usize) -> Self {
|
2016-07-27 06:05:18 +00:00
|
|
|
if min > max {
|
|
|
|
self.min(max).max(min)
|
|
|
|
} else {
|
|
|
|
self.min(min).max(max)
|
|
|
|
}
|
2016-07-25 06:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the current value.
|
|
|
|
///
|
|
|
|
/// Value is clamped between `min` and `max`.
|
|
|
|
pub fn set_value(&mut self, value: usize) {
|
2016-07-27 06:29:13 +00:00
|
|
|
self.value.set(value);
|
2016-07-25 06:00:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl View for ProgressBar {
|
|
|
|
fn draw(&self, printer: &Printer) {
|
|
|
|
// Now, the bar itself...
|
2016-07-25 06:03:59 +00:00
|
|
|
let available = printer.size.x;
|
2016-07-25 06:00:13 +00:00
|
|
|
|
2016-07-27 06:29:13 +00:00
|
|
|
let value = self.value.get();
|
2016-07-27 06:05:18 +00:00
|
|
|
|
|
|
|
// If we're under the minimum, don't draw anything.
|
|
|
|
// If we're over the maximum, we'll try to draw more, but the printer
|
|
|
|
// will crop us anyway, so it's not a big deal.
|
|
|
|
let length = if value < self.min {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
((1 + available) * (value - self.min)) / (1 + self.max - self.min)
|
|
|
|
};
|
2016-07-26 06:54:33 +00:00
|
|
|
|
|
|
|
let label = (self.label_maker)(value, (self.min, self.max));
|
|
|
|
let offset = HAlign::Center.get_offset(label.len(), printer.size.x);
|
|
|
|
|
2016-07-25 06:00:13 +00:00
|
|
|
printer.with_color(ColorStyle::Highlight, |printer| {
|
2016-07-26 06:54:33 +00:00
|
|
|
printer.with_effect(Effect::Reverse, |printer| {
|
|
|
|
printer.print((offset, 0), &label);
|
|
|
|
});
|
|
|
|
let printer = &printer.sub_printer((0, 0), (length, 1), true);
|
2016-07-25 06:03:59 +00:00
|
|
|
printer.print_hline((0, 0), length, " ");
|
2016-07-26 06:54:33 +00:00
|
|
|
printer.print((offset, 0), &label);
|
2016-07-25 06:00:13 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|