2019-01-12 04:58:27 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package filesystem
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-07-02 08:43:15 +00:00
|
|
|
"strings"
|
2019-01-12 04:58:27 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DefaultFs implements Filesystem using same-named functions from "os" and "io/ioutil"
|
2021-07-02 08:43:15 +00:00
|
|
|
type DefaultFs struct {
|
|
|
|
root string
|
|
|
|
}
|
2019-01-12 04:58:27 +00:00
|
|
|
|
2021-07-02 08:43:15 +00:00
|
|
|
var _ Filesystem = &DefaultFs{}
|
|
|
|
|
|
|
|
// NewTempFs returns a fake Filesystem in temporary directory, useful for unit tests
|
|
|
|
func NewTempFs() Filesystem {
|
|
|
|
path, _ := ioutil.TempDir(
|
|
|
|
"",
|
|
|
|
"tmpfs",
|
|
|
|
)
|
|
|
|
return &DefaultFs{
|
|
|
|
root: path,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *DefaultFs) prefix(path string) string {
|
|
|
|
if len(fs.root) == 0 {
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
return filepath.Join(fs.root, path)
|
|
|
|
}
|
2019-01-12 04:58:27 +00:00
|
|
|
|
|
|
|
// Stat via os.Stat
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Stat(name string) (os.FileInfo, error) {
|
|
|
|
return os.Stat(fs.prefix(name))
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create via os.Create
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Create(name string) (File, error) {
|
|
|
|
file, err := os.Create(fs.prefix(name))
|
2019-01-12 04:58:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &defaultFile{file}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename via os.Rename
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Rename(oldpath, newpath string) error {
|
|
|
|
if !strings.HasPrefix(oldpath, fs.root) {
|
|
|
|
oldpath = fs.prefix(oldpath)
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(newpath, fs.root) {
|
|
|
|
newpath = fs.prefix(newpath)
|
|
|
|
}
|
2019-01-12 04:58:27 +00:00
|
|
|
return os.Rename(oldpath, newpath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MkdirAll via os.MkdirAll
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) MkdirAll(path string, perm os.FileMode) error {
|
|
|
|
return os.MkdirAll(fs.prefix(path), perm)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Chtimes via os.Chtimes
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Chtimes(name string, atime time.Time, mtime time.Time) error {
|
|
|
|
return os.Chtimes(fs.prefix(name), atime, mtime)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveAll via os.RemoveAll
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) RemoveAll(path string) error {
|
|
|
|
return os.RemoveAll(fs.prefix(path))
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove via os.RemoveAll
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Remove(name string) error {
|
|
|
|
return os.Remove(fs.prefix(name))
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadFile via ioutil.ReadFile
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) ReadFile(filename string) ([]byte, error) {
|
|
|
|
return ioutil.ReadFile(fs.prefix(filename))
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TempDir via ioutil.TempDir
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) TempDir(dir, prefix string) (string, error) {
|
|
|
|
return ioutil.TempDir(fs.prefix(dir), prefix)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TempFile via ioutil.TempFile
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) TempFile(dir, prefix string) (File, error) {
|
|
|
|
file, err := ioutil.TempFile(fs.prefix(dir), prefix)
|
2019-01-12 04:58:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &defaultFile{file}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadDir via ioutil.ReadDir
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) ReadDir(dirname string) ([]os.FileInfo, error) {
|
|
|
|
return ioutil.ReadDir(fs.prefix(dirname))
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Walk via filepath.Walk
|
2021-07-02 08:43:15 +00:00
|
|
|
func (fs *DefaultFs) Walk(root string, walkFn filepath.WalkFunc) error {
|
|
|
|
return filepath.Walk(fs.prefix(root), walkFn)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// defaultFile implements File using same-named functions from "os"
|
|
|
|
type defaultFile struct {
|
|
|
|
file *os.File
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name via os.File.Name
|
|
|
|
func (file *defaultFile) Name() string {
|
|
|
|
return file.file.Name()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write via os.File.Write
|
|
|
|
func (file *defaultFile) Write(b []byte) (n int, err error) {
|
|
|
|
return file.file.Write(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync via os.File.Sync
|
|
|
|
func (file *defaultFile) Sync() error {
|
|
|
|
return file.file.Sync()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close via os.File.Close
|
|
|
|
func (file *defaultFile) Close() error {
|
|
|
|
return file.file.Close()
|
|
|
|
}
|