-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate.go
318 lines (273 loc) · 7.05 KB
/
update.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
package redists
import (
"context"
"fmt"
"time"
)
type cmdAlter struct {
key string
retention Duration
chunkSize *int
duplicatePolicy *DuplicatePolicy
labels map[string]string
}
func newCmdAlter(key string) *cmdAlter {
return &cmdAlter{key: key}
}
func (c *cmdAlter) Name() string {
return "TS.ALTER"
}
func (c *cmdAlter) Args() []interface{} {
args := []interface{}{c.key}
if c.retention != nil {
args = append(args, optionNameRetention, c.retention.Milliseconds())
}
if c.chunkSize != nil {
args = append(args, optionNameChunkSize, *c.chunkSize)
}
if c.duplicatePolicy != nil {
args = append(args, optionNameDuplicatePolicy, string(*c.duplicatePolicy))
}
if c.labels != nil {
args = append(args, optionNameLabels)
args = append(args, encodeLabels(c.labels)...)
}
return args
}
type OptionAlter func(cmd *cmdAlter)
// Alter updates the retention, labels of an existing key.
func (c *Client) Alter(ctx context.Context, key string, options ...OptionAlter) error {
cmd := newCmdAlter(key)
for i := range options {
options[i](cmd)
}
_, err := c.d.Do(ctx, cmd.Name(), cmd.Args()...)
return err
}
func AlterWithRetention(r Duration) OptionAlter {
return func(cmd *cmdAlter) {
cmd.retention = r
}
}
func AlterWithChunkSize(cs int) OptionAlter {
return func(cmd *cmdAlter) {
cmd.chunkSize = &cs
}
}
func AlterWithDuplicatePolicy(dp DuplicatePolicy) OptionAlter {
return func(cmd *cmdAlter) {
cmd.duplicatePolicy = &dp
}
}
func AlterWithLabels(ls Labels) OptionAlter {
return func(cmd *cmdAlter) {
cmd.labels = ls
}
}
type cmdAdd struct {
sample Sample
retention Duration
encoding *Encoding
chunkSize *int
duplicatePolicy *DuplicatePolicy
labels map[string]string
}
func newCmdAdd(s Sample) *cmdAdd {
return &cmdAdd{sample: s}
}
func (c *cmdAdd) Name() string {
return "TS.ADD"
}
func (c *cmdAdd) Args() []interface{} {
args := []interface{}{c.sample.Key, timestampArg(c.sample.Timestamp), c.sample.Value}
if c.retention != nil {
args = append(args, optionNameRetention, c.retention.Milliseconds())
}
if c.encoding != nil {
args = append(args, optionNameEncoding, string(*c.encoding))
}
if c.chunkSize != nil {
args = append(args, optionNameChunkSize, *c.chunkSize)
}
if c.duplicatePolicy != nil {
args = append(args, optionNameOnDuplicate, string(*c.duplicatePolicy))
}
if c.labels != nil {
args = append(args, optionNameLabels)
args = append(args, encodeLabels(c.labels)...)
}
return args
}
type OptionAdd func(cmd *cmdAdd)
// Add updates the retention, labels of an existing key.
func (c *Client) Add(ctx context.Context, s Sample, options ...OptionAdd) (time.Time, error) {
cmd := newCmdAdd(s)
for i := range options {
options[i](cmd)
}
res, err := c.d.Do(ctx, cmd.Name(), cmd.Args()...)
if err != nil {
return time.Time{}, err
}
return time.UnixMilli(res.(int64)), err
}
func AddWithRetention(r Duration) OptionAdd {
return func(cmd *cmdAdd) {
cmd.retention = r
}
}
func AddWithEncoding(e Encoding) OptionAdd {
return func(cmd *cmdAdd) {
cmd.encoding = &e
}
}
func AddWithChunkSize(cs int) OptionAdd {
return func(cmd *cmdAdd) {
cmd.chunkSize = &cs
}
}
func AddWithOnDuplicate(dp DuplicatePolicy) OptionAdd {
return func(cmd *cmdAdd) {
cmd.duplicatePolicy = &dp
}
}
func AddWithLabels(ls Labels) OptionAdd {
return func(cmd *cmdAdd) {
cmd.labels = ls
}
}
type cmdMAdd struct {
samples []Sample
}
func newCmdMAdd(s []Sample) *cmdMAdd {
return &cmdMAdd{samples: s}
}
func (c *cmdMAdd) Name() string {
return "TS.MADD"
}
func (c *cmdMAdd) Args() []interface{} {
var args []interface{}
for _, s := range c.samples {
args = append(args, s.Key, timestampArg(s.Timestamp), s.Value)
}
return args
}
// MultiResult contains an error when a specific Sample triggers an error.
type MultiResult struct {
t time.Time
err error
}
func (r MultiResult) Time() time.Time {
return r.t
}
func (r MultiResult) Err() error {
return r.err
}
// MAdd appends new samples to a list of series.
func (c *Client) MAdd(ctx context.Context, s []Sample) ([]MultiResult, error) {
cmd := newCmdMAdd(s)
res, err := c.d.Do(ctx, cmd.Name(), cmd.Args()...)
if err != nil {
return nil, err
}
var rs []MultiResult
if is, ok := res.([]interface{}); ok {
for i := range is {
switch v := is[i].(type) {
case error:
rs = append(rs, MultiResult{err: v})
case int64:
rs = append(rs, MultiResult{t: time.UnixMilli(v)})
default:
panic(fmt.Sprintf("val %T not convertible to MultiResult", v))
}
}
}
return rs, err
}
const (
nameIncrBy = nameCounter("TS.INCRBY")
nameDecrBy = nameCounter("TS.DECRBY")
)
type nameCounter string
type cmdCounter struct {
name nameCounter
key string
value float64
timestamp *time.Time
retention Duration
encoding *Encoding
chunkSize *int
labels map[string]string
}
func newCmdCounter(name nameCounter, key string, value float64) *cmdCounter {
return &cmdCounter{name: name, key: key, value: value}
}
func (c *cmdCounter) Name() string {
return string(c.name)
}
func (c *cmdCounter) Args() []interface{} {
args := []interface{}{c.key, c.value}
if c.timestamp != nil {
args = append(args, optionNameTimestamp, c.timestamp.UnixMilli())
}
if c.retention != nil {
args = append(args, optionNameRetention, c.retention.Milliseconds())
}
if c.encoding != nil && *c.encoding == EncodingUncompressed {
args = append(args, optionNameUncompressed)
}
if c.chunkSize != nil {
args = append(args, optionNameChunkSize, *c.chunkSize)
}
if c.labels != nil {
args = append(args, optionNameLabels)
args = append(args, encodeLabels(c.labels)...)
}
return args
}
type OptionCounter func(cmd *cmdCounter)
// IncrBy creates a new sample that increments the latest sample's value.
func (c *Client) IncrBy(ctx context.Context, key string, value float64, options ...OptionCounter) (time.Time, error) {
return c.counter(ctx, nameIncrBy, key, value, options...)
}
// DecrBy creates a new sample that decrements the latest sample's value.
func (c *Client) DecrBy(ctx context.Context, key string, value float64, options ...OptionCounter) (time.Time, error) {
return c.counter(ctx, nameDecrBy, key, value, options...)
}
func (c *Client) counter(ctx context.Context, name nameCounter, key string, value float64, options ...OptionCounter) (time.Time, error) {
cmd := newCmdCounter(name, key, value)
for i := range options {
options[i](cmd)
}
res, err := c.d.Do(ctx, cmd.Name(), cmd.Args()...)
if err != nil {
return time.Time{}, err
}
return time.UnixMilli(res.(int64)), err
}
func CounterWithRetention(r Duration) OptionCounter {
return func(cmd *cmdCounter) {
cmd.retention = r
}
}
func CounterWithTimestamp(t time.Time) OptionCounter {
return func(cmd *cmdCounter) {
cmd.timestamp = &t
}
}
func CounterWithEncoding(e Encoding) OptionCounter {
return func(cmd *cmdCounter) {
cmd.encoding = &e
}
}
func CounterWithChunkSize(cs int) OptionCounter {
return func(cmd *cmdCounter) {
cmd.chunkSize = &cs
}
}
func CounterWithLabels(ls Labels) OptionCounter {
return func(cmd *cmdCounter) {
cmd.labels = ls
}
}