2016-01-23 22:41:55 +00:00
|
|
|
package backend
|
|
|
|
|
2016-02-04 18:37:33 +00:00
|
|
|
import "io"
|
|
|
|
|
2016-01-23 22:41:55 +00:00
|
|
|
// LoadAll reads all data stored in the backend for the handle. The buffer buf
|
2016-02-04 18:37:33 +00:00
|
|
|
// is resized to accomodate all data in the blob. Errors returned by be.Load()
|
|
|
|
// are passed on, except io.ErrUnexpectedEOF is silenced and nil returned
|
|
|
|
// instead, since it means this function is working properly.
|
2016-01-23 22:41:55 +00:00
|
|
|
func LoadAll(be Backend, h Handle, buf []byte) ([]byte, error) {
|
|
|
|
fi, err := be.Stat(h)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if fi.Size > int64(len(buf)) {
|
|
|
|
buf = make([]byte, int(fi.Size))
|
|
|
|
}
|
|
|
|
|
|
|
|
n, err := be.Load(h, buf, 0)
|
2016-02-04 18:37:33 +00:00
|
|
|
if err == io.ErrUnexpectedEOF {
|
|
|
|
err = nil
|
|
|
|
}
|
2016-01-23 22:41:55 +00:00
|
|
|
buf = buf[:n]
|
|
|
|
return buf, err
|
|
|
|
}
|