1
0
mirror of https://github.com/restic/restic.git synced 2024-07-07 09:30:53 +02:00
restic/backend/writer.go

39 lines
846 B
Go
Raw Normal View History

2015-02-15 23:21:35 +01:00
package backend
import (
"hash"
"io"
)
2015-11-29 14:27:52 +01:00
// HashingWriter wraps an io.Writer to hashes all data that is written to it.
2015-02-15 23:21:35 +01:00
type HashingWriter struct {
2015-02-16 00:24:43 +01:00
w io.Writer
h hash.Hash
size int
2015-02-15 23:21:35 +01:00
}
2015-11-29 14:27:52 +01:00
// NewHashAppendWriter wraps the writer w and feeds all data written to the hash h.
2015-02-15 23:21:35 +01:00
func NewHashingWriter(w io.Writer, h hash.Hash) *HashingWriter {
return &HashingWriter{
h: h,
w: io.MultiWriter(w, h),
}
}
2015-11-29 14:27:52 +01:00
// Write wraps the write method of the underlying writer and also hashes all data.
2015-02-15 23:21:35 +01:00
func (h *HashingWriter) Write(p []byte) (int, error) {
2015-02-16 00:24:43 +01:00
n, err := h.w.Write(p)
h.size += n
return n, err
2015-02-15 23:21:35 +01:00
}
2015-11-29 14:27:52 +01:00
// Sum returns the hash of all data written so far.
2015-02-15 23:21:35 +01:00
func (h *HashingWriter) Sum(d []byte) []byte {
return h.h.Sum(d)
}
2015-02-16 00:24:43 +01:00
2015-11-29 14:27:52 +01:00
// Size returns the number of bytes written to the underlying writer.
2015-02-16 00:24:43 +01:00
func (h *HashingWriter) Size() int {
return h.size
}