-
Notifications
You must be signed in to change notification settings - Fork 9
/
writer.go
41 lines (34 loc) · 859 Bytes
/
writer.go
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
package datacounter
import (
"io"
"sync/atomic"
)
// WriterCounter is counter for io.Writer
type WriterCounter struct {
count uint64
io.Writer
}
// NewWriterCounter function create new WriterCounter
func NewWriterCounter(w io.Writer) *WriterCounter {
return &WriterCounter{
Writer: w,
}
}
func (counter *WriterCounter) Write(buf []byte) (int, error) {
n, err := counter.Writer.Write(buf)
// Write() should always return a non-negative `n`.
// But since `n` is a signed integer, some custom
// implementation of an io.Writer may return negative
// values.
//
// Excluding such invalid values from counting,
// thus `if n >= 0`:
if n >= 0 {
atomic.AddUint64(&counter.count, uint64(n))
}
return n, err
}
// Count function return counted bytes
func (counter *WriterCounter) Count() uint64 {
return atomic.LoadUint64(&counter.count)
}