forked from couchbase/cbgt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dest_forwarder.go
151 lines (124 loc) · 3.95 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
// Copyright (c) 2014 Couchbase, Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the
// License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an "AS
// IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language
// governing permissions and limitations under the License.
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() error
}
func (t *DestForwarder) Close() error {
return t.DestProvider.Close()
}
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) 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) 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) 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)
}