forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fs.go
54 lines (44 loc) · 1.49 KB
/
fs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package sysfs
import (
"os"
)
// A File represents basic IO interactions with the underlying file system
type File interface {
Write(b []byte) (n int, err error)
WriteString(s string) (ret int, err error)
Sync() (err error)
Read(b []byte) (n int, err error)
ReadAt(b []byte, off int64) (n int, err error)
Seek(offset int64, whence int) (ret int64, err error)
Fd() uintptr
Close() error
}
// Filesystem opens files and returns either a native file system or user defined
type Filesystem interface {
OpenFile(name string, flag int, perm os.FileMode) (file File, err error)
Stat(name string) (os.FileInfo, error)
}
// NativeFilesystem represents the native file system implementation
type NativeFilesystem struct{}
// Default to the host filesystem.
var fs Filesystem = &NativeFilesystem{}
// SetFilesystem sets the filesystem implementation.
func SetFilesystem(f Filesystem) {
fs = f
}
// OpenFile calls os.OpenFile().
func (fs *NativeFilesystem) OpenFile(name string, flag int, perm os.FileMode) (file File, err error) {
return os.OpenFile(name, flag, perm)
}
// Stat calls os.Stat()
func (fs *NativeFilesystem) Stat(name string) (os.FileInfo, error) {
return os.Stat(name)
}
// OpenFile calls either the NativeFilesystem or user defined OpenFile
func OpenFile(name string, flag int, perm os.FileMode) (file File, err error) {
return fs.OpenFile(name, flag, perm)
}
// Stat call either the NativeFilesystem of user defined Stat
func Stat(name string) (os.FileInfo, error) {
return fs.Stat(name)
}