forked from console-rs/indicatif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi.rs
65 lines (55 loc) · 1.75 KB
/
multi.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::thread;
use std::time::Duration;
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
fn main() {
let m = MultiProgress::new();
let sty = ProgressStyle::with_template(
"[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {msg}",
)
.unwrap()
.progress_chars("##-");
let pb = m.add(ProgressBar::new(128));
pb.set_style(sty.clone());
let pb2 = m.insert_after(&pb, ProgressBar::new(128));
pb2.set_style(sty.clone());
let pb3 = m.insert_after(&pb2, ProgressBar::new(1024));
pb3.set_style(sty);
m.println("starting!").unwrap();
let m_clone = m.clone();
let h1 = thread::spawn(move || {
for i in 0..128 {
thread::sleep(Duration::from_millis(15));
pb.set_message(format!("item #{}", i + 1));
pb.inc(1);
}
m_clone.println("pb1 is done!").unwrap();
pb.finish_with_message("done");
});
let m_clone = m.clone();
let h2 = thread::spawn(move || {
for _ in 0..3 {
pb2.set_position(0);
for i in 0..128 {
thread::sleep(Duration::from_millis(8));
pb2.set_message(format!("item #{}", i + 1));
pb2.inc(1);
}
}
m_clone.println("pb2 is done!").unwrap();
pb2.finish_with_message("done");
});
let m_clone = m.clone();
let h3 = thread::spawn(move || {
for i in 0..1024 {
thread::sleep(Duration::from_millis(2));
pb3.set_message(format!("item #{}", i + 1));
pb3.inc(1);
}
m_clone.println("pb3 is done!").unwrap();
pb3.finish_with_message("done");
});
let _ = h1.join();
let _ = h2.join();
let _ = h3.join();
m.clear().unwrap();
}