-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathbatch_command.go
130 lines (108 loc) · 3.21 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
// Copyright 2013-2015 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"
. "github.com/aerospike/aerospike-client-go/types"
// . "github.com/aerospike/aerospike-client-go/types/atomic"
Buffer "github.com/aerospike/aerospike-client-go/utils/buffer"
)
const (
_MAX_BUFFER_SIZE = 1024 * 1024 * 10 // 10 MB
)
type multiCommand interface {
Stop()
}
type baseMultiCommand struct {
*baseCommand
recordset *Recordset
}
func newMultiCommand(node *Node, recordset *Recordset) *baseMultiCommand {
return &baseMultiCommand{
baseCommand: &baseCommand{node: node},
recordset: recordset,
}
}
func (cmd *baseMultiCommand) getNode(ifc command) (*Node, error) {
return cmd.node, 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
for status {
// Read header.
if err := cmd.readBytes(8); err != nil {
return err
}
size := Buffer.BytesToInt64(cmd.dataBuffer, 0)
receiveSize := int(size & 0xFFFFFFFFFFFF)
if receiveSize > 0 {
var err error
if status, err = ifc.parseRecordResults(ifc, receiveSize); err != nil {
return err
}
} else {
status = false
}
}
return nil
}
func (cmd *baseMultiCommand) parseKey(fieldCount int) (*Key, error) {
var digest []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(uint32(Buffer.BytesToInt32(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:
digest = make([]byte, size, size)
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 {
if length > len(cmd.dataBuffer) {
// Corrupted data streams can result in a huge length.
// Do a sanity check here.
if length > _MAX_BUFFER_SIZE {
return NewAerospikeError(PARSE_ERROR, fmt.Sprintf("Invalid readBytes length: %d", length))
}
cmd.dataBuffer = make([]byte, length)
}
_, err := cmd.conn.Read(cmd.dataBuffer, length)
if err != nil {
return err
}
cmd.dataOffset += length
return nil
}