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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
use std::io::{Read, Result, Write};
pub struct ReadStats<R> {
source: R,
reads: usize,
bytes: usize,
}
impl<R: Read> ReadStats<R> {
pub fn new(wrapped: R) -> ReadStats<R> {
ReadStats {
source: wrapped,
reads: 0,
bytes: 0,
}
}
pub fn get_ref(&self) -> &R {
&self.source
}
pub fn bytes_through(&self) -> usize {
self.bytes
}
pub fn reads(&self) -> usize {
self.reads
}
}
impl<R: Read> Read for ReadStats<R> {
fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
let bytes = self.source.read(buf)?;
self.reads += 1;
self.bytes += bytes;
Ok(bytes)
}
}
pub struct WriteStats<W> {
sink: W,
writes: usize,
bytes: usize,
}
impl<W: Write> WriteStats<W> {
// _wrapped is ignored because W is not bounded on Debug or Display and therefore
// can't be passed through format!(). For actual implementation you will likely
// wish to remove the leading underscore so the variable is not ignored.
pub fn new(wrapped: W) -> WriteStats<W> {
WriteStats {
sink: wrapped,
writes: 0,
bytes: 0,
}
}
pub fn get_ref(&self) -> &W {
&self.sink
}
pub fn bytes_through(&self) -> usize {
self.bytes
}
pub fn writes(&self) -> usize {
self.writes
}
}
impl<W: Write> Write for WriteStats<W> {
fn write(&mut self, buf: &[u8]) -> Result<usize> {
let bytes = self.sink.write(buf)?;
self.writes += 1;
self.bytes += bytes;
Ok(bytes)
}
fn flush(&mut self) -> Result<()> {
self.sink.flush()
}
}
|