]> git.saurik.com Git - redis.git/blame - src/db.c
CLIENT LIST test modified to reflect the new output.
[redis.git] / src / db.c
CommitLineData
e2641e09 1#include "redis.h"
2
3#include <signal.h>
7dcc10b6 4#include <ctype.h>
e2641e09 5
c772d9c6 6void SlotToKeyAdd(robj *key);
7void SlotToKeyDel(robj *key);
8
e2641e09 9/*-----------------------------------------------------------------------------
10 * C-level DB API
11 *----------------------------------------------------------------------------*/
12
5d46e370 13/* Important notes on lookup and disk store.
14 *
15 * When disk store is enabled on lookup we can have different cases.
16 *
17 * a) The key is in memory:
18 * - If the key is not in IO_SAVEINPROG state we can access it.
19 * As if it's just IO_SAVE this means we have the key in the IO queue
20 * but can't be accessed by the IO thread (it requires to be
21 * translated into an IO Job by the cache cron function.)
22 * - If the key is in IO_SAVEINPROG we can't touch the key and have
23 * to blocking wait completion of operations.
24 * b) The key is not in memory:
25 * - If it's marked as non existing on disk as well (negative cache)
26 * we don't need to perform the disk access.
27 * - if the key MAY EXIST, but is not in memory, and it is marked as IO_SAVE
28 * then the key can only be a deleted one. As IO_SAVE keys are never
29 * evicted (dirty state), so the only possibility is that key was deleted.
30 * - if the key MAY EXIST we need to blocking load it.
31 * We check that the key is not in IO_SAVEINPROG state before accessing
32 * the disk object. If it is in this state, we wait.
33 */
34
e2641e09 35robj *lookupKey(redisDb *db, robj *key) {
36 dictEntry *de = dictFind(db->dict,key->ptr);
37 if (de) {
c0ba9ebe 38 robj *val = dictGetVal(de);
e2641e09 39
7d0966a6 40 /* Update the access time for the aging algorithm.
41 * Don't do it if we have a saving child, as this will trigger
42 * a copy on write madness. */
f48cd4b9 43 if (server.rdb_child_pid == -1 && server.aof_child_pid == -1)
7d0966a6 44 val->lru = server.lruclock;
e2641e09 45 return val;
46 } else {
47 return NULL;
48 }
49}
50
51robj *lookupKeyRead(redisDb *db, robj *key) {
b80b1c59 52 robj *val;
53
e2641e09 54 expireIfNeeded(db,key);
b80b1c59 55 val = lookupKey(db,key);
56 if (val == NULL)
57 server.stat_keyspace_misses++;
58 else
59 server.stat_keyspace_hits++;
60 return val;
e2641e09 61}
62
63robj *lookupKeyWrite(redisDb *db, robj *key) {
bcf2995c 64 expireIfNeeded(db,key);
e2641e09 65 return lookupKey(db,key);
66}
67
68robj *lookupKeyReadOrReply(redisClient *c, robj *key, robj *reply) {
69 robj *o = lookupKeyRead(c->db, key);
70 if (!o) addReply(c,reply);
71 return o;
72}
73
74robj *lookupKeyWriteOrReply(redisClient *c, robj *key, robj *reply) {
75 robj *o = lookupKeyWrite(c->db, key);
76 if (!o) addReply(c,reply);
77 return o;
78}
79
f85cd526 80/* Add the key to the DB. It's up to the caller to increment the reference
81 * counte of the value if needed.
82 *
83 * The program is aborted if the key already exists. */
84void dbAdd(redisDb *db, robj *key, robj *val) {
85 sds copy = sdsdup(key->ptr);
86 int retval = dictAdd(db->dict, copy, val);
87
eab0e26e 88 redisAssertWithInfo(NULL,key,retval == REDIS_OK);
f85cd526 89 }
90
91/* Overwrite an existing key with a new value. Incrementing the reference
92 * count of the new value is up to the caller.
93 * This function does not modify the expire time of the existing key.
94 *
95 * The program is aborted if the key was not already present. */
96void dbOverwrite(redisDb *db, robj *key, robj *val) {
97 struct dictEntry *de = dictFind(db->dict,key->ptr);
98
eab0e26e 99 redisAssertWithInfo(NULL,key,de != NULL);
f85cd526 100 dictReplace(db->dict, key->ptr, val);
e2641e09 101}
102
f85cd526 103/* High level Set operation. This function can be used in order to set
104 * a key, whatever it was existing or not, to a new object.
e2641e09 105 *
f85cd526 106 * 1) The ref count of the value object is incremented.
107 * 2) clients WATCHing for the destination key notified.
108 * 3) The expire time of the key is reset (the key is made persistent). */
109void setKey(redisDb *db, robj *key, robj *val) {
110 if (lookupKeyWrite(db,key) == NULL) {
111 dbAdd(db,key,val);
e2641e09 112 } else {
f85cd526 113 dbOverwrite(db,key,val);
e2641e09 114 }
f85cd526 115 incrRefCount(val);
116 removeExpire(db,key);
89f6f6ab 117 signalModifiedKey(db,key);
e2641e09 118}
119
120int dbExists(redisDb *db, robj *key) {
121 return dictFind(db->dict,key->ptr) != NULL;
122}
123
124/* Return a random key, in form of a Redis object.
125 * If there are no keys, NULL is returned.
126 *
127 * The function makes sure to return keys not already expired. */
128robj *dbRandomKey(redisDb *db) {
129 struct dictEntry *de;
130
131 while(1) {
132 sds key;
133 robj *keyobj;
134
135 de = dictGetRandomKey(db->dict);
136 if (de == NULL) return NULL;
137
c0ba9ebe 138 key = dictGetKey(de);
e2641e09 139 keyobj = createStringObject(key,sdslen(key));
140 if (dictFind(db->expires,key)) {
141 if (expireIfNeeded(db,keyobj)) {
142 decrRefCount(keyobj);
143 continue; /* search for another key. This expired. */
144 }
145 }
146 return keyobj;
147 }
148}
149
150/* Delete a key, value, and associated expiration entry if any, from the DB */
151int dbDelete(redisDb *db, robj *key) {
152 /* Deleting an entry from the expires dict will not free the sds of
153 * the key, because it is shared with the main dictionary. */
154 if (dictSize(db->expires) > 0) dictDelete(db->expires,key->ptr);
c772d9c6 155 if (dictDelete(db->dict,key->ptr) == DICT_OK) {
c772d9c6 156 return 1;
157 } else {
158 return 0;
159 }
e2641e09 160}
161
69bfffb4 162/* Empty the whole database.
163 * If diskstore is enabled this function will just flush the in-memory cache. */
e2641e09 164long long emptyDb() {
165 int j;
166 long long removed = 0;
167
168 for (j = 0; j < server.dbnum; j++) {
169 removed += dictSize(server.db[j].dict);
170 dictEmpty(server.db[j].dict);
171 dictEmpty(server.db[j].expires);
172 }
173 return removed;
174}
175
176int selectDb(redisClient *c, int id) {
177 if (id < 0 || id >= server.dbnum)
178 return REDIS_ERR;
179 c->db = &server.db[id];
180 return REDIS_OK;
181}
182
cea8c5cd 183/*-----------------------------------------------------------------------------
184 * Hooks for key space changes.
185 *
186 * Every time a key in the database is modified the function
187 * signalModifiedKey() is called.
188 *
189 * Every time a DB is flushed the function signalFlushDb() is called.
190 *----------------------------------------------------------------------------*/
191
192void signalModifiedKey(redisDb *db, robj *key) {
193 touchWatchedKey(db,key);
cea8c5cd 194}
195
196void signalFlushedDb(int dbid) {
197 touchWatchedKeysOnFlush(dbid);
cea8c5cd 198}
199
e2641e09 200/*-----------------------------------------------------------------------------
201 * Type agnostic commands operating on the key space
202 *----------------------------------------------------------------------------*/
203
204void flushdbCommand(redisClient *c) {
205 server.dirty += dictSize(c->db->dict);
cea8c5cd 206 signalFlushedDb(c->db->id);
e2641e09 207 dictEmpty(c->db->dict);
208 dictEmpty(c->db->expires);
209 addReply(c,shared.ok);
210}
211
212void flushallCommand(redisClient *c) {
cea8c5cd 213 signalFlushedDb(-1);
e2641e09 214 server.dirty += emptyDb();
215 addReply(c,shared.ok);
f48cd4b9 216 if (server.rdb_child_pid != -1) {
217 kill(server.rdb_child_pid,SIGKILL);
218 rdbRemoveTempFile(server.rdb_child_pid);
e2641e09 219 }
13cd1515 220 if (server.saveparamslen > 0) {
221 /* Normally rdbSave() will reset dirty, but we don't want this here
222 * as otherwise FLUSHALL will not be replicated nor put into the AOF. */
223 int saved_dirty = server.dirty;
f48cd4b9 224 rdbSave(server.rdb_filename);
13cd1515 225 server.dirty = saved_dirty;
226 }
e2641e09 227 server.dirty++;
228}
229
230void delCommand(redisClient *c) {
231 int deleted = 0, j;
232
233 for (j = 1; j < c->argc; j++) {
234 if (dbDelete(c->db,c->argv[j])) {
cea8c5cd 235 signalModifiedKey(c->db,c->argv[j]);
e2641e09 236 server.dirty++;
237 deleted++;
238 }
239 }
240 addReplyLongLong(c,deleted);
241}
242
243void existsCommand(redisClient *c) {
244 expireIfNeeded(c->db,c->argv[1]);
245 if (dbExists(c->db,c->argv[1])) {
246 addReply(c, shared.cone);
247 } else {
248 addReply(c, shared.czero);
249 }
250}
251
252void selectCommand(redisClient *c) {
253 int id = atoi(c->argv[1]->ptr);
254
255 if (selectDb(c,id) == REDIS_ERR) {
3ab20376 256 addReplyError(c,"invalid DB index");
e2641e09 257 } else {
258 addReply(c,shared.ok);
259 }
260}
261
262void randomkeyCommand(redisClient *c) {
263 robj *key;
264
265 if ((key = dbRandomKey(c->db)) == NULL) {
266 addReply(c,shared.nullbulk);
267 return;
268 }
269
270 addReplyBulk(c,key);
271 decrRefCount(key);
272}
273
274void keysCommand(redisClient *c) {
275 dictIterator *di;
276 dictEntry *de;
277 sds pattern = c->argv[1]->ptr;
e0e1c195 278 int plen = sdslen(pattern), allkeys;
e2641e09 279 unsigned long numkeys = 0;
b301c1fc 280 void *replylen = addDeferredMultiBulkLength(c);
e2641e09 281
282 di = dictGetIterator(c->db->dict);
e0e1c195 283 allkeys = (pattern[0] == '*' && pattern[1] == '\0');
e2641e09 284 while((de = dictNext(di)) != NULL) {
c0ba9ebe 285 sds key = dictGetKey(de);
e2641e09 286 robj *keyobj;
287
e0e1c195 288 if (allkeys || stringmatchlen(pattern,plen,key,sdslen(key),0)) {
e2641e09 289 keyobj = createStringObject(key,sdslen(key));
290 if (expireIfNeeded(c->db,keyobj) == 0) {
291 addReplyBulk(c,keyobj);
292 numkeys++;
293 }
294 decrRefCount(keyobj);
295 }
296 }
297 dictReleaseIterator(di);
b301c1fc 298 setDeferredMultiBulkLength(c,replylen,numkeys);
e2641e09 299}
300
301void dbsizeCommand(redisClient *c) {
b70d3555 302 addReplyLongLong(c,dictSize(c->db->dict));
e2641e09 303}
304
305void lastsaveCommand(redisClient *c) {
b70d3555 306 addReplyLongLong(c,server.lastsave);
e2641e09 307}
308
309void typeCommand(redisClient *c) {
310 robj *o;
311 char *type;
312
313 o = lookupKeyRead(c->db,c->argv[1]);
314 if (o == NULL) {
3ab20376 315 type = "none";
e2641e09 316 } else {
317 switch(o->type) {
3ab20376
PN
318 case REDIS_STRING: type = "string"; break;
319 case REDIS_LIST: type = "list"; break;
320 case REDIS_SET: type = "set"; break;
321 case REDIS_ZSET: type = "zset"; break;
322 case REDIS_HASH: type = "hash"; break;
323 default: type = "unknown"; break;
e2641e09 324 }
325 }
3ab20376 326 addReplyStatus(c,type);
e2641e09 327}
328
e2641e09 329void shutdownCommand(redisClient *c) {
4ab8695d 330 int flags = 0;
331
332 if (c->argc > 2) {
333 addReply(c,shared.syntaxerr);
334 return;
335 } else if (c->argc == 2) {
336 if (!strcasecmp(c->argv[1]->ptr,"nosave")) {
337 flags |= REDIS_SHUTDOWN_NOSAVE;
338 } else if (!strcasecmp(c->argv[1]->ptr,"save")) {
339 flags |= REDIS_SHUTDOWN_SAVE;
340 } else {
341 addReply(c,shared.syntaxerr);
342 return;
343 }
344 }
345 if (prepareForShutdown(flags) == REDIS_OK) exit(0);
3ab20376 346 addReplyError(c,"Errors trying to SHUTDOWN. Check logs.");
e2641e09 347}
348
349void renameGenericCommand(redisClient *c, int nx) {
350 robj *o;
7dcc10b6 351 long long expire;
e2641e09 352
353 /* To use the same key as src and dst is probably an error */
354 if (sdscmp(c->argv[1]->ptr,c->argv[2]->ptr) == 0) {
355 addReply(c,shared.sameobjecterr);
356 return;
357 }
358
359 if ((o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr)) == NULL)
360 return;
361
362 incrRefCount(o);
4ab18a33 363 expire = getExpire(c->db,c->argv[1]);
f85cd526 364 if (lookupKeyWrite(c->db,c->argv[2]) != NULL) {
e2641e09 365 if (nx) {
366 decrRefCount(o);
367 addReply(c,shared.czero);
368 return;
369 }
4ab18a33 370 /* Overwrite: delete the old key before creating the new one with the same name. */
371 dbDelete(c->db,c->argv[2]);
e2641e09 372 }
4ab18a33 373 dbAdd(c->db,c->argv[2],o);
374 if (expire != -1) setExpire(c->db,c->argv[2],expire);
e2641e09 375 dbDelete(c->db,c->argv[1]);
cea8c5cd 376 signalModifiedKey(c->db,c->argv[1]);
377 signalModifiedKey(c->db,c->argv[2]);
e2641e09 378 server.dirty++;
379 addReply(c,nx ? shared.cone : shared.ok);
380}
381
382void renameCommand(redisClient *c) {
383 renameGenericCommand(c,0);
384}
385
386void renamenxCommand(redisClient *c) {
387 renameGenericCommand(c,1);
388}
389
390void moveCommand(redisClient *c) {
391 robj *o;
392 redisDb *src, *dst;
393 int srcid;
394
395 /* Obtain source and target DB pointers */
396 src = c->db;
397 srcid = c->db->id;
398 if (selectDb(c,atoi(c->argv[2]->ptr)) == REDIS_ERR) {
399 addReply(c,shared.outofrangeerr);
400 return;
401 }
402 dst = c->db;
403 selectDb(c,srcid); /* Back to the source DB */
404
405 /* If the user is moving using as target the same
406 * DB as the source DB it is probably an error. */
407 if (src == dst) {
408 addReply(c,shared.sameobjecterr);
409 return;
410 }
411
412 /* Check if the element exists and get a reference */
413 o = lookupKeyWrite(c->db,c->argv[1]);
414 if (!o) {
415 addReply(c,shared.czero);
416 return;
417 }
418
f85cd526 419 /* Return zero if the key already exists in the target DB */
420 if (lookupKeyWrite(dst,c->argv[1]) != NULL) {
e2641e09 421 addReply(c,shared.czero);
422 return;
423 }
f85cd526 424 dbAdd(dst,c->argv[1],o);
e2641e09 425 incrRefCount(o);
426
427 /* OK! key moved, free the entry in the source DB */
428 dbDelete(src,c->argv[1]);
429 server.dirty++;
430 addReply(c,shared.cone);
431}
432
433/*-----------------------------------------------------------------------------
434 * Expires API
435 *----------------------------------------------------------------------------*/
436
437int removeExpire(redisDb *db, robj *key) {
438 /* An expire may only be removed if there is a corresponding entry in the
439 * main dict. Otherwise, the key will never be freed. */
eab0e26e 440 redisAssertWithInfo(NULL,key,dictFind(db->dict,key->ptr) != NULL);
a539d29a 441 return dictDelete(db->expires,key->ptr) == DICT_OK;
e2641e09 442}
443
7dcc10b6 444void setExpire(redisDb *db, robj *key, long long when) {
445 dictEntry *kde, *de;
e2641e09 446
447 /* Reuse the sds from the main dict in the expire dict */
7dcc10b6 448 kde = dictFind(db->dict,key->ptr);
449 redisAssertWithInfo(NULL,key,kde != NULL);
450 de = dictReplaceRaw(db->expires,dictGetKey(kde));
451 dictSetSignedIntegerVal(de,when);
e2641e09 452}
453
454/* Return the expire time of the specified key, or -1 if no expire
455 * is associated with this key (i.e. the key is non volatile) */
7dcc10b6 456long long getExpire(redisDb *db, robj *key) {
e2641e09 457 dictEntry *de;
458
459 /* No expire? return ASAP */
460 if (dictSize(db->expires) == 0 ||
461 (de = dictFind(db->expires,key->ptr)) == NULL) return -1;
462
463 /* The entry was found in the expire dict, this means it should also
464 * be present in the main dict (safety check). */
eab0e26e 465 redisAssertWithInfo(NULL,key,dictFind(db->dict,key->ptr) != NULL);
7dcc10b6 466 return dictGetSignedIntegerVal(de);
e2641e09 467}
468
bcf2995c 469/* Propagate expires into slaves and the AOF file.
470 * When a key expires in the master, a DEL operation for this key is sent
471 * to all the slaves and the AOF file if enabled.
472 *
473 * This way the key expiry is centralized in one place, and since both
474 * AOF and the master->slave link guarantee operation ordering, everything
475 * will be consistent even if we allow write operations against expiring
476 * keys. */
477void propagateExpire(redisDb *db, robj *key) {
bcf2995c 478 robj *argv[2];
479
355f8591 480 argv[0] = shared.del;
bcf2995c 481 argv[1] = key;
355f8591 482 incrRefCount(argv[0]);
483 incrRefCount(argv[1]);
bcf2995c 484
e394114d 485 if (server.aof_state != REDIS_AOF_OFF)
1b1f47c9 486 feedAppendOnlyFile(server.delCommand,db->id,argv,2);
bcf2995c 487 if (listLength(server.slaves))
488 replicationFeedSlaves(server.slaves,db->id,argv,2);
489
c25a5d3b 490 decrRefCount(argv[0]);
491 decrRefCount(argv[1]);
bcf2995c 492}
493
e2641e09 494int expireIfNeeded(redisDb *db, robj *key) {
7dcc10b6 495 long long when = getExpire(db,key);
bcf2995c 496
3a73be75 497 if (when < 0) return 0; /* No expire for this key */
498
040b0ade
HW
499 /* Don't expire anything while loading. It will be done later. */
500 if (server.loading) return 0;
501
bcf2995c 502 /* If we are running in the context of a slave, return ASAP:
503 * the slave key expiration is controlled by the master that will
504 * send us synthesized DEL operations for expired keys.
505 *
506 * Still we try to return the right information to the caller,
507 * that is, 0 if we think the key should be still valid, 1 if
508 * we think the key is expired at this time. */
509 if (server.masterhost != NULL) {
510 return time(NULL) > when;
511 }
512
e2641e09 513 /* Return when this key has not expired */
7dcc10b6 514 if (mstime() <= when) return 0;
e2641e09 515
516 /* Delete the key */
517 server.stat_expiredkeys++;
bcf2995c 518 propagateExpire(db,key);
e2641e09 519 return dbDelete(db,key);
520}
521
522/*-----------------------------------------------------------------------------
523 * Expires Commands
524 *----------------------------------------------------------------------------*/
525
52d46855 526/* Given an string object return true if it contains exactly the "ms"
527 * or "MS" string. This is used in order to check if the last argument
528 * of EXPIRE, EXPIREAT or TTL is "ms" to switch into millisecond input/output */
529int stringObjectEqualsMs(robj *a) {
530 char *arg = a->ptr;
531 return tolower(arg[0]) == 'm' && tolower(arg[1]) == 's' && arg[2] == '\0';
532}
533
12d293ca 534void expireGenericCommand(redisClient *c, long long offset, int unit) {
e2641e09 535 dictEntry *de;
7dcc10b6 536 robj *key = c->argv[1], *param = c->argv[2];
537 long long milliseconds;
e2641e09 538
7dcc10b6 539 if (getLongLongFromObjectOrReply(c, param, &milliseconds, NULL) != REDIS_OK)
540 return;
e2641e09 541
12d293ca 542 if (unit == UNIT_SECONDS) milliseconds *= 1000;
7dcc10b6 543 milliseconds -= offset;
e2641e09 544
545 de = dictFind(c->db->dict,key->ptr);
546 if (de == NULL) {
547 addReply(c,shared.czero);
548 return;
549 }
812ecc8b 550 /* EXPIRE with negative TTL, or EXPIREAT with a timestamp into the past
551 * should never be executed as a DEL when load the AOF or in the context
552 * of a slave instance.
553 *
554 * Instead we take the other branch of the IF statement setting an expire
555 * (possibly in the past) and wait for an explicit DEL from the master. */
7dcc10b6 556 if (milliseconds <= 0 && !server.loading && !server.masterhost) {
812ecc8b 557 robj *aux;
558
eab0e26e 559 redisAssertWithInfo(c,key,dbDelete(c->db,key));
812ecc8b 560 server.dirty++;
561
562 /* Replicate/AOF this as an explicit DEL. */
563 aux = createStringObject("DEL",3);
564 rewriteClientCommandVector(c,2,aux,key);
565 decrRefCount(aux);
cea8c5cd 566 signalModifiedKey(c->db,key);
812ecc8b 567 addReply(c, shared.cone);
e2641e09 568 return;
569 } else {
7dcc10b6 570 long long when = mstime()+milliseconds;
0cf5b7b5 571 setExpire(c->db,key,when);
572 addReply(c,shared.cone);
cea8c5cd 573 signalModifiedKey(c->db,key);
0cf5b7b5 574 server.dirty++;
e2641e09 575 return;
576 }
577}
578
579void expireCommand(redisClient *c) {
12d293ca 580 expireGenericCommand(c,0,UNIT_SECONDS);
e2641e09 581}
582
583void expireatCommand(redisClient *c) {
12d293ca 584 expireGenericCommand(c,mstime(),UNIT_SECONDS);
e2641e09 585}
586
12d293ca 587void pexpireCommand(redisClient *c) {
588 expireGenericCommand(c,0,UNIT_MILLISECONDS);
589}
52d46855 590
12d293ca 591void pexpireatCommand(redisClient *c) {
592 expireGenericCommand(c,mstime(),UNIT_MILLISECONDS);
593}
594
595void ttlGenericCommand(redisClient *c, int output_ms) {
596 long long expire, ttl = -1;
e2641e09 597
598 expire = getExpire(c->db,c->argv[1]);
599 if (expire != -1) {
7dcc10b6 600 ttl = expire-mstime();
e2641e09 601 if (ttl < 0) ttl = -1;
602 }
7dcc10b6 603 if (ttl == -1) {
604 addReplyLongLong(c,-1);
605 } else {
52d46855 606 addReplyLongLong(c,output_ms ? ttl : ((ttl+500)/1000));
7dcc10b6 607 }
e2641e09 608}
a539d29a 609
12d293ca 610void ttlCommand(redisClient *c) {
611 ttlGenericCommand(c, 0);
612}
613
614void pttlCommand(redisClient *c) {
615 ttlGenericCommand(c, 1);
616}
617
a539d29a 618void persistCommand(redisClient *c) {
619 dictEntry *de;
620
621 de = dictFind(c->db->dict,c->argv[1]->ptr);
622 if (de == NULL) {
623 addReply(c,shared.czero);
624 } else {
1fb4e8de 625 if (removeExpire(c->db,c->argv[1])) {
a539d29a 626 addReply(c,shared.cone);
1fb4e8de 627 server.dirty++;
628 } else {
a539d29a 629 addReply(c,shared.czero);
1fb4e8de 630 }
a539d29a 631 }
632}
9791f0f8 633
634/* -----------------------------------------------------------------------------
635 * API to get key arguments from commands
636 * ---------------------------------------------------------------------------*/
637
638int *getKeysUsingCommandTable(struct redisCommand *cmd,robj **argv, int argc, int *numkeys) {
639 int j, i = 0, last, *keys;
640 REDIS_NOTUSED(argv);
641
642 if (cmd->firstkey == 0) {
643 *numkeys = 0;
644 return NULL;
645 }
646 last = cmd->lastkey;
647 if (last < 0) last = argc+last;
648 keys = zmalloc(sizeof(int)*((last - cmd->firstkey)+1));
649 for (j = cmd->firstkey; j <= last; j += cmd->keystep) {
650 redisAssert(j < argc);
b4b51446 651 keys[i++] = j;
9791f0f8 652 }
b4b51446 653 *numkeys = i;
9791f0f8 654 return keys;
655}
656
657int *getKeysFromCommand(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags) {
658 if (cmd->getkeys_proc) {
659 return cmd->getkeys_proc(cmd,argv,argc,numkeys,flags);
660 } else {
661 return getKeysUsingCommandTable(cmd,argv,argc,numkeys);
662 }
663}
664
665void getKeysFreeResult(int *result) {
666 zfree(result);
667}
668
669int *noPreloadGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags) {
670 if (flags & REDIS_GETKEYS_PRELOAD) {
671 *numkeys = 0;
672 return NULL;
673 } else {
674 return getKeysUsingCommandTable(cmd,argv,argc,numkeys);
675 }
676}
677
678int *renameGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags) {
679 if (flags & REDIS_GETKEYS_PRELOAD) {
680 int *keys = zmalloc(sizeof(int));
681 *numkeys = 1;
682 keys[0] = 1;
4b61ca46 683 return keys;
9791f0f8 684 } else {
685 return getKeysUsingCommandTable(cmd,argv,argc,numkeys);
686 }
687}
688
689int *zunionInterGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *numkeys, int flags) {
690 int i, num, *keys;
691 REDIS_NOTUSED(cmd);
692 REDIS_NOTUSED(flags);
693
694 num = atoi(argv[2]->ptr);
695 /* Sanity check. Don't return any key if the command is going to
696 * reply with syntax error. */
697 if (num > (argc-3)) {
698 *numkeys = 0;
699 return NULL;
700 }
6e1b9b58 701 keys = zmalloc(sizeof(int)*num);
9791f0f8 702 for (i = 0; i < num; i++) keys[i] = 3+i;
703 *numkeys = num;
704 return keys;
705}