forked from couchbase/cbgt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed_primary.go
210 lines (184 loc) · 6.19 KB
/
feed_primary.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
// 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 (
"encoding/json"
"fmt"
"io"
"strconv"
)
func init() {
RegisterFeedType("primary", &FeedType{
Start: func(mgr *Manager, feedName, indexName, indexUUID,
sourceType, sourceName, sourceUUID, params string,
dests map[string]Dest) error {
return mgr.registerFeed(NewPrimaryFeed(feedName, indexName,
BasicPartitionFunc, dests))
},
Partitions: PrimaryFeedPartitions,
Public: false,
Description: "general/primary - a primary data source",
StartSample: &PrimarySourceParams{},
})
}
// A PrimaryFeed implements both the Feed and Dest interfaces, for
// chainability; and is also useful for testing.
//
// One motivation for a PrimaryFeed implementation is from the
// realization that some pindex backends might not actually be
// secondary indexes, but are instead better considered as primary
// data sources in their own right. For example, you can imagine some
// kind of KeyValuePIndex backend. The system design, however, still
// requires hooking such "primary pindexes" up to a feed. Instead of
// using a NILFeed, you might instead use a PrimaryFeed, as unlike a
// NILFeed the PrimaryFeed provides a "NumPartitions" functionality.
type PrimaryFeed struct {
name string
indexName string
pf DestPartitionFunc
dests map[string]Dest
}
func NewPrimaryFeed(name, indexName string, pf DestPartitionFunc,
dests map[string]Dest) *PrimaryFeed {
return &PrimaryFeed{
name: name,
indexName: indexName,
pf: pf,
dests: dests,
}
}
func (t *PrimaryFeed) Name() string {
return t.name
}
func (t *PrimaryFeed) IndexName() string {
return t.indexName
}
func (t *PrimaryFeed) Start() error {
return nil
}
func (t *PrimaryFeed) Close() error {
return nil
}
func (t *PrimaryFeed) Dests() map[string]Dest {
return t.dests
}
func (t *PrimaryFeed) Stats(w io.Writer) error {
_, err := w.Write([]byte("{}"))
return err
}
// -----------------------------------------------------
// PrimarySourceParams represents the JSON for the sourceParams for a
// primary feed.
type PrimarySourceParams struct {
NumPartitions int `json:"numPartitions"`
}
// PrimaryFeedPartitions generates partition strings based on a
// PrimarySourceParams.NumPartitions parameter.
func PrimaryFeedPartitions(sourceType, sourceName, sourceUUID, sourceParams,
server string, options map[string]string) ([]string, error) {
dsp := &PrimarySourceParams{}
if sourceParams != "" {
err := json.Unmarshal([]byte(sourceParams), dsp)
if err != nil {
return nil, fmt.Errorf("feed_primary: PrimaryFeedPartitions"+
" could not parse sourceParams: %s, err: %v", sourceParams, err)
}
}
numPartitions := dsp.NumPartitions
rv := make([]string, numPartitions)
for i := 0; i < numPartitions; i++ {
rv[i] = strconv.Itoa(i)
}
return rv, nil
}
// -----------------------------------------------------
func (t *PrimaryFeed) DataUpdate(partition string,
key []byte, seq uint64, val []byte,
cas uint64,
extrasType DestExtrasType, extras []byte) error {
dest, err := t.pf(partition, key, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.DataUpdate(partition, key, seq, val, cas, extrasType, extras)
}
func (t *PrimaryFeed) DataDelete(partition string,
key []byte, seq uint64,
cas uint64,
extrasType DestExtrasType, extras []byte) error {
dest, err := t.pf(partition, key, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.DataDelete(partition, key, seq, cas, extrasType, extras)
}
func (t *PrimaryFeed) SnapshotStart(partition string,
snapStart, snapEnd uint64) error {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.SnapshotStart(partition, snapStart, snapEnd)
}
func (t *PrimaryFeed) OpaqueSet(partition string,
value []byte) error {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.OpaqueSet(partition, value)
}
func (t *PrimaryFeed) OpaqueGet(partition string) (
value []byte, lastSeq uint64, err error) {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return nil, 0, fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.OpaqueGet(partition)
}
func (t *PrimaryFeed) Rollback(partition string,
rollbackSeq uint64) error {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.Rollback(partition, rollbackSeq)
}
func (t *PrimaryFeed) RollbackEx(partition string,
vBucketUUID uint64, rollbackSeq uint64) error {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
if destEx, ok := dest.(DestEx); ok {
return destEx.RollbackEx(partition, vBucketUUID, rollbackSeq)
}
return dest.Rollback(partition, rollbackSeq)
}
func (t *PrimaryFeed) ConsistencyWait(partition, partitionUUID string,
consistencyLevel string,
consistencySeq uint64,
cancelCh <-chan bool) error {
dest, err := t.pf(partition, nil, t.dests)
if err != nil {
return fmt.Errorf("feed_primary: PrimaryFeed pf, err: %v", err)
}
return dest.ConsistencyWait(partition, partitionUUID,
consistencyLevel, consistencySeq, cancelCh)
}
func (t *PrimaryFeed) Count(pindex *PIndex, cancelCh <-chan bool) (
uint64, error) {
return 0, fmt.Errorf("feed_primary: PrimaryFeed.Count unimplemented")
}
func (t *PrimaryFeed) Query(pindex *PIndex, req []byte, w io.Writer,
cancelCh <-chan bool) error {
return fmt.Errorf("feed_primary: PrimaryFeed.Query unimplemented")
}