2
0

async.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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_ASYNC_H
  32. #define __HIREDIS_ASYNC_H
  33. #include "hiredis.h"
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. struct redisAsyncContext; /* need forward declaration of redisAsyncContext */
  38. struct dict; /* dictionary header is included in async.c */
  39. /* Reply callback prototype and container */
  40. typedef void (redisCallbackFn)(struct redisAsyncContext*, void*, void*);
  41. typedef struct redisCallback {
  42. struct redisCallback *next; /* simple singly linked list */
  43. redisCallbackFn *fn;
  44. int pending_subs;
  45. void *privdata;
  46. } redisCallback;
  47. /* List of callbacks for either regular replies or pub/sub */
  48. typedef struct redisCallbackList {
  49. redisCallback *head, *tail;
  50. } redisCallbackList;
  51. /* Connection callback prototypes */
  52. typedef void (redisDisconnectCallback)(const struct redisAsyncContext*, int status);
  53. typedef void (redisConnectCallback)(const struct redisAsyncContext*, int status);
  54. /* Context for an async connection to Redis */
  55. typedef struct redisAsyncContext {
  56. /* Hold the regular context, so it can be realloc'ed. */
  57. redisContext c;
  58. /* Setup error flags so they can be used directly. */
  59. int err;
  60. char *errstr;
  61. /* Not used by hiredis */
  62. void *data;
  63. /* Event library data and hooks */
  64. struct {
  65. void *data;
  66. /* Hooks that are called when the library expects to start
  67. * reading/writing. These functions should be idempotent. */
  68. void (*addRead)(void *privdata);
  69. void (*delRead)(void *privdata);
  70. void (*addWrite)(void *privdata);
  71. void (*delWrite)(void *privdata);
  72. void (*cleanup)(void *privdata);
  73. } ev;
  74. /* Called when either the connection is terminated due to an error or per
  75. * user request. The status is set accordingly (REDIS_OK, REDIS_ERR). */
  76. redisDisconnectCallback *onDisconnect;
  77. /* Called when the first write event was received. */
  78. redisConnectCallback *onConnect;
  79. /* Regular command callbacks */
  80. redisCallbackList replies;
  81. /* Address used for connect() */
  82. struct sockaddr *saddr;
  83. size_t addrlen;
  84. /* Subscription callbacks */
  85. struct {
  86. redisCallbackList invalid;
  87. struct dict *channels;
  88. struct dict *patterns;
  89. } sub;
  90. } redisAsyncContext;
  91. /* Functions that proxy to hiredis */
  92. redisAsyncContext *redisAsyncConnect(const char *ip, int port);
  93. redisAsyncContext *redisAsyncConnectBind(const char *ip, int port, const char *source_addr);
  94. redisAsyncContext *redisAsyncConnectBindWithReuse(const char *ip, int port,
  95. const char *source_addr);
  96. redisAsyncContext *redisAsyncConnectUnix(const char *path);
  97. int redisAsyncSetConnectCallback(redisAsyncContext *ac, redisConnectCallback *fn);
  98. int redisAsyncSetDisconnectCallback(redisAsyncContext *ac, redisDisconnectCallback *fn);
  99. void redisAsyncDisconnect(redisAsyncContext *ac);
  100. void redisAsyncFree(redisAsyncContext *ac);
  101. /* Handle read/write events */
  102. void redisAsyncHandleRead(redisAsyncContext *ac);
  103. void redisAsyncHandleWrite(redisAsyncContext *ac);
  104. /* Command functions for an async context. Write the command to the
  105. * output buffer and register the provided callback. */
  106. int redisvAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *format, va_list ap);
  107. int redisAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *format, ...);
  108. int redisAsyncCommandArgv(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, int argc, const char **argv, const size_t *argvlen);
  109. int redisAsyncFormattedCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *cmd, size_t len);
  110. #ifdef __cplusplus
  111. }
  112. #endif
  113. #endif