sing/common/rw/count.go
2022-04-16 17:00:07 +08:00

27 lines
370 B
Go

package rw
import (
"io"
"sync/atomic"
)
type ReadCounter struct {
io.Reader
count int64
}
func (r *ReadCounter) Read(p []byte) (n int, err error) {
n, err = r.Reader.Read(p)
if n > 0 {
atomic.AddInt64(&r.count, int64(n))
}
return
}
func (r *ReadCounter) Count() int64 {
return r.count
}
func (r *ReadCounter) Reset() {
atomic.StoreInt64(&r.count, 0)
}