-
Notifications
You must be signed in to change notification settings - Fork 199
/
batch_command_get.go
269 lines (235 loc) · 7.39 KB
/
batch_command_get.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
// Copyright 2014-2022 Aerospike, 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 aerospike
import (
"reflect"
"github.com/aerospike/aerospike-client-go/v7/types"
Buffer "github.com/aerospike/aerospike-client-go/v7/utils/buffer"
)
type batchCommandGet struct {
batchCommand
keys []*Key
binNames []string // binNames are mutually exclusive with ops
ops []*Operation // ops are mutually exclusive with binNames
records []*Record
indexRecords []*BatchRead
readAttr int
key Key
// pointer to the object that's going to be unmarshalled
objects []*reflect.Value
objectsFound []bool
}
type batchObjectParsetIfc interface {
buf() []byte
readBytes(int) Error
object(int) *reflect.Value
}
// this method uses reflection.
// Will not be set if performance flag is passed for the build.
var batchObjectParser func(
cmd batchObjectParsetIfc,
offset int,
opCount int,
fieldCount int,
generation uint32,
expiration uint32,
) Error
func newBatchCommandGet(
client clientIfc,
batch *batchNode,
policy *BatchPolicy,
keys []*Key,
binNames []string,
ops []*Operation,
records []*Record,
readAttr int,
isOperation bool,
) *batchCommandGet {
var node *Node
if batch != nil {
node = batch.Node
}
res := &batchCommandGet{
batchCommand: batchCommand{
client: client,
baseMultiCommand: *newMultiCommand(node, nil, isOperation),
policy: policy,
batch: batch,
},
keys: keys,
ops: ops,
binNames: binNames,
records: records,
readAttr: readAttr,
}
return res
}
func (cmd *batchCommandGet) cloneBatchCommand(batch *batchNode) batcher {
res := *cmd
res.node = batch.Node
res.batch = batch
return &res
}
func (cmd *batchCommandGet) buf() []byte {
return cmd.dataBuffer
}
func (cmd *batchCommandGet) object(index int) *reflect.Value {
return cmd.objects[index]
}
func (cmd *batchCommandGet) writeBuffer(ifc command) Error {
return cmd.setBatchRead(cmd.policy, cmd.keys, cmd.batch, cmd.binNames, cmd.ops, cmd.readAttr)
}
// Parse all results in the batch. Add records to shared list.
// If the record was not found, the bins will be nil.
func (cmd *batchCommandGet) parseRecordResults(ifc command, receiveSize int) (bool, Error) {
//Parse each message response and add it to the result array
cmd.dataOffset = 0
for cmd.dataOffset < receiveSize {
if err := cmd.readBytes(int(_MSG_REMAINING_HEADER_SIZE)); err != nil {
return false, err
}
resultCode := types.ResultCode(cmd.dataBuffer[5] & 0xFF)
// The only valid server return codes are "ok" and "not found" and "filtered out".
// If other return codes are received, then abort the batch.
if resultCode != 0 && resultCode != types.KEY_NOT_FOUND_ERROR {
if resultCode == types.FILTERED_OUT {
cmd.filteredOutCnt++
} else {
return false, newCustomNodeError(cmd.node, resultCode)
}
}
info3 := int(cmd.dataBuffer[3])
// If cmd is the end marker of the response, do not proceed further
if (info3 & _INFO3_LAST) == _INFO3_LAST {
return false, nil
}
generation := Buffer.BytesToUint32(cmd.dataBuffer, 6)
expiration := types.TTL(Buffer.BytesToUint32(cmd.dataBuffer, 10))
batchIndex := int(Buffer.BytesToUint32(cmd.dataBuffer, 14))
fieldCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 18))
opCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 20))
err := cmd.skipKey(fieldCount)
if err != nil {
return false, err
}
if cmd.indexRecords != nil {
if len(cmd.indexRecords) > 0 {
if resultCode == 0 {
if cmd.indexRecords[batchIndex].Record, err = cmd.parseRecord(cmd.indexRecords[batchIndex].Key, opCount, generation, expiration); err != nil {
return false, err
}
}
}
} else {
if resultCode == 0 {
if cmd.objects == nil {
if cmd.records[batchIndex], err = cmd.parseRecord(cmd.keys[batchIndex], opCount, generation, expiration); err != nil {
return false, err
}
} else if batchObjectParser != nil {
// mark it as found
cmd.objectsFound[batchIndex] = true
if err := batchObjectParser(cmd, batchIndex, opCount, fieldCount, generation, expiration); err != nil {
return false, err
}
}
}
}
}
return true, nil
}
// Parses the given byte buffer and populate the result object.
// Returns the number of bytes that were parsed from the given buffer.
func (cmd *batchCommandGet) parseRecord(key *Key, opCount int, generation, expiration uint32) (*Record, Error) {
bins := make(BinMap, opCount)
for i := 0; i < opCount; i++ {
if err := cmd.readBytes(8); err != nil {
return nil, err
}
opSize := int(Buffer.BytesToUint32(cmd.dataBuffer, 0))
particleType := int(cmd.dataBuffer[5])
nameSize := int(cmd.dataBuffer[7])
if err := cmd.readBytes(nameSize); err != nil {
return nil, err
}
name := string(cmd.dataBuffer[:nameSize])
particleBytesSize := opSize - (4 + nameSize)
if err := cmd.readBytes(particleBytesSize); err != nil {
return nil, err
}
value, err := bytesToParticle(particleType, cmd.dataBuffer, 0, particleBytesSize)
if err != nil {
return nil, err
}
if cmd.isOperation {
if prev, ok := bins[name]; ok {
if prev2, ok := prev.(OpResults); ok {
bins[name] = append(prev2, value)
} else {
bins[name] = OpResults{prev, value}
}
} else {
bins[name] = value
}
} else {
bins[name] = value
}
}
return newRecord(cmd.node, key, bins, generation, expiration), nil
}
func (cmd *batchCommandGet) transactionType() transactionType {
return ttBatchRead
}
func (cmd *batchCommandGet) executeSingle(client clientIfc) Error {
for _, offset := range cmd.batch.offsets {
var err Error
if len(cmd.ops) > 0 {
// Validate that all operations are read
for i := range cmd.ops {
if cmd.ops[i].opType.isWrite {
return newError(types.PARAMETER_ERROR, "Write operations not allowed in batch read").setNode(cmd.node)
}
}
cmd.records[offset], err = client.operate(cmd.policy.toWritePolicy(), cmd.keys[offset], true, cmd.ops...)
} else if (cmd.readAttr & _INFO1_NOBINDATA) == _INFO1_NOBINDATA {
cmd.records[offset], err = client.GetHeader(&cmd.policy.BasePolicy, cmd.keys[offset])
} else {
cmd.records[offset], err = client.Get(&cmd.policy.BasePolicy, cmd.keys[offset], cmd.binNames...)
}
if err != nil {
// Key not found is NOT an error for batch requests
if err.resultCode() == types.KEY_NOT_FOUND_ERROR {
continue
}
if err.resultCode() == types.FILTERED_OUT {
cmd.filteredOutCnt++
continue
}
if cmd.policy.AllowPartialResults {
continue
}
return err
}
}
return nil
}
func (cmd *batchCommandGet) Execute() Error {
if cmd.objects == nil && len(cmd.batch.offsets) == 1 {
return cmd.executeSingle(cmd.client)
}
return cmd.execute(cmd)
}
func (cmd *batchCommandGet) generateBatchNodes(cluster *Cluster) ([]*batchNode, Error) {
return newBatchNodeListKeys(cluster, cmd.policy, cmd.keys, nil, cmd.sequenceAP, cmd.sequenceSC, cmd.batch, false)
}