This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch_command.go
292 lines (239 loc) · 7.75 KB
/
batch_command.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
// Copyright 2013-2017 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 (
"fmt"
"reflect"
"time"
. "github.com/aerospike/aerospike-client-go/types"
xrand "github.com/aerospike/aerospike-client-go/types/rand"
Buffer "github.com/aerospike/aerospike-client-go/utils/buffer"
)
const (
_MAX_BUFFER_SIZE = 1024 * 1024 * 10 // 10 MB
_CHUNK_SIZE = 4096
)
type multiCommand interface {
Stop()
}
type baseMultiCommand struct {
baseCommand
terminationError ResultCode
recordset *Recordset
terminationErrorType ResultCode
errChan chan error
resObjType reflect.Type
resObjMappings map[string]string
selectCases []reflect.SelectCase
}
var multiObjectParser func(
cmd *baseMultiCommand,
obj reflect.Value,
opCount int,
fieldCount int,
generation uint32,
expiration uint32,
) error
var prepareReflectionData func(cmd *baseMultiCommand)
func newMultiCommand(node *Node, recordset *Recordset) *baseMultiCommand {
cmd := &baseMultiCommand{
baseCommand: baseCommand{node: node},
recordset: recordset,
}
if prepareReflectionData != nil {
prepareReflectionData(cmd)
}
return cmd
}
func (cmd *baseMultiCommand) getNode(ifc command) (*Node, error) {
return cmd.node, nil
}
func (cmd *baseMultiCommand) getConnection(timeout time.Duration) (*Connection, error) {
return cmd.node.getConnectionWithHint(timeout, byte(xrand.Int64()%256))
}
func (cmd *baseMultiCommand) putConnection(conn *Connection) {
cmd.node.putConnectionWithHint(conn, byte(xrand.Int64()%256))
}
func (cmd *baseMultiCommand) drainConn(receiveSize int) error {
// consume the rest of the input buffer from the socket
if cmd.dataOffset < receiveSize && cmd.conn.IsConnected() {
if err := cmd.readBytes(receiveSize - cmd.dataOffset); err != nil {
return err
}
}
return nil
}
func (cmd *baseMultiCommand) parseResult(ifc command, conn *Connection) error {
// Read socket into receive buffer one record at a time. Do not read entire receive size
// because the receive buffer would be too big.
status := true
var err error
for status {
// Read header.
if _, err = cmd.conn.Read(cmd.dataBuffer, 8); err != nil {
return err
}
size := Buffer.BytesToInt64(cmd.dataBuffer, 0)
// Validate header to make sure we are at the beginning of a message
if err := cmd.validateHeader(size); err != nil {
return err
}
receiveSize := int(size & 0xFFFFFFFFFFFF)
if receiveSize > 0 {
status, err = ifc.parseRecordResults(ifc, receiveSize)
cmd.drainConn(receiveSize)
if err != nil {
return err
}
} else {
status = false
}
}
return nil
}
func (cmd *baseMultiCommand) parseKey(fieldCount int) (*Key, error) {
var digest [20]byte
var namespace, setName string
var userKey Value
var err error
for i := 0; i < fieldCount; i++ {
if err = cmd.readBytes(4); err != nil {
return nil, err
}
fieldlen := int(Buffer.BytesToUint32(cmd.dataBuffer, 0))
if err = cmd.readBytes(fieldlen); err != nil {
return nil, err
}
fieldtype := FieldType(cmd.dataBuffer[0])
size := fieldlen - 1
switch fieldtype {
case DIGEST_RIPE:
copy(digest[:], cmd.dataBuffer[1:size+1])
case NAMESPACE:
namespace = string(cmd.dataBuffer[1 : size+1])
case TABLE:
setName = string(cmd.dataBuffer[1 : size+1])
case KEY:
if userKey, err = bytesToKeyValue(int(cmd.dataBuffer[1]), cmd.dataBuffer, 2, size-1); err != nil {
return nil, err
}
}
}
return &Key{namespace: namespace, setName: setName, digest: digest, userKey: userKey}, nil
}
func (cmd *baseMultiCommand) readBytes(length int) error {
// Corrupted data streams can result in a huge length.
// Do a sanity check here.
if length > MaxBufferSize || length < 0 {
return NewAerospikeError(PARSE_ERROR, fmt.Sprintf("Invalid readBytes length: %d", length))
}
if length > cap(cmd.dataBuffer) {
cmd.dataBuffer = make([]byte, length)
}
if n, err := cmd.conn.Read(cmd.dataBuffer[:length], length); err != nil {
return fmt.Errorf("Requested to read %d bytes, but %d was read. (%v)", length, n, err)
}
cmd.dataOffset += length
return nil
}
func (cmd *baseMultiCommand) parseRecordResults(ifc command, receiveSize int) (bool, error) {
// Read/parse remaining message bytes one record at a time.
cmd.dataOffset = 0
for cmd.dataOffset < receiveSize {
if err := cmd.readBytes(int(_MSG_REMAINING_HEADER_SIZE)); err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
resultCode := ResultCode(cmd.dataBuffer[5] & 0xFF)
if resultCode != 0 {
if resultCode == KEY_NOT_FOUND_ERROR {
return false, nil
}
err := NewAerospikeError(resultCode)
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
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 := TTL(Buffer.BytesToUint32(cmd.dataBuffer, 10))
fieldCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 18))
opCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 20))
key, err := cmd.parseKey(fieldCount)
if err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
// if there is a recordset, process the record traditionally
// otherwise, it is supposed to be a record channel
if cmd.selectCases == nil {
// Parse bins.
var bins BinMap
for i := 0; i < opCount; i++ {
if err := cmd.readBytes(8); err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, 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 {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
name := string(cmd.dataBuffer[:nameSize])
particleBytesSize := int((opSize - (4 + nameSize)))
if err = cmd.readBytes(particleBytesSize); err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
value, err := bytesToParticle(particleType, cmd.dataBuffer, 0, particleBytesSize)
if err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
if bins == nil {
bins = make(BinMap, opCount)
}
bins[name] = value
}
// If the channel is full and it blocks, we don't want this command to
// block forever, or panic in case the channel is closed in the meantime.
select {
// send back the result on the async channel
case cmd.recordset.Records <- newRecord(cmd.node, key, bins, generation, expiration):
case <-cmd.recordset.cancelled:
return false, NewAerospikeError(cmd.terminationErrorType)
}
} else if multiObjectParser != nil {
obj := reflect.New(cmd.resObjType)
if err := multiObjectParser(cmd, obj, opCount, fieldCount, generation, expiration); err != nil {
cmd.recordset.Errors <- newNodeError(cmd.node, err)
return false, err
}
// set the object to send
cmd.selectCases[0].Send = obj
chosen, _, _ := reflect.Select(cmd.selectCases)
switch chosen {
case 0: // object sent
case 1: // cancel channel is closed
return false, NewAerospikeError(cmd.terminationErrorType)
}
}
}
return true, nil
}