168 lines
2.7 KiB
Go
168 lines
2.7 KiB
Go
|
package vfs
|
||
|
|
||
|
import (
|
||
|
"io/fs"
|
||
|
"os"
|
||
|
"path"
|
||
|
"sync"
|
||
|
)
|
||
|
|
||
|
type OsFS struct {
|
||
|
hostDir string
|
||
|
}
|
||
|
|
||
|
// Open implements Filesystem.
|
||
|
func (fs *OsFS) Open(filename string) (File, error) {
|
||
|
if path.Clean(filename) == Separator {
|
||
|
return &Dir{}, nil
|
||
|
}
|
||
|
|
||
|
osfile, err := os.Open(path.Join(fs.hostDir, filename))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return NewOsFile(osfile), nil
|
||
|
}
|
||
|
|
||
|
// ReadDir implements Filesystem.
|
||
|
func (o *OsFS) ReadDir(dir string) (map[string]File, error) {
|
||
|
dir = path.Join(o.hostDir, dir)
|
||
|
entries, err := os.ReadDir(dir)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
out := map[string]File{}
|
||
|
for _, e := range entries {
|
||
|
if e.IsDir() {
|
||
|
out[e.Name()] = &Dir{}
|
||
|
} else {
|
||
|
out[e.Name()] = NewLazyOsFile(path.Join(dir, e.Name()))
|
||
|
}
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
func NewOsFs(osDir string) *OsFS {
|
||
|
return &OsFS{
|
||
|
hostDir: osDir,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var _ Filesystem = &OsFS{}
|
||
|
|
||
|
type OsFile struct {
|
||
|
f *os.File
|
||
|
}
|
||
|
|
||
|
func NewOsFile(f *os.File) *OsFile {
|
||
|
return &OsFile{f: f}
|
||
|
}
|
||
|
|
||
|
var _ File = &OsFile{}
|
||
|
|
||
|
// Close implements File.
|
||
|
func (f *OsFile) Close() error {
|
||
|
return f.f.Close()
|
||
|
}
|
||
|
|
||
|
// Read implements File.
|
||
|
func (f *OsFile) Read(p []byte) (n int, err error) {
|
||
|
return f.f.Read(p)
|
||
|
}
|
||
|
|
||
|
// ReadAt implements File.
|
||
|
func (f *OsFile) ReadAt(p []byte, off int64) (n int, err error) {
|
||
|
return f.f.ReadAt(p, off)
|
||
|
}
|
||
|
|
||
|
func (f *OsFile) Stat() (fs.FileInfo, error) {
|
||
|
return f.f.Stat()
|
||
|
}
|
||
|
|
||
|
// Size implements File.
|
||
|
func (f *OsFile) Size() int64 {
|
||
|
stat, err := f.Stat()
|
||
|
if err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
return stat.Size()
|
||
|
}
|
||
|
|
||
|
// IsDir implements File.
|
||
|
func (f *OsFile) IsDir() bool {
|
||
|
stat, err := f.Stat()
|
||
|
if err != nil {
|
||
|
return false
|
||
|
}
|
||
|
return stat.IsDir()
|
||
|
}
|
||
|
|
||
|
type LazyOsFile struct {
|
||
|
m sync.Mutex
|
||
|
path string
|
||
|
file *os.File
|
||
|
}
|
||
|
|
||
|
func NewLazyOsFile(path string) *LazyOsFile {
|
||
|
return &LazyOsFile{path: path}
|
||
|
}
|
||
|
|
||
|
var _ File = &OsFile{}
|
||
|
|
||
|
func (f *LazyOsFile) open() error {
|
||
|
f.m.Lock()
|
||
|
defer f.m.Unlock()
|
||
|
|
||
|
if f.file != nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
osFile, err := os.Open(f.path)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
f.file = osFile
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// Close implements File.
|
||
|
func (f *LazyOsFile) Close() error {
|
||
|
return f.file.Close()
|
||
|
}
|
||
|
|
||
|
// Read implements File.
|
||
|
func (f *LazyOsFile) Read(p []byte) (n int, err error) {
|
||
|
return f.file.Read(p)
|
||
|
}
|
||
|
|
||
|
// ReadAt implements File.
|
||
|
func (f *LazyOsFile) ReadAt(p []byte, off int64) (n int, err error) {
|
||
|
return f.file.ReadAt(p, off)
|
||
|
}
|
||
|
|
||
|
func (f *LazyOsFile) Stat() (fs.FileInfo, error) {
|
||
|
if f.file == nil {
|
||
|
return os.Stat(f.path)
|
||
|
} else {
|
||
|
return f.file.Stat()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Size implements File.
|
||
|
func (f *LazyOsFile) Size() int64 {
|
||
|
stat, err := f.Stat()
|
||
|
if err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
return stat.Size()
|
||
|
}
|
||
|
|
||
|
// IsDir implements File.
|
||
|
func (f *LazyOsFile) IsDir() bool {
|
||
|
stat, err := f.Stat()
|
||
|
if err != nil {
|
||
|
return false
|
||
|
}
|
||
|
return stat.IsDir()
|
||
|
}
|