-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_script.go
398 lines (344 loc) · 13.4 KB
/
cmd_script.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
package redisson
import (
"context"
"crypto/sha1"
"encoding/hex"
"io"
"strings"
)
type Scripter interface {
// Hash
// Return SHA1 digest of script.
Hash() string
// Eval
// Available since: 2.6.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
Eval(ctx context.Context, keys []string, args ...any) Cmd
// EvalRO
// Available since: 7.0.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalRO(ctx context.Context, keys []string, args ...any) Cmd
// EvalSha
// Available since: 2.6.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalSha(ctx context.Context, keys []string, args ...any) Cmd
// EvalShaRO
// Available since: 7.0.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalShaRO(ctx context.Context, keys []string, args ...any) Cmd
// Run optimistically uses EVALSHA to run the script. If script does not exist
// it is retried using EVAL.
Run(ctx context.Context, keys []string, args ...any) Cmd
// RunRO optimistically uses EVALSHA_RO to run the script. If script does not exist
// it is retried using EVAL_RO.
RunRO(ctx context.Context, keys []string, args ...any) Cmd
// Load
// Available since: 2.6.0
// Time complexity: O(N) with N being the length in bytes of the script body.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Bulk string reply: the SHA1 digest of the script added into the script cache.
Load(ctx context.Context) StringCmd
// Exists
// Available since: 2.6.0
// Time complexity: O(N) with N being the number of scripts to check (so checking a single script is an O(1) operation).
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Array reply: an array of integers that correspond to the specified SHA1 digest arguments.
Exists(ctx context.Context) BoolSliceCmd
}
type ScriptCmdable interface {
CreateScript(src string) Scripter
// Eval
// Available since: 2.6.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
Eval(ctx context.Context, script string, keys []string, args ...any) Cmd
// EvalRO
// Available since: 7.0.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalRO(ctx context.Context, script string, keys []string, args ...any) Cmd
// EvalSha
// Available since: 2.6.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalSha(ctx context.Context, sha1 string, keys []string, args ...any) Cmd
// EvalShaRO
// Available since: 7.0.0
// Time complexity: Depends on the script that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the script that was executed.
EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...any) Cmd
// FCall
// Available since: 7.0.0
// Time complexity: Depends on the function that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the function that was executed.
FCall(ctx context.Context, function string, keys []string, args ...any) Cmd
// FCallRO
// Available since: 7.0.0
// Time complexity: Depends on the function that is executed.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - The return value depends on the function that was executed.
FCallRO(ctx context.Context, function string, keys []string, args ...any) Cmd
// FunctionDelete
// Available since: 7.0.0
// Time complexity: O(1)
// ACL categories: @write, @slow, @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
FunctionDelete(ctx context.Context, libName string) StringCmd
// FunctionDump
// Available since: 7.0.0
// Time complexity: O(N) where N is the number of functions
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Bulk string reply: the serialized payload
FunctionDump(ctx context.Context) StringCmd
// FunctionFlush
// Available since: 7.0.0
// Time complexity: O(N) where N is the number of functions deleted
// ACL categories: @write, @slow, @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
FunctionFlush(ctx context.Context) StringCmd
FunctionFlushAsync(ctx context.Context) StringCmd
// FunctionKill
// Available since: 7.0.0
// Time complexity: O(1)
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
FunctionKill(ctx context.Context) StringCmd
// FunctionList
// Available since: 7.0.0
// Time complexity: O(N) where N is the number of functions
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Array reply: information about functions and libraries.
FunctionList(ctx context.Context, q FunctionListQuery) FunctionListCmd
// FunctionLoad
// Available since: 7.0.0
// Time complexity: O(1) (considering compilation time is redundant)
// ACL categories: @write, @slow, @scripting
// RESP2 / RESP3 Reply:
// - Bulk string reply: the library name that was loaded.
FunctionLoad(ctx context.Context, code string) StringCmd
FunctionLoadReplace(ctx context.Context, code string) StringCmd
// FunctionRestore
// Available since: 7.0.0
// Time complexity: O(N) where N is the number of functions on the payload
// ACL categories: @write, @slow, @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
FunctionRestore(ctx context.Context, libDump string) StringCmd
// ScriptExists
// Available since: 2.6.0
// Time complexity: O(N) with N being the number of scripts to check (so checking a single script is an O(1) operation).
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Array reply: an array of integers that correspond to the specified SHA1 digest arguments.
ScriptExists(ctx context.Context, hashes ...string) BoolSliceCmd
// ScriptFlush
// Available since: 2.6.0
// Time complexity: O(N) with N being the number of scripts in cache
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
// History:
// - Starting with Redis version 6.2.0: Added the ASYNC and SYNC flushing mode modifiers
ScriptFlush(ctx context.Context) StatusCmd
// ScriptKill
// Available since: 2.6.0
// Time complexity: O(1)
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Simple string reply: OK.
ScriptKill(ctx context.Context) StatusCmd
// ScriptLoad
// Available since: 2.6.0
// Time complexity: O(N) with N being the length in bytes of the script body.
// ACL categories: @slow @scripting
// RESP2 / RESP3 Reply:
// - Bulk string reply: the SHA1 digest of the script added into the script cache.
ScriptLoad(ctx context.Context, script string) StringCmd
}
func (c *client) CreateScript(src string) Scripter { return newScript(c, src) }
func (c *client) Eval(ctx context.Context, script string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandEval, func() []string { return keys })
r := c.adapter.Eval(ctx, script, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) EvalRO(ctx context.Context, script string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandEvalRO, func() []string { return keys })
r := c.adapter.EvalRO(ctx, script, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) EvalSha(ctx context.Context, sha1 string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandEvalSha, func() []string { return keys })
r := c.adapter.EvalSha(ctx, sha1, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandEvalShaRO, func() []string { return keys })
r := c.adapter.EvalShaRO(ctx, sha1, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FCall(ctx context.Context, function string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandFCall, func() []string { return keys })
r := c.adapter.FCall(ctx, function, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FCallRO(ctx context.Context, function string, keys []string, args ...any) Cmd {
ctx = c.handler.beforeWithKeys(ctx, CommandFCallRO, func() []string { return keys })
r := c.adapter.FCallRO(ctx, function, keys, args...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionDelete(ctx context.Context, libName string) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionDelete)
r := wrapStringCmd(c.adapter.FunctionDelete(ctx, libName))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionDump(ctx context.Context) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionDump)
r := wrapStringCmd(c.adapter.FunctionDump(ctx))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionFlush(ctx context.Context) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionFlush)
r := wrapStringCmd(c.adapter.FunctionFlush(ctx))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionFlushAsync(ctx context.Context) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionFlushAsync)
r := wrapStringCmd(c.adapter.FunctionFlushAsync(ctx))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionKill(ctx context.Context) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionKill)
r := wrapStringCmd(c.adapter.FunctionKill(ctx))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionList(ctx context.Context, q FunctionListQuery) FunctionListCmd {
ctx = c.handler.before(ctx, CommandFunctionList)
r := c.adapter.FunctionList(ctx, q)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionLoad(ctx context.Context, code string) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionLoad)
r := wrapStringCmd(c.adapter.FunctionLoad(ctx, code))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionLoadReplace(ctx context.Context, code string) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionLoadReplace)
r := wrapStringCmd(c.adapter.FunctionLoadReplace(ctx, code))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) FunctionRestore(ctx context.Context, libDump string) StringCmd {
ctx = c.handler.before(ctx, CommandFunctionRestore)
r := wrapStringCmd(c.adapter.FunctionRestore(ctx, libDump))
c.handler.after(ctx, r.Err())
return r
}
func (c *client) ScriptExists(ctx context.Context, hashes ...string) BoolSliceCmd {
ctx = c.handler.before(ctx, CommandScriptExists)
r := c.adapter.ScriptExists(ctx, hashes...)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) ScriptFlush(ctx context.Context) StatusCmd {
ctx = c.handler.before(ctx, CommandScriptFlush)
r := c.adapter.ScriptFlush(ctx)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) ScriptKill(ctx context.Context) StatusCmd {
ctx = c.handler.before(ctx, CommandScriptKill)
r := c.adapter.ScriptKill(ctx)
c.handler.after(ctx, r.Err())
return r
}
func (c *client) ScriptLoad(ctx context.Context, script string) StringCmd {
ctx = c.handler.before(ctx, CommandScriptLoad)
r := wrapStringCmd(c.adapter.ScriptLoad(ctx, script))
c.handler.after(ctx, r.Err())
return r
}
type script struct {
ScriptCmdable
src, hash string
}
func newScript(c ScriptCmdable, src string) Scripter {
h := sha1.New()
_, _ = io.WriteString(h, src)
return &script{
ScriptCmdable: c,
src: src,
hash: hex.EncodeToString(h.Sum(nil)),
}
}
func (s *script) Hash() string { return s.hash }
func (s *script) Load(ctx context.Context) StringCmd { return s.ScriptLoad(ctx, s.src) }
func (s *script) Exists(ctx context.Context) BoolSliceCmd { return s.ScriptExists(ctx, s.hash) }
func (s *script) Eval(ctx context.Context, keys []string, args ...any) Cmd {
return s.ScriptCmdable.Eval(ctx, s.src, keys, args...)
}
func (s *script) EvalRO(ctx context.Context, keys []string, args ...any) Cmd {
return s.ScriptCmdable.EvalRO(ctx, s.src, keys, args...)
}
func (s *script) EvalSha(ctx context.Context, keys []string, args ...any) Cmd {
return s.ScriptCmdable.EvalSha(ctx, s.hash, keys, args...)
}
func (s *script) EvalShaRO(ctx context.Context, keys []string, args ...any) Cmd {
return s.ScriptCmdable.EvalShaRO(ctx, s.src, keys, args...)
}
func (s *script) Run(ctx context.Context, keys []string, args ...any) Cmd {
r := s.EvalSha(ctx, keys, args...)
if err := r.Err(); err != nil && strings.HasPrefix(err.Error(), "NOSCRIPT ") {
return s.Eval(ctx, keys, args...)
}
return r
}
func (s *script) RunRO(ctx context.Context, keys []string, args ...any) Cmd {
r := s.EvalShaRO(ctx, keys, args...)
if err := r.Err(); err != nil && strings.HasPrefix(err.Error(), "NOSCRIPT ") {
return s.EvalRO(ctx, keys, args...)
}
return r
}