1
0
mirror of https://github.com/golang/go synced 2024-11-21 15:04:44 -07:00

io/ioutil: clean-up of ReadAll and ReadFile

Make ReadAll use the same mechanism as ReadFile.

R=r
CC=golang-dev
https://golang.org/cl/4279041
This commit is contained in:
Robert Griesemer 2011-03-10 16:41:54 -08:00
parent 2e8b375e0e
commit 478f08a517

View File

@ -13,11 +13,17 @@ import (
"sort" "sort"
) )
// readAll reads from r until an error or EOF and returns the data it read
// from the internal buffer allocated with a specified capacity.
func readAll(r io.Reader, capacity int64) ([]byte, os.Error) {
buf := bytes.NewBuffer(make([]byte, 0, capacity))
_, err := buf.ReadFrom(r)
return buf.Bytes(), err
}
// ReadAll reads from r until an error or EOF and returns the data it read. // ReadAll reads from r until an error or EOF and returns the data it read.
func ReadAll(r io.Reader) ([]byte, os.Error) { func ReadAll(r io.Reader) ([]byte, os.Error) {
var buf bytes.Buffer return readAll(r, bytes.MinRead)
_, err := io.Copy(&buf, r)
return buf.Bytes(), err
} }
// ReadFile reads the file named by filename and returns the contents. // ReadFile reads the file named by filename and returns the contents.
@ -34,16 +40,12 @@ func ReadFile(filename string) ([]byte, os.Error) {
if err == nil && fi.Size < 2e9 { // Don't preallocate a huge buffer, just in case. if err == nil && fi.Size < 2e9 { // Don't preallocate a huge buffer, just in case.
n = fi.Size n = fi.Size
} }
// Add a little extra in case Size is zero, and to avoid another allocation after // As initial capacity for readAll, use n + a little extra in case Size is zero,
// Read has filled the buffer. // and to avoid another allocation after Read has filled the buffer. The readAll
n += bytes.MinRead // call will read into its allocated internal buffer cheaply. If the size was
// Pre-allocate the correct size of buffer, then set its size to zero. The // wrong, we'll either waste some space off the end or reallocate as needed, but
// Buffer will read into the allocated space cheaply. If the size was wrong,
// we'll either waste some space off the end or reallocate as needed, but
// in the overwhelmingly common case we'll get it just right. // in the overwhelmingly common case we'll get it just right.
buf := bytes.NewBuffer(make([]byte, 0, n)) return readAll(f, n+bytes.MinRead)
_, err = buf.ReadFrom(f)
return buf.Bytes(), err
} }
// WriteFile writes data to a file named by filename. // WriteFile writes data to a file named by filename.