-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmap_set.go
214 lines (175 loc) · 4.44 KB
/
map_set.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
package goriak
import (
"errors"
riak "github.com/basho/riak-go-client"
)
type requestData struct {
bucket string
bucketType string
key string
}
type MapSetCommand struct {
c *Command
bucket string
bucketType string
key string
input interface{}
builder *riak.UpdateMapCommandBuilder
includeFilter [][]string
excludeFilter [][]string
}
/*
Set automatically converts your Go datatype to the equivalent type in Riak
| Go Type | Riak Type |
|------------|-----------|
| struct | map |
| string | register |
| [n]byte | register |
| []byte | register |
| []slice | set |
| []slice | set |
| [][]byte | set |
| map | map |
| time.Time | register |
*/
func (c *Command) Set(val interface{}) *MapSetCommand {
builder := riak.NewUpdateMapCommandBuilder().
WithBucket(c.bucket).
WithBucketType(c.bucketType)
return &MapSetCommand{
c: c,
input: val,
bucket: c.bucket,
bucketType: c.bucketType,
builder: builder,
}
}
func (c *MapSetCommand) Key(key string) *MapSetCommand {
c.key = key
c.builder.WithKey(key)
return c
}
// Takes a *riakMapOperation (our type) applies any filtering rules set on the Command
// Returns a *riak.MapOperation (from riak-go-client)
func filterMapOperation(cmd *MapSetCommand, input *riakMapOperation, path []string, op *riak.MapOperation) *riak.MapOperation {
if op == nil {
op = &riak.MapOperation{}
}
// Not implemented:
// RemoveRegister()
// RemoveCounter()
// RemoveFlag()
// RemoveMap()
// RemoveSet()
// AddToSet
for key, values := range input.addToSets {
for _, value := range values {
if cmd.filterAllowPath(append(path, key)...) {
op.AddToSet(key, value)
}
}
}
// RemoveFromSet
for key, values := range input.removeFromSets {
for _, value := range values {
if cmd.filterAllowPath(append(path, key)...) {
op.RemoveFromSet(key, value)
}
}
}
// SetRegister
for key, value := range input.registersToSet {
if cmd.filterAllowPath(append(path, key)...) {
op.SetRegister(key, value)
}
}
// Map
for key, value := range input.maps {
// No filtering is performed here
subOp := op.Map(key)
filterMapOperation(cmd, value, append(path, key), subOp)
}
// IncrementCounter
for key, value := range input.incrementCounters {
if cmd.filterAllowPath(append(path, key)...) {
op.IncrementCounter(key, value)
}
}
// SetFlag
for key, value := range input.flagsToSet {
if cmd.filterAllowPath(append(path, key)...) {
op.SetFlag(key, value)
}
}
return op
}
// WithPw sets the number of primary nodes that must report back a successful write for the command to be successful.
func (c *MapSetCommand) WithPw(pw uint32) *MapSetCommand {
c.builder.WithPw(pw)
return c
}
// WithDw sets the number of nodes that must report back a successful write to their backend storage for the command to be successful.
func (c *MapSetCommand) WithDw(dw uint32) *MapSetCommand {
c.builder.WithDw(dw)
return c
}
// WithW sets the number of nodes that must report back a successful write for the command to be successful.
func (c *MapSetCommand) WithW(w uint32) *MapSetCommand {
c.builder.WithW(w)
return c
}
func (c *MapSetCommand) Run(session *Session) (*Result, error) {
middlewarer := &setMiddlewarer{
cmd: c,
}
return runMiddleware(middlewarer, c.c.runMiddleware, c.riakExec, session)
}
func (c *MapSetCommand) riakExec(session *Session) (*Result, error) {
riakContext, op, err := encodeInterface(c.input, requestData{
bucket: c.bucket,
bucketType: c.bucketType,
key: c.key,
})
if err != nil {
return nil, err
}
// Set context
if len(riakContext) > 0 {
c.builder.WithContext(riakContext)
}
// Set the map operation
op2 := filterMapOperation(c, op, []string{}, nil)
c.builder.WithMapOperation(op2)
cmd, err := c.builder.Build()
if err != nil {
return nil, err
}
err = session.riak.Execute(cmd)
if err != nil {
return nil, err
}
updateCmd := cmd.(*riak.UpdateMapCommand)
if !updateCmd.Success() {
return nil, errors.New("Not successful")
}
if c.key != "" {
return &Result{
Key: c.key,
}, nil
}
return &Result{
Key: updateCmd.Response.GeneratedKey,
}, nil
}
type setMiddlewarer struct {
cmd *MapSetCommand
}
func (c *setMiddlewarer) Key() string {
return c.cmd.key
}
func (c *setMiddlewarer) Bucket() string {
return c.cmd.bucket
}
func (c *setMiddlewarer) BucketType() string {
return c.cmd.bucketType
}