2016-07-25 06:00:13 +00:00
|
|
|
extern crate cursive;
|
2016-07-28 06:51:54 +00:00
|
|
|
extern crate rand;
|
|
|
|
|
|
|
|
use rand::Rng;
|
2016-07-25 06:00:13 +00:00
|
|
|
|
|
|
|
use cursive::prelude::*;
|
2016-07-28 23:36:01 +00:00
|
|
|
use cursive::views::Counter;
|
2016-07-25 06:00:13 +00:00
|
|
|
|
|
|
|
use std::thread;
|
2016-07-28 06:51:54 +00:00
|
|
|
use std::cmp::min;
|
2016-07-25 06:00:13 +00:00
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut siv = Cursive::new();
|
|
|
|
|
2016-07-28 06:51:54 +00:00
|
|
|
// We'll start slowly with a simple start button...
|
2016-07-26 03:43:01 +00:00
|
|
|
siv.add_layer(Dialog::empty()
|
|
|
|
.title("Progress bar example")
|
|
|
|
.padding((0, 0, 1, 1))
|
2016-07-28 06:51:54 +00:00
|
|
|
.content(Button::new("Start", phase_1)));
|
2016-07-25 06:00:13 +00:00
|
|
|
|
2016-07-28 06:51:54 +00:00
|
|
|
// Auto-refresh is currently required for animated views
|
2016-07-25 20:35:46 +00:00
|
|
|
siv.set_fps(30);
|
2016-07-25 06:00:13 +00:00
|
|
|
|
|
|
|
siv.run();
|
|
|
|
}
|
2016-07-28 06:51:54 +00:00
|
|
|
|
|
|
|
// Function to simulate a long process.
|
2016-07-28 06:54:49 +00:00
|
|
|
fn fake_load(n_max: usize, counter: Counter) {
|
2016-07-28 06:51:54 +00:00
|
|
|
for _ in 0..n_max {
|
|
|
|
thread::sleep(Duration::from_millis(5));
|
2016-07-28 06:54:49 +00:00
|
|
|
// The `counter.tick()` method increases the progress value
|
|
|
|
counter.tick(1);
|
2016-07-28 06:51:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn phase_1(s: &mut Cursive) {
|
|
|
|
// Phase 1 is easy: a simple pre-loading.
|
|
|
|
|
|
|
|
// Number of ticks
|
|
|
|
let n_max = 500;
|
|
|
|
|
|
|
|
// This is the callback channel
|
|
|
|
let cb = s.cb_sink().clone();
|
|
|
|
|
|
|
|
s.pop_layer();
|
2016-08-05 17:48:23 +00:00
|
|
|
s.add_layer(Dialog::new(ProgressBar::new()
|
2016-07-28 06:51:54 +00:00
|
|
|
.range(0, n_max)
|
2016-07-28 06:54:49 +00:00
|
|
|
.with_task(move |counter| {
|
2016-07-28 06:51:54 +00:00
|
|
|
// This closure will be called in a separate thread.
|
2016-07-28 06:54:49 +00:00
|
|
|
fake_load(n_max, counter);
|
2016-07-28 06:51:54 +00:00
|
|
|
|
|
|
|
// When we're done, send a callback through the channel
|
|
|
|
cb.send(Box::new(coffee_break)).unwrap();
|
2016-08-05 03:03:48 +00:00
|
|
|
})
|
|
|
|
.full_width()));
|
2016-07-28 06:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn coffee_break(s: &mut Cursive) {
|
|
|
|
// A little break before things get serious.
|
|
|
|
s.pop_layer();
|
|
|
|
s.add_layer(Dialog::empty()
|
|
|
|
.title("Preparation complete")
|
2016-07-28 06:58:57 +00:00
|
|
|
.content(TextView::new("Now, the real deal!").center())
|
2016-07-28 06:51:54 +00:00
|
|
|
.button("Again??", phase_2));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn phase_2(s: &mut Cursive) {
|
|
|
|
// Now, we'll run N tasks
|
|
|
|
// (It could be downloading a file, extracting an archive,
|
|
|
|
// reticulating sprites, ...)
|
|
|
|
let n_bars = 10;
|
|
|
|
// Each task will have its own shiny counter
|
|
|
|
let counters: Vec<_> = (0..n_bars).map(|_| Counter::new(0)).collect();
|
|
|
|
// To make things more interesting, we'll give a random speed to each bar
|
|
|
|
let speeds: Vec<_> =
|
|
|
|
(0..n_bars).map(|_| rand::thread_rng().gen_range(50, 150)).collect();
|
|
|
|
|
|
|
|
let n_max = 100000;
|
|
|
|
let cb = s.cb_sink().clone();
|
|
|
|
|
|
|
|
// Let's prepare the progress bars...
|
|
|
|
let mut linear = LinearLayout::vertical();
|
|
|
|
for c in &counters {
|
|
|
|
linear.add_child(ProgressBar::new()
|
|
|
|
.max(n_max)
|
|
|
|
.with_value(c.clone()));
|
|
|
|
}
|
|
|
|
|
|
|
|
s.pop_layer();
|
2016-08-05 03:03:48 +00:00
|
|
|
s.add_layer(Dialog::new(linear.full_width())
|
2016-07-28 06:51:54 +00:00
|
|
|
.title("Just a moment..."));
|
|
|
|
|
|
|
|
// And we start the worker thread.
|
|
|
|
thread::spawn(move || {
|
|
|
|
loop {
|
|
|
|
thread::sleep(Duration::from_millis(5));
|
|
|
|
let mut done = true;
|
|
|
|
for (c, s) in counters.iter().zip(&speeds) {
|
|
|
|
let ticks = min(n_max - c.get(), *s);
|
|
|
|
c.tick(ticks);
|
|
|
|
if c.get() < n_max {
|
|
|
|
done = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if done {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cb.send(Box::new(final_step)).unwrap();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn final_step(s: &mut Cursive) {
|
|
|
|
// A little break before things get serious.
|
|
|
|
s.pop_layer();
|
|
|
|
s.add_layer(Dialog::empty()
|
|
|
|
.title("Report")
|
|
|
|
.content(TextView::new("Time travel was a success!\n\
|
2016-07-28 06:58:57 +00:00
|
|
|
We went forward a few seconds!!")
|
|
|
|
.center())
|
2016-07-28 06:51:54 +00:00
|
|
|
.button("That's it?", |s| s.quit()));
|
|
|
|
}
|