]> git.saurik.com Git - redis.git/commitdiff
Merge branch 'master' into networking-perf
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Fri, 3 Sep 2010 14:44:31 +0000 (16:44 +0200)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Fri, 3 Sep 2010 14:44:50 +0000 (16:44 +0200)
Resolved conflict in src/db.c and changed adding an error to the reply
in blockingPopGenericCommand to use the new API.

1  2 
src/db.c
src/redis.c
src/t_list.c

diff --combined src/db.c
index 4f1572a6cf43c7c24fa2fdd6500d05e826c890f8,f380bf6ec05882c6e79ec3993608e68d8e96c168..fc0595100ecb7f7637d9b091bea644500e1be0b5
+++ b/src/db.c
@@@ -199,7 -199,7 +199,7 @@@ void selectCommand(redisClient *c) 
      int id = atoi(c->argv[1]->ptr);
  
      if (selectDb(c,id) == REDIS_ERR) {
 -        addReplySds(c,sdsnew("-ERR invalid DB index\r\n"));
 +        addReplyError(c,"invalid DB index");
      } else {
          addReply(c,shared.ok);
      }
@@@ -221,17 -221,19 +221,17 @@@ void keysCommand(redisClient *c) 
      dictIterator *di;
      dictEntry *de;
      sds pattern = c->argv[1]->ptr;
-     int plen = sdslen(pattern);
+     int plen = sdslen(pattern), allkeys;
      unsigned long numkeys = 0;
 -    robj *lenobj = createObject(REDIS_STRING,NULL);
 +    void *replylen = addDeferredMultiBulkLength(c);
  
      di = dictGetIterator(c->db->dict);
 -    addReply(c,lenobj);
 -    decrRefCount(lenobj);
+     allkeys = (pattern[0] == '*' && pattern[1] == '\0');
      while((de = dictNext(di)) != NULL) {
          sds key = dictGetEntryKey(de);
          robj *keyobj;
  
-         if ((pattern[0] == '*' && pattern[1] == '\0') ||
-             stringmatchlen(pattern,plen,key,sdslen(key),0)) {
+         if (allkeys || stringmatchlen(pattern,plen,key,sdslen(key),0)) {
              keyobj = createStringObject(key,sdslen(key));
              if (expireIfNeeded(c->db,keyobj) == 0) {
                  addReplyBulk(c,keyobj);
          }
      }
      dictReleaseIterator(di);
 -    lenobj->ptr = sdscatprintf(sdsempty(),"*%lu\r\n",numkeys);
 +    setDeferredMultiBulkLength(c,replylen,numkeys);
  }
  
  void dbsizeCommand(redisClient *c) {
 -    addReplySds(c,
 -        sdscatprintf(sdsempty(),":%lu\r\n",dictSize(c->db->dict)));
 +    addReplyLongLong(c,dictSize(c->db->dict));
  }
  
  void lastsaveCommand(redisClient *c) {
 -    addReplySds(c,
 -        sdscatprintf(sdsempty(),":%lu\r\n",server.lastsave));
 +    addReplyLongLong(c,server.lastsave);
  }
  
  void typeCommand(redisClient *c) {
  
      o = lookupKeyRead(c->db,c->argv[1]);
      if (o == NULL) {
 -        type = "+none";
 +        type = "none";
      } else {
          switch(o->type) {
 -        case REDIS_STRING: type = "+string"; break;
 -        case REDIS_LIST: type = "+list"; break;
 -        case REDIS_SET: type = "+set"; break;
 -        case REDIS_ZSET: type = "+zset"; break;
 -        case REDIS_HASH: type = "+hash"; break;
 -        default: type = "+unknown"; break;
 +        case REDIS_STRING: type = "string"; break;
 +        case REDIS_LIST: type = "list"; break;
 +        case REDIS_SET: type = "set"; break;
 +        case REDIS_ZSET: type = "zset"; break;
 +        case REDIS_HASH: type = "hash"; break;
 +        default: type = "unknown"; break;
          }
      }
 -    addReplySds(c,sdsnew(type));
 -    addReply(c,shared.crlf);
 +    addReplyStatus(c,type);
  }
  
  void saveCommand(redisClient *c) {
      if (server.bgsavechildpid != -1) {
 -        addReplySds(c,sdsnew("-ERR background save in progress\r\n"));
 +        addReplyError(c,"Background save already in progress");
          return;
      }
      if (rdbSave(server.dbfilename) == REDIS_OK) {
  
  void bgsaveCommand(redisClient *c) {
      if (server.bgsavechildpid != -1) {
 -        addReplySds(c,sdsnew("-ERR background save already in progress\r\n"));
 +        addReplyError(c,"Background save already in progress");
          return;
      }
      if (rdbSaveBackground(server.dbfilename) == REDIS_OK) {
 -        char *status = "+Background saving started\r\n";
 -        addReplySds(c,sdsnew(status));
 +        addReplyStatus(c,"Background saving started");
      } else {
          addReply(c,shared.err);
      }
  void shutdownCommand(redisClient *c) {
      if (prepareForShutdown() == REDIS_OK)
          exit(0);
 -    addReplySds(c, sdsnew("-ERR Errors trying to SHUTDOWN. Check logs.\r\n"));
 +    addReplyError(c,"Errors trying to SHUTDOWN. Check logs.");
  }
  
  void renameGenericCommand(redisClient *c, int nx) {
diff --combined src/redis.c
index 5af9b235ea1b9c18ae362426d564a0701e82b25e,8206b5d30e561b7087a2e6d2df87f72990b257e9..a3d0211452a0ca583fa30f7494b27337d8bf3a11
@@@ -909,7 -909,7 +909,7 @@@ int processCommand(redisClient *c) 
      } else if (c->multibulk) {
          if (c->bulklen == -1) {
              if (((char*)c->argv[0]->ptr)[0] != '$') {
 -                addReplySds(c,sdsnew("-ERR multi bulk protocol error\r\n"));
 +                addReplyError(c,"multi bulk protocol error");
                  resetClient(c);
                  return 1;
              } else {
                      bulklen < 0 || bulklen > 1024*1024*1024)
                  {
                      c->argc--;
 -                    addReplySds(c,sdsnew("-ERR invalid bulk write count\r\n"));
 +                    addReplyError(c,"invalid bulk write count");
                      resetClient(c);
                      return 1;
                  }
       * such wrong arity, bad command name and so forth. */
      cmd = lookupCommand(c->argv[0]->ptr);
      if (!cmd) {
 -        addReplySds(c,
 -            sdscatprintf(sdsempty(), "-ERR unknown command '%s'\r\n",
 -                (char*)c->argv[0]->ptr));
 +        addReplyErrorFormat(c,"unknown command '%s'",
 +            (char*)c->argv[0]->ptr);
          resetClient(c);
          return 1;
      } else if ((cmd->arity > 0 && cmd->arity != c->argc) ||
                 (c->argc < -cmd->arity)) {
 -        addReplySds(c,
 -            sdscatprintf(sdsempty(),
 -                "-ERR wrong number of arguments for '%s' command\r\n",
 -                cmd->name));
 +        addReplyErrorFormat(c,"wrong number of arguments for '%s' command",
 +            cmd->name);
          resetClient(c);
          return 1;
      } else if (cmd->flags & REDIS_CMD_BULK && c->bulklen == -1) {
              bulklen < 0 || bulklen > 1024*1024*1024)
          {
              c->argc--;
 -            addReplySds(c,sdsnew("-ERR invalid bulk write count\r\n"));
 +            addReplyError(c,"invalid bulk write count");
              resetClient(c);
              return 1;
          }
  
      /* Check if the user is authenticated */
      if (server.requirepass && !c->authenticated && cmd->proc != authCommand) {
 -        addReplySds(c,sdsnew("-ERR operation not permitted\r\n"));
 +        addReplyError(c,"operation not permitted");
          resetClient(c);
          return 1;
      }
      if (server.maxmemory && (cmd->flags & REDIS_CMD_DENYOOM) &&
          zmalloc_used_memory() > server.maxmemory)
      {
 -        addReplySds(c,sdsnew("-ERR command not allowed when used memory > 'maxmemory'\r\n"));
 +        addReplyError(c,"command not allowed when used memory > 'maxmemory'");
          resetClient(c);
          return 1;
      }
          &&
          cmd->proc != subscribeCommand && cmd->proc != unsubscribeCommand &&
          cmd->proc != psubscribeCommand && cmd->proc != punsubscribeCommand) {
 -        addReplySds(c,sdsnew("-ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context\r\n"));
 +        addReplyError(c,"only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context");
          resetClient(c);
          return 1;
      }
@@@ -1106,7 -1109,7 +1106,7 @@@ void authCommand(redisClient *c) 
        addReply(c,shared.ok);
      } else {
        c->authenticated = 0;
 -      addReplySds(c,sdscatprintf(sdsempty(),"-ERR invalid password\r\n"));
 +      addReplyError(c,"invalid password");
      }
  }
  
@@@ -1163,6 -1166,7 +1163,7 @@@ sds genRedisInfoString(void) 
          "blocked_clients:%d\r\n"
          "used_memory:%zu\r\n"
          "used_memory_human:%s\r\n"
+         "mem_fragmentation_ratio:%.2f\r\n"
          "changes_since_last_save:%lld\r\n"
          "bgsave_in_progress:%d\r\n"
          "last_save_time:%ld\r\n"
          server.blpop_blocked_clients,
          zmalloc_used_memory(),
          hmem,
+         zmalloc_get_fragmentation_ratio(),
          server.dirty,
          server.bgsavechildpid != -1,
          server.lastsave,
diff --combined src/t_list.c
index 4d948294e7bd57020dee70789a11d441d9ccf274,add1bee167691b1fcc382c1292c728832f6c65bd..41d651f64543d144bc528f312adf2f61d63f7372
@@@ -342,7 -342,7 +342,7 @@@ void pushxGenericCommand(redisClient *c
          server.dirty++;
      }
  
 -    addReplyUlong(c,listTypeLength(subject));
 +    addReplyLongLong(c,listTypeLength(subject));
  }
  
  void lpushxCommand(redisClient *c) {
@@@ -366,7 -366,7 +366,7 @@@ void linsertCommand(redisClient *c) 
  void llenCommand(redisClient *c) {
      robj *o = lookupKeyReadOrReply(c,c->argv[1],shared.czero);
      if (o == NULL || checkType(c,o,REDIS_LIST)) return;
 -    addReplyUlong(c,listTypeLength(o));
 +    addReplyLongLong(c,listTypeLength(o));
  }
  
  void lindexCommand(redisClient *c) {
@@@ -494,7 -494,7 +494,7 @@@ void lrangeCommand(redisClient *c) 
      rangelen = (end-start)+1;
  
      /* Return the result in form of a multi-bulk reply */
 -    addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",rangelen));
 +    addReplyMultiBulkLen(c,rangelen);
      listTypeIterator *li = listTypeInitIterator(o,start,REDIS_TAIL);
      for (j = 0; j < rangelen; j++) {
          redisAssert(listTypeNext(li,&entry));
@@@ -594,7 -594,7 +594,7 @@@ void lremCommand(redisClient *c) 
          decrRefCount(obj);
  
      if (listTypeLength(subject) == 0) dbDelete(c->db,c->argv[1]);
 -    addReplySds(c,sdscatprintf(sdsempty(),":%d\r\n",removed));
 +    addReplyLongLong(c,removed);
      if (removed) touchWatchedKey(c->db,c->argv[1]);
  }
  
@@@ -772,7 -772,7 +772,7 @@@ int handleClientsWaitingListPush(redisC
      redisAssert(ln != NULL);
      receiver = ln->value;
  
 -    addReplySds(receiver,sdsnew("*2\r\n"));
 +    addReplyMultiBulkLen(receiver,2);
      addReplyBulk(receiver,key);
      addReplyBulk(receiver,ele);
      unblockClientWaitingData(receiver);
  /* Blocking RPOP/LPOP */
  void blockingPopGenericCommand(redisClient *c, int where) {
      robj *o;
+     long long lltimeout;
      time_t timeout;
      int j;
  
 -        addReplySds(c,sdsnew("-ERR timeout is negative\r\n"));
+     /* Make sure timeout is an integer value */
+     if (getLongLongFromObjectOrReply(c,c->argv[c->argc-1],&lltimeout,
+             "timeout is not an integer") != REDIS_OK) return;
+     /* Make sure the timeout is not negative */
+     if (lltimeout < 0) {
++        addReplyError(c,"timeout is negative");
+         return;
+     }
      for (j = 1; j < c->argc-1; j++) {
          o = lookupKeyWrite(c->db,c->argv[j]);
          if (o != NULL) {
                       * "real" command will add the last element (the value)
                       * for us. If this souds like an hack to you it's just
                       * because it is... */
 -                    addReplySds(c,sdsnew("*2\r\n"));
 +                    addReplyMultiBulkLen(c,2);
                      addReplyBulk(c,argv[1]);
                      popGenericCommand(c,where);
  
              }
          }
      }
+     /* If we are inside a MULTI/EXEC and the list is empty the only thing
+      * we can do is treating it as a timeout (even with timeout 0). */
+     if (c->flags & REDIS_MULTI) {
+         addReply(c,shared.nullmultibulk);
+         return;
+     }
      /* If the list is empty or the key does not exists we must block */
-     timeout = strtol(c->argv[c->argc-1]->ptr,NULL,10);
+     timeout = lltimeout;
      if (timeout > 0) timeout += time(NULL);
      blockForKeys(c,c->argv+1,c->argc-2,timeout);
  }