forked from redis/rueidis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.go
792 lines (712 loc) · 20 KB
/
message.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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
package rueidis
import (
"encoding/json"
"fmt"
"io"
"strconv"
"strings"
"unsafe"
)
const messageStructSize = int(unsafe.Sizeof(RedisMessage{}))
// IsRedisNil is a handy method to check if error is redis nil response.
// All redis nil response returns as an error.
func IsRedisNil(err error) bool {
if e, ok := err.(*RedisError); ok {
return e.IsNil()
}
return false
}
// RedisError is an error response or a nil message from redis instance
type RedisError RedisMessage
func (r *RedisError) Error() string {
if r.IsNil() {
return "redis nil message"
}
return r.string
}
// IsNil checks if it is a redis nil message.
func (r *RedisError) IsNil() bool {
return r.typ == '_'
}
// IsMoved checks if it is a redis MOVED message and returns moved address.
func (r *RedisError) IsMoved() (addr string, ok bool) {
if ok = strings.HasPrefix(r.string, "MOVED"); ok {
addr = strings.Split(r.string, " ")[2]
}
return
}
// IsAsk checks if it is a redis ASK message and returns ask address.
func (r *RedisError) IsAsk() (addr string, ok bool) {
if ok = strings.HasPrefix(r.string, "ASK"); ok {
addr = strings.Split(r.string, " ")[2]
}
return
}
// IsTryAgain checks if it is a redis TRYAGAIN message and returns ask address.
func (r *RedisError) IsTryAgain() bool {
return strings.HasPrefix(r.string, "TRYAGAIN")
}
// IsClusterDown checks if it is a redis CLUSTERDOWN message and returns ask address.
func (r *RedisError) IsClusterDown() bool {
return strings.HasPrefix(r.string, "CLUSTERDOWN")
}
// IsNoScript checks if it is a redis NOSCRIPT message.
func (r *RedisError) IsNoScript() bool {
return strings.HasPrefix(r.string, "NOSCRIPT")
}
func newResult(val RedisMessage, err error) RedisResult {
return RedisResult{val: val, err: err}
}
func newErrResult(err error) RedisResult {
return RedisResult{err: err}
}
// RedisResult is the return struct from Client.Do or Client.DoCache
// it contains either a redis response or an underlying error (ex. network timeout).
type RedisResult struct {
err error
val RedisMessage
}
// RedisError can be used to check if the redis response is an error message.
func (r RedisResult) RedisError() *RedisError {
if err := r.val.Error(); err != nil {
return err.(*RedisError)
}
return nil
}
// NonRedisError can be used to check if there is an underlying error (ex. network timeout).
func (r RedisResult) NonRedisError() error {
return r.err
}
// Error returns either underlying error or redis error or nil
func (r RedisResult) Error() error {
if r.err != nil {
return r.err
}
if err := r.val.Error(); err != nil {
return err
}
return nil
}
// ToMessage retrieves the RedisMessage
func (r RedisResult) ToMessage() (RedisMessage, error) {
return r.val, r.Error()
}
// ToInt64 delegates to RedisMessage.ToInt64
func (r RedisResult) ToInt64() (int64, error) {
if err := r.Error(); err != nil {
return 0, err
}
return r.val.ToInt64()
}
// ToBool delegates to RedisMessage.ToBool
func (r RedisResult) ToBool() (bool, error) {
if err := r.Error(); err != nil {
return false, err
}
return r.val.ToBool()
}
// ToFloat64 delegates to RedisMessage.ToFloat64
func (r RedisResult) ToFloat64() (float64, error) {
if err := r.Error(); err != nil {
return 0, err
}
return r.val.ToFloat64()
}
// ToString delegates to RedisMessage.ToString
func (r RedisResult) ToString() (string, error) {
if err := r.Error(); err != nil {
return "", err
}
return r.val.ToString()
}
// AsReader delegates to RedisMessage.AsReader
func (r RedisResult) AsReader() (reader io.Reader, err error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsReader()
}
// DecodeJSON delegates to RedisMessage.DecodeJSON
func (r RedisResult) DecodeJSON(v interface{}) error {
if err := r.Error(); err != nil {
return err
}
return r.val.DecodeJSON(v)
}
// AsInt64 delegates to RedisMessage.AsInt64
func (r RedisResult) AsInt64() (int64, error) {
if err := r.Error(); err != nil {
return 0, err
}
return r.val.AsInt64()
}
// AsBool delegates to RedisMessage.AsBool
func (r RedisResult) AsBool() (bool, error) {
if err := r.Error(); err != nil {
return false, err
}
return r.val.AsBool()
}
// AsFloat64 delegates to RedisMessage.AsFloat64
func (r RedisResult) AsFloat64() (float64, error) {
if err := r.Error(); err != nil {
return 0, err
}
return r.val.AsFloat64()
}
// ToArray delegates to RedisMessage.ToArray
func (r RedisResult) ToArray() ([]RedisMessage, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.ToArray()
}
// AsStrSlice delegates to RedisMessage.AsStrSlice
func (r RedisResult) AsStrSlice() ([]string, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsStrSlice()
}
// AsIntSlice delegates to RedisMessage.AsIntSlice
func (r RedisResult) AsIntSlice() ([]int64, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsIntSlice()
}
// AsFloatSlice delegates to RedisMessage.AsFloatSlice
func (r RedisResult) AsFloatSlice() ([]float64, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsFloatSlice()
}
// AsXRangeEntry delegates to RedisMessage.AsXRangeEntry
func (r RedisResult) AsXRangeEntry() (XRangeEntry, error) {
if err := r.Error(); err != nil {
return XRangeEntry{}, err
}
return r.val.AsXRangeEntry()
}
// AsXRange delegates to RedisMessage.AsXRange
func (r RedisResult) AsXRange() ([]XRangeEntry, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsXRange()
}
// AsZScore delegates to RedisMessage.AsZScore
func (r RedisResult) AsZScore() (ZScore, error) {
if err := r.Error(); err != nil {
return ZScore{}, err
}
return r.val.AsZScore()
}
// AsZScores delegates to RedisMessage.AsZScores
func (r RedisResult) AsZScores() ([]ZScore, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsZScores()
}
// AsXRead delegates to RedisMessage.AsXRead
func (r RedisResult) AsXRead() (map[string][]XRangeEntry, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsXRead()
}
// AsMap delegates to RedisMessage.AsMap
func (r RedisResult) AsMap() (map[string]RedisMessage, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsMap()
}
// AsStrMap delegates to RedisMessage.AsStrMap
func (r RedisResult) AsStrMap() (map[string]string, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsStrMap()
}
// AsIntMap delegates to RedisMessage.AsIntMap
func (r RedisResult) AsIntMap() (map[string]int64, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.AsIntMap()
}
// ToMap delegates to RedisMessage.ToMap
func (r RedisResult) ToMap() (map[string]RedisMessage, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.ToMap()
}
// ToAny delegates to RedisMessage.ToAny
func (r RedisResult) ToAny() (interface{}, error) {
if err := r.Error(); err != nil {
return nil, err
}
return r.val.ToAny()
}
// IsCacheHit delegates to RedisMessage.IsCacheHit
func (r RedisResult) IsCacheHit() bool {
return r.val.IsCacheHit()
}
// RedisMessage is a redis response message, it may be a nil response
type RedisMessage struct {
typ byte
string string
values []RedisMessage
attrs *RedisMessage
integer int64
}
// IsNil check if message is a redis nil response
func (m *RedisMessage) IsNil() bool {
return m.typ == '_'
}
// IsInt64 check if message is a redis RESP3 int response
func (m *RedisMessage) IsInt64() bool {
return m.typ == ':'
}
// IsFloat64 check if message is a redis RESP3 double response
func (m *RedisMessage) IsFloat64() bool {
return m.typ == ','
}
// IsString check if message is a redis string response
func (m *RedisMessage) IsString() bool {
return m.typ == '$' || m.typ == '+'
}
// IsBool check if message is a redis RESP3 bool response
func (m *RedisMessage) IsBool() bool {
return m.typ == '#'
}
// IsArray check if message is a redis array response
func (m *RedisMessage) IsArray() bool {
return m.typ == '*' || m.typ == '~'
}
// IsMap check if message is a redis RESP3 map response
func (m *RedisMessage) IsMap() bool {
return m.typ == '%'
}
// Error check if message is a redis error response, including nil response
func (m *RedisMessage) Error() error {
if m.typ == '-' || m.typ == '_' || m.typ == '!' {
return (*RedisError)(m)
}
return nil
}
// ToString check if message is a redis string response, and return it
func (m *RedisMessage) ToString() (val string, err error) {
if m.IsString() {
return m.string, nil
}
if m.IsInt64() || m.values != nil {
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a string", typ))
}
return m.string, m.Error()
}
// AsReader check if message is a redis string response and wrap it with the strings.NewReader
func (m *RedisMessage) AsReader() (reader io.Reader, err error) {
str, err := m.ToString()
if err != nil {
return nil, err
}
return strings.NewReader(str), nil
}
// DecodeJSON check if message is a redis string response and treat it as json, then unmarshal it into provided value
func (m *RedisMessage) DecodeJSON(v interface{}) (err error) {
str, err := m.ToString()
if err != nil {
return err
}
decoder := json.NewDecoder(strings.NewReader(str))
return decoder.Decode(v)
}
// AsInt64 check if message is a redis string response, and parse it as int64
func (m *RedisMessage) AsInt64() (val int64, err error) {
if m.IsInt64() {
return m.integer, nil
}
v, err := m.ToString()
if err != nil {
return 0, err
}
return strconv.ParseInt(v, 10, 64)
}
// AsBool checks if message is non-nil redis response, and parses it as bool
func (m *RedisMessage) AsBool() (val bool, err error) {
if err = m.Error(); err != nil {
return
}
switch m.typ {
case '$', '+':
val = m.string == "OK"
return
case ':':
val = m.integer != 0
return
case '#':
val = m.integer == 1
return
default:
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a int, string or bool", typ))
}
}
// AsFloat64 check if message is a redis string response, and parse it as float64
func (m *RedisMessage) AsFloat64() (val float64, err error) {
if m.IsFloat64() {
return strconv.ParseFloat(m.string, 64)
}
v, err := m.ToString()
if err != nil {
return 0, err
}
return strconv.ParseFloat(v, 64)
}
// ToInt64 check if message is a redis RESP3 int response, and return it
func (m *RedisMessage) ToInt64() (val int64, err error) {
if m.IsInt64() {
return m.integer, nil
}
if err = m.Error(); err != nil {
return 0, err
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a RESP3 int64", typ))
}
// ToBool check if message is a redis RESP3 bool response, and return it
func (m *RedisMessage) ToBool() (val bool, err error) {
if m.IsBool() {
return m.integer == 1, nil
}
if err = m.Error(); err != nil {
return false, err
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a RESP3 bool", typ))
}
// ToFloat64 check if message is a redis RESP3 double response, and return it
func (m *RedisMessage) ToFloat64() (val float64, err error) {
if m.IsFloat64() {
return strconv.ParseFloat(m.string, 64)
}
if err = m.Error(); err != nil {
return 0, err
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a RESP3 float64", typ))
}
// ToArray check if message is a redis array/set response, and return it
func (m *RedisMessage) ToArray() ([]RedisMessage, error) {
if m.IsArray() {
return m.values, nil
}
if err := m.Error(); err != nil {
return nil, err
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a array", typ))
}
// AsStrSlice check if message is a redis array/set response, and convert to []string.
// redis nil element and other non string element will be present as zero.
func (m *RedisMessage) AsStrSlice() ([]string, error) {
values, err := m.ToArray()
if err != nil {
return nil, err
}
s := make([]string, 0, len(values))
for _, v := range values {
s = append(s, v.string)
}
return s, nil
}
// AsIntSlice check if message is a redis array/set response, and convert to []int64.
// redis nil element and other non integer element will be present as zero.
func (m *RedisMessage) AsIntSlice() ([]int64, error) {
values, err := m.ToArray()
if err != nil {
return nil, err
}
s := make([]int64, 0, len(values))
for _, v := range values {
s = append(s, v.integer)
}
return s, nil
}
// AsFloatSlice check if message is a redis array/set response, and convert to []float64.
// redis nil element and other non float element will be present as zero.
func (m *RedisMessage) AsFloatSlice() ([]float64, error) {
values, err := m.ToArray()
if err != nil {
return nil, err
}
s := make([]float64, 0, len(values))
for _, v := range values {
if len(v.string) != 0 {
i, err := strconv.ParseFloat(v.string, 64)
if err != nil {
return nil, err
}
s = append(s, i)
} else {
s = append(s, float64(v.integer))
}
}
return s, nil
}
// XRangeEntry is the element type of both XRANGE and XREVRANGE command response array
type XRangeEntry struct {
ID string
FieldValues map[string]string
}
// AsXRangeEntry check if message is a redis array/set response of length 2, and convert to XRangeEntry
func (m *RedisMessage) AsXRangeEntry() (XRangeEntry, error) {
values, err := m.ToArray()
if err != nil {
return XRangeEntry{}, err
}
if len(values) != 2 {
return XRangeEntry{}, fmt.Errorf("got %d, wanted 2", len(values))
}
id, err := values[0].ToString()
if err != nil {
return XRangeEntry{}, err
}
fieldValues, err := values[1].AsStrMap()
if err != nil {
if IsRedisNil(err) {
return XRangeEntry{ID: id, FieldValues: nil}, nil
}
return XRangeEntry{}, err
}
return XRangeEntry{
ID: id,
FieldValues: fieldValues,
}, nil
}
// AsXRange check if message is a redis array/set response, and convert to []XRangeEntry
func (m *RedisMessage) AsXRange() ([]XRangeEntry, error) {
values, err := m.ToArray()
if err != nil {
return nil, err
}
msgs := make([]XRangeEntry, 0, len(values))
for _, v := range values {
msg, err := v.AsXRangeEntry()
if err != nil {
return nil, err
}
msgs = append(msgs, msg)
}
return msgs, nil
}
// AsXRead converts XREAD/XREADGRUOP response to map[string][]XRangeEntry
func (m *RedisMessage) AsXRead() (ret map[string][]XRangeEntry, err error) {
if err = m.Error(); err != nil {
return nil, err
}
if m.IsMap() {
ret = make(map[string][]XRangeEntry, len(m.values)/2)
for i := 0; i < len(m.values); i += 2 {
if ret[m.values[i].string], err = m.values[i+1].AsXRange(); err != nil {
return nil, err
}
}
return ret, nil
}
if m.IsArray() {
ret = make(map[string][]XRangeEntry, len(m.values))
for _, v := range m.values {
if !v.IsArray() || len(v.values) != 2 {
return nil, fmt.Errorf("got %d, wanted 2", len(v.values))
}
if ret[v.values[0].string], err = v.values[1].AsXRange(); err != nil {
return nil, err
}
}
return ret, nil
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a map/array/set or its length is not even", typ))
}
// ZScore is the element type of ZRANGE WITHSCORES, ZDIFF WITHSCORES and ZPOPMAX command response
type ZScore struct {
Member string
Score float64
}
func toZScore(values []RedisMessage) (s ZScore, err error) {
if len(values) == 2 {
if s.Member, err = values[0].ToString(); err == nil {
s.Score, err = values[1].AsFloat64()
}
return s, err
}
panic(fmt.Sprintf("redis message is not a map/array/set or its length is not 2"))
}
// AsZScore converts ZPOPMAX and ZPOPMIN command with count 1 response to a single ZScore
func (m *RedisMessage) AsZScore() (s ZScore, err error) {
arr, err := m.ToArray()
if err != nil {
return s, err
}
return toZScore(arr)
}
// AsZScores converts ZRANGE WITHSCROES, ZDIFF WITHSCROES and ZPOPMAX/ZPOPMIN command with count > 1 responses to []ZScore
func (m *RedisMessage) AsZScores() ([]ZScore, error) {
arr, err := m.ToArray()
if err != nil {
return nil, err
}
if len(arr) > 0 && arr[0].IsArray() {
scores := make([]ZScore, len(arr))
for i, v := range arr {
if scores[i], err = toZScore(v.values); err != nil {
return nil, err
}
}
return scores, nil
}
scores := make([]ZScore, len(arr)/2)
for i := 0; i < len(scores); i++ {
j := i * 2
if scores[i], err = toZScore(arr[j : j+2]); err != nil {
return nil, err
}
}
return scores, nil
}
// AsMap check if message is a redis array/set response, and convert to map[string]RedisMessage
func (m *RedisMessage) AsMap() (map[string]RedisMessage, error) {
if err := m.Error(); err != nil {
return nil, err
}
if (m.IsMap() || m.IsArray()) && len(m.values)%2 == 0 {
return toMap(m.values), nil
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a map/array/set or its length is not even", typ))
}
// AsStrMap check if message is a redis map/array/set response, and convert to map[string]string.
// redis nil element and other non string element will be present as zero.
func (m *RedisMessage) AsStrMap() (map[string]string, error) {
if err := m.Error(); err != nil {
return nil, err
}
if (m.IsMap() || m.IsArray()) && len(m.values)%2 == 0 {
r := make(map[string]string, len(m.values)/2)
for i := 0; i < len(m.values); i += 2 {
k := m.values[i]
v := m.values[i+1]
r[k.string] = v.string
}
return r, nil
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a map/array/set or its length is not even", typ))
}
// AsIntMap check if message is a redis map/array/set response, and convert to map[string]int64.
// redis nil element and other non integer element will be present as zero.
func (m *RedisMessage) AsIntMap() (map[string]int64, error) {
if err := m.Error(); err != nil {
return nil, err
}
if (m.IsMap() || m.IsArray()) && len(m.values)%2 == 0 {
var err error
r := make(map[string]int64, len(m.values)/2)
for i := 0; i < len(m.values); i += 2 {
k := m.values[i]
v := m.values[i+1]
if k.typ == '$' || k.typ == '+' {
if len(v.string) != 0 {
if r[k.string], err = strconv.ParseInt(v.string, 0, 64); err != nil {
return nil, err
}
} else if v.typ == ':' || v.typ == '_' {
r[k.string] = v.integer
}
}
}
return r, nil
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a map/array/set or its length is not even", typ))
}
// ToMap check if message is a redis RESP3 map response, and return it
func (m *RedisMessage) ToMap() (map[string]RedisMessage, error) {
if m.IsMap() {
return toMap(m.values), nil
}
if err := m.Error(); err != nil {
return nil, err
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a RESP3 map", typ))
}
// ToAny turns message into go interface{} value
func (m *RedisMessage) ToAny() (interface{}, error) {
if err := m.Error(); err != nil {
return nil, err
}
switch m.typ {
case ',':
return strconv.ParseFloat(m.string, 64)
case '$', '+', '=', '(':
return m.string, nil
case '#':
return m.integer == 1, nil
case ':':
return m.integer, nil
case '%':
vs := make(map[string]interface{}, len(m.values)/2)
for i := 0; i < len(m.values); i += 2 {
if v, err := m.values[i+1].ToAny(); err != nil && !IsRedisNil(err) {
vs[m.values[i].string] = err
} else {
vs[m.values[i].string] = v
}
}
return vs, nil
case '~', '*':
vs := make([]interface{}, len(m.values))
for i := 0; i < len(m.values); i++ {
if v, err := m.values[i].ToAny(); err != nil && !IsRedisNil(err) {
vs[i] = err
} else {
vs[i] = v
}
}
return vs, nil
}
typ := m.typ
panic(fmt.Sprintf("redis message type %c is not a supported in ToAny", typ))
}
// IsCacheHit check if message is from client side cache
func (m *RedisMessage) IsCacheHit() bool {
return m.attrs == cacheMark
}
func toMap(values []RedisMessage) map[string]RedisMessage {
r := make(map[string]RedisMessage, len(values)/2)
for i := 0; i < len(values); i += 2 {
if values[i].typ == '$' || values[i].typ == '+' {
r[values[i].string] = values[i+1]
continue
}
typ := values[i].typ
panic(fmt.Sprintf("redis message type %c as map key is not supported", typ))
}
return r
}
func (m *RedisMessage) approximateSize() (s int) {
s += messageStructSize
s += len(m.string)
for _, v := range m.values {
s += v.approximateSize()
}
return
}