-
Notifications
You must be signed in to change notification settings - Fork 0
/
invalidfilesystem.go
230 lines (180 loc) · 6 KB
/
invalidfilesystem.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package fs
import (
"context"
iofs "io/fs"
"net/url"
"path"
"strings"
"github.com/ungerik/go-fs/fsimpl"
)
var _ fullyFeaturedFileSystem = InvalidFileSystem("")
// InvalidFileSystem is a file system where all operations are invalid.
// A File with an empty path defaults to this FS.
//
// The underlying string value is the optional name
// of the file system and will be added to the URI prefix.
// It can be used to register different dummy file systems
// for debugging or testing purposes.
type InvalidFileSystem string
func (InvalidFileSystem) ReadableWritable() (readable, writable bool) {
return false, false
}
func (InvalidFileSystem) RootDir() File {
return "" // InvalidFile
}
func (fs InvalidFileSystem) ID() (string, error) {
return fs.String(), nil
}
func (fs InvalidFileSystem) Prefix() string {
if fs == "" {
return "invalid://"
}
return "invalid://" + strings.Trim(string(fs), "/") + "/"
}
func (fs InvalidFileSystem) Name() string {
if fs == "" {
return "invalid file system"
}
return string(fs)
}
func (fs InvalidFileSystem) String() string {
if fs == "" {
return "invalid file system"
}
return "invalid file system" + " " + string(fs)
}
func (fs InvalidFileSystem) JoinCleanFile(uri ...string) File {
if fs == "" && strings.Join(uri, "") == "" {
return "" // InvalidFile
}
return File(fs.Prefix() + fs.JoinCleanPath(uri...))
}
func (InvalidFileSystem) IsAbsPath(filePath string) bool {
return path.IsAbs(filePath)
}
func (fs InvalidFileSystem) AbsPath(filePath string) string {
return fs.JoinCleanPath(filePath)
}
func (fs InvalidFileSystem) URL(cleanPath string) string {
return fs.Prefix() + cleanPath
}
func (fs InvalidFileSystem) CleanPathFromURI(uri string) string {
return path.Clean(strings.TrimPrefix(uri, fs.Prefix()))
}
func (fs InvalidFileSystem) JoinCleanPath(uriParts ...string) string {
if len(uriParts) > 0 {
uriParts[0] = strings.TrimPrefix(uriParts[0], fs.Prefix())
}
cleanPath := path.Join(uriParts...)
unescPath, err := url.PathUnescape(cleanPath)
if err == nil {
cleanPath = unescPath
}
cleanPath = path.Clean(cleanPath)
return cleanPath
}
func (fs InvalidFileSystem) SplitPath(filePath string) []string {
return fsimpl.SplitPath(filePath, fs.Prefix(), fs.Separator())
}
func (InvalidFileSystem) Separator() string {
return "/"
}
func (InvalidFileSystem) MatchAnyPattern(name string, patterns []string) (bool, error) {
return false, ErrInvalidFileSystem
}
func (fs InvalidFileSystem) SplitDirAndName(filePath string) (dir, name string) {
if fs == "" {
return "", ""
}
return fsimpl.SplitDirAndName(filePath, 0, fs.Separator())
}
func (InvalidFileSystem) VolumeName(filePath string) string {
return "invalid:"
}
func (InvalidFileSystem) Stat(filePath string) (iofs.FileInfo, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) Exists(filePath string) bool {
return false
}
func (InvalidFileSystem) IsHidden(filePath string) bool {
return false
}
func (InvalidFileSystem) IsSymbolicLink(filePath string) bool {
return false
}
func (InvalidFileSystem) ListDirInfo(ctx context.Context, dirPath string, callback func(*FileInfo) error, patterns []string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) ListDirInfoRecursive(ctx context.Context, dirPath string, callback func(*FileInfo) error, patterns []string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) ListDirMax(ctx context.Context, dirPath string, n int, patterns []string) (files []File, err error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) SetPermissions(filePath string, perm Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) User(filePath string) (string, error) {
return "", ErrInvalidFileSystem
}
func (InvalidFileSystem) SetUser(filePath string, user string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Group(filePath string) (string, error) {
return "", ErrInvalidFileSystem
}
func (InvalidFileSystem) SetGroup(filePath string, group string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Touch(filePath string, perm []Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) MakeDir(dirPath string, perm []Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) MakeAllDirs(dirPath string, perm []Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) ReadAll(ctx context.Context, filePath string) ([]byte, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) WriteAll(ctx context.Context, filePath string, data []byte, perm []Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Append(ctx context.Context, filePath string, data []byte, perm []Permissions) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) OpenReader(filePath string) (ReadCloser, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) OpenWriter(filePath string, perm []Permissions) (WriteCloser, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) OpenAppendWriter(filePath string, perm []Permissions) (WriteCloser, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) OpenReadWriter(filePath string, perm []Permissions) (ReadWriteSeekCloser, error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) Watch(filePath string, onEvent func(File, Event)) (cancel func() error, err error) {
return nil, ErrInvalidFileSystem
}
func (InvalidFileSystem) Truncate(filePath string, size int64) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) CopyFile(ctx context.Context, srcFile string, destFile string, buf *[]byte) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Rename(filePath string, newName string) (string, error) {
return "", ErrInvalidFileSystem
}
func (InvalidFileSystem) Move(filePath string, destPath string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Remove(filePath string) error {
return ErrInvalidFileSystem
}
func (InvalidFileSystem) Close() error {
return ErrInvalidFileSystem
}