forked from antirez/try.redis
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathnamespace_tools.rb
369 lines (326 loc) · 10.9 KB
/
namespace_tools.rb
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
# encoding: utf-8
require_relative 'lib/shell_escape'
module NamespaceTools
SYNTAX_ERROR = {error: "ERR Syntax error"}.freeze
ARGUMENT_ERROR = -> cmd { {error: "ERR wrong number of arguments for '#{cmd}' command"} }
ALLOWED_COMMANDS = %w[
append echo getrange hmget hsetnx incrbyfloat
hincrbyfloat decr decrby del discard exec linsert lpushx persist pexpire
pexpireat ping pttl psetex rpushx setex setrange strlen time zcount
zrank zremrangebyrank zrevrangebyscore zrevrank exists expire expireat get
getset hdel hexists hget hgetall hincrby hkeys hlen hmset hset hvals incr
incrby info keys lindex llen lpop lpush lrange lrem lset ltrim mget mset
msetnx multi rename renamenx rpop rpoplpush rpush sadd scard sdiff
sdiffstore set setnx sinter sinterstore sismember smembers smove sort spop
srandmember srem sunion sunionstore ttl type zadd zcard zincrby zrange
zrangebyscore zrem zremrangebyscore zrevrange zscore
scan sscan hscan zscan
bitcount bitop getbit setbit bitpos
pfadd pfcount pfmerge
zrangebylex zrevrangebylex zremrangebylex zlexcount
]
# These are manually converted to integer output
INTEGER_COMMANDS = %w[
incr incrby decr decrby del ttl llen
sadd zadd
zremrangebyrank
hincrby hdel
lpush rpush lpushx rpushx lrem
bitpos
strlen
pfadd pfcount
zlexcount zremrangebylex
]
# These commands return a nested array in ruby, need to be flattened
FLATTEN_COMMANDS = %w[
zrange zrevrange zrangebyscore zinterstore zunionstore
]
def parse_command(ns, command, *args)
command = command.to_s.downcase
if ALLOWED_COMMANDS.include?(command)
case command
when "keys"
if args.size != 1
return ARGUMENT_ERROR[command]
end
when "bitpos"
if args.size < 2
return ARGUMENT_ERROR[command]
end
# Manually namespace this, redis-namespace does not know it.
args[0] = add_namespace(ns, args[0])
return [ command, *args ]
when "pfadd", "pfcount"
if args.size < 1
return ARGUMENT_ERROR[command]
end
# Manually namespace this, redis-namespace does not know it.
args[0] = add_namespace(ns, args[0])
return [ command, *args ]
when "pfmerge"
if args.size < 2
return ARGUMENT_ERROR[command]
end
# Manually namespace this, redis-namespace does not know it.
args.map! { |arg|
add_namespace(ns, arg)
}
return [ command, *args ]
when "zadd", "sadd", "zrem", "srem"
return [ command, args.shift, args ]
when "sort"
return ARGUMENT_ERROR[command] if args.empty?
key = args.shift
params = {}
while keyword = args.shift
case keyword.downcase
when "by", "get", "store"
k = keyword.intern
params[k] = args.shift
when "limit"
params[:limit] = [ args.shift.to_i, args.shift.to_i ]
when "asc", "desc", "alpha"
params[:order] ||= ""
params[:order] << " "
params[:order] << keyword
end
end
return [ command, key, params ]
when "scan"
return ARGUMENT_ERROR[command] if args.empty?
cursor, params = extract_scan_arguments(ns, args)
return [ command, cursor, params ]
when "hscan", "sscan", "zscan"
return ARGUMENT_ERROR[command] if args.size < 2
# Explicit namespacing here as redis-namespace fails to do the proper thing
key = add_namespace(ns, args.shift)
cursor, params = extract_scan_arguments(nil, args)
return [ command, key, cursor, params ]
when "zrange", "zrevrange"
# Only the first argument is a key, but special argument at the end.
head = args.first
tail = args[1..-1] || []
options = {}
if tail.last && tail.last.downcase == "withscores"
tail.pop
options[:withscores] = true
end
return [ command, head, *tail, options ]
when "zrangebylex", "zremrangebylex", "zrevrangebylex", "zlexcount"
# Only the first argument is a key, but special argument at the end.
head = add_namespace(ns, args.shift)
tail = args || []
return [ command, head, *tail]
when "zrangebyscore"
# Only the first argument is a key, but special arguments at the end.
head = args.shift
tail = [args.shift, args.shift]
options = {}
while keyword = args.shift
case keyword.downcase
when "limit"
options[:limit] = [ args.shift.to_i, args.shift.to_i ]
when "withscores"
options[:withscores] = true
else
return SYNTAX_ERROR
end
end
return [ command, head, *tail, options ]
when "set"
head = args.shift
tail = [args.shift]
options = {}
while keyword = args.shift
case keyword.downcase
when "ex"
options[:ex] = args.shift
return SYNTAX_ERROR unless options[:ex]
when "px"
options[:px] = args.shift
return SYNTAX_ERROR unless options[:px]
when "nx"
options[:nx] = true
when "xx"
options[:xx] = true
else
return SYNTAX_ERROR
end
end
if options.empty?
return [ command, head, *tail ]
else
return [ command, head, *tail, options ]
end
when "lpush", "rpush"
head = args.shift
tail = [*args]
return [command, head, tail]
end
[command, *args]
end
end
def extract_scan_arguments ns, args
cursor = args.shift
params = {}
while keyword = args.shift
case keyword.downcase
when "match"
params[:match] = add_namespace(ns, args.shift)
when "count"
params[:count] = args.shift
end
end
params[:match] ||= "#{ns}:*" if ns
[cursor, params]
end
def add_namespace(namespace, key)
return key unless namespace
case key
when String then "#{namespace}:#{key}"
when Array then key.map {|k| add_namespace(namespace, k)}
end
end
# Transform redis response from ruby to redis-cli like format
#
# @param input [String] The value returned from redis-rb
# @param cmd [String] The command sent to redis
# @param arg [String] Additional argument (used only for 'info' command to specify section)
#
# @return [String] redis-cli like formatted string of the input data
def to_redis_output input, cmd=nil, arg=nil
if cmd == 'info'
return info_output(input, arg)
end
if cmd == 'ping' && input == 'PONG'
return "PONG"
end
# Atleast hscan and zscan return nested arrays here.
if ['scan', 'hscan', 'zscan', 'sscan'].include?(cmd)
input[1].flatten!
end
case input
when nil
'(nil)'
when 'OK'
'OK'
when true
if cmd == 'set'
return 'OK'
else
'(integer) 1'
end
when false
if cmd == 'set'
return '(nil)'
else
'(integer) 0'
end
when Array
if input.empty?
"(empty list or set)"
else
str = ""
size = input.size.to_s.size
input.each_with_index do |v, i|
str << "#{(i+1).to_s.rjust(size)}) #{to_redis_output v}\n"
end
str
end
when Hash
if input.empty?
"(empty list or set)"
else
str = ""
size = input.size.to_s.size
i = 0
input.each do |(k, v)|
str << "#{(i+1).to_s.rjust(size)}) #{to_redis_output k}\n"
str << "#{(i+2).to_s.rjust(size)}) #{to_redis_output v}\n"
i += 2
end
str
end
when String, Numeric
input.inspect
else
input
end
end
INFO_SECTIONS = [
["Server", [ "redis_version", "redis_git_sha1", "redis_git_dirty",
"redis_build_id", "redis_mode", "os", "arch_bits",
"multiplexing_api", "gcc_version", "process_id", "run_id",
"tcp_port", "uptime_in_seconds", "uptime_in_days", "hz",
"lru_clock" ]
],
["Clients", [ "connected_clients", "client_longest_output_list",
"client_biggest_input_buf", "blocked_clients" ] ],
["Memory", [ "used_memory", "used_memory_human", "used_memory_rss",
"used_memory_peak", "used_memory_peak_human",
"used_memory_lua", "mem_fragmentation_ratio", "mem_allocator"
]
],
["Persistence", [ "loading", "rdb_changes_since_last_save",
"rdb_bgsave_in_progress", "rdb_last_save_time",
"rdb_last_bgsave_status", "rdb_last_bgsave_time_sec",
"rdb_current_bgsave_time_sec", "aof_enabled",
"aof_rewrite_in_progress", "aof_rewrite_scheduled",
"aof_last_rewrite_time_sec",
"aof_current_rewrite_time_sec", "aof_last_bgrewrite_status"
]
],
["Stats", [ "total_connections_received", "total_commands_processed",
"instantaneous_ops_per_sec", "rejected_connections",
"sync_full", "sync_partial_ok", "sync_partial_err",
"expired_keys", "evicted_keys", "keyspace_hits",
"keyspace_misses", "pubsub_channels", "pubsub_patterns",
"latest_fork_usec", "migrate_cached_sockets" ]
],
["Replication", [ "role", "connected_slaves", "master_repl_offset",
"repl_backlog_active", "repl_backlog_size",
"repl_backlog_first_byte_offset", "repl_backlog_histlen"
]
],
["CPU", [ "used_cpu_sys", "used_cpu_user", "used_cpu_sys_children",
"used_cpu_user_children" ]
],
["Cluster", [ "cluster_enabled" ] ],
["Keyspace", ["db0"] ]
]
def info_output input, section=nil
msg = ""
# Show only data for subsection
if section
section_data = INFO_SECTIONS.find{|k,_| k.downcase == section }
if section_data
msg << "# #{section_data[0]}\n"
section_data[1].each do |opt|
msg << "#{opt}:#{input[opt]}\n" if input[opt]
end
msg << "\n"
else
msg = "\n\n"
end
return msg.chomp
end
INFO_SECTIONS.each do |section|
msg << "# #{section[0]}\n"
section[1].each do |opt|
msg << "#{opt}:#{input[opt]}\n" if input[opt]
end
msg << "\n"
end
msg.chomp
end
class ThrottledCommand < Exception; end
THROTTLED_COMMANDS = %w[ setbit setrange ]
THROTTLE_MAX_OFFSET = 8_000_000 # 1 MB = 8000000 bits
def throttle_commands argv
if THROTTLED_COMMANDS.include?(argv[0]) && argv[2].to_i > THROTTLE_MAX_OFFSET
raise ThrottledCommand, "This would result in a too big value. try.redis is only for testing so keep it small."
end
nil
end
include ShellEscape
end