123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- #include "redismodule.h"
- #include <assert.h>
- #include <errno.h>
- #include <strings.h>
- /* LIST.GETALL key [REVERSE] */
- int list_getall(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc < 2 || argc > 3) return RedisModule_WrongArity(ctx);
- int reverse = (argc == 3 &&
- !strcasecmp(RedisModule_StringPtrLen(argv[2], NULL),
- "REVERSE"));
- RedisModule_AutoMemory(ctx);
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[1], REDISMODULE_READ);
- if (RedisModule_KeyType(key) != REDISMODULE_KEYTYPE_LIST) {
- return RedisModule_ReplyWithError(ctx, REDISMODULE_ERRORMSG_WRONGTYPE);
- }
- long n = RedisModule_ValueLength(key);
- RedisModule_ReplyWithArray(ctx, n);
- if (!reverse) {
- for (long i = 0; i < n; i++) {
- RedisModuleString *elem = RedisModule_ListGet(key, i);
- RedisModule_ReplyWithString(ctx, elem);
- RedisModule_FreeString(ctx, elem);
- }
- } else {
- for (long i = -1; i >= -n; i--) {
- RedisModuleString *elem = RedisModule_ListGet(key, i);
- RedisModule_ReplyWithString(ctx, elem);
- RedisModule_FreeString(ctx, elem);
- }
- }
- /* Test error condition: index out of bounds */
- assert(RedisModule_ListGet(key, n) == NULL);
- assert(errno == EDOM); /* no more elements in list */
- /* RedisModule_CloseKey(key); //implicit, done by auto memory */
- return REDISMODULE_OK;
- }
- /* LIST.EDIT key [REVERSE] cmdstr [value ..]
- *
- * cmdstr is a string of the following characters:
- *
- * k -- keep
- * d -- delete
- * i -- insert value from args
- * r -- replace with value from args
- *
- * The number of occurrences of "i" and "r" in cmdstr) should correspond to the
- * number of args after cmdstr.
- *
- * The reply is the number of edits (inserts + replaces + deletes) performed.
- */
- int list_edit(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc < 3) return RedisModule_WrongArity(ctx);
- RedisModule_AutoMemory(ctx);
- int argpos = 1; /* the next arg */
- /* key */
- int keymode = REDISMODULE_READ | REDISMODULE_WRITE;
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[argpos++], keymode);
- if (RedisModule_KeyType(key) != REDISMODULE_KEYTYPE_LIST) {
- return RedisModule_ReplyWithError(ctx, REDISMODULE_ERRORMSG_WRONGTYPE);
- }
- /* REVERSE */
- int reverse = 0;
- if (argc >= 4 &&
- !strcasecmp(RedisModule_StringPtrLen(argv[argpos], NULL), "REVERSE")) {
- reverse = 1;
- argpos++;
- }
- /* cmdstr */
- size_t cmdstr_len;
- const char *cmdstr = RedisModule_StringPtrLen(argv[argpos++], &cmdstr_len);
- /* validate cmdstr vs. argc */
- long num_req_args = 0;
- long min_list_length = 0;
- for (size_t cmdpos = 0; cmdpos < cmdstr_len; cmdpos++) {
- char c = cmdstr[cmdpos];
- if (c == 'i' || c == 'r') num_req_args++;
- if (c == 'd' || c == 'r' || c == 'k') min_list_length++;
- }
- if (argc < argpos + num_req_args) {
- return RedisModule_ReplyWithError(ctx, "ERR too few args");
- }
- if ((long)RedisModule_ValueLength(key) < min_list_length) {
- return RedisModule_ReplyWithError(ctx, "ERR list too short");
- }
- /* Iterate over the chars in cmdstr (edit instructions) */
- long long num_edits = 0;
- long index = reverse ? -1 : 0;
- RedisModuleString *value;
- for (size_t cmdpos = 0; cmdpos < cmdstr_len; cmdpos++) {
- switch (cmdstr[cmdpos]) {
- case 'i': /* insert */
- value = argv[argpos++];
- assert(RedisModule_ListInsert(key, index, value) == REDISMODULE_OK);
- index += reverse ? -1 : 1;
- num_edits++;
- break;
- case 'd': /* delete */
- assert(RedisModule_ListDelete(key, index) == REDISMODULE_OK);
- num_edits++;
- break;
- case 'r': /* replace */
- value = argv[argpos++];
- assert(RedisModule_ListSet(key, index, value) == REDISMODULE_OK);
- index += reverse ? -1 : 1;
- num_edits++;
- break;
- case 'k': /* keep */
- index += reverse ? -1 : 1;
- break;
- }
- }
- RedisModule_ReplyWithLongLong(ctx, num_edits);
- RedisModule_CloseKey(key);
- return REDISMODULE_OK;
- }
- /* Reply based on errno as set by the List API functions. */
- static int replyByErrno(RedisModuleCtx *ctx) {
- switch (errno) {
- case EDOM:
- return RedisModule_ReplyWithError(ctx, "ERR index out of bounds");
- case ENOTSUP:
- return RedisModule_ReplyWithError(ctx, REDISMODULE_ERRORMSG_WRONGTYPE);
- default: assert(0); /* Can't happen */
- }
- }
- /* LIST.GET key index */
- int list_get(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc != 3) return RedisModule_WrongArity(ctx);
- long long index;
- if (RedisModule_StringToLongLong(argv[2], &index) != REDISMODULE_OK) {
- return RedisModule_ReplyWithError(ctx, "ERR index must be a number");
- }
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[1], REDISMODULE_READ);
- RedisModuleString *value = RedisModule_ListGet(key, index);
- if (value) {
- RedisModule_ReplyWithString(ctx, value);
- RedisModule_FreeString(ctx, value);
- } else {
- replyByErrno(ctx);
- }
- RedisModule_CloseKey(key);
- return REDISMODULE_OK;
- }
- /* LIST.SET key index value */
- int list_set(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc != 4) return RedisModule_WrongArity(ctx);
- long long index;
- if (RedisModule_StringToLongLong(argv[2], &index) != REDISMODULE_OK) {
- RedisModule_ReplyWithError(ctx, "ERR index must be a number");
- return REDISMODULE_OK;
- }
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[1], REDISMODULE_WRITE);
- if (RedisModule_ListSet(key, index, argv[3]) == REDISMODULE_OK) {
- RedisModule_ReplyWithSimpleString(ctx, "OK");
- } else {
- replyByErrno(ctx);
- }
- RedisModule_CloseKey(key);
- return REDISMODULE_OK;
- }
- /* LIST.INSERT key index value
- *
- * If index is negative, value is inserted after, otherwise before the element
- * at index.
- */
- int list_insert(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc != 4) return RedisModule_WrongArity(ctx);
- long long index;
- if (RedisModule_StringToLongLong(argv[2], &index) != REDISMODULE_OK) {
- RedisModule_ReplyWithError(ctx, "ERR index must be a number");
- return REDISMODULE_OK;
- }
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[1], REDISMODULE_WRITE);
- if (RedisModule_ListInsert(key, index, argv[3]) == REDISMODULE_OK) {
- RedisModule_ReplyWithSimpleString(ctx, "OK");
- } else {
- replyByErrno(ctx);
- }
- RedisModule_CloseKey(key);
- return REDISMODULE_OK;
- }
- /* LIST.DELETE key index */
- int list_delete(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- if (argc != 3) return RedisModule_WrongArity(ctx);
- long long index;
- if (RedisModule_StringToLongLong(argv[2], &index) != REDISMODULE_OK) {
- RedisModule_ReplyWithError(ctx, "ERR index must be a number");
- return REDISMODULE_OK;
- }
- RedisModuleKey *key = RedisModule_OpenKey(ctx, argv[1], REDISMODULE_WRITE);
- if (RedisModule_ListDelete(key, index) == REDISMODULE_OK) {
- RedisModule_ReplyWithSimpleString(ctx, "OK");
- } else {
- replyByErrno(ctx);
- }
- RedisModule_CloseKey(key);
- return REDISMODULE_OK;
- }
- int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- REDISMODULE_NOT_USED(argv);
- REDISMODULE_NOT_USED(argc);
- if (RedisModule_Init(ctx, "list", 1, REDISMODULE_APIVER_1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.getall", list_getall, "",
- 1, 1, 1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.edit", list_edit, "",
- 1, 1, 1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.get", list_get, "",
- 1, 1, 1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.set", list_set, "",
- 1, 1, 1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.insert", list_insert, "",
- 1, 1, 1) == REDISMODULE_OK &&
- RedisModule_CreateCommand(ctx, "list.delete", list_delete, "",
- 1, 1, 1) == REDISMODULE_OK) {
- return REDISMODULE_OK;
- } else {
- return REDISMODULE_ERR;
- }
- }
|