-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
auto_map_encode.go
460 lines (344 loc) · 8.8 KB
/
auto_map_encode.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
package goriak
import (
"errors"
"reflect"
"strconv"
"time"
)
type mapEncoder struct {
isModifyable bool
riakRequest requestData
}
func encodeInterface(input interface{}, riakRequest requestData) ([]byte, *riakMapOperation, error) {
op := &riakMapOperation{}
var rValue reflect.Value
// Initialize encoder
encoder := &mapEncoder{
riakRequest: riakRequest,
}
if reflect.ValueOf(input).Kind() == reflect.Struct {
rValue = reflect.ValueOf(input)
} else if reflect.ValueOf(input).Kind() == reflect.Ptr {
rValue = reflect.ValueOf(input).Elem()
encoder.isModifyable = true
} else {
return []byte{}, nil, errors.New("Could not parse value. Needs to be struct or pointer to struct")
}
riakContext, err := encoder.encodeStruct(rValue, op, []string{})
if err != nil {
return []byte{}, nil, err
}
return riakContext, op, nil
}
func (e *mapEncoder) encodeStruct(rValue reflect.Value, op *riakMapOperation, path []string) ([]byte, error) {
rType := rValue.Type()
num := rType.NumField()
riakContext := []byte{}
for i := 0; i < num; i++ {
field := rType.Field(i)
itemKey := field.Name
tag := field.Tag.Get("goriak")
if len(tag) > 0 {
itemKey = tag
// Use as context
if tag == "goriakcontext" {
riakContext = rValue.Field(i).Bytes()
}
// Ignore. Do not save this value.
if tag == "-" {
continue
}
}
err := e.encodeValue(op, itemKey, rValue.Field(i), path)
if err != nil {
return []byte{}, err
}
}
return riakContext, nil
}
func (e *mapEncoder) encodeValue(op *riakMapOperation, itemKey string, f reflect.Value, path []string) error {
switch f.Kind() {
// Ints are saved as Registers
case reflect.Int:
fallthrough
case reflect.Int8:
fallthrough
case reflect.Int16:
fallthrough
case reflect.Int32:
fallthrough
case reflect.Int64:
op.SetRegister(itemKey, []byte(strconv.FormatInt(f.Int(), 10)))
// Unsigned integers
case reflect.Uint:
fallthrough
case reflect.Uint8:
fallthrough
case reflect.Uint16:
fallthrough
case reflect.Uint32:
fallthrough
case reflect.Uint64:
op.SetRegister(itemKey, []byte(strconv.FormatUint(f.Uint(), 10)))
// Strings are saved as Registers
case reflect.String:
op.SetRegister(itemKey, []byte(f.String()))
// Bools are saved as Flags
case reflect.Bool:
op.SetFlag(itemKey, f.Bool())
// Arrays are saved as Registers
case reflect.Array:
err := e.encodeArray(op, itemKey, f)
if err != nil {
return err
}
// Slices are saved as Sets
// []byte and []uint8 are saved as Registers
case reflect.Slice:
err := e.encodeSlice(op, itemKey, f)
if err != nil {
return err
}
case reflect.Map:
subPath := path
subPath = append(subPath, itemKey)
err := e.encodeMap(op, itemKey, f, subPath)
if err != nil {
return err
}
case reflect.Struct:
done := false
if ts, ok := f.Interface().(time.Time); ok {
bin, err := ts.MarshalBinary()
if err != nil {
return err
}
op.SetRegister(itemKey, bin)
done = true
}
if !done {
subOp := op.Map(itemKey)
subPath := path
subPath = append(subPath, itemKey)
_, err := e.encodeStruct(f, subOp, subPath)
if err != nil {
return err
}
}
case reflect.Ptr:
ptrType := f.Type().String()
// Counters
if ptrType == "*goriak.Counter" {
if f.IsNil() {
// Increase by 0 to create the counter if it doesn't already exist
op.IncrementCounter(itemKey, 0)
// Initialize counter if Set() was given a struct pointer
if e.isModifyable {
resCounter := &Counter{
helper: helper{
name: itemKey,
path: path,
key: e.riakRequest,
//context: riakContext,
},
val: 0,
}
f.Set(reflect.ValueOf(resCounter))
}
return nil
}
counterValue := f.Elem().FieldByName("increaseBy").Int()
op.IncrementCounter(itemKey, counterValue)
return nil
}
// Set
if ptrType == "*goriak.Set" {
// Add an empty item
if f.IsNil() {
// Initialize counter if Set() was given a struct pointer
if e.isModifyable {
resSet := &Set{
helper: helper{
name: itemKey,
path: path,
key: e.riakRequest,
//context: riakContext,
},
}
f.Set(reflect.ValueOf(resSet))
}
return nil
}
if s, ok := f.Interface().(*Set); ok {
for _, add := range s.adds {
op.AddToSet(itemKey, add)
}
for _, remove := range s.removes {
op.RemoveFromSet(itemKey, remove)
}
}
return nil
}
// Flag
if ptrType == "*goriak.Flag" {
// Add an empty flag
if f.IsNil() {
// Initialize flag if Flag() was given a struct pointer
if e.isModifyable {
resFlag := &Flag{
helper: helper{
name: itemKey,
path: path,
key: e.riakRequest,
},
// Initialize to false
val: false,
}
f.Set(reflect.ValueOf(resFlag))
}
return nil
}
// Save flag
if f, ok := f.Interface().(*Flag); ok {
op.SetFlag(itemKey, f.Value())
}
return nil
}
// Register
if ptrType == "*goriak.Register" {
// Add an empty flag
if f.IsNil() {
// Initialize flag if Flag() was given a struct pointer
if e.isModifyable {
resRegister := &Register{
helper: helper{
name: itemKey,
path: path,
key: e.riakRequest,
},
}
f.Set(reflect.ValueOf(resRegister))
}
return nil
}
// Save flag
if f, ok := f.Interface().(*Register); ok {
op.SetRegister(itemKey, f.Value())
}
return nil
}
return errors.New("Unexpected ptr type: " + f.Type().String())
default:
return errors.New("Unexpected type: " + f.Kind().String())
}
return nil
}
// Arrays are saved as Registers
func (e *mapEncoder) encodeArray(op *riakMapOperation, itemKey string, f reflect.Value) error {
// Empty
if f.Len() == 0 {
op.SetRegister(itemKey, []byte{})
return nil
}
// Byte array (uint8 is the same as byte)
if f.Index(0).Kind() == reflect.Uint8 {
register := make([]byte, f.Len())
for ii := 0; ii < f.Len(); ii++ {
register[ii] = uint8(f.Index(ii).Uint())
}
op.SetRegister(itemKey, register)
return nil
}
return errors.New("Unknown Array type: " + f.Index(0).Kind().String())
}
// Slices are saved as Sets
// []byte and []uint8 are saved as Registers
func (e *mapEncoder) encodeSlice(op *riakMapOperation, itemKey string, f reflect.Value) error {
sliceType := f.Type().Elem().Kind()
sliceLength := f.Len()
sliceVal := f.Slice(0, sliceLength)
switch sliceType {
case reflect.Int:
// Convert Int -> String -> []byte
for ii := 0; ii < sliceLength; ii++ {
intVal := sliceVal.Index(ii).Int()
strVal := strconv.FormatInt(intVal, 10)
op.AddToSet(itemKey, []byte(strVal))
}
case reflect.String:
// Convert String -> []byte
for ii := 0; ii < sliceLength; ii++ {
strVal := sliceVal.Index(ii).String()
op.AddToSet(itemKey, []byte(strVal))
}
case reflect.Uint8:
// Uint8 is the same as byte, store the value directly
op.SetRegister(itemKey, sliceVal.Bytes())
case reflect.Array:
// [n]byte
if sliceVal.Type().Elem().Elem().Kind() == reflect.Uint8 {
for ii := 0; ii < sliceVal.Len(); ii++ {
item := sliceVal.Index(ii)
// Convert the array to a byte slice
byteValue := make([]byte, item.Len())
for byteValueIndex := 0; byteValueIndex < item.Len(); byteValueIndex++ {
byteValue[byteValueIndex] = uint8(item.Index(byteValueIndex).Uint())
}
op.AddToSet(itemKey, byteValue)
}
return nil
}
case reflect.Slice:
// Empty, do nothing
if sliceVal.Len() == 0 {
return nil
}
// [][]byte
if sliceVal.Type().Elem().Elem().Kind() == reflect.Uint8 {
for ii := 0; ii < sliceVal.Len(); ii++ {
op.AddToSet(itemKey, sliceVal.Index(ii).Bytes())
}
return nil
}
return errors.New("Unknown slice slice type: " + sliceVal.Type().Elem().Elem().Kind().String())
default:
return errors.New("Unknown slice type: " + sliceType.String())
}
return nil
}
func (e *mapEncoder) encodeMap(op *riakMapOperation, itemKey string, f reflect.Value, path []string) error {
keys := f.MapKeys()
subOp := op.Map(itemKey)
keyType := f.Type().Key().Kind()
// Maps are not modifyable, save the current state and mark as not modifyable for now
origModifyable := e.isModifyable
e.isModifyable = false
defer func() {
e.isModifyable = origModifyable
}()
for _, key := range keys {
// Convert the key to string
var keyString string
switch keyType {
case reflect.String:
keyString = key.String()
case reflect.Int:
fallthrough
case reflect.Int8:
fallthrough
case reflect.Int16:
fallthrough
case reflect.Int32:
fallthrough
case reflect.Int64:
keyString = strconv.FormatInt(int64(key.Int()), 10)
default:
return errors.New("Unknown map key type: " + keyType.String())
}
err := e.encodeValue(subOp, keyString, f.MapIndex(key), path)
if err != nil {
return err
}
}
return nil
}