forked from fastio/1store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis_commands.cc
378 lines (350 loc) · 14.7 KB
/
redis_commands.cc
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
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*
* Copyright (c) 2016-2026, Peng Jian, [email protected]. All rights reserved.
*
*/
#include "redis_commands.hh"
#include "redis.hh"
#include <sstream>
namespace redis {
std::vector<sstring> redis_commands::_number_str;
std::vector<sstring> redis_commands::_multi_number_str;
std::vector<sstring> redis_commands::_content_number_str;
redis_commands::redis_commands()
{
init_number_str_array(_number_str, ":");
init_number_str_array(_multi_number_str, "*");
init_number_str_array(_content_number_str, "$");
_dummy = [] (args_collection&, output_stream<char>& out) {
return out.write("+Not Implemented\r\n");
};
// [TEST]
// ECHO
regist_handler("ECHO", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->echo(args).then([this, &out] (sstring message) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(message));
return out.write(std::move(msg));
});
});
// PING
regist_handler("PING", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->echo(args).then([this, &out] (sstring message) {
return out.write(msg_pong);
});
});
// INCR
regist_handler(sstring("INCR"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->incr(args).then([this, &out] (uint64_t r) {
scattered_message<char> msg;
this_type::append_item(msg, r);
return out.write(std::move(msg));
});
});
// DECR
regist_handler(sstring("DECR"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->decr(args).then([this, &out] (uint64_t r) {
scattered_message<char> msg;
this_type::append_item(msg, r);
return out.write(std::move(msg));
});
});
// INCRBY
regist_handler(sstring("INCRBY"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->incrby(args).then([this, &out] (uint64_t r) {
scattered_message<char> msg;
this_type::append_item(msg, r);
return out.write(std::move(msg));
});
});
// DECRBY
regist_handler(sstring("DECRBY"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->decrby(args).then([this, &out] (uint64_t r) {
scattered_message<char> msg;
this_type::append_item(msg, r);
return out.write(std::move(msg));
});
});
// SET
regist_handler(sstring("SET"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->set(args).then([this, &out] (int r) {
return out.write(r == 0 ? msg_ok : msg_err);
});
});
// MSET
regist_handler(sstring("MSET"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->mset(args).then([this, &out] (int r) {
return out.write(r == 0 ? msg_ok : msg_err);
});
});
// GET
regist_handler("GET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->get(args).then([this, &out] (item_ptr it) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(it));
return out.write(std::move(msg));
});
});
// MGET
regist_handler("MGET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->mget(args).then([this, &out] (std::vector<item_ptr> items) {
scattered_message<char> msg;
this_type::append_multi_items(msg, std::move(items));
return out.write(std::move(msg));
});
});
// COMMAND
regist_handler(sstring("COMMAND"), [this] (args_collection& args, output_stream<char>& out) -> future<> {
return out.write(msg_ok);
});
// DEL
regist_handler("DEL", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->del(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// EXISTS
regist_handler("EXISTS", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->exists(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// APPEND
regist_handler("APPEND", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->append(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// STRLEN
regist_handler("STRLEN", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->strlen(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LPUSH
regist_handler("LPUSH", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lpush(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LPUSHX
regist_handler("LPUSHX", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lpushx(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LPOP
regist_handler("LPOP", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lpop(args).then([this, &out] (item_ptr item) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(item));
return out.write(std::move(msg));
});
});
// LLEN
regist_handler("LLEN", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->llen(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LINDEX
regist_handler("LINDEX", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lindex(args).then([this, &out] (item_ptr item) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(item));
return out.write(std::move(msg));
});
});
// LINSERT
regist_handler("LINSERT", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->linsert(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LRANGE
regist_handler("LRANGE", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lrange(args).then([this, &out] (std::vector<item_ptr> items) {
scattered_message<char> msg;
this_type::append_multi_items(msg, std::move(items));
return out.write(std::move(msg));
});
});
// LSET
regist_handler("LSET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lset(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// RPUSH
regist_handler("RPUSH", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->rpush(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// RPUSHX
regist_handler("RPUSHX", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->rpushx(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// RPOP
regist_handler("RPOP", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->rpop(args).then([this, &out] (item_ptr item) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(item));
return out.write(std::move(msg));
});
});
// LREM
regist_handler("LREM", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->lrem(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// LTRIM
regist_handler("LTRIM", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->ltrim(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
//[ HASH APIs]
// HSET
regist_handler("HSET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hset(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HDEL
regist_handler("HDEL", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hdel(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HGET
regist_handler("HGET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hget(args).then([this, &out] (item_ptr item) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(item));
return out.write(std::move(msg));
});
});
// HLEN
regist_handler("HLEN", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hlen(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HEXISTS
regist_handler("HEXISTS", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hexists(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HSTRLEN
regist_handler("HSTRLEN", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hstrlen(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HINCRBY
regist_handler("HINCRBY", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hincrby(args).then([this, &out] (int count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HINCRBYFLOAT
regist_handler("HINCRBYFLOAT", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hincrbyfloat(args).then([this, &out] (double count) {
scattered_message<char> msg;
this_type::append_item(msg, std::move(count));
return out.write(std::move(msg));
});
});
// HKEYS
regist_handler("HKEYS", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hgetall(args).then([this, &out] (std::vector<item_ptr>&& items) {
scattered_message<char> msg;
this_type::append_multi_items<true, false>(msg, std::move(items));
return out.write(std::move(msg));
});
});
// HVALS
regist_handler("HVALS", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hgetall(args).then([this, &out] (std::vector<item_ptr>&& items) {
scattered_message<char> msg;
this_type::append_multi_items<false, true>(msg, std::move(items));
return out.write(std::move(msg));
});
});
// HMGET
regist_handler("HMGET", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hmget(args).then([this, &out] (std::vector<item_ptr>&& items) {
scattered_message<char> msg;
this_type::append_multi_items(msg, std::move(items));
return out.write(std::move(msg));
});
});
// HGETALL
regist_handler("HGETALL", [this] (args_collection& args, output_stream<char>& out) -> future<> {
return _redis->hgetall(args).then([this, &out] (std::vector<item_ptr>&& items) {
scattered_message<char> msg;
this_type::append_multi_items<true, true>(msg, std::move(items));
return out.write(std::move(msg));
});
});
}
}