aboutsummaryrefslogtreecommitdiff
path: root/vendor/indicatif/examples/download-continued.rs
blob: c9a76b6cf446c3422fdb43ceb48585a0f917a13c (plain) (blame)
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
use std::cmp::min;
use std::thread;
use std::time::Duration;

use indicatif::{ProgressBar, ProgressStyle};

fn main() {
    let mut downloaded = 69369369;
    let total_size = 231231231;

    let pb = ProgressBar::new(total_size);
    pb.set_style(
        ProgressStyle::with_template(
            "{spinner:.green} [{wide_bar:.cyan/blue}] {bytes}/{total_bytes} ({eta})",
        )
        .unwrap()
        .progress_chars("#>-"),
    );
    pb.set_position(downloaded);
    pb.reset_eta();

    while downloaded < total_size {
        downloaded = min(downloaded + 123211, total_size);
        pb.set_position(downloaded);
        thread::sleep(Duration::from_millis(12));
    }

    pb.finish_with_message("downloaded");
}