commit | 76bfef907511b9ab366457df713899ec0df82d3e | [log] [tgz] |
---|---|---|
author | Santiago M. Mola <santi@mola.io> | Wed Jul 05 12:51:32 2017 |
committer | Santiago M. Mola <santi@mola.io> | Wed Jul 05 15:49:56 2017 |
tree | 51de278413b5b94dd01fbb096125a43c93759982 | |
parent | 610213dcbd7636661b469c97c813af62e5759fd9 [diff] |
util.TempFile: use ioutil-like implementation, fixes #41 * Adapt iotuil.TempFile to billy. * This prevents having a global temporary file maximum. * Also prevents race-condition on getting the file name.
The missing interface filesystem abstraction for Go. Billy implements an interface based on the os
standard library, allowing to develop applications without dependency on the underlying storage. Make virtually free implement an mocks and testing over filesystem operations.
Billy was born as part of src-d/go-git project.
go get -u gopkg.in/src-d/go-billy.v3/...
The library billy deals with storage systems and Billy is the name of a well-known, IKEA bookcase. That's it.
Billy exposes filesystems using the Filesystem
interface. Each filesystem implementation gives you a New
method, whose arguments depend on the implementation itself, that returns a new Filesystem
.
The following example caches in memory all readable files in a directory from any billy's filesystem implementation.
func LoadToMemory(origin billy.Filesystem, path string) (*memory.Memory, error) {
memory := memory.New()
files, err := origin.ReadDir("/")
if err != nil {
return nil, err
}
for _, file := range files {
if file.IsDir() {
continue
}
src, err := origin.Open(file.Name())
if err != nil {
return nil, err
}
dst, err := memory.Create(file.Name())
if err != nil {
return nil, err
}
if _, err = io.Copy(dst, src); err != nil {
return nil, err
}
if err := dst.Close(); err != nil {
return nil, err
}
if err := src.Close(); err != nil {
return nil, err
}
}
return memory, nil
}
MIT, see LICENSE