hiredis.c 39.2 KB
Newer Older
1
/*
2 3
 * Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
 * Copyright (c) 2010-2011, Pieter Noordhuis <pcnoordhuis at gmail dot com>
P
Pieter Noordhuis 已提交
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
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   * Redistributions of source code must retain the above copyright notice,
 *     this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *   * Neither the name of Redis nor the names of its contributors may be used
 *     to endorse or promote products derived from this software without
 *     specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

32
#include "fmacros.h"
33 34
#include <string.h>
#include <stdlib.h>
H
Henry Rawas 已提交
35 36 37
#ifndef _WIN32
  #include <unistd.h>
#endif
38 39
#include <assert.h>
#include <errno.h>
P
Pieter Noordhuis 已提交
40
#include <ctype.h>
41 42 43 44

#include "hiredis.h"
#include "net.h"
#include "sds.h"
H
Henry Rawas 已提交
45
#ifdef _WIN32
46
  #include "../../src/win32_Interop/win32fixes.h"
H
Henry Rawas 已提交
47
#endif
48 49 50 51 52 53 54

static redisReply *createReplyObject(int type);
static void *createStringObject(const redisReadTask *task, char *str, size_t len);
static void *createArrayObject(const redisReadTask *task, int elements);
static void *createIntegerObject(const redisReadTask *task, long long value);
static void *createNilObject(const redisReadTask *task);

55 56
/* Default set of functions to build the reply. Keep in mind that such a
 * function returning NULL is interpreted as OOM. */
57 58 59 60 61 62 63 64 65 66
static redisReplyObjectFunctions defaultFunctions = {
    createStringObject,
    createArrayObject,
    createIntegerObject,
    createNilObject,
    freeReplyObject
};

/* Create a reply object */
static redisReply *createReplyObject(int type) {
67 68 69 70
    redisReply *r = calloc(1,sizeof(*r));

    if (r == NULL)
        return NULL;
71 72 73 74 75 76 77 78 79 80 81 82 83 84

    r->type = type;
    return r;
}

/* Free a reply object */
void freeReplyObject(void *reply) {
    redisReply *r = reply;
    size_t j;

    switch(r->type) {
    case REDIS_REPLY_INTEGER:
        break; /* Nothing to free */
    case REDIS_REPLY_ARRAY:
85 86 87 88 89 90
        if (r->element != NULL) {
            for (j = 0; j < r->elements; j++)
                if (r->element[j] != NULL)
                    freeReplyObject(r->element[j]);
            free(r->element);
        }
91
        break;
P
Pieter Noordhuis 已提交
92 93 94
    case REDIS_REPLY_ERROR:
    case REDIS_REPLY_STATUS:
    case REDIS_REPLY_STRING:
95 96
        if (r->str != NULL)
            free(r->str);
97 98 99 100 101 102
        break;
    }
    free(r);
}

static void *createStringObject(const redisReadTask *task, char *str, size_t len) {
103 104 105 106 107 108 109 110 111 112 113 114 115 116
    redisReply *r, *parent;
    char *buf;

    r = createReplyObject(task->type);
    if (r == NULL)
        return NULL;

    buf = malloc(len+1);
    if (buf == NULL) {
        freeReplyObject(r);
        return NULL;
    }

    assert(task->type == REDIS_REPLY_ERROR  ||
117 118 119 120
           task->type == REDIS_REPLY_STATUS ||
           task->type == REDIS_REPLY_STRING);

    /* Copy string value */
121 122 123
    memcpy(buf,str,len);
    buf[len] = '\0';
    r->str = buf;
H
Henry Rawas 已提交
124
    r->len = (int)len;
125 126

    if (task->parent) {
127
        parent = task->parent->obj;
128 129 130 131 132 133 134
        assert(parent->type == REDIS_REPLY_ARRAY);
        parent->element[task->idx] = r;
    }
    return r;
}

static void *createArrayObject(const redisReadTask *task, int elements) {
135 136 137 138 139 140 141 142 143 144 145 146 147 148
    redisReply *r, *parent;

    r = createReplyObject(REDIS_REPLY_ARRAY);
    if (r == NULL)
        return NULL;

    if (elements > 0) {
        r->element = calloc(elements,sizeof(redisReply*));
        if (r->element == NULL) {
            freeReplyObject(r);
            return NULL;
        }
    }

149
    r->elements = elements;
150

151
    if (task->parent) {
152
        parent = task->parent->obj;
153 154 155 156 157 158 159
        assert(parent->type == REDIS_REPLY_ARRAY);
        parent->element[task->idx] = r;
    }
    return r;
}

static void *createIntegerObject(const redisReadTask *task, long long value) {
160 161 162 163 164 165
    redisReply *r, *parent;

    r = createReplyObject(REDIS_REPLY_INTEGER);
    if (r == NULL)
        return NULL;

166
    r->integer = value;
167

168
    if (task->parent) {
169
        parent = task->parent->obj;
170 171 172 173 174 175 176
        assert(parent->type == REDIS_REPLY_ARRAY);
        parent->element[task->idx] = r;
    }
    return r;
}

static void *createNilObject(const redisReadTask *task) {
177 178 179 180 181 182
    redisReply *r, *parent;

    r = createReplyObject(REDIS_REPLY_NIL);
    if (r == NULL)
        return NULL;

183
    if (task->parent) {
184
        parent = task->parent->obj;
185 186 187 188 189 190
        assert(parent->type == REDIS_REPLY_ARRAY);
        parent->element[task->idx] = r;
    }
    return r;
}

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
static void __redisReaderSetError(redisReader *r, int type, const char *str) {
    size_t len;

    if (r->reply != NULL && r->fn && r->fn->freeObject) {
        r->fn->freeObject(r->reply);
        r->reply = NULL;
    }

    /* Clear input buffer on errors. */
    if (r->buf != NULL) {
        sdsfree(r->buf);
        r->buf = NULL;
        r->pos = r->len = 0;
    }

    /* Reset task stack. */
    r->ridx = -1;

    /* Set error. */
    r->err = type;
    len = strlen(str);
    len = len < (sizeof(r->errstr)-1) ? len : (sizeof(r->errstr)-1);
    memcpy(r->errstr,str,len);
    r->errstr[len] = '\0';
}

static size_t chrtos(char *buf, size_t size, char byte) {
    size_t len = 0;

    switch(byte) {
    case '\\':
    case '"':
        len = snprintf(buf,size,"\"\\%c\"",byte);
        break;
    case '\n': len = snprintf(buf,size,"\"\\n\""); break;
    case '\r': len = snprintf(buf,size,"\"\\r\""); break;
    case '\t': len = snprintf(buf,size,"\"\\t\""); break;
    case '\a': len = snprintf(buf,size,"\"\\a\""); break;
    case '\b': len = snprintf(buf,size,"\"\\b\""); break;
    default:
        if (isprint(byte))
            len = snprintf(buf,size,"\"%c\"",byte);
        else
            len = snprintf(buf,size,"\"\\x%02x\"",(unsigned char)byte);
        break;
    }

    return len;
}

static void __redisReaderSetErrorProtocolByte(redisReader *r, char byte) {
    char cbuf[8], sbuf[128];

    chrtos(cbuf,sizeof(cbuf),byte);
    snprintf(sbuf,sizeof(sbuf),
        "Protocol error, got %s as reply type byte", cbuf);
    __redisReaderSetError(r,REDIS_ERR_PROTOCOL,sbuf);
}

static void __redisReaderSetErrorOOM(redisReader *r) {
    __redisReaderSetError(r,REDIS_ERR_OOM,"Out of memory");
}

254 255
static char *readBytes(redisReader *r, unsigned int bytes) {
    char *p;
P
Pieter Noordhuis 已提交
256
    if (r->len-r->pos >= bytes) {
257 258 259 260 261 262 263
        p = r->buf+r->pos;
        r->pos += bytes;
        return p;
    }
    return NULL;
}

P
Pieter Noordhuis 已提交
264 265 266
/* Find pointer to \r\n. */
static char *seekNewline(char *s, size_t len) {
    int pos = 0;
H
Henry Rawas 已提交
267
    int _len = (int)(len-1);
P
Pieter Noordhuis 已提交
268 269 270 271 272 273 274 275 276 277

    /* Position should be < len-1 because the character at "pos" should be
     * followed by a \n. Note that strchr cannot be used because it doesn't
     * allow to search a limited length and the buffer that is being searched
     * might not have a trailing NULL character. */
    while (pos < _len) {
        while(pos < _len && s[pos] != '\r') pos++;
        if (s[pos] != '\r') {
            /* Not found. */
            return NULL;
P
Pieter Noordhuis 已提交
278
        } else {
P
Pieter Noordhuis 已提交
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
            if (s[pos+1] == '\n') {
                /* Found. */
                return s+pos;
            } else {
                /* Continue searching. */
                pos++;
            }
        }
    }
    return NULL;
}

/* Read a long long value starting at *s, under the assumption that it will be
 * terminated by \r\n. Ambiguously returns -1 for unexpected input. */
static long long readLongLong(char *s) {
    long long v = 0;
    int dec, mult = 1;
    char c;

    if (*s == '-') {
        mult = -1;
        s++;
    } else if (*s == '+') {
        mult = 1;
        s++;
    }

    while ((c = *(s++)) != '\r') {
        dec = c - '0';
        if (dec >= 0 && dec < 10) {
            v *= 10;
            v += dec;
        } else {
            /* Should not happen... */
            return -1;
P
Pieter Noordhuis 已提交
314 315
        }
    }
P
Pieter Noordhuis 已提交
316 317

    return mult*v;
P
Pieter Noordhuis 已提交
318 319
}

320
static char *readLine(redisReader *r, int *_len) {
P
Pieter Noordhuis 已提交
321
    char *p, *s;
322
    int len;
P
Pieter Noordhuis 已提交
323 324

    p = r->buf+r->pos;
P
Pieter Noordhuis 已提交
325
    s = seekNewline(p,(r->len-r->pos));
326
    if (s != NULL) {
H
Henry Rawas 已提交
327
        len = (int)(s-(r->buf+r->pos));
328 329 330 331 332 333 334 335 336
        r->pos += len+2; /* skip \r\n */
        if (_len) *_len = len;
        return p;
    }
    return NULL;
}

static void moveToNextTask(redisReader *r) {
    redisReadTask *cur, *prv;
P
Pieter Noordhuis 已提交
337 338 339 340 341 342
    while (r->ridx >= 0) {
        /* Return a.s.a.p. when the stack is now empty. */
        if (r->ridx == 0) {
            r->ridx--;
            return;
        }
343

P
Pieter Noordhuis 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356
        cur = &(r->rstack[r->ridx]);
        prv = &(r->rstack[r->ridx-1]);
        assert(prv->type == REDIS_REPLY_ARRAY);
        if (cur->idx == prv->elements-1) {
            r->ridx--;
        } else {
            /* Reset the type because the next item can be anything */
            assert(cur->idx < prv->elements);
            cur->type = -1;
            cur->elements = -1;
            cur->idx++;
            return;
        }
357 358 359 360 361 362 363 364 365 366
    }
}

static int processLineItem(redisReader *r) {
    redisReadTask *cur = &(r->rstack[r->ridx]);
    void *obj;
    char *p;
    int len;

    if ((p = readLine(r,&len)) != NULL) {
P
Pieter Noordhuis 已提交
367 368
        if (cur->type == REDIS_REPLY_INTEGER) {
            if (r->fn && r->fn->createInteger)
P
Pieter Noordhuis 已提交
369
                obj = r->fn->createInteger(cur,readLongLong(p));
P
Pieter Noordhuis 已提交
370 371
            else
                obj = (void*)REDIS_REPLY_INTEGER;
372
        } else {
P
Pieter Noordhuis 已提交
373 374 375 376 377
            /* Type will be error or status. */
            if (r->fn && r->fn->createString)
                obj = r->fn->createString(cur,p,len);
            else
                obj = (void*)(size_t)(cur->type);
378 379
        }

380 381 382 383 384
        if (obj == NULL) {
            __redisReaderSetErrorOOM(r);
            return REDIS_ERR;
        }

P
Pieter Noordhuis 已提交
385 386
        /* Set reply if this is the root object. */
        if (r->ridx == 0) r->reply = obj;
387
        moveToNextTask(r);
388
        return REDIS_OK;
389
    }
390 391

    return REDIS_ERR;
392 393 394 395 396 397
}

static int processBulkItem(redisReader *r) {
    redisReadTask *cur = &(r->rstack[r->ridx]);
    void *obj = NULL;
    char *p, *s;
H
Henry Rawas 已提交
398 399 400
#ifdef _WIN32
    long long len;
#else
401
    long len;
H
Henry Rawas 已提交
402
#endif
403
    unsigned long bytelen;
P
Pieter Noordhuis 已提交
404
    int success = 0;
405 406

    p = r->buf+r->pos;
P
Pieter Noordhuis 已提交
407
    s = seekNewline(p,r->len-r->pos);
408 409
    if (s != NULL) {
        p = r->buf+r->pos;
H
Henry Rawas 已提交
410
        bytelen = (int)(s-(r->buf+r->pos)+2); /* include \r\n */
P
Pieter Noordhuis 已提交
411
        len = readLongLong(p);
412 413 414

        if (len < 0) {
            /* The nil object can always be created. */
P
Pieter Noordhuis 已提交
415 416 417 418
            if (r->fn && r->fn->createNil)
                obj = r->fn->createNil(cur);
            else
                obj = (void*)REDIS_REPLY_NIL;
P
Pieter Noordhuis 已提交
419
            success = 1;
420 421
        } else {
            /* Only continue when the buffer contains the entire bulk item. */
H
Henry Rawas 已提交
422
            bytelen += (unsigned long)len+2; /* include \r\n */
P
Pieter Noordhuis 已提交
423
            if (r->pos+bytelen <= r->len) {
P
Pieter Noordhuis 已提交
424
                if (r->fn && r->fn->createString)
H
Henry Rawas 已提交
425
                    obj = r->fn->createString(cur,s+2,(size_t)len);
P
Pieter Noordhuis 已提交
426 427
                else
                    obj = (void*)REDIS_REPLY_STRING;
P
Pieter Noordhuis 已提交
428
                success = 1;
429 430 431 432
            }
        }

        /* Proceed when obj was created. */
P
Pieter Noordhuis 已提交
433
        if (success) {
434 435 436 437 438
            if (obj == NULL) {
                __redisReaderSetErrorOOM(r);
                return REDIS_ERR;
            }

439
            r->pos += bytelen;
P
Pieter Noordhuis 已提交
440 441 442

            /* Set reply if this is the root object. */
            if (r->ridx == 0) r->reply = obj;
443
            moveToNextTask(r);
444
            return REDIS_OK;
445 446
        }
    }
447 448

    return REDIS_ERR;
449 450 451 452 453 454
}

static int processMultiBulkItem(redisReader *r) {
    redisReadTask *cur = &(r->rstack[r->ridx]);
    void *obj;
    char *p;
H
Henry Rawas 已提交
455 456 457
#ifdef _WIN32
    long long elements;
#else
458
    long elements;
H
Henry Rawas 已提交
459
#endif
P
Pieter Noordhuis 已提交
460 461
    int root = 0;

A
antirez 已提交
462
    /* Set error for nested multi bulks with depth > 7 */
463
    if (r->ridx == 8) {
464
        __redisReaderSetError(r,REDIS_ERR_PROTOCOL,
465
            "No support for nested multi bulk replies with depth > 7");
466
        return REDIS_ERR;
P
Pieter Noordhuis 已提交
467
    }
468 469

    if ((p = readLine(r,NULL)) != NULL) {
P
Pieter Noordhuis 已提交
470 471 472
        elements = readLongLong(p);
        root = (r->ridx == 0);

473
        if (elements == -1) {
P
Pieter Noordhuis 已提交
474 475 476 477
            if (r->fn && r->fn->createNil)
                obj = r->fn->createNil(cur);
            else
                obj = (void*)REDIS_REPLY_NIL;
478 479 480 481 482 483

            if (obj == NULL) {
                __redisReaderSetErrorOOM(r);
                return REDIS_ERR;
            }

484 485
            moveToNextTask(r);
        } else {
P
Pieter Noordhuis 已提交
486
            if (r->fn && r->fn->createArray)
H
Henry Rawas 已提交
487
                obj = r->fn->createArray(cur,(int)elements);
P
Pieter Noordhuis 已提交
488 489
            else
                obj = (void*)REDIS_REPLY_ARRAY;
490

491 492 493 494 495
            if (obj == NULL) {
                __redisReaderSetErrorOOM(r);
                return REDIS_ERR;
            }

496 497
            /* Modify task stack when there are more than 0 elements. */
            if (elements > 0) {
H
Henry Rawas 已提交
498
                cur->elements = (int)elements;
P
Pieter Noordhuis 已提交
499
                cur->obj = obj;
500 501 502 503
                r->ridx++;
                r->rstack[r->ridx].type = -1;
                r->rstack[r->ridx].elements = -1;
                r->rstack[r->ridx].idx = 0;
P
Pieter Noordhuis 已提交
504 505 506
                r->rstack[r->ridx].obj = NULL;
                r->rstack[r->ridx].parent = cur;
                r->rstack[r->ridx].privdata = r->privdata;
507 508 509 510 511
            } else {
                moveToNextTask(r);
            }
        }

P
Pieter Noordhuis 已提交
512 513
        /* Set reply if this is the root object. */
        if (root) r->reply = obj;
514
        return REDIS_OK;
515
    }
516 517

    return REDIS_ERR;
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
}

static int processItem(redisReader *r) {
    redisReadTask *cur = &(r->rstack[r->ridx]);
    char *p;

    /* check if we need to read type */
    if (cur->type < 0) {
        if ((p = readBytes(r,1)) != NULL) {
            switch (p[0]) {
            case '-':
                cur->type = REDIS_REPLY_ERROR;
                break;
            case '+':
                cur->type = REDIS_REPLY_STATUS;
                break;
            case ':':
                cur->type = REDIS_REPLY_INTEGER;
                break;
            case '$':
                cur->type = REDIS_REPLY_STRING;
                break;
            case '*':
                cur->type = REDIS_REPLY_ARRAY;
                break;
            default:
544 545
                __redisReaderSetErrorProtocolByte(r,*p);
                return REDIS_ERR;
546 547 548
            }
        } else {
            /* could not consume 1 byte */
549
            return REDIS_ERR;
550 551 552 553 554 555 556 557 558 559 560 561 562 563
        }
    }

    /* process typed item */
    switch(cur->type) {
    case REDIS_REPLY_ERROR:
    case REDIS_REPLY_STATUS:
    case REDIS_REPLY_INTEGER:
        return processLineItem(r);
    case REDIS_REPLY_STRING:
        return processBulkItem(r);
    case REDIS_REPLY_ARRAY:
        return processMultiBulkItem(r);
    default:
P
Pieter Noordhuis 已提交
564
        assert(NULL);
565
        return REDIS_ERR; /* Avoid warning. */
566 567 568
    }
}

569 570
redisReader *redisReaderCreate(void) {
    redisReader *r;
571

572 573 574
    r = calloc(sizeof(redisReader),1);
    if (r == NULL)
        return NULL;
P
Pieter Noordhuis 已提交
575

576 577 578 579
    r->err = 0;
    r->errstr[0] = '\0';
    r->fn = &defaultFunctions;
    r->buf = sdsempty();
A
antirez 已提交
580
    r->maxbuf = REDIS_READER_MAX_BUF;
581 582 583
    if (r->buf == NULL) {
        free(r);
        return NULL;
P
Pieter Noordhuis 已提交
584 585
    }

586 587
    r->ridx = -1;
    return r;
588 589
}

590 591
void redisReaderFree(redisReader *r) {
    if (r->reply != NULL && r->fn && r->fn->freeObject)
592 593 594 595 596 597
        r->fn->freeObject(r->reply);
    if (r->buf != NULL)
        sdsfree(r->buf);
    free(r);
}

598 599
int redisReaderFeed(redisReader *r, const char *buf, size_t len) {
    sds newbuf;
600

601 602 603
    /* Return early when this reader is in an erroneous state. */
    if (r->err)
        return REDIS_ERR;
604 605

    /* Copy the provided buffer. */
P
Pieter Noordhuis 已提交
606
    if (buf != NULL && len >= 1) {
P
Pieter Noordhuis 已提交
607
        /* Destroy internal buffer when it is empty and is quite large. */
A
antirez 已提交
608
        if (r->len == 0 && r->maxbuf != 0 && sdsavail(r->buf) > r->maxbuf) {
P
Pieter Noordhuis 已提交
609 610 611
            sdsfree(r->buf);
            r->buf = sdsempty();
            r->pos = 0;
612 613 614 615 616 617 618 619 620

            /* r->buf should not be NULL since we just free'd a larger one. */
            assert(r->buf != NULL);
        }

        newbuf = sdscatlen(r->buf,buf,len);
        if (newbuf == NULL) {
            __redisReaderSetErrorOOM(r);
            return REDIS_ERR;
P
Pieter Noordhuis 已提交
621
        }
622 623

        r->buf = newbuf;
P
Pieter Noordhuis 已提交
624 625
        r->len = sdslen(r->buf);
    }
626 627

    return REDIS_OK;
628 629
}

630 631 632 633 634 635 636 637
int redisReaderGetReply(redisReader *r, void **reply) {
    /* Default target pointer to NULL. */
    if (reply != NULL)
        *reply = NULL;

    /* Return early when this reader is in an erroneous state. */
    if (r->err)
        return REDIS_ERR;
638 639

    /* When the buffer is empty, there will never be a reply. */
P
Pieter Noordhuis 已提交
640
    if (r->len == 0)
641 642 643 644 645 646 647
        return REDIS_OK;

    /* Set first item to process when the stack is empty. */
    if (r->ridx == -1) {
        r->rstack[0].type = -1;
        r->rstack[0].elements = -1;
        r->rstack[0].idx = -1;
P
Pieter Noordhuis 已提交
648 649 650
        r->rstack[0].obj = NULL;
        r->rstack[0].parent = NULL;
        r->rstack[0].privdata = r->privdata;
651 652 653 654 655
        r->ridx = 0;
    }

    /* Process items in reply. */
    while (r->ridx >= 0)
656
        if (processItem(r) != REDIS_OK)
657 658
            break;

659 660 661 662
    /* Return ASAP when an error occurred. */
    if (r->err)
        return REDIS_ERR;

P
Pieter Noordhuis 已提交
663 664 665
    /* Discard part of the buffer when we've consumed at least 1k, to avoid
     * doing unnecessary calls to memmove() in sds.c. */
    if (r->pos >= 1024) {
666
        sdsrange(r->buf,(int)(r->pos),-1);
667
        r->pos = 0;
P
Pieter Noordhuis 已提交
668
        r->len = sdslen(r->buf);
669 670 671 672
    }

    /* Emit a reply when there is one. */
    if (r->ridx == -1) {
673 674
        if (reply != NULL)
            *reply = r->reply;
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
        r->reply = NULL;
    }
    return REDIS_OK;
}

/* Calculate the number of bytes needed to represent an integer as string. */
static int intlen(int i) {
    int len = 0;
    if (i < 0) {
        len++;
        i = -i;
    }
    do {
        len++;
        i /= 10;
    } while(i);
    return len;
}

694 695
/* Helper that calculates the bulk length given a certain string length. */
static size_t bulklen(size_t len) {
H
Henry Rawas 已提交
696
    return (size_t)(1+intlen((int)len)+2+(int)len+2);
697 698 699
}

int redisvFormatCommand(char **target, const char *format, va_list ap) {
700
    const char *c = format;
701 702
    char *cmd = NULL; /* final command */
    int pos; /* position in final command */
703
    sds curarg, newarg; /* current argument */
P
Pieter Noordhuis 已提交
704
    int touched = 0; /* was the current argument touched? */
705 706
    char **curargv = NULL, **newargv = NULL;
    int argc = 0;
707
    int totlen = 0;
708
    int j;
709 710 711 712 713 714

    /* Abort if there is not target to set */
    if (target == NULL)
        return -1;

    /* Build the command string accordingly to protocol */
715 716 717 718
    curarg = sdsempty();
    if (curarg == NULL)
        return -1;

719 720 721
    while(*c != '\0') {
        if (*c != '%' || c[1] == '\0') {
            if (*c == ' ') {
P
Pieter Noordhuis 已提交
722
                if (touched) {
723 724 725 726
                    newargv = realloc(curargv,sizeof(char*)*(argc+1));
                    if (newargv == NULL) goto err;
                    curargv = newargv;
                    curargv[argc++] = curarg;
H
Henry Rawas 已提交
727
                    totlen += (int)bulklen(sdslen(curarg));
728 729 730 731

                    /* curarg is put in argv so it can be overwritten. */
                    curarg = sdsempty();
                    if (curarg == NULL) goto err;
P
Pieter Noordhuis 已提交
732
                    touched = 0;
733 734
                }
            } else {
735 736 737
                newarg = sdscatlen(curarg,c,1);
                if (newarg == NULL) goto err;
                curarg = newarg;
P
Pieter Noordhuis 已提交
738
                touched = 1;
739 740
            }
        } else {
741 742 743 744 745 746
            char *arg;
            size_t size;

            /* Set newarg so it can be checked even if it is not touched. */
            newarg = curarg;

747 748 749
            switch(c[1]) {
            case 's':
                arg = va_arg(ap,char*);
P
Pieter Noordhuis 已提交
750 751
                size = strlen(arg);
                if (size > 0)
752
                    newarg = sdscatlen(curarg,arg,size);
753 754 755 756
                break;
            case 'b':
                arg = va_arg(ap,char*);
                size = va_arg(ap,size_t);
P
Pieter Noordhuis 已提交
757
                if (size > 0)
758
                    newarg = sdscatlen(curarg,arg,size);
759 760
                break;
            case '%':
761
                newarg = sdscat(curarg,"%");
762
                break;
P
Pieter Noordhuis 已提交
763 764 765
            default:
                /* Try to detect printf format */
                {
766
                    static const char intfmts[] = "diouxX";
P
Pieter Noordhuis 已提交
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
                    char _format[16];
                    const char *_p = c+1;
                    size_t _l = 0;
                    va_list _cpy;

                    /* Flags */
                    if (*_p != '\0' && *_p == '#') _p++;
                    if (*_p != '\0' && *_p == '0') _p++;
                    if (*_p != '\0' && *_p == '-') _p++;
                    if (*_p != '\0' && *_p == ' ') _p++;
                    if (*_p != '\0' && *_p == '+') _p++;

                    /* Field width */
                    while (*_p != '\0' && isdigit(*_p)) _p++;

                    /* Precision */
                    if (*_p == '.') {
                        _p++;
                        while (*_p != '\0' && isdigit(*_p)) _p++;
                    }

788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
                    /* Copy va_list before consuming with va_arg */
                    va_copy(_cpy,ap);

                    /* Integer conversion (without modifiers) */
                    if (strchr(intfmts,*_p) != NULL) {
                        va_arg(ap,int);
                        goto fmt_valid;
                    }

                    /* Double conversion (without modifiers) */
                    if (strchr("eEfFgGaA",*_p) != NULL) {
                        va_arg(ap,double);
                        goto fmt_valid;
                    }

                    /* Size: char */
                    if (_p[0] == 'h' && _p[1] == 'h') {
                        _p += 2;
                        if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
                            va_arg(ap,int); /* char gets promoted to int */
                            goto fmt_valid;
P
Pieter Noordhuis 已提交
809
                        }
810
                        goto fmt_invalid;
P
Pieter Noordhuis 已提交
811 812
                    }

813 814 815 816 817 818
                    /* Size: short */
                    if (_p[0] == 'h') {
                        _p += 1;
                        if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
                            va_arg(ap,int); /* short gets promoted to int */
                            goto fmt_valid;
P
Pieter Noordhuis 已提交
819
                        }
820
                        goto fmt_invalid;
P
Pieter Noordhuis 已提交
821 822
                    }

823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
                    /* Size: long long */
                    if (_p[0] == 'l' && _p[1] == 'l') {
                        _p += 2;
                        if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
                            va_arg(ap,long long);
                            goto fmt_valid;
                        }
                        goto fmt_invalid;
                    }

                    /* Size: long */
                    if (_p[0] == 'l') {
                        _p += 1;
                        if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
                            va_arg(ap,long);
                            goto fmt_valid;
                        }
                        goto fmt_invalid;
                    }

                fmt_invalid:
                    va_end(_cpy);
                    goto err;

                fmt_valid:
                    _l = (_p+1)-c;
                    if (_l < sizeof(_format)-2) {
                        memcpy(_format,c,_l);
                        _format[_l] = '\0';
                        newarg = sdscatvprintf(curarg,_format,_cpy);

                        /* Update current position (note: outer blocks
                         * increment c twice so compensate here) */
                        c = _p-1;
                    }

                    va_end(_cpy);
                    break;
P
Pieter Noordhuis 已提交
861
                }
862
            }
863 864 865 866

            if (newarg == NULL) goto err;
            curarg = newarg;

P
Pieter Noordhuis 已提交
867
            touched = 1;
868 869 870 871 872 873
            c++;
        }
        c++;
    }

    /* Add the last argument if needed */
P
Pieter Noordhuis 已提交
874
    if (touched) {
875 876 877 878
        newargv = realloc(curargv,sizeof(char*)*(argc+1));
        if (newargv == NULL) goto err;
        curargv = newargv;
        curargv[argc++] = curarg;
H
Henry Rawas 已提交
879
        totlen += (int)bulklen(sdslen(curarg));
880
    } else {
881
        sdsfree(curarg);
882 883
    }

884 885 886
    /* Clear curarg because it was put in curargv or was free'd. */
    curarg = NULL;

887 888 889 890
    /* Add bytes needed to hold multi bulk count */
    totlen += 1+intlen(argc)+2;

    /* Build the command at protocol level */
H
Henry Rawas 已提交
891
    cmd = (char *)malloc(totlen+1);
892 893
    if (cmd == NULL) goto err;

894 895
    pos = sprintf(cmd,"*%d\r\n",argc);
    for (j = 0; j < argc; j++) {
H
Henry Rawas 已提交
896 897 898
#ifdef _WIN32
        pos += sprintf(cmd+pos,"$%llu\r\n",(unsigned long long)sdslen(curargv[j]));
#else
899
        pos += sprintf(cmd+pos,"$%zu\r\n",sdslen(curargv[j]));
H
Henry Rawas 已提交
900
#endif
901
        memcpy(cmd+pos,curargv[j],sdslen(curargv[j]));
H
Henry Rawas 已提交
902
        pos += (int)sdslen(curargv[j]);
903
        sdsfree(curargv[j]);
904 905 906 907
        cmd[pos++] = '\r';
        cmd[pos++] = '\n';
    }
    assert(pos == totlen);
908 909 910
    cmd[pos] = '\0';

    free(curargv);
911 912
    *target = cmd;
    return totlen;
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927

err:
    while(argc--)
        sdsfree(curargv[argc]);
    free(curargv);

    if (curarg != NULL)
        sdsfree(curarg);

    /* No need to check cmd since it is the last statement that can fail,
     * but do it anyway to be as defensive as possible. */
    if (cmd != NULL)
        free(cmd);

    return -1;
928 929 930 931 932 933 934 935 936
}

/* Format a command according to the Redis protocol. This function
 * takes a format similar to printf:
 *
 * %s represents a C null terminated string you want to interpolate
 * %b represents a binary safe string
 *
 * When using %b you need to provide both the pointer to the string
937
 * and the length in bytes as a size_t. Examples:
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
 *
 * len = redisFormatCommand(target, "GET %s", mykey);
 * len = redisFormatCommand(target, "SET %s %b", mykey, myval, myvallen);
 */
int redisFormatCommand(char **target, const char *format, ...) {
    va_list ap;
    int len;
    va_start(ap,format);
    len = redisvFormatCommand(target,format,ap);
    va_end(ap);
    return len;
}

/* Format a command according to the Redis protocol. This function takes the
 * number of arguments, an array with arguments and an array with their
 * lengths. If the latter is set to NULL, strlen will be used to compute the
 * argument lengths.
 */
int redisFormatCommandArgv(char **target, int argc, const char **argv, const size_t *argvlen) {
    char *cmd = NULL; /* final command */
    int pos; /* position in final command */
    size_t len;
    int totlen, j;

    /* Calculate number of bytes needed for the command */
    totlen = 1+intlen(argc)+2;
    for (j = 0; j < argc; j++) {
        len = argvlen ? argvlen[j] : strlen(argv[j]);
H
Henry Rawas 已提交
966
        totlen += (int)bulklen(len);
967 968 969 970
    }

    /* Build the command at protocol level */
    cmd = malloc(totlen+1);
971 972 973
    if (cmd == NULL)
        return -1;

974 975 976
    pos = sprintf(cmd,"*%d\r\n",argc);
    for (j = 0; j < argc; j++) {
        len = argvlen ? argvlen[j] : strlen(argv[j]);
H
Henry Rawas 已提交
977 978 979
#ifdef _WIN32
        pos += sprintf(cmd+pos,"$%llu\r\n",(unsigned long long)len);
#else
980
        pos += sprintf(cmd+pos,"$%zu\r\n",len);
H
Henry Rawas 已提交
981
#endif
982
        memcpy(cmd+pos,argv[j],len);
H
Henry Rawas 已提交
983
        pos += (int)len;
984 985 986 987
        cmd[pos++] = '\r';
        cmd[pos++] = '\n';
    }
    assert(pos == totlen);
988 989
    cmd[pos] = '\0';

990 991 992 993
    *target = cmd;
    return totlen;
}

994 995 996
void __redisSetError(redisContext *c, int type, const char *str) {
    size_t len;

997
    c->err = type;
998 999 1000 1001 1002
    if (str != NULL) {
        len = strlen(str);
        len = len < (sizeof(c->errstr)-1) ? len : (sizeof(c->errstr)-1);
        memcpy(c->errstr,str,len);
        c->errstr[len] = '\0';
1003 1004 1005
    } else {
        /* Only REDIS_ERR_IO may lack a description! */
        assert(type == REDIS_ERR_IO);
1006
        strerror_r(errno,c->errstr,sizeof(c->errstr));
1007 1008 1009
    }
}

P
Pieter Noordhuis 已提交
1010
static redisContext *redisContextInit(void) {
1011 1012 1013 1014 1015 1016
    redisContext *c;

    c = calloc(1,sizeof(redisContext));
    if (c == NULL)
        return NULL;

1017
    c->err = 0;
1018
    c->errstr[0] = '\0';
1019
    c->obuf = sdsempty();
1020
    c->reader = redisReaderCreate();
1021 1022 1023 1024
    return c;
}

void redisFree(redisContext *c) {
J
Jonathan Pickett 已提交
1025
    if (c->fd > 0) {
1026
        close(c->fd);
J
Jonathan Pickett 已提交
1027
    }
1028 1029 1030
    if (c->obuf != NULL)
        sdsfree(c->obuf);
    if (c->reader != NULL)
1031
        redisReaderFree(c->reader);
1032 1033 1034
    free(c);
}

1035 1036 1037 1038 1039 1040 1041
int redisFreeKeepFd(redisContext *c) {
	int fd = c->fd;
	c->fd = -1;
	redisFree(c);
	return fd;
}

1042 1043 1044 1045
/* Connect to a Redis instance. On error the field error in the returned
 * context will be set to the return value of the error function.
 * When no set of reply functions is given, the default set will be used. */
redisContext *redisConnect(const char *ip, int port) {
1046 1047 1048 1049 1050 1051
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

1052
    c->flags |= REDIS_BLOCK;
P
Pieter Noordhuis 已提交
1053 1054 1055 1056
    redisContextConnectTcp(c,ip,port,NULL);
    return c;
}

1057 1058 1059 1060 1061 1062 1063
redisContext *redisConnectWithTimeout(const char *ip, int port, const struct timeval tv) {
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

P
Pieter Noordhuis 已提交
1064 1065
    c->flags |= REDIS_BLOCK;
    redisContextConnectTcp(c,ip,port,&tv);
1066 1067 1068 1069
    return c;
}

redisContext *redisConnectNonBlock(const char *ip, int port) {
1070 1071 1072 1073 1074 1075
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

1076
    c->flags &= ~REDIS_BLOCK;
P
Pieter Noordhuis 已提交
1077
    redisContextConnectTcp(c,ip,port,NULL);
1078 1079 1080
    return c;
}

1081 1082
redisContext *redisConnectBindNonBlock(const char *ip, int port,
                                       const char *source_addr) {
1083
    redisContext *c = redisContextInit();
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
    c->flags &= ~REDIS_BLOCK;
    redisContextConnectBindTcp(c,ip,port,NULL,source_addr);
    return c;
}

redisContext *redisConnectUnix(const char *path) {
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

1096
    c->flags |= REDIS_BLOCK;
P
Pieter Noordhuis 已提交
1097 1098 1099 1100
    redisContextConnectUnix(c,path,NULL);
    return c;
}

1101 1102 1103 1104 1105 1106 1107
redisContext *redisConnectUnixWithTimeout(const char *path, const struct timeval tv) {
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

P
Pieter Noordhuis 已提交
1108 1109
    c->flags |= REDIS_BLOCK;
    redisContextConnectUnix(c,path,&tv);
1110 1111 1112 1113
    return c;
}

redisContext *redisConnectUnixNonBlock(const char *path) {
1114 1115 1116 1117 1118 1119
    redisContext *c;

    c = redisContextInit();
    if (c == NULL)
        return NULL;

1120
    c->flags &= ~REDIS_BLOCK;
P
Pieter Noordhuis 已提交
1121
    redisContextConnectUnix(c,path,NULL);
1122 1123 1124
    return c;
}

1125 1126
redisContext *redisConnectFd(int fd) {
    redisContext *c;
H
Henry Rawas 已提交
1127

1128 1129 1130 1131 1132 1133
    c = redisContextInit();
    if (c == NULL)
        return NULL;

    c->fd = fd;
    c->flags |= REDIS_BLOCK | REDIS_CONNECTED;
H
Henry Rawas 已提交
1134 1135 1136
    return c;
}

1137
#ifdef _WIN32
1138
redisContext *redisPreConnectNonBlock(const char *ip, int port, SOCKADDR_STORAGE *ss) {
1139 1140 1141
    redisContext *c = redisContextInit();
    c->fd = -1;
    c->flags &= ~REDIS_BLOCK;
1142
    redisContextPreConnectTcp(c, ip, port, NULL, ss);
1143 1144 1145 1146
    return c;
}
#endif

P
Pieter Noordhuis 已提交
1147
/* Set read/write timeout on a blocking socket. */
1148
int redisSetTimeout(redisContext *c, const struct timeval tv) {
P
Pieter Noordhuis 已提交
1149 1150 1151 1152 1153
    if (c->flags & REDIS_BLOCK)
        return redisContextSetTimeout(c,tv);
    return REDIS_ERR;
}

1154 1155 1156 1157 1158 1159 1160
/* Enable connection KeepAlive. */
int redisEnableKeepAlive(redisContext *c) {
    if (redisKeepAlive(c, REDIS_KEEPALIVE_INTERVAL) != REDIS_OK)
        return REDIS_ERR;
    return REDIS_OK;
}

1161 1162 1163 1164 1165 1166
/* Use this function to handle a read event on the descriptor. It will try
 * and read some bytes from the socket and feed them to the reply parser.
 *
 * After this function is called, you may use redisContextReadReply to
 * see if there is a reply available. */
int redisBufferRead(redisContext *c) {
1167
    char buf[1024*16];
1168 1169 1170 1171 1172 1173 1174
    int nread;

    /* Return early when the context has seen an error. */
    if (c->err)
        return REDIS_ERR;

    nread = read(c->fd,buf,sizeof(buf));
1175
    if (nread == -1) {
1176
        if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {
1177 1178 1179 1180 1181 1182
            /* Try again later */
        } else {
            __redisSetError(c,REDIS_ERR_IO,NULL);
            return REDIS_ERR;
        }
    } else if (nread == 0) {
1183
        __redisSetError(c,REDIS_ERR_EOF,"Server closed the connection");
1184 1185
        return REDIS_ERR;
    } else {
1186 1187 1188 1189
        if (redisReaderFeed(c->reader,buf,nread) != REDIS_OK) {
            __redisSetError(c,c->reader->err,c->reader->errstr);
            return REDIS_ERR;
        }
1190 1191 1192 1193
    }
    return REDIS_OK;
}

1194
#ifdef _WIN32
H
Henry Rawas 已提交
1195 1196 1197 1198 1199
/* Use this function if the caller has already read the data. It will
 * feed bytes to the reply parser.
 *
 * After this function is called, you may use redisContextReadReply to
 * see if there is a reply available. */
1200
int redisBufferReadDone(redisContext *c, char *buf, ssize_t nread) {
1201 1202 1203 1204 1205 1206 1207 1208
    if (nread == -1) {
        if (errno == EAGAIN && !(c->flags & REDIS_BLOCK)) {
            /* Try again later */
        } else {
            __redisSetError(c,REDIS_ERR_IO,NULL);
            return REDIS_ERR;
        }
    } else if (nread == 0) {
H
Henry Rawas 已提交
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
        __redisSetError(c,REDIS_ERR_EOF, sdsnew("Server closed the connection"));
        return REDIS_ERR;
    } else {
        if (redisReaderFeed(c->reader,buf,nread) != REDIS_OK) {
            __redisSetError(c,c->reader->err,c->reader->errstr);
            return REDIS_ERR;
        }
    }
    return REDIS_OK;
}
1219
#endif
H
Henry Rawas 已提交
1220

1221 1222 1223 1224
/* Write the output buffer to the socket.
 *
 * Returns REDIS_OK when the buffer is empty, or (a part of) the buffer was
 * succesfully written to the socket. When the buffer is empty after the
1225
 * write operation, "done" is set to 1 (if given).
1226 1227
 *
 * Returns REDIS_ERR if an error occured trying to write and sets
1228
 * c->errstr to hold the appropriate error string.
1229 1230 1231
 */
int redisBufferWrite(redisContext *c, int *done) {
    int nwritten;
1232 1233 1234 1235 1236

    /* Return early when the context has seen an error. */
    if (c->err)
        return REDIS_ERR;

1237 1238 1239
    if (sdslen(c->obuf) > 0) {
        nwritten = write(c->fd,c->obuf,sdslen(c->obuf));
        if (nwritten == -1) {
1240
            if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
                /* Try again later */
            } else {
                __redisSetError(c,REDIS_ERR_IO,NULL);
                return REDIS_ERR;
            }
        } else if (nwritten > 0) {
            if (nwritten == (signed)sdslen(c->obuf)) {
                sdsfree(c->obuf);
                c->obuf = sdsempty();
            } else {
1251
                sdsrange(c->obuf,nwritten,-1);
1252 1253 1254 1255 1256 1257 1258
            }
        }
    }
    if (done != NULL) *done = (sdslen(c->obuf) == 0);
    return REDIS_OK;
}

1259 1260 1261 1262 1263 1264 1265 1266 1267
#ifdef _WIN32
/* Use this function if the caller has already written the data.
 */
int redisBufferWriteDone(redisContext *c, int nwritten, int *done) {
    if (nwritten > 0) {
        if (nwritten == (signed)sdslen(c->obuf)) {
            sdsfree(c->obuf);
            c->obuf = sdsempty();
        } else {
1268
            sdsrange(c->obuf, nwritten, -1);
1269 1270 1271 1272 1273 1274 1275
        }
    }
    if (done != NULL) *done = (sdslen(c->obuf) == 0);
    return REDIS_OK;
}
#endif

1276 1277 1278
/* Internal helper function to try and get a reply from the reader,
 * or set an error in the context otherwise. */
int redisGetReplyFromReader(redisContext *c, void **reply) {
1279 1280
    if (redisReaderGetReply(c->reader,reply) == REDIS_ERR) {
        __redisSetError(c,c->reader->err,c->reader->errstr);
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
        return REDIS_ERR;
    }
    return REDIS_OK;
}

int redisGetReply(redisContext *c, void **reply) {
    int wdone = 0;
    void *aux = NULL;

    /* Try to read pending replies */
    if (redisGetReplyFromReader(c,&aux) == REDIS_ERR)
        return REDIS_ERR;

    /* For the blocking context, flush output buffer and read reply */
    if (aux == NULL && c->flags & REDIS_BLOCK) {
        /* Write until done */
        do {
            if (redisBufferWrite(c,&wdone) == REDIS_ERR)
                return REDIS_ERR;
        } while (!wdone);

        /* Read until there is a reply */
        do {
            if (redisBufferRead(c) == REDIS_ERR)
                return REDIS_ERR;
            if (redisGetReplyFromReader(c,&aux) == REDIS_ERR)
                return REDIS_ERR;
        } while (aux == NULL);
    }

    /* Set reply object */
    if (reply != NULL) *reply = aux;
    return REDIS_OK;
}


/* Helper function for the redisAppendCommand* family of functions.
 *
 * Write a formatted command to the output buffer. When this family
 * is used, you need to call redisGetReply yourself to retrieve
 * the reply (or replies in pub/sub).
 */
1323
int __redisAppendCommand(redisContext *c, const char *cmd, size_t len) {
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
    sds newbuf;

    newbuf = sdscatlen(c->obuf,cmd,len);
    if (newbuf == NULL) {
        __redisSetError(c,REDIS_ERR_OOM,"Out of memory");
        return REDIS_ERR;
    }

    c->obuf = newbuf;
    return REDIS_OK;
1334 1335
}

1336 1337 1338 1339 1340 1341 1342 1343 1344
int redisAppendFormattedCommand(redisContext *c, const char *cmd, size_t len) {

    if (__redisAppendCommand(c, cmd, len) != REDIS_OK) {
        return REDIS_ERR;
    }

    return REDIS_OK;
}

1345
int redisvAppendCommand(redisContext *c, const char *format, va_list ap) {
1346 1347
    char *cmd;
    int len;
1348

1349
    len = redisvFormatCommand(&cmd,format,ap);
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
    if (len == -1) {
        __redisSetError(c,REDIS_ERR_OOM,"Out of memory");
        return REDIS_ERR;
    }

    if (__redisAppendCommand(c,cmd,len) != REDIS_OK) {
        free(cmd);
        return REDIS_ERR;
    }

1360
    free(cmd);
1361
    return REDIS_OK;
1362 1363
}

1364
int redisAppendCommand(redisContext *c, const char *format, ...) {
1365
    va_list ap;
1366 1367
    int ret;

1368
    va_start(ap,format);
1369
    ret = redisvAppendCommand(c,format,ap);
1370
    va_end(ap);
1371
    return ret;
1372 1373
}

1374
int redisAppendCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen) {
1375 1376
    char *cmd;
    int len;
1377

1378
    len = redisFormatCommandArgv(&cmd,argc,argv,argvlen);
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
    if (len == -1) {
        __redisSetError(c,REDIS_ERR_OOM,"Out of memory");
        return REDIS_ERR;
    }

    if (__redisAppendCommand(c,cmd,len) != REDIS_OK) {
        free(cmd);
        return REDIS_ERR;
    }

1389
    free(cmd);
1390
    return REDIS_OK;
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
}

/* Helper function for the redisCommand* family of functions.
 *
 * Write a formatted command to the output buffer. If the given context is
 * blocking, immediately read the reply into the "reply" pointer. When the
 * context is non-blocking, the "reply" pointer will not be used and the
 * command is simply appended to the write buffer.
 *
 * Returns the reply when a reply was succesfully retrieved. Returns NULL
 * otherwise. When NULL is returned in a blocking context, the error field
 * in the context will be set.
 */
1404 1405
static void *__redisBlockForReply(redisContext *c) {
    void *reply;
1406 1407

    if (c->flags & REDIS_BLOCK) {
1408 1409 1410
        if (redisGetReply(c,&reply) != REDIS_OK)
            return NULL;
        return reply;
1411 1412 1413 1414 1415
    }
    return NULL;
}

void *redisvCommand(redisContext *c, const char *format, va_list ap) {
1416 1417 1418
    if (redisvAppendCommand(c,format,ap) != REDIS_OK)
        return NULL;
    return __redisBlockForReply(c);
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
}

void *redisCommand(redisContext *c, const char *format, ...) {
    va_list ap;
    void *reply = NULL;
    va_start(ap,format);
    reply = redisvCommand(c,format,ap);
    va_end(ap);
    return reply;
}

void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen) {
1431 1432 1433
    if (redisAppendCommandArgv(c,argc,argv,argvlen) != REDIS_OK)
        return NULL;
    return __redisBlockForReply(c);
1434
}