forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatch_command_udf.go
183 lines (158 loc) · 5.22 KB
/
batch_command_udf.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
// 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 (
"github.com/aerospike/aerospike-client-go/v7/types"
Buffer "github.com/aerospike/aerospike-client-go/v7/utils/buffer"
)
type batchCommandUDF struct {
batchCommand
keys []*Key
packageName string
functionName string
args ValueArray
records []*BatchRecord
attr *batchAttr
}
func newBatchCommandUDF(
node *Node,
batch *batchNode,
policy *BatchPolicy,
keys []*Key,
packageName,
functionName string,
args ValueArray,
records []*BatchRecord,
attr *batchAttr,
) *batchCommandUDF {
res := &batchCommandUDF{
batchCommand: batchCommand{
baseMultiCommand: *newMultiCommand(node, nil, false),
policy: policy,
batch: batch,
},
keys: keys,
records: records,
packageName: packageName,
functionName: functionName,
args: args,
attr: attr,
}
return res
}
func (cmd *batchCommandUDF) cloneBatchCommand(batch *batchNode) batcher {
res := *cmd
res.node = batch.Node
res.batch = batch
return &res
}
func (cmd *batchCommandUDF) writeBuffer(ifc command) Error {
return cmd.setBatchUDF(cmd.policy, cmd.keys, cmd.batch, cmd.packageName, cmd.functionName, cmd.args, cmd.attr)
}
// Parse all results in the batch. Add records to shared list.
// If the record was not found, the bins will be nil.
func (cmd *batchCommandUDF) 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 {
if resultCode != types.KEY_NOT_FOUND_ERROR {
if resultCode == types.FILTERED_OUT {
cmd.filteredOutCnt++
}
}
if resultCode != types.KEY_NOT_FOUND_ERROR && resultCode != types.FILTERED_OUT {
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 resultCode == 0 {
if err = cmd.parseRecord(cmd.records[batchIndex], cmd.keys[batchIndex], opCount, generation, expiration); err != nil {
return false, err
}
} else {
cmd.records[batchIndex].setError(cmd.node, resultCode, cmd.batchInDoubt(cmd.attr.hasWrite, cmd.commandWasSent))
cmd.records[batchIndex].Err = chainErrors(newCustomNodeError(cmd.node, resultCode), cmd.records[batchIndex].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 *batchCommandUDF) parseRecord(rec *BatchRecord, key *Key, opCount int, generation, expiration uint32) Error {
bins := make(BinMap, opCount)
for i := 0; i < opCount; i++ {
if err := cmd.readBytes(8); err != nil {
return 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 err
}
name := string(cmd.dataBuffer[:nameSize])
particleBytesSize := opSize - (4 + nameSize)
if err := cmd.readBytes(particleBytesSize); err != nil {
return err
}
value, err := bytesToParticle(particleType, cmd.dataBuffer, 0, particleBytesSize)
if err != nil {
return 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
}
}
rec.setRecord(newRecord(cmd.node, key, bins, generation, expiration))
return nil
}
func (cmd *batchCommandUDF) isRead() bool {
return !cmd.attr.hasWrite
}
func (cmd *batchCommandUDF) Execute() Error {
return cmd.execute(cmd)
}
func (cmd *batchCommandUDF) generateBatchNodes(cluster *Cluster) ([]*batchNode, Error) {
return newBatchNodeListKeys(cluster, cmd.policy, cmd.keys, nil, cmd.sequenceAP, cmd.sequenceSC, cmd.batch, false)
}