-
Notifications
You must be signed in to change notification settings - Fork 104
/
collection_crud.go
520 lines (429 loc) · 15.1 KB
/
collection_crud.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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
package gocb
import (
"context"
"sync"
"time"
gocbcore "github.com/couchbase/gocbcore/v10"
)
// Cas represents the specific state of a document on the cluster.
type Cas gocbcore.Cas
// InsertOptions are options that can be applied to an Insert operation.
type InsertOptions struct {
Expiry time.Duration
PersistTo uint
ReplicateTo uint
DurabilityLevel DurabilityLevel
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Insert creates a new document in the Collection.
func (c *Collection) Insert(id string, val interface{}, opts *InsertOptions) (mutOut *MutationResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*MutationResult, error) {
if opts == nil {
opts = &InsertOptions{}
}
return agent.Insert(c, id, val, opts)
})
}
// UpsertOptions are options that can be applied to an Upsert operation.
type UpsertOptions struct {
Expiry time.Duration
PersistTo uint
ReplicateTo uint
DurabilityLevel DurabilityLevel
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
PreserveExpiry bool
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Upsert creates a new document in the Collection if it does not exist, if it does exist then it updates it.
func (c *Collection) Upsert(id string, val interface{}, opts *UpsertOptions) (mutOut *MutationResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*MutationResult, error) {
if opts == nil {
opts = &UpsertOptions{}
}
return agent.Upsert(c, id, val, opts)
})
}
// ReplaceOptions are the options available to a Replace operation.
type ReplaceOptions struct {
Expiry time.Duration
Cas Cas
PersistTo uint
ReplicateTo uint
DurabilityLevel DurabilityLevel
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
PreserveExpiry bool
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Replace updates a document in the collection.
func (c *Collection) Replace(id string, val interface{}, opts *ReplaceOptions) (mutOut *MutationResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*MutationResult, error) {
if opts == nil {
opts = &ReplaceOptions{}
}
if opts.Expiry > 0 && opts.PreserveExpiry {
return nil, makeInvalidArgumentsError("cannot use expiry and preserve ttl together for replace")
}
return agent.Replace(c, id, val, opts)
})
}
// GetOptions are the options available to a Get operation.
type GetOptions struct {
WithExpiry bool
// Project causes the Get operation to only fetch the fields indicated
// by the paths. The result of the operation is then treated as a
// standard GetResult.
Project []string
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Get performs a fetch operation against the collection. This can take 3 paths, a standard full document
// fetch, a subdocument full document fetch also fetching document expiry (when WithExpiry is set),
// or a subdocument fetch (when Project is used).
func (c *Collection) Get(id string, opts *GetOptions) (docOut *GetResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*GetResult, error) {
if opts == nil {
opts = &GetOptions{}
}
return agent.Get(c, id, opts)
})
}
// ExistsOptions are the options available to the Exists command.
type ExistsOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Exists checks if a document exists for the given id.
func (c *Collection) Exists(id string, opts *ExistsOptions) (docOut *ExistsResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*ExistsResult, error) {
if opts == nil {
opts = &ExistsOptions{}
}
return agent.Exists(c, id, opts)
})
}
// GetAllReplicaOptions are the options available to the GetAllReplicas command.
type GetAllReplicaOptions struct {
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// UNCOMMITTED: This API may change in the future.
ReadPreference ReadPreference
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
noMetrics bool
}
// GetAllReplicasResult represents the results of a GetAllReplicas operation.
type GetAllReplicasResult struct {
res replicasResult
}
// Next fetches the next replica result.
func (r *GetAllReplicasResult) Next() *GetReplicaResult {
res := r.res.Next()
if res == nil {
return nil
}
return res.(*GetReplicaResult)
}
// Close cancels all remaining get replica requests.
func (r *GetAllReplicasResult) Close() error {
return r.res.Close()
}
type replicasResult interface {
Next() interface{}
Close() error
}
type coreReplicasResult struct {
lock sync.Mutex
totalRequests uint32
successResults uint32
totalResults uint32
resCh chan interface{}
cancelCh chan struct{}
span RequestSpan
childReqsCompleteCh chan struct{}
valueRecorder ValueRecorder
startedTime time.Time
}
func (r *coreReplicasResult) addFailed() {
r.lock.Lock()
r.totalResults++
if r.totalResults == r.totalRequests {
close(r.childReqsCompleteCh)
r.lock.Unlock()
return
}
r.lock.Unlock()
}
func (r *coreReplicasResult) addResult(res interface{}) {
// We use a lock here because the alternative means that there is a race
// between the channel writes from multiple results and the channels being
// closed. IE: T1-Incr, T2-Incr, T2-Send, T2-Close, T1-Send[PANIC]
r.lock.Lock()
r.successResults++
resultCount := r.successResults
if resultCount <= r.totalRequests {
r.resCh <- res
}
if resultCount == r.totalRequests {
close(r.cancelCh)
close(r.resCh)
r.span.End()
if r.valueRecorder != nil {
r.valueRecorder.RecordValue(uint64(time.Since(r.startedTime).Microseconds()))
}
}
r.totalResults++
if r.totalResults == r.totalRequests {
close(r.childReqsCompleteCh)
}
r.lock.Unlock()
}
// Next fetches the next replica result.
func (r *coreReplicasResult) Next() interface{} {
return <-r.resCh
}
// Close cancels all remaining get replica requests.
func (r *coreReplicasResult) Close() error {
// See addResult discussion on lock usage.
r.lock.Lock()
// Note that this number increment must be high enough to be clear that
// the result set was closed, but low enough that it won't overflow if
// additional result objects are processed after the close.
prevResultCount := r.successResults
r.successResults += 100000
// We only have to close everything if the addResult method didn't already
// close them due to already having completed every request
var weClosed bool
if prevResultCount < r.totalRequests {
close(r.cancelCh)
close(r.resCh)
weClosed = true
}
r.lock.Unlock()
if weClosed {
// We need to wait for the child requests spans to be completed.
<-r.childReqsCompleteCh
r.span.End()
}
return nil
}
// GetAllReplicas returns the value of a particular document from all replica servers. This will return an iterable
// which streams results one at a time.
func (c *Collection) GetAllReplicas(id string, opts *GetAllReplicaOptions) (*GetAllReplicasResult, error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*GetAllReplicasResult, error) {
if opts == nil {
opts = &GetAllReplicaOptions{}
}
return agent.GetAllReplicas(c, id, opts)
})
}
// GetAnyReplicaOptions are the options available to the GetAnyReplica command.
type GetAnyReplicaOptions struct {
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// UNCOMMITTED: This API may change in the future.
ReadPreference ReadPreference
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// GetAnyReplica returns the value of a particular document from a replica server.
func (c *Collection) GetAnyReplica(id string, opts *GetAnyReplicaOptions) (*GetReplicaResult, error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*GetReplicaResult, error) {
if opts == nil {
opts = &GetAnyReplicaOptions{}
}
return agent.GetAnyReplica(c, id, opts)
})
}
// RemoveOptions are the options available to the Remove command.
type RemoveOptions struct {
Cas Cas
PersistTo uint
ReplicateTo uint
DurabilityLevel DurabilityLevel
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Remove removes a document from the collection.
func (c *Collection) Remove(id string, opts *RemoveOptions) (mutOut *MutationResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*MutationResult, error) {
if opts == nil {
opts = &RemoveOptions{}
}
return agent.Remove(c, id, opts)
})
}
// GetAndTouchOptions are the options available to the GetAndTouch operation.
type GetAndTouchOptions struct {
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// GetAndTouch retrieves a document and simultaneously updates its expiry time.
func (c *Collection) GetAndTouch(id string, expiry time.Duration, opts *GetAndTouchOptions) (docOut *GetResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*GetResult, error) {
if opts == nil {
opts = &GetAndTouchOptions{}
}
return agent.GetAndTouch(c, id, expiry, opts)
})
}
// GetAndLockOptions are the options available to the GetAndLock operation.
type GetAndLockOptions struct {
Transcoder Transcoder
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// GetAndLock locks a document for a period of time, providing exclusive RW access to it.
// A lockTime value of over 30 seconds will be treated as 30 seconds. The resolution used to send this value to
// the server is seconds and is calculated using uint32(lockTime/time.Second).
func (c *Collection) GetAndLock(id string, lockTime time.Duration, opts *GetAndLockOptions) (docOut *GetResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*GetResult, error) {
if opts == nil {
opts = &GetAndLockOptions{}
}
return agent.GetAndLock(c, id, lockTime, opts)
})
}
// UnlockOptions are the options available to the GetAndLock operation.
type UnlockOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Unlock unlocks a document which was locked with GetAndLock.
func (c *Collection) Unlock(id string, cas Cas, opts *UnlockOptions) (errOut error) {
return autoOpControlErrorOnly(c.kvController(), func(agent kvProvider) error {
if opts == nil {
opts = &UnlockOptions{}
}
return agent.Unlock(c, id, cas, opts)
})
}
// TouchOptions are the options available to the Touch operation.
type TouchOptions struct {
Timeout time.Duration
RetryStrategy RetryStrategy
ParentSpan RequestSpan
// Using a deadlined Context alongside a Timeout will cause the shorter of the two to cause cancellation, this
// also applies to global level timeouts.
// UNCOMMITTED: This API may change in the future.
Context context.Context
// Internal: This should never be used and is not supported.
Internal struct {
User string
}
}
// Touch touches a document, specifying a new expiry time for it.
func (c *Collection) Touch(id string, expiry time.Duration, opts *TouchOptions) (mutOut *MutationResult, errOut error) {
return autoOpControl(c.kvController(), func(agent kvProvider) (*MutationResult, error) {
if opts == nil {
opts = &TouchOptions{}
}
return agent.Touch(c, id, expiry, opts)
})
}
// Binary creates and returns a BinaryCollection object.
func (c *Collection) Binary() *BinaryCollection {
return &BinaryCollection{collection: c}
}