hiredis.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
  3. * Copyright (c) 2010, Pieter Noordhuis <pcnoordhuis at gmail dot com>
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * * Redistributions of source code must retain the above copyright notice,
  11. * this list of conditions and the following disclaimer.
  12. * * Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * * Neither the name of Redis nor the names of its contributors may be used
  16. * to endorse or promote products derived from this software without
  17. * specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. * POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef __HIREDIS_H
  32. #define __HIREDIS_H
  33. #include <stdio.h> /* for size_t */
  34. #include <stdarg.h> /* for va_list */
  35. #define HIREDIS_MAJOR 0
  36. #define HIREDIS_MINOR 9
  37. #define HIREDIS_PATCH 2
  38. #define REDIS_ERR -1
  39. #define REDIS_OK 0
  40. /* When an error occurs, the err flag in a context is set to hold the type of
  41. * error that occured. REDIS_ERR_IO means there was an I/O error and you
  42. * should use the "errno" variable to find out what is wrong.
  43. * For other values, the "errstr" field will hold a description. */
  44. #define REDIS_ERR_IO 1 /* error in read or write */
  45. #define REDIS_ERR_EOF 3 /* eof */
  46. #define REDIS_ERR_PROTOCOL 4 /* protocol error */
  47. #define REDIS_ERR_OTHER 2 /* something else */
  48. /* Connection type can be blocking or non-blocking and is set in the
  49. * least significant bit of the flags field in redisContext. */
  50. #define REDIS_BLOCK 0x1
  51. /* Connection may be disconnected before being free'd. The second bit
  52. * in the flags field is set when the context is connected. */
  53. #define REDIS_CONNECTED 0x2
  54. /* The async API might try to disconnect cleanly and flush the output
  55. * buffer and read all subsequent replies before disconnecting.
  56. * This flag means no new commands can come in and the connection
  57. * should be terminated once all replies have been read. */
  58. #define REDIS_DISCONNECTING 0x4
  59. #define REDIS_REPLY_STRING 1
  60. #define REDIS_REPLY_ARRAY 2
  61. #define REDIS_REPLY_INTEGER 3
  62. #define REDIS_REPLY_NIL 4
  63. #define REDIS_REPLY_STATUS 5
  64. #define REDIS_REPLY_ERROR 6
  65. #ifdef __cplusplus
  66. extern "C" {
  67. #endif
  68. /* This is the reply object returned by redisCommand() */
  69. typedef struct redisReply {
  70. int type; /* REDIS_REPLY_* */
  71. long long integer; /* The integer when type is REDIS_REPLY_INTEGER */
  72. int len; /* Length of string */
  73. char *str; /* Used for both REDIS_REPLY_ERROR and REDIS_REPLY_STRING */
  74. size_t elements; /* number of elements, for REDIS_REPLY_ARRAY */
  75. struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */
  76. } redisReply;
  77. typedef struct redisReadTask {
  78. int type;
  79. int elements; /* number of elements in multibulk container */
  80. int idx; /* index in parent (array) object */
  81. void *obj; /* holds user-generated value for a read task */
  82. struct redisReadTask *parent; /* parent task */
  83. void *privdata; /* user-settable arbitrary field */
  84. } redisReadTask;
  85. typedef struct redisReplyObjectFunctions {
  86. void *(*createString)(const redisReadTask*, char*, size_t);
  87. void *(*createArray)(const redisReadTask*, int);
  88. void *(*createInteger)(const redisReadTask*, long long);
  89. void *(*createNil)(const redisReadTask*);
  90. void (*freeObject)(void*);
  91. } redisReplyObjectFunctions;
  92. struct redisContext; /* need forward declaration of redisContext */
  93. /* Context for a connection to Redis */
  94. typedef struct redisContext {
  95. int fd;
  96. int flags;
  97. char *obuf; /* Write buffer */
  98. int err; /* Error flags, 0 when there is no error */
  99. char *errstr; /* String representation of error when applicable */
  100. /* Function set for reply buildup and reply reader */
  101. redisReplyObjectFunctions *fn;
  102. void *reader;
  103. } redisContext;
  104. void freeReplyObject(void *reply);
  105. void *redisReplyReaderCreate();
  106. int redisReplyReaderSetReplyObjectFunctions(void *reader, redisReplyObjectFunctions *fn);
  107. int redisReplyReaderSetPrivdata(void *reader, void *privdata);
  108. void *redisReplyReaderGetObject(void *reader);
  109. char *redisReplyReaderGetError(void *reader);
  110. void redisReplyReaderFree(void *ptr);
  111. void redisReplyReaderFeed(void *reader, char *buf, size_t len);
  112. int redisReplyReaderGetReply(void *reader, void **reply);
  113. /* Functions to format a command according to the protocol. */
  114. int redisvFormatCommand(char **target, const char *format, va_list ap);
  115. int redisFormatCommand(char **target, const char *format, ...);
  116. int redisFormatCommandArgv(char **target, int argc, const char **argv, const size_t *argvlen);
  117. redisContext *redisConnect(const char *ip, int port);
  118. redisContext *redisConnectNonBlock(const char *ip, int port);
  119. redisContext *redisConnectUnix(const char *path);
  120. redisContext *redisConnectUnixNonBlock(const char *path);
  121. int redisSetReplyObjectFunctions(redisContext *c, redisReplyObjectFunctions *fn);
  122. void redisFree(redisContext *c);
  123. int redisBufferRead(redisContext *c);
  124. int redisBufferWrite(redisContext *c, int *done);
  125. /* In a blocking context, this function first checks if there are unconsumed
  126. * replies to return and returns one if so. Otherwise, it flushes the output
  127. * buffer to the socket and reads until it has a reply. In a non-blocking
  128. * context, it will return unconsumed replies until there are no more. */
  129. int redisGetReply(redisContext *c, void **reply);
  130. int redisGetReplyFromReader(redisContext *c, void **reply);
  131. /* Write a command to the output buffer. Use these functions in blocking mode
  132. * to get a pipeline of commands. */
  133. void redisvAppendCommand(redisContext *c, const char *format, va_list ap);
  134. void redisAppendCommand(redisContext *c, const char *format, ...);
  135. void redisAppendCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen);
  136. /* Issue a command to Redis. In a blocking context, it is identical to calling
  137. * redisAppendCommand, followed by redisGetReply. The function will return
  138. * NULL if there was an error in performing the request, otherwise it will
  139. * return the reply. In a non-blocking context, it is identical to calling
  140. * only redisAppendCommand and will always return NULL. */
  141. void *redisvCommand(redisContext *c, const char *format, va_list ap);
  142. void *redisCommand(redisContext *c, const char *format, ...);
  143. void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen);
  144. #ifdef __cplusplus
  145. }
  146. #endif
  147. #endif