aboutsummaryrefslogtreecommitdiff
path: root/syn/tests/repo/progress.rs
blob: 28c8a44b1298a832f359340ca81fbd7d8763b766 (plain)
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
use std::io::{Read, Result};
use std::time::{Duration, Instant};

pub struct Progress<R> {
    bytes: usize,
    tick: Instant,
    stream: R,
}

impl<R> Progress<R> {
    pub fn new(stream: R) -> Self {
        Progress {
            bytes: 0,
            tick: Instant::now() + Duration::from_millis(2000),
            stream,
        }
    }
}

impl<R: Read> Read for Progress<R> {
    fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
        let num = self.stream.read(buf)?;
        self.bytes += num;
        let now = Instant::now();
        if now > self.tick {
            self.tick = now + Duration::from_millis(500);
            errorf!("downloading... {} bytes\n", self.bytes);
        }
        Ok(num)
    }
}

impl<R> Drop for Progress<R> {
    fn drop(&mut self) {
        errorf!("done ({} bytes)\n", self.bytes);
    }
}