You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

read.h 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
  3. * Copyright (c) 2010-2011, 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_READ_H
  32. #define __HIREDIS_READ_H
  33. #include <stdio.h> /* for size_t */
  34. #define REDIS_ERR -1
  35. #define REDIS_OK 0
  36. /* When an error occurs, the err flag in a context is set to hold the type of
  37. * error that occurred. REDIS_ERR_IO means there was an I/O error and you
  38. * should use the "errno" variable to find out what is wrong.
  39. * For other values, the "errstr" field will hold a description. */
  40. #define REDIS_ERR_IO 1 /* Error in read or write */
  41. #define REDIS_ERR_EOF 3 /* End of file */
  42. #define REDIS_ERR_PROTOCOL 4 /* Protocol error */
  43. #define REDIS_ERR_OOM 5 /* Out of memory */
  44. #define REDIS_ERR_OTHER 2 /* Everything else... */
  45. #define REDIS_REPLY_STRING 1
  46. #define REDIS_REPLY_ARRAY 2
  47. #define REDIS_REPLY_INTEGER 3
  48. #define REDIS_REPLY_NIL 4
  49. #define REDIS_REPLY_STATUS 5
  50. #define REDIS_REPLY_ERROR 6
  51. #define REDIS_READER_MAX_BUF (1024*16) /* Default max unused reader buffer. */
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55. typedef struct redisReadTask {
  56. int type;
  57. int elements; /* number of elements in multibulk container */
  58. int idx; /* index in parent (array) object */
  59. void *obj; /* holds user-generated value for a read task */
  60. struct redisReadTask *parent; /* parent task */
  61. void *privdata; /* user-settable arbitrary field */
  62. } redisReadTask;
  63. typedef struct redisReplyObjectFunctions {
  64. void *(*createString)(const redisReadTask*, char*, size_t);
  65. void *(*createArray)(const redisReadTask*, int);
  66. void *(*createInteger)(const redisReadTask*, long long);
  67. void *(*createNil)(const redisReadTask*);
  68. void (*freeObject)(void*);
  69. } redisReplyObjectFunctions;
  70. typedef struct redisReader {
  71. int err; /* Error flags, 0 when there is no error */
  72. char errstr[128]; /* String representation of error when applicable */
  73. char *buf; /* Read buffer */
  74. size_t pos; /* Buffer cursor */
  75. size_t len; /* Buffer length */
  76. size_t maxbuf; /* Max length of unused buffer */
  77. redisReadTask rstack[9];
  78. int ridx; /* Index of current read task */
  79. void *reply; /* Temporary reply pointer */
  80. redisReplyObjectFunctions *fn;
  81. void *privdata;
  82. } redisReader;
  83. /* Public API for the protocol parser. */
  84. redisReader *redisReaderCreateWithFunctions(redisReplyObjectFunctions *fn);
  85. void redisReaderFree(redisReader *r);
  86. int redisReaderFeed(redisReader *r, const char *buf, size_t len);
  87. int redisReaderGetReply(redisReader *r, void **reply);
  88. /* Backwards compatibility, can be removed on big version bump. */
  89. #define redisReplyReaderCreate redisReaderCreate
  90. #define redisReplyReaderFree redisReaderFree
  91. #define redisReplyReaderFeed redisReaderFeed
  92. #define redisReplyReaderGetReply redisReaderGetReply
  93. #define redisReplyReaderSetPrivdata(_r, _p) (int)(((redisReader*)(_r))->privdata = (_p))
  94. #define redisReplyReaderGetObject(_r) (((redisReader*)(_r))->reply)
  95. #define redisReplyReaderGetError(_r) (((redisReader*)(_r))->errstr)
  96. #ifdef __cplusplus
  97. }
  98. #endif
  99. #endif