storj/cmd/uplink/ulfs/local.go

281 lines
6.4 KiB
Go
Raw Normal View History

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package ulfs
import (
"context"
"io"
"os"
"path/filepath"
"sort"
"strings"
"github.com/zeebo/errs"
"storj.io/storj/cmd/uplink/ulloc"
)
// LocalBackendFile represents a file in the filesystem.
type LocalBackendFile interface {
io.Closer
io.ReaderAt
io.WriterAt
Name() string
Stat() (os.FileInfo, error)
Readdir(int) ([]os.FileInfo, error)
}
// LocalBackend abstracts what the Local filesystem interacts with.
type LocalBackend interface {
Create(name string) (LocalBackendFile, error)
MkdirAll(path string, perm os.FileMode) error
Open(name string) (LocalBackendFile, error)
Remove(name string) error
Rename(oldname, newname string) error
Stat(name string) (os.FileInfo, error)
}
// Local implements something close to a filesystem but backed by the local disk.
type Local struct {
fs LocalBackend
}
// NewLocal constructs a Local filesystem.
func NewLocal(fs LocalBackend) *Local {
return &Local{
fs: fs,
}
}
// Open returns a read ReadHandle for the given local path.
func (l *Local) Open(ctx context.Context, path string) (MultiReadHandle, error) {
fh, err := l.fs.Open(path)
if err != nil {
return nil, errs.Wrap(err)
}
return newOSMultiReadHandle(fh)
}
// Create makes any directories necessary to create a file at path and returns a WriteHandle.
func (l *Local) Create(ctx context.Context, path string) (MultiWriteHandle, error) {
fi, err := l.fs.Stat(path)
if err != nil && !os.IsNotExist(err) {
return nil, errs.Wrap(err)
} else if err == nil && fi.IsDir() {
return nil, errs.New("path exists as a directory already")
}
if err := l.fs.MkdirAll(filepath.Dir(path), 0755); err != nil {
return nil, errs.Wrap(err)
}
// TODO: atomic rename
fh, err := l.fs.Create(path)
if err != nil {
return nil, errs.Wrap(err)
}
return newOSMultiWriteHandle(l.fs, fh), nil
}
// Move moves file to provided path.
func (l *Local) Move(ctx context.Context, oldpath, newpath string) error {
return l.fs.Rename(oldpath, newpath)
}
// Copy copies file to provided path.
func (l *Local) Copy(ctx context.Context, oldpath, newpath string) error {
return errs.New("not supported")
}
// Remove unlinks the file at the path. It is not an error if the file does not exist.
func (l *Local) Remove(ctx context.Context, path string, opts *RemoveOptions) error {
if opts.isPending() {
return nil
}
if err := l.fs.Remove(path); os.IsNotExist(err) {
return nil
} else if err != nil {
return err
}
return nil
}
// List returns an ObjectIterator listing files and directories that have string prefix
// with the provided path.
func (l *Local) List(ctx context.Context, path string, opts *ListOptions) (ObjectIterator, error) {
if opts.isPending() {
return emptyObjectIterator{}, nil
}
prefix := filepath.Clean(path)
if !strings.HasSuffix(prefix, string(filepath.Separator)) {
prefix += string(filepath.Separator)
}
var err error
var files []os.FileInfo
if opts.isRecursive() {
err = walk(l.fs, filepath.Clean(path), func(path string, info os.FileInfo, err error) error {
if err == nil && !info.IsDir() {
rel, err := filepath.Rel(prefix, path)
if err != nil {
return err
}
files = append(files, &namedFileInfo{
FileInfo: info,
name: rel,
})
}
return nil
})
} else {
files, err = readdir(l.fs, prefix, -1)
if os.IsNotExist(err) {
return emptyObjectIterator{}, nil
}
}
if err != nil {
return nil, errs.Wrap(err)
}
sort.Slice(files, func(i, j int) bool {
if files[i].IsDir() && files[j].IsDir() {
return files[i].Name() < files[j].Name()
} else if files[i].IsDir() {
return true
} else {
return false
}
})
var trim ulloc.Location
if !opts.isRecursive() {
trim = ulloc.NewLocal(prefix)
}
return &filteredObjectIterator{
trim: trim,
filter: ulloc.NewLocal(prefix),
iter: &fileinfoObjectIterator{
base: prefix,
files: files,
},
}, nil
}
// IsLocalDir returns true if the path is a directory.
func (l *Local) IsLocalDir(ctx context.Context, path string) bool {
fi, err := l.fs.Stat(path)
if err != nil {
return false
}
return fi.IsDir()
}
// Stat returns an ObjectInfo describing the provided path.
func (l *Local) Stat(ctx context.Context, path string) (*ObjectInfo, error) {
fi, err := l.fs.Stat(path)
if err != nil {
return nil, err
}
return &ObjectInfo{
Loc: ulloc.NewLocal(path),
Created: fi.ModTime(),
ContentLength: fi.Size(),
}, nil
}
type namedFileInfo struct {
os.FileInfo
name string
}
func (n *namedFileInfo) Name() string { return n.name }
type fileinfoObjectIterator struct {
base string
files []os.FileInfo
current os.FileInfo
}
func (fi *fileinfoObjectIterator) Next() bool {
if len(fi.files) == 0 {
return false
}
fi.current, fi.files = fi.files[0], fi.files[1:]
return true
}
func (fi *fileinfoObjectIterator) Err() error { return nil }
func (fi *fileinfoObjectIterator) Item() ObjectInfo {
name := filepath.Join(fi.base, fi.current.Name())
isDir := fi.current.IsDir()
if isDir {
name += string(filepath.Separator)
}
return ObjectInfo{
Loc: ulloc.NewLocal(name),
IsPrefix: isDir,
Created: fi.current.ModTime(), // TODO: use real crtime
ContentLength: fi.current.Size(),
}
}
func walk(fs LocalBackend, path string, cb func(path string, info os.FileInfo, err error) error) error {
info, err := fs.Stat(path)
if err != nil {
return cb(path, nil, err)
}
return walkHelper(fs, path, info, cb)
}
func walkHelper(fs LocalBackend, path string, info os.FileInfo, cb func(path string, info os.FileInfo, err error) error) error {
if !info.IsDir() {
return cb(path, info, nil)
}
infos, err := readdir(fs, path, -1)
err1 := cb(path, info, err)
if err != nil || err1 != nil {
return err1
}
for _, info := range infos {
filename := filepath.Join(path, info.Name())
fileInfo, err := fs.Stat(filename)
if err != nil {
if err := cb(filename, fileInfo, err); err != nil {
return err
}
} else {
err := walkHelper(fs, filename, fileInfo, cb)
if err != nil && !fileInfo.IsDir() {
return err
}
}
}
return nil
}
func readdir(fs LocalBackend, path string, n int) ([]os.FileInfo, error) {
f, err := fs.Open(path)
if err != nil {
return nil, err
}
list, err := f.Readdir(n)
_ = f.Close()
if err != nil {
return nil, err
}
sort.Slice(list, func(i, j int) bool {
return list[i].Name() < list[j].Name()
})
return list, nil
}