-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkredis.go
205 lines (164 loc) · 3.96 KB
/
kredis.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
package kredis
import (
"encoding/json"
"strconv"
"time"
"github.com/redis/go-redis/v9"
)
type KredisJSON struct {
s string
}
type KredisTyped interface {
comparable
~bool | ~int | ~float64 | ~string | KredisJSON | time.Time
}
// KredisJSON is a small struct wrapper for dealing with JSON strings
func NewKredisJSON(jsonStr string) *KredisJSON {
var kj KredisJSON = KredisJSON{jsonStr}
return &kj
}
func (kj KredisJSON) String() string {
return kj.s
}
func (kj *KredisJSON) Unmarshal(data any) error {
err := json.Unmarshal([]byte(kj.s), data)
if err != nil {
return err
}
return nil
}
// convert an interface{} value to a KredisTyped value
func typeToInterface[T KredisTyped](t T) interface{} {
switch any(t).(type) {
case time.Time:
return any(t).(time.Time).Format(time.RFC3339Nano)
case KredisJSON:
return any(t).(KredisJSON).String()
default:
return t
}
}
// convert a string value to a KredisTyped value
func stringToTyped[T KredisTyped](value string, typed *T) (T, bool) {
switch any(*typed).(type) {
case bool:
b, err := strconv.ParseBool(value)
if err != nil {
return any(false).(T), false
}
return any(b).(T), true
case int:
n, err := strconv.Atoi(value)
if err != nil {
return any(0).(T), false
}
return any(n).(T), true
case time.Time:
t, err := time.Parse(time.RFC3339Nano, value)
if err != nil {
return any(time.Time{}).(T), false
}
return any(t).(T), true
case string:
return any(value).(T), true
case KredisJSON:
return any(*NewKredisJSON(value)).(T), true
}
return any(*typed).(T), false
}
// redis.StringCmd has most of the conversion functions we need for converting
// to a KredisTyped. this is only used with Set or Hash.
func stringCmdToTyped[T KredisTyped](cmd *redis.StringCmd, typed *T) (T, bool) {
if cmd.Err() == redis.Nil {
goto Empty
}
switch any(*typed).(type) {
case bool:
b, err := cmd.Bool()
if err != nil {
return any(false).(T), false
}
return any(b).(T), true
case int:
n, err := cmd.Int()
if err != nil {
return any(0).(T), false
}
return any(n).(T), true
case float64:
f, err := cmd.Float64()
if err != nil {
return any(0.0).(T), false
}
return any(f).(T), true
case time.Time:
t, err := cmd.Time()
if err != nil {
return any(time.Time{}).(T), false
}
return any(t).(T), true
case string:
return any(cmd.Val()).(T), true
case KredisJSON:
return any(*NewKredisJSON(cmd.Val())).(T), true
}
Empty:
return any(*typed).(T), false
}
// used in most collection types for copying a slice of interfaces to a slice
// of KredisTyped.
func copyCmdSliceTo[T KredisTyped](slice []interface{}, dst []T) (total int64) {
for i, e := range slice {
if i == len(dst) {
break
}
switch any(dst[i]).(type) {
case bool:
b, _ := strconv.ParseBool(e.(string))
dst[i] = any(b).(T)
case int:
n, _ := strconv.Atoi(e.(string))
dst[i] = any(n).(T)
case float64:
f, _ := strconv.ParseFloat(e.(string), 64)
dst[i] = any(f).(T)
case KredisJSON:
j := NewKredisJSON(e.(string))
dst[i] = any(*j).(T)
case time.Time:
t, _ := time.Parse(time.RFC3339Nano, e.(string))
dst[i] = any(t).(T)
default:
dst[i] = any(e).(T)
}
total += 1
}
return
}
// used in most collection types for copying a slice of interfaces to a slice
// of KredisTyped.
func copyCmdSliceToMap[T KredisTyped](slice []interface{}, dst map[T]struct{}, typed *T) (total int64) {
for _, e := range slice {
switch any(*typed).(type) {
case bool:
b, _ := strconv.ParseBool(e.(string))
dst[any(b).(T)] = struct{}{}
case int:
n, _ := strconv.Atoi(e.(string))
dst[any(n).(T)] = struct{}{}
case float64:
f, _ := strconv.ParseFloat(e.(string), 64)
dst[any(f).(T)] = struct{}{}
case KredisJSON:
j := NewKredisJSON(e.(string))
dst[any(*j).(T)] = struct{}{}
case time.Time:
t, _ := time.Parse(time.RFC3339Nano, e.(string))
dst[any(t).(T)] = struct{}{}
default:
dst[any(e).(T)] = struct{}{}
}
total += 1
}
return
}