mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
49 lines
1023 B
Go
49 lines
1023 B
Go
package backend
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"io/ioutil"
|
|
|
|
"github.com/restic/restic/internal"
|
|
)
|
|
|
|
// LoadAll reads all data stored in the backend for the handle.
|
|
func LoadAll(ctx context.Context, be restic.Backend, h restic.Handle) (buf []byte, err error) {
|
|
rd, err := be.Load(ctx, h, 0, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer func() {
|
|
_, e := io.Copy(ioutil.Discard, rd)
|
|
if err == nil {
|
|
err = e
|
|
}
|
|
|
|
e = rd.Close()
|
|
if err == nil {
|
|
err = e
|
|
}
|
|
}()
|
|
|
|
return ioutil.ReadAll(rd)
|
|
}
|
|
|
|
// LimitedReadCloser wraps io.LimitedReader and exposes the Close() method.
|
|
type LimitedReadCloser struct {
|
|
io.ReadCloser
|
|
io.Reader
|
|
}
|
|
|
|
// Read reads data from the limited reader.
|
|
func (l *LimitedReadCloser) Read(p []byte) (int, error) {
|
|
return l.Reader.Read(p)
|
|
}
|
|
|
|
// LimitReadCloser returns a new reader wraps r in an io.LimitReader, but also
|
|
// exposes the Close() method.
|
|
func LimitReadCloser(r io.ReadCloser, n int64) *LimitedReadCloser {
|
|
return &LimitedReadCloser{ReadCloser: r, Reader: io.LimitReader(r, n)}
|
|
}
|