-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
241 lines (192 loc) · 6.2 KB
/
errors.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
231
232
233
234
235
236
237
238
239
240
241
package fs
import (
"errors"
"fmt"
"net/http"
"os"
)
// SentinelError is used for const sentinel errors
type SentinelError string
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 SentinelError = "can't unmarshal JSON"
ErrMarshalJSON SentinelError = "can't marshal JSON"
ErrUnmarshalXML SentinelError = "can't unmarshal XML"
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 indications 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 {
path := fmt.Sprintf("%s", err.file)
if path == "" {
return "empty file path"
}
return fmt.Sprintf("file does not exist: %s", path)
}
// Unwrap returns os.ErrNotExist
func (ErrDoesNotExist) Unwrap() error {
return os.ErrNotExist
}
// File returns the file that error concerns
func (err ErrDoesNotExist) File() (file File, ok bool) {
file, ok = err.file.(File)
return file, ok
}
func (err ErrDoesNotExist) FileReader() (file FileReader, ok bool) {
file, ok = err.file.(FileReader)
return file, ok
}
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}
}
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
}
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}
}
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 File
}
// NewErrIsDirectory returns a new ErrIsDirectory
func NewErrIsDirectory(file File) ErrIsDirectory {
return ErrIsDirectory{file}
}
func (err ErrIsDirectory) Error() string {
return fmt.Sprintf("file is a directory: %s", err.file)
}
// File returns the file that error concerns
func (err ErrIsDirectory) File() File {
return err.file
}
///////////////////////////////////////////////////////////////////////////////
// ErrIsNotDirectory
// ErrIsNotDirectory is returned when an operation is not possible
// because a file is not a directory.
type ErrIsNotDirectory struct {
file File
}
// NewErrIsNotDirectory returns a new ErrIsNotDirectory
func NewErrIsNotDirectory(file File) ErrIsNotDirectory {
return ErrIsNotDirectory{file}
}
func (err ErrIsNotDirectory) Error() string {
return fmt.Sprintf("file is not a directory: %s", err.file)
}
// File returns the file that error concerns
func (err ErrIsNotDirectory) File() File {
return err.file
}
///////////////////////////////////////////////////////////////////////////////
// ErrUnsupported
type ErrUnsupported struct {
fs FileSystem
op string
}
// NewErrUnsupported returns a new ErrUnsupported
func NewErrUnsupported(fileSystem FileSystem, operation string) ErrUnsupported {
return ErrUnsupported{fileSystem, operation}
}
func (err ErrUnsupported) Error() string {
return fmt.Sprintf("%s %s at %s", errors.ErrUnsupported, err.op, err.fs)
}
func (ErrUnsupported) Unwrap() error {
return errors.ErrUnsupported
}