2 * Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
3 * Copyright (c) 2010-2011, Pieter Noordhuis <pcnoordhuis at gmail dot com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
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.
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.
32 #ifndef __HIREDIS_ASYNC_H
33 #define __HIREDIS_ASYNC_H
40 struct redisAsyncContext
; /* need forward declaration of redisAsyncContext */
41 struct dict
; /* dictionary header is included in async.c */
43 /* Reply callback prototype and container */
44 typedef void (redisCallbackFn
)(struct redisAsyncContext
*, void*, void*);
45 typedef struct redisCallback
{
46 struct redisCallback
*next
; /* simple singly linked list */
51 /* List of callbacks for either regular replies or pub/sub */
52 typedef struct redisCallbackList
{
53 redisCallback
*head
, *tail
;
56 /* Connection callback prototypes */
57 typedef void (redisDisconnectCallback
)(const struct redisAsyncContext
*, int status
);
58 typedef void (redisConnectCallback
)(const struct redisAsyncContext
*, int status
);
60 /* Context for an async connection to Redis */
61 typedef struct redisAsyncContext
{
62 /* Hold the regular context, so it can be realloc'ed. */
65 /* Setup error flags so they can be used directly. */
69 /* Not used by hiredis */
72 /* Event library data and hooks */
76 /* Hooks that are called when the library expects to start
77 * reading/writing. These functions should be idempotent. */
78 void (*addRead
)(void *privdata
);
79 void (*delRead
)(void *privdata
);
80 void (*addWrite
)(void *privdata
);
81 void (*delWrite
)(void *privdata
);
82 void (*cleanup
)(void *privdata
);
85 /* Called when either the connection is terminated due to an error or per
86 * user request. The status is set accordingly (REDIS_OK, REDIS_ERR). */
87 redisDisconnectCallback
*onDisconnect
;
89 /* Called when the first write event was received. */
90 redisConnectCallback
*onConnect
;
92 /* Regular command callbacks */
93 redisCallbackList replies
;
95 /* Subscription callbacks */
97 redisCallbackList invalid
;
98 struct dict
*channels
;
99 struct dict
*patterns
;
103 /* Functions that proxy to hiredis */
104 redisAsyncContext
*redisAsyncConnect(const char *ip
, int port
);
105 redisAsyncContext
*redisAsyncConnectUnix(const char *path
);
106 int redisAsyncSetConnectCallback(redisAsyncContext
*ac
, redisConnectCallback
*fn
);
107 int redisAsyncSetDisconnectCallback(redisAsyncContext
*ac
, redisDisconnectCallback
*fn
);
108 void redisAsyncDisconnect(redisAsyncContext
*ac
);
109 void redisAsyncFree(redisAsyncContext
*ac
);
111 /* Handle read/write events */
112 void redisAsyncHandleRead(redisAsyncContext
*ac
);
113 void redisAsyncHandleWrite(redisAsyncContext
*ac
);
115 /* Command functions for an async context. Write the command to the
116 * output buffer and register the provided callback. */
117 int redisvAsyncCommand(redisAsyncContext
*ac
, redisCallbackFn
*fn
, void *privdata
, const char *format
, va_list ap
);
118 int redisAsyncCommand(redisAsyncContext
*ac
, redisCallbackFn
*fn
, void *privdata
, const char *format
, ...);
119 int redisAsyncCommandArgv(redisAsyncContext
*ac
, redisCallbackFn
*fn
, void *privdata
, int argc
, const char **argv
, const size_t *argvlen
);