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.

async.h 5.3KB

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