mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
These are the vendor files needed for Prometheus support. I have not been able to figure out how to do this properly with gopkg.
32 lines
615 B
Go
32 lines
615 B
Go
package datacounter
|
|
|
|
import (
|
|
"io"
|
|
"sync/atomic"
|
|
)
|
|
|
|
// ReaderCounter is counter for io.Reader
|
|
type ReaderCounter struct {
|
|
io.Reader
|
|
count uint64
|
|
reader io.Reader
|
|
}
|
|
|
|
// NewReaderCounter function for create new ReaderCounter
|
|
func NewReaderCounter(r io.Reader) *ReaderCounter {
|
|
return &ReaderCounter{
|
|
reader: r,
|
|
}
|
|
}
|
|
|
|
func (counter *ReaderCounter) Read(buf []byte) (int, error) {
|
|
n, err := counter.reader.Read(buf)
|
|
atomic.AddUint64(&counter.count, uint64(n))
|
|
return n, err
|
|
}
|
|
|
|
// Count function return counted bytes
|
|
func (counter *ReaderCounter) Count() uint64 {
|
|
return atomic.LoadUint64(&counter.count)
|
|
}
|