-
Notifications
You must be signed in to change notification settings - Fork 12
/
dest_forwarder.go
298 lines (250 loc) · 7.86 KB
/
dest_forwarder.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
// Copyright 2014-Present Couchbase, Inc.
//
// Use of this software is governed by the Business Source License included
// in the file licenses/BSL-Couchbase.txt. As of the Change Date specified
// in that file, in accordance with the Business Source License, use of this
// software will be governed by the Apache License, Version 2.0, included in
// the file licenses/APL2.txt.
package cbgt
import (
"fmt"
"io"
)
// A DestForwarder implements the Dest interface by forwarding method
// calls to the Dest returned by a DestProvider.
//
// It is useful for pindex backend implementations that have their own
// level-of-indirection features. One example would be pindex
// backends that track a separate batch per partition.
type DestForwarder struct {
DestProvider DestProvider
}
// A DestProvider returns the Dest to use for different kinds of
// operations and is used in conjunction with a DestForwarder.
type DestProvider interface {
Dest(partition string) (Dest, error)
Count(pindex *PIndex, cancelCh <-chan bool) (uint64, error)
Query(pindex *PIndex, req []byte, res io.Writer,
cancelCh <-chan bool) error
Stats(io.Writer) error
Close(bool) error
}
func (t *DestForwarder) Close(remove bool) error {
return t.DestProvider.Close(remove)
}
func (t *DestForwarder) DataUpdate(partition string,
key []byte, seq uint64, val []byte,
cas uint64,
extrasType DestExtrasType, extras []byte) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.DataUpdate(partition, key, seq, val,
cas, extrasType, extras)
}
func (t *DestForwarder) DataUpdateEx(partition string,
key []byte, seq uint64, val []byte, cas uint64,
extrasType DestExtrasType, req interface{}) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destEx, ok := dest.(DestEx); ok {
return destEx.DataUpdateEx(partition, key, seq, val,
cas, extrasType, req)
}
return fmt.Errorf("dest_forwarder: no DestEx"+
" implementation found for partition %s", partition)
}
func (t *DestForwarder) DataDelete(partition string,
key []byte, seq uint64,
cas uint64,
extrasType DestExtrasType, extras []byte) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.DataDelete(partition, key, seq,
cas, extrasType, extras)
}
func (t *DestForwarder) DataDeleteEx(partition string,
key []byte, seq uint64, cas uint64,
extrasType DestExtrasType, req interface{}) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destEx, ok := dest.(DestEx); ok {
return destEx.DataDeleteEx(partition, key, seq,
cas, extrasType, req)
}
return fmt.Errorf("dest_forwarder: no DestEx "+
"implementation found for partition %s", partition)
}
func (t *DestForwarder) SnapshotStart(partition string,
snapStart, snapEnd uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.SnapshotStart(partition, snapStart, snapEnd)
}
func (t *DestForwarder) PrepareFeedParams(partition string,
params *DCPFeedParams) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.PrepareFeedParams(partition, params)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (PrepareFeedParams) for partition %s",
partition)
}
func (t *DestForwarder) OSOSnapshot(partition string,
snapshotType uint32) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.OSOSnapshot(partition, snapshotType)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (OSOSnapshot) for partition %s",
partition)
}
func (t *DestForwarder) SeqNoAdvanced(partition string,
seq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.SeqNoAdvanced(partition, seq)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (SeqNoAdvanced) for partition %s",
partition)
}
func (t *DestForwarder) CreateCollection(partition string,
manifestUid uint64, scopeId, collectionId uint32, seq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.CreateCollection(partition, manifestUid,
scopeId, collectionId, seq)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (CreateCollection) for partition %s",
partition)
}
func (t *DestForwarder) DeleteCollection(partition string,
manifestUid uint64, scopeId, collectionId uint32, seq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.DeleteCollection(partition, manifestUid,
scopeId, collectionId, seq)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (DeleteCollection) for partition %s",
partition)
}
func (t *DestForwarder) FlushCollection(partition string,
manifestUid uint64, scopeId, collectionId uint32, seq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.FlushCollection(partition, manifestUid,
scopeId, collectionId, seq)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (FlushCollection) for partition %s",
partition)
}
func (t *DestForwarder) ModifyCollection(partition string,
manifestUid uint64, scopeId, collectionId uint32, seq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destColl, ok := dest.(DestCollection); ok {
return destColl.ModifyCollection(partition, manifestUid,
scopeId, collectionId, seq)
}
return fmt.Errorf("dest_forwarder: no DestCollection "+
"implementation found (ModifyCollection) for partition %s",
partition)
}
func (t *DestForwarder) OpaqueGet(partition string) (
value []byte, lastSeq uint64, err error) {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return nil, 0, err
}
return dest.OpaqueGet(partition)
}
func (t *DestForwarder) OpaqueSet(partition string, value []byte) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.OpaqueSet(partition, value)
}
func (t *DestForwarder) Rollback(partition string, rollbackSeq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.Rollback(partition, rollbackSeq)
}
func (t *DestForwarder) RollbackEx(partition string,
vBucketUUID uint64,
rollbackSeq uint64) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
if destEx, ok := dest.(DestEx); ok {
return destEx.RollbackEx(partition, vBucketUUID, rollbackSeq)
}
return fmt.Errorf("dest_forwarder: no DestEx implementation found for"+
" partition %s", partition)
}
func (t *DestForwarder) ConsistencyWait(partition, partitionUUID string,
consistencyLevel string,
consistencySeq uint64,
cancelCh <-chan bool) error {
dest, err := t.DestProvider.Dest(partition)
if err != nil {
return err
}
return dest.ConsistencyWait(partition, partitionUUID,
consistencyLevel, consistencySeq, cancelCh)
}
func (t *DestForwarder) Count(pindex *PIndex, cancelCh <-chan bool) (
uint64, error) {
return t.DestProvider.Count(pindex, cancelCh)
}
func (t *DestForwarder) Query(pindex *PIndex, req []byte, res io.Writer,
cancelCh <-chan bool) error {
return t.DestProvider.Query(pindex, req, res, cancelCh)
}
func (t *DestForwarder) Stats(w io.Writer) error {
return t.DestProvider.Stats(w)
}
func (t *DestForwarder) IsFeedable() (bool, error) {
if f, ok := t.DestProvider.(Feedable); ok {
return f.IsFeedable()
}
return true, nil
}