forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
read_command.go
588 lines (518 loc) · 15.5 KB
/
read_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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
// Copyright 2013-2016 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 (
"errors"
"math"
"reflect"
"strings"
"time"
. "github.com/aerospike/aerospike-client-go/logger"
. "github.com/aerospike/aerospike-client-go/types"
Buffer "github.com/aerospike/aerospike-client-go/utils/buffer"
)
type readCommand struct {
*singleCommand
policy Policy
binNames []string
record *Record
// pointer to the object that's going to be unmarshalled
object interface{}
}
func newReadCommand(cluster *Cluster, policy Policy, key *Key, binNames []string) *readCommand {
return &readCommand{
singleCommand: newSingleCommand(cluster, key),
binNames: binNames,
policy: policy,
}
}
func (cmd *readCommand) getPolicy(ifc command) Policy {
return cmd.policy
}
func (cmd *readCommand) writeBuffer(ifc command) error {
return cmd.setRead(cmd.policy.GetBasePolicy(), cmd.key, cmd.binNames)
}
func (cmd *readCommand) parseResult(ifc command, conn *Connection) error {
// Read header.
_, err := conn.Read(cmd.dataBuffer, int(_MSG_TOTAL_HEADER_SIZE))
if err != nil {
Logger.Warn("parse result error: " + err.Error())
return err
}
// A number of these are commented out because we just don't care enough to read
// that section of the header. If we do care, uncomment and check!
sz := Buffer.BytesToInt64(cmd.dataBuffer, 0)
headerLength := int(cmd.dataBuffer[8])
resultCode := ResultCode(cmd.dataBuffer[13] & 0xFF)
generation := Buffer.BytesToUint32(cmd.dataBuffer, 14)
expiration := TTL(Buffer.BytesToUint32(cmd.dataBuffer, 18))
fieldCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 26)) // almost certainly 0
opCount := int(Buffer.BytesToUint16(cmd.dataBuffer, 28))
receiveSize := int((sz & 0xFFFFFFFFFFFF) - int64(headerLength))
// Read remaining message bytes.
if receiveSize > 0 {
if err = cmd.sizeBufferSz(receiveSize); err != nil {
return err
}
_, err = conn.Read(cmd.dataBuffer, receiveSize)
if err != nil {
Logger.Warn("parse result error: " + err.Error())
return err
}
}
if resultCode != 0 {
if resultCode == KEY_NOT_FOUND_ERROR && cmd.object == nil {
return nil
}
if resultCode == UDF_BAD_RESPONSE {
cmd.record, _ = cmd.parseRecord(opCount, fieldCount, generation, expiration)
err := cmd.handleUdfError(resultCode)
Logger.Warn("UDF execution error: " + err.Error())
return err
}
return NewAerospikeError(resultCode)
}
if cmd.object == nil {
if opCount == 0 {
// data Bin was not returned
cmd.record = newRecord(cmd.node, cmd.key, nil, generation, expiration)
return nil
}
cmd.record, err = cmd.parseRecord(opCount, fieldCount, generation, expiration)
if err != nil {
return err
}
} else {
cmd.parseObject(opCount, fieldCount, generation, expiration)
}
return nil
}
func (cmd *readCommand) handleUdfError(resultCode ResultCode) error {
if ret, exists := cmd.record.Bins["FAILURE"]; exists {
return NewAerospikeError(resultCode, ret.(string))
}
return NewAerospikeError(resultCode)
}
func (cmd *readCommand) parseRecord(
opCount int,
fieldCount int,
generation uint32,
expiration uint32,
) (*Record, error) {
var bins BinMap
receiveOffset := 0
// There can be fields in the response (setname etc).
// But for now, ignore them. Expose them to the API if needed in the future.
// Logger.Debug("field count: %d, databuffer: %v", fieldCount, cmd.dataBuffer)
if fieldCount > 0 {
// Just skip over all the fields
for i := 0; i < fieldCount; i++ {
// Logger.Debug("%d", receiveOffset)
fieldSize := int(Buffer.BytesToUint32(cmd.dataBuffer, receiveOffset))
receiveOffset += (4 + fieldSize)
}
}
if opCount > 0 {
bins = make(BinMap, opCount)
}
for i := 0; i < opCount; i++ {
opSize := int(Buffer.BytesToUint32(cmd.dataBuffer, receiveOffset))
particleType := int(cmd.dataBuffer[receiveOffset+5])
nameSize := int(cmd.dataBuffer[receiveOffset+7])
name := string(cmd.dataBuffer[receiveOffset+8 : receiveOffset+8+nameSize])
receiveOffset += 4 + 4 + nameSize
particleBytesSize := int(opSize - (4 + nameSize))
value, _ := bytesToParticle(particleType, cmd.dataBuffer, receiveOffset, particleBytesSize)
receiveOffset += particleBytesSize
if bins == nil {
bins = make(BinMap, opCount)
}
// for operate list command results
if prev, exists := bins[name]; exists {
if res, ok := prev.([]interface{}); ok {
// List already exists. Add to it.
bins[name] = append(res, value)
} else {
// Make a list to store all values.
bins[name] = []interface{}{prev, value}
}
} else {
bins[name] = value
}
}
return newRecord(cmd.node, cmd.key, bins, generation, expiration), nil
}
func (cmd *readCommand) parseObject(
opCount int,
fieldCount int,
generation uint32,
expiration uint32,
) error {
receiveOffset := 0
// There can be fields in the response (setname etc).
// But for now, ignore them. Expose them to the API if needed in the future.
// Logger.Debug("field count: %d, databuffer: %v", fieldCount, cmd.dataBuffer)
if fieldCount > 0 {
// Just skip over all the fields
for i := 0; i < fieldCount; i++ {
// Logger.Debug("%d", receiveOffset)
fieldSize := int(Buffer.BytesToUint32(cmd.dataBuffer, receiveOffset))
receiveOffset += (4 + fieldSize)
}
}
var rv reflect.Value
if opCount > 0 {
rv = reflect.ValueOf(cmd.object)
if rv.Kind() != reflect.Ptr {
return errors.New("Invalid type for result object. It should be of type Struct Pointer.")
}
rv = rv.Elem()
if !rv.CanAddr() {
return errors.New("Invalid type for object. It should be addressable (a pointer)")
}
if rv.Kind() != reflect.Struct {
return errors.New("Invalid type for object. It should be a pointer to a struct.")
}
// map tags
cacheObjectTags(rv)
}
// find the name based on tag mapping
iobj := reflect.Indirect(rv)
for iobj.Kind() == reflect.Ptr {
iobj = reflect.Indirect(iobj)
}
mappings := objectMappings.getMapping(iobj.Type())
setObjectMetaFields(iobj, TTL(expiration), generation)
for i := 0; i < opCount; i++ {
opSize := int(Buffer.BytesToUint32(cmd.dataBuffer, receiveOffset))
particleType := int(cmd.dataBuffer[receiveOffset+5])
nameSize := int(cmd.dataBuffer[receiveOffset+7])
name := string(cmd.dataBuffer[receiveOffset+8 : receiveOffset+8+nameSize])
receiveOffset += 4 + 4 + nameSize
particleBytesSize := int(opSize - (4 + nameSize))
value, _ := bytesToParticle(particleType, cmd.dataBuffer, receiveOffset, particleBytesSize)
if err := setObjectField(mappings, iobj, name, value); err != nil {
return err
}
receiveOffset += particleBytesSize
}
return nil
}
func (cmd *readCommand) GetRecord() *Record {
return cmd.record
}
func (cmd *readCommand) Execute() error {
return cmd.execute(cmd)
}
func setObjectMetaFields(obj reflect.Value, ttl, gen uint32) error {
// find the name based on tag mapping
iobj := reflect.Indirect(obj)
ttlMap, genMap := objectMappings.getMetaMappings(iobj)
if ttlMap != nil {
for i := range ttlMap {
f := iobj.FieldByName(ttlMap[i])
setValue(f, ttl)
}
}
if genMap != nil {
for i := range genMap {
f := iobj.FieldByName(genMap[i])
setValue(f, gen)
}
}
return nil
}
func setObjectField(mappings map[string]string, obj reflect.Value, fieldName string, value interface{}) error {
if value == nil {
return nil
}
if name, exists := mappings[fieldName]; exists {
fieldName = name
}
f := obj.FieldByName(fieldName)
setValue(f, value)
return nil
}
func setValue(f reflect.Value, value interface{}) error {
// find the name based on tag mapping
if f.CanSet() {
switch f.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
f.SetInt(int64(value.(int)))
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
switch v := value.(type) {
case uint8:
f.SetUint(uint64(v))
case uint16:
f.SetUint(uint64(v))
case uint32:
f.SetUint(uint64(v))
case uint64:
f.SetUint(uint64(v))
case uint:
f.SetUint(uint64(v))
default:
f.SetUint(uint64(value.(int)))
}
case reflect.Float64, reflect.Float32:
// if value has returned as a float
if fv, ok := value.(float64); ok {
f.SetFloat(fv)
} else {
// otherwise it is an old float64<->int64 marshalling type cast which needs to be set as int
f.SetFloat(float64(math.Float64frombits(uint64(value.(int)))))
}
case reflect.String:
rv := reflect.ValueOf(value.(string))
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Bool:
f.SetBool(value.(int) == 1)
case reflect.Interface:
if value != nil {
f.Set(reflect.ValueOf(value))
}
case reflect.Ptr:
switch f.Type().Elem().Kind() {
case reflect.Int:
tempV := int(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Uint:
tempV := uint(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.String:
tempV := string(value.(string))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Int8:
tempV := int8(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Uint8:
tempV := uint8(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Int16:
tempV := int16(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Uint16:
tempV := uint16(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Int32:
tempV := int32(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Uint32:
tempV := uint32(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Int64:
tempV := int64(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Uint64:
tempV := uint64(value.(int))
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Float64:
// it is possible that the value is an integer set in the field
// via the old float<->int64 type cast
var tempV float64
if fv, ok := value.(float64); ok {
tempV = fv
} else {
tempV = math.Float64frombits(uint64(value.(int)))
}
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Bool:
tempV := bool(value.(int) == 1)
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Float32:
// it is possible that the value is an integer set in the field
// via the old float<->int64 type cast
var tempV64 float64
if fv, ok := value.(float64); ok {
tempV64 = fv
} else {
tempV64 = math.Float64frombits(uint64(value.(int)))
}
tempV := float32(tempV64)
rv := reflect.ValueOf(&tempV)
if rv.Type() != f.Type() {
rv = rv.Convert(f.Type())
}
f.Set(rv)
case reflect.Interface:
f.Set(reflect.ValueOf(&value))
case reflect.Struct:
// support time.Time
if f.Type().Elem().PkgPath() == "time" && f.Type().Elem().Name() == "Time" {
tm := time.Unix(0, int64(value.(int)))
f.Set(reflect.ValueOf(&tm))
break
} else {
valMap := value.(map[interface{}]interface{})
// iteraste over struct fields and recursively fill them up
if valMap != nil {
newObjPtr := f
if f.IsNil() {
newObjPtr = reflect.New(f.Type().Elem())
}
theStruct := newObjPtr.Elem().Type()
numFields := newObjPtr.Elem().NumField()
for i := 0; i < numFields; i++ {
// skip unexported fields
if theStruct.Field(i).PkgPath != "" {
continue
}
alias := theStruct.Field(i).Name
tag := strings.Trim(theStruct.Field(i).Tag.Get(aerospikeTag), " ")
if tag != "" {
alias = tag
}
if valMap[alias] != nil {
setValue(reflect.Indirect(newObjPtr).FieldByName(alias), valMap[alias])
}
}
// set the field
f.Set(newObjPtr)
}
}
} // switch ptr
case reflect.Slice, reflect.Array:
// BLOBs come back as []byte
theArray := reflect.ValueOf(value)
if f.Kind() == reflect.Slice {
if f.IsNil() {
f.Set(reflect.MakeSlice(reflect.SliceOf(f.Type().Elem()), theArray.Len(), theArray.Len()))
} else if f.Len() < theArray.Len() {
count := theArray.Len() - f.Len()
f = reflect.AppendSlice(f, reflect.MakeSlice(reflect.SliceOf(f.Type().Elem()), count, count))
}
}
for i := 0; i < theArray.Len(); i++ {
setValue(f.Index(i), theArray.Index(i).Interface())
}
case reflect.Map:
emptyStruct := reflect.ValueOf(struct{}{})
theMap := value.(map[interface{}]interface{})
if theMap != nil {
newMap := reflect.MakeMap(f.Type())
var newKey, newVal reflect.Value
for key, elem := range theMap {
if key != nil {
newKey = reflect.ValueOf(key)
} else {
newKey = reflect.Zero(f.Type().Key())
}
if newKey.Type() != f.Type().Key() {
newKey = newKey.Convert(f.Type().Key())
}
if elem != nil {
newVal = reflect.ValueOf(elem)
} else {
newVal = reflect.Zero(f.Type().Elem())
}
if newVal.Type() != f.Type().Elem() {
newVal = newVal.Convert(f.Type().Elem())
}
if newVal.Kind() == reflect.Map && newVal.Len() == 0 && newMap.Type().Elem().Kind() == emptyStruct.Type().Kind() {
if newMap.Type().Elem().NumField() == 0 {
newMap.SetMapIndex(newKey, emptyStruct)
} else {
return errors.New("Map value type is struct{}, but data returned from database is a non-empty map[interface{}]interface{}")
}
} else {
newMap.SetMapIndex(newKey, newVal)
}
}
f.Set(newMap)
}
case reflect.Struct:
// support time.Time
if f.Type().PkgPath() == "time" && f.Type().Name() == "Time" {
f.Set(reflect.ValueOf(time.Unix(0, int64(value.(int)))))
break
}
valMap := value.(map[interface{}]interface{})
// iteraste over struct fields and recursively fill them up
typeOfT := f.Type()
numFields := f.NumField()
for i := 0; i < numFields; i++ {
// skip unexported fields
if typeOfT.Field(i).PkgPath != "" {
continue
}
alias := typeOfT.Field(i).Name
tag := strings.Trim(typeOfT.Field(i).Tag.Get(aerospikeTag), " ")
if tag != "" {
alias = tag
}
if valMap[alias] != nil {
setValue(f.FieldByName(typeOfT.Field(i).Name), valMap[alias])
}
}
// set the field
f.Set(f)
}
}
return nil
}