-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherrors.go
More file actions
327 lines (272 loc) · 9.06 KB
/
Copy patherrors.go
File metadata and controls
327 lines (272 loc) · 9.06 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package fs
import (
"errors"
"fmt"
"net/http"
"os"
)
// SentinelError is used for const sentinel errors
type SentinelError string
// Error implements the error interface
func (e SentinelError) Error() string {
return string(e)
}
const (
// ErrReadOnlyFileSystem is returned when a file system doesn't support writes
ErrReadOnlyFileSystem SentinelError = "file system is read-only"
// ErrWriteOnlyFileSystem is returned when a file system doesn't support reads
ErrWriteOnlyFileSystem SentinelError = "file system is write-only"
// ErrInvalidFileSystem indicates an invalid file system
ErrInvalidFileSystem SentinelError = "invalid file system"
// ErrFileSystemClosed is returned after a file system Close method was called
ErrFileSystemClosed SentinelError = "file system is closed"
// ErrUnmarshalJSON wraps the error of File.ReadJSON and MemFile.ReadJSON
ErrUnmarshalJSON SentinelError = "can't unmarshal JSON"
// ErrMarshalJSON wraps the error of File.WriteJSON and MemFile.WriteJSON
ErrMarshalJSON SentinelError = "can't marshal JSON"
// ErrUnmarshalXML wraps the error of File.ReadXML and MemFile.ReadXML
ErrUnmarshalXML SentinelError = "can't unmarshal XML"
// ErrMarshalXML wraps the error of File.WriteXML and MemFile.WriteXML
ErrMarshalXML SentinelError = "can't marshal XML"
)
///////////////////////////////////////////////////////////////////////////////
// ErrDoesNotExist
// RemoveErrDoesNotExist returns nil if err wraps os.ErrNotExist,
// else err will be returned unchanged.
func RemoveErrDoesNotExist(err error) error {
if err == nil || errors.Is(err, os.ErrNotExist) {
return nil
}
return err
}
// ErrEmptyPath indicates an empty file path
var ErrEmptyPath = NewErrDoesNotExist(InvalidFile)
// ErrDoesNotExist is returned when a file does not exist
// and wraps os.ErrNotExist.
// Check for this error type with:
//
// errors.Is(err, os.ErrNotExist)
//
// Implements http.Handler by responding with http.NotFound.
type ErrDoesNotExist struct {
file any
}
// NewErrDoesNotExist returns a new ErrDoesNotExist
func NewErrDoesNotExist(file File) ErrDoesNotExist {
return ErrDoesNotExist{file}
}
// NewErrDoesNotExistFileReader returns an ErrDoesNotExist
// error for a FileReader.
func NewErrDoesNotExistFileReader(fileReader FileReader) ErrDoesNotExist {
return ErrDoesNotExist{fileReader}
}
// NewErrPathDoesNotExist returns an ErrDoesNotExist
// error for a file path.
func NewErrPathDoesNotExist(path string) ErrDoesNotExist {
return ErrDoesNotExist{path}
}
// Error implements the error interface
func (err ErrDoesNotExist) Error() string {
fileStr := fmt.Sprintf("%s", err.file)
if fileStr == "" {
return "empty file path"
}
return fmt.Sprintf("file does not exist: %s", fileStr)
}
// Unwrap returns os.ErrNotExist
func (ErrDoesNotExist) Unwrap() error {
return os.ErrNotExist
}
// File returns the File that error concerns
// or false for ok if the error is not about a File
// but another type.
func (err ErrDoesNotExist) File() (file File, ok bool) {
file, ok = err.file.(File)
return file, ok
}
// FileReader returns the FileReader that error concerns
// or false for ok if the error is not about a FileReader
// but another type.
func (err ErrDoesNotExist) FileReader() (file FileReader, ok bool) {
file, ok = err.file.(FileReader)
return file, ok
}
// ServeHTTP implements http.Handler by responding with http.NotFound
func (err ErrDoesNotExist) ServeHTTP(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
}
///////////////////////////////////////////////////////////////////////////////
// ErrPermission
// ErrPermission is returned when an operation lacks
// permissions on a file. It wraps os.ErrPermission.
// Check for this error type with:
//
// errors.Is(err, os.ErrPermission)
//
// Implements http.Handler by responding with 403 Forbidden.
type ErrPermission struct {
file File
}
// NewErrPermission returns a new ErrPermission
func NewErrPermission(file File) ErrPermission {
return ErrPermission{file}
}
// Error implements the error interface
func (err ErrPermission) Error() string {
return fmt.Sprintf("file lacks permission: %s", err.file)
}
// Unwrap returns os.ErrPermission
func (ErrPermission) Unwrap() error {
return os.ErrPermission
}
// File returns the file that error concerns
func (err ErrPermission) File() File {
return err.file
}
// ServeHTTP implements http.Handler by responding with 403 Forbidden
func (err ErrPermission) ServeHTTP(w http.ResponseWriter, r *http.Request) {
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
}
///////////////////////////////////////////////////////////////////////////////
// ErrAlreadyExists
// ErrAlreadyExists is returned when a file already exists.
// It wraps os.ErrExist, check for this error type with:
//
// errors.Is(err, os.ErrExist)
type ErrAlreadyExists struct {
file File
}
// NewErrAlreadyExists returns a new ErrAlreadyExists
func NewErrAlreadyExists(file File) ErrAlreadyExists {
return ErrAlreadyExists{file}
}
// Error implements the error interface
func (err ErrAlreadyExists) Error() string {
return fmt.Sprintf("file already exists: %s", err.file)
}
// Unwrap returns os.ErrExist
func (ErrAlreadyExists) Unwrap() error {
return os.ErrExist
}
// File returns the file that already exists
func (err ErrAlreadyExists) File() File {
return err.file
}
///////////////////////////////////////////////////////////////////////////////
// ErrIsDirectory
// ErrIsDirectory is returned when an operation is not possible because
// a file is a directory.
type ErrIsDirectory struct {
file any
}
// NewErrIsDirectory returns a new ErrIsDirectory
func NewErrIsDirectory(file any) ErrIsDirectory {
return ErrIsDirectory{file}
}
// Error implements the error interface
func (err ErrIsDirectory) Error() string {
fileStr := fmt.Sprintf("%s", err.file)
if fileStr == "" {
return "empty file path"
}
return fmt.Sprintf("file is a directory: %s", fileStr)
}
// File returns the File that error concerns
// or false for ok if the error is not about a File
// but another type.
func (err ErrIsDirectory) File() (file File, ok bool) {
file, ok = err.file.(File)
return file, ok
}
// FileReader returns the FileReader that error concerns
// or false for ok if the error is not about a FileReader
// but another type.
func (err ErrIsDirectory) FileReader() (file FileReader, ok bool) {
file, ok = err.file.(FileReader)
return file, ok
}
///////////////////////////////////////////////////////////////////////////////
// ErrIsNotDirectory
// ErrIsNotDirectory is returned when an operation is not possible
// because a file is not a directory.
type ErrIsNotDirectory struct {
file any
}
// NewErrIsNotDirectory returns a new ErrIsNotDirectory
func NewErrIsNotDirectory(file any) ErrIsNotDirectory {
return ErrIsNotDirectory{file}
}
// Error implements the error interface
func (err ErrIsNotDirectory) Error() string {
fileStr := fmt.Sprintf("%s", err.file)
if fileStr == "" {
return "empty file path"
}
return fmt.Sprintf("file is not a directory: %s", fileStr)
}
// File returns the File that error concerns
// or false for ok if the error is not about a File
// but another type.
func (err ErrIsNotDirectory) File() (file File, ok bool) {
file, ok = err.file.(File)
return file, ok
}
// FileReader returns the FileReader that error concerns
// or false for ok if the error is not about a FileReader
// but another type.
func (err ErrIsNotDirectory) FileReader() (file FileReader, ok bool) {
file, ok = err.file.(FileReader)
return file, ok
}
///////////////////////////////////////////////////////////////////////////////
// translateErrFile
// translateErrFile returns err with the File of typed errors
// translated by mapFile, or err unchanged if it is not a typed
// error with a File.
func translateErrFile(err error, mapFile func(File) File) error {
var (
notExist ErrDoesNotExist
exists ErrAlreadyExists
isDir ErrIsDirectory
isNotDir ErrIsNotDirectory
)
switch {
case errors.As(err, ¬Exist):
if f, ok := notExist.file.(File); ok {
return NewErrDoesNotExist(mapFile(f))
}
case errors.As(err, &exists):
return NewErrAlreadyExists(mapFile(exists.file))
case errors.As(err, &isDir):
if f, ok := isDir.file.(File); ok {
return NewErrIsDirectory(mapFile(f))
}
case errors.As(err, &isNotDir):
if f, ok := isNotDir.file.(File); ok {
return NewErrIsNotDirectory(mapFile(f))
}
}
return err
}
///////////////////////////////////////////////////////////////////////////////
// ErrUnsupported
// ErrUnsupported is returned when a file system does not support
// an operation. It wraps errors.ErrUnsupported, check for it with:
//
// errors.Is(err, errors.ErrUnsupported)
type ErrUnsupported struct {
fs FileSystem
op string
}
// NewErrUnsupported returns a new ErrUnsupported
func NewErrUnsupported(fileSystem FileSystem, operation string) ErrUnsupported {
return ErrUnsupported{fileSystem, operation}
}
// Error implements the error interface
func (err ErrUnsupported) Error() string {
return fmt.Sprintf("%s %s at %s", errors.ErrUnsupported, err.op, err.fs)
}
// Unwrap returns errors.ErrUnsupported
func (ErrUnsupported) Unwrap() error {
return errors.ErrUnsupported
}