-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy patherror.go
235 lines (184 loc) · 10.7 KB
/
error.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
package gocbcore
import (
"errors"
"io"
)
// dwError is a special error used for the purposes of rewrapping
// another error to provide more detailed information inherently
// with the error type itself. Mainly used for timeout and rate limiting.
type dwError struct {
InnerError error
Message string
}
func (e dwError) Error() string {
return e.Message
}
func (e dwError) Unwrap() error {
return e.InnerError
}
var (
// ErrNoSupportedMechanisms occurs when the server does not support any of the
// authentication methods that the client finds suitable.
ErrNoSupportedMechanisms = errors.New("no supported authentication mechanisms")
// ErrBadHosts occurs when the list of hosts specified cannot be contacted.
ErrBadHosts = errors.New("failed to connect to any of the specified hosts")
// ErrProtocol occurs when the server responds with unexpected or unparseable data.
ErrProtocol = errors.New("failed to parse server response")
// ErrNoReplicas occurs when no replicas respond in time
ErrNoReplicas = errors.New("no replicas responded in time")
// ErrCliInternalError indicates an internal error occurred within the client.
ErrCliInternalError = errors.New("client internal error")
// ErrInvalidCredentials is returned when an invalid set of credentials is provided for a service.
ErrInvalidCredentials = errors.New("an invalid set of credentials was provided")
// ErrInvalidServer occurs when an explicit, but invalid server is specified.
ErrInvalidServer = errors.New("specific server is invalid")
// ErrInvalidVBucket occurs when an explicit, but invalid vbucket index is specified.
ErrInvalidVBucket = errors.New("specific vbucket index is invalid")
// ErrInvalidReplica occurs when an explicit, but invalid replica index is specified.
ErrInvalidReplica = errors.New("specific server index is invalid")
// ErrInvalidService occurs when an explicit but invalid service type is specified
ErrInvalidService = errors.New("invalid service")
// ErrInvalidCertificate occurs when a certificate that is not useable is passed to an Agent.
ErrInvalidCertificate = errors.New("certificate is invalid")
// ErrCollectionsUnsupported occurs when collections are used but either server does not support them or the agent
// was created without them enabled.
ErrCollectionsUnsupported = errors.New("collections are not enabled")
// ErrBucketAlreadySelected occurs when SelectBucket is called when a bucket is already selected..
ErrBucketAlreadySelected = errors.New("bucket already selected")
// ErrShutdown occurs when operations are performed on a previously closed Agent.
ErrShutdown = errors.New("connection shut down")
// ErrOverload occurs when too many operations are dispatched and all queues are full.
ErrOverload = errors.New("queue overflowed")
// ErrSocketClosed occurs when a socket closes while an operation is in flight.
ErrSocketClosed = io.EOF
// ErrGCCCPInUse occurs when an operation dis performed whilst the client is connect via GCCCP.
ErrGCCCPInUse = errors.New("connected via gcccp, kv operations are not supported, open a bucket first")
// ErrNotMyVBucket occurs when an operation is sent to a node which does not own the vbucket.
ErrNotMyVBucket = errors.New("not my vbucket")
// ErrForcedReconnect occurs when an operation is in flight during a forced reconnect.
ErrForcedReconnect = errors.New("forced reconnect")
// ErrNotStored occurs when the server could not store the document.
// Per GOCBC-1356, it can also be returned on some paths when inserting a document, and in that context indicates
// that the document already exists.
ErrNotStored = errors.New("document was not stored")
// ErrServerGroupMismatch occurs when a server group is requested for an operation but no replicas exist for that
// vbucket id.
// Uncommitted: This API may change in the future.
ErrServerGroupMismatch = errors.New("vbucket id does not have any replica in requested server group")
)
// Shared Error Definitions RFC#58@15
var (
// ErrTimeout occurs when an operation does not receive a response in a timely manner.
ErrTimeout = errors.New("operation has timed out")
ErrRequestCanceled = errors.New("request canceled")
ErrInvalidArgument = errors.New("invalid argument")
ErrServiceNotAvailable = errors.New("service not available")
ErrInternalServerFailure = errors.New("internal server failure")
ErrAuthenticationFailure = errors.New("authentication failure - possible reasons - incorrect authentication configuration, bucket doesn’t exist or bucket may be hibernated")
ErrTemporaryFailure = errors.New("temporary failure")
ErrParsingFailure = errors.New("parsing failure")
ErrMemdClientClosed = errors.New("memdclient closed")
ErrRequestAlreadyDispatched = errors.New("request already dispatched")
ErrBusy = errors.New("busy")
ErrCasMismatch = errors.New("cas mismatch")
ErrBucketNotFound = errors.New("bucket not found")
ErrCollectionNotFound = errors.New("collection not found")
ErrEncodingFailure = errors.New("encoding failure")
ErrDecodingFailure = errors.New("decoding failure")
ErrUnsupportedOperation = errors.New("unsupported operation")
ErrAmbiguousTimeout = &dwError{ErrTimeout, "ambiguous timeout"}
ErrUnambiguousTimeout = &dwError{ErrTimeout, "unambiguous timeout"}
// ErrFeatureNotAvailable occurs when an operation is performed on a bucket which does not support it.
ErrFeatureNotAvailable = errors.New("feature is not available")
ErrScopeNotFound = errors.New("scope not found")
ErrIndexNotFound = errors.New("index not found")
ErrIndexExists = errors.New("index exists")
// Uncommitted: This API may change in the future.
ErrRateLimitedFailure = errors.New("rate limited failure")
// Uncommitted: This API may change in the future.
ErrQuotaLimitedFailure = errors.New("quota limited failure")
)
// Key Value Error Definitions RFC#58@15
var (
ErrDocumentNotFound = errors.New("document not found")
ErrDocumentUnretrievable = errors.New("document unretrievable")
ErrDocumentLocked = errors.New("document locked")
ErrDocumentNotLocked = errors.New("document not locked")
ErrValueTooLarge = errors.New("value too large")
ErrDocumentExists = errors.New("document exists")
ErrValueNotJSON = errors.New("value not json")
ErrDurabilityLevelNotAvailable = errors.New("durability level not available")
ErrDurabilityImpossible = errors.New("durability impossible")
ErrDurabilityAmbiguous = errors.New("durability ambiguous")
ErrDurableWriteInProgress = errors.New("durable write in progress")
ErrDurableWriteReCommitInProgress = errors.New("durable write recommit in progress")
ErrMutationLost = errors.New("mutation lost")
ErrPathNotFound = errors.New("path not found")
ErrPathMismatch = errors.New("path mismatch")
ErrPathInvalid = errors.New("path invalid")
ErrPathTooBig = errors.New("path too big")
ErrPathTooDeep = errors.New("path too deep")
ErrValueTooDeep = errors.New("value too deep")
ErrValueInvalid = errors.New("value invalid")
ErrDocumentNotJSON = errors.New("document not json")
ErrNumberTooBig = errors.New("number too big")
ErrDeltaInvalid = errors.New("delta invalid")
ErrPathExists = errors.New("path exists")
ErrXattrUnknownMacro = errors.New("xattr unknown macro")
ErrXattrInvalidFlagCombo = errors.New("xattr invalid flag combination")
ErrXattrInvalidKeyCombo = errors.New("xattr invalid key combination")
ErrXattrUnknownVirtualAttribute = errors.New("xattr unknown virtual attribute")
ErrXattrCannotModifyVirtualAttribute = errors.New("xattr cannot modify virtual attribute")
ErrXattrInvalidOrder = errors.New("xattr invalid order")
// Uncommitted: This API may change in the future.
ErrDocumentAlreadyAlive = errors.New("document already alive")
ErrRangeScanCancelled = errors.New("range scan cancelled")
ErrRangeScanMore = errors.New("range scan more")
ErrRangeScanComplete = errors.New("range scan complete")
ErrRangeScanVbUUIDNotEqual = errors.New("range scan vb-uuid mismatch")
// Uncommitted: This API may change in the future.
ErrConnectionIDInvalid = errors.New("connection id unknown")
// Uncommitted: This API may change in the future
// Signals that an operation was cancelled due to the circuit breaker being open
ErrCircuitBreakerOpen = errors.New("circuit breaker open")
)
// Query Error Definitions RFC#58@15
var (
ErrPlanningFailure = errors.New("planning failure")
ErrIndexFailure = errors.New("index failure")
ErrPreparedStatementFailure = errors.New("prepared statement failure")
ErrDMLFailure = errors.New("data service returned an error during execution of DML statement")
)
// Analytics Error Definitions RFC#58@15
var (
ErrCompilationFailure = errors.New("compilation failure")
ErrJobQueueFull = errors.New("job queue full")
ErrDatasetNotFound = errors.New("dataset not found")
ErrDataverseNotFound = errors.New("dataverse not found")
ErrDatasetExists = errors.New("dataset exists")
ErrDataverseExists = errors.New("dataverse exists")
ErrLinkNotFound = errors.New("link not found")
)
// Search Error Definitions RFC#58@15
var ()
// View Error Definitions RFC#58@15
var (
ErrViewNotFound = errors.New("view not found")
ErrDesignDocumentNotFound = errors.New("design document not found")
)
// Management Error Definitions RFC#58@15
var (
ErrCollectionExists = errors.New("collection exists")
ErrScopeExists = errors.New("scope exists")
ErrUserNotFound = errors.New("user not found")
ErrGroupNotFound = errors.New("group not found")
ErrBucketExists = errors.New("bucket exists")
ErrUserExists = errors.New("user exists")
ErrBucketNotFlushable = errors.New("bucket not flushable")
ErrEventingFunctionNotFound = errors.New("eventing function not found")
ErrEventingFunctionNotDeployed = errors.New("eventing function not deployed")
ErrEventingFunctionCompilationFailure = errors.New("eventing function compilation failure")
ErrEventingFunctionIdenticalKeyspace = errors.New("eventing function identical keyspace")
ErrEventingFunctionNotBootstrapped = errors.New("eventing function not bootstrapped")
ErrEventingFunctionNotUndeployed = errors.New("eventing function not undeployed")
)