2010-10-31 20:20:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Redis nor the names of its contributors may be used
|
|
|
|
* to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HIREDIS_ASYNC_H
|
|
|
|
#define __HIREDIS_ASYNC_H
|
|
|
|
#include "hiredis.h"
|
|
|
|
|
|
|
|
struct redisAsyncContext; /* need forward declaration of redisAsyncContext */
|
|
|
|
|
|
|
|
/* Reply callback prototype and container */
|
2010-11-01 12:21:26 +00:00
|
|
|
typedef void (redisCallbackFn)(struct redisAsyncContext*, void*, void*);
|
2010-10-31 20:20:47 +00:00
|
|
|
typedef struct redisCallback {
|
|
|
|
struct redisCallback *next; /* simple singly linked list */
|
|
|
|
redisCallbackFn *fn;
|
|
|
|
void *privdata;
|
|
|
|
} redisCallback;
|
|
|
|
|
|
|
|
/* List of callbacks for either regular replies or pub/sub */
|
|
|
|
typedef struct redisCallbackList {
|
|
|
|
redisCallback *head, *tail;
|
|
|
|
} redisCallbackList;
|
|
|
|
|
2010-11-01 08:27:43 +00:00
|
|
|
/* Disconnect callback prototype */
|
|
|
|
typedef void (redisDisconnectCallback)(const struct redisAsyncContext*, int status);
|
|
|
|
|
2010-10-31 20:20:47 +00:00
|
|
|
/* Context for an async connection to Redis */
|
|
|
|
typedef struct redisAsyncContext {
|
|
|
|
/* Hold the regular context, so it can be realloc'ed. */
|
|
|
|
redisContext c;
|
|
|
|
|
2010-11-02 15:36:38 +00:00
|
|
|
/* Setup error flags so they can be used directly. */
|
|
|
|
int err;
|
|
|
|
char *errstr;
|
2010-11-01 08:52:17 +00:00
|
|
|
|
2010-10-31 20:20:47 +00:00
|
|
|
/* Called when the library expects to start reading/writing.
|
|
|
|
* The supplied functions should be idempotent. */
|
|
|
|
void (*evAddRead)(void *privdata);
|
|
|
|
void (*evDelRead)(void *privdata);
|
|
|
|
void (*evAddWrite)(void *privdata);
|
|
|
|
void (*evDelWrite)(void *privdata);
|
2010-11-01 08:27:43 +00:00
|
|
|
void (*evCleanup)(void *privdata);
|
2010-10-31 20:20:47 +00:00
|
|
|
void *data;
|
|
|
|
|
2010-11-01 08:27:43 +00:00
|
|
|
/* Called when either the connection is terminated due to an error or per
|
|
|
|
* user request. The status is set accordingly (REDIS_OK, REDIS_ERR). */
|
|
|
|
redisDisconnectCallback *onDisconnect;
|
|
|
|
|
2010-10-31 20:20:47 +00:00
|
|
|
/* Reply callbacks */
|
|
|
|
redisCallbackList replies;
|
|
|
|
} redisAsyncContext;
|
|
|
|
|
|
|
|
/* Functions that proxy to hiredis */
|
|
|
|
redisAsyncContext *redisAsyncConnect(const char *ip, int port);
|
2010-11-01 08:27:43 +00:00
|
|
|
int redisAsyncSetReplyObjectFunctions(redisAsyncContext *ac, redisReplyObjectFunctions *fn);
|
|
|
|
int redisAsyncSetDisconnectCallback(redisAsyncContext *ac, redisDisconnectCallback *fn);
|
|
|
|
void redisAsyncDisconnect(redisAsyncContext *ac);
|
2010-10-31 20:20:47 +00:00
|
|
|
|
|
|
|
/* Handle read/write events */
|
|
|
|
void redisAsyncHandleRead(redisAsyncContext *ac);
|
|
|
|
void redisAsyncHandleWrite(redisAsyncContext *ac);
|
|
|
|
|
|
|
|
/* Command functions for an async context. Write the command to the
|
|
|
|
* output buffer and register the provided callback. */
|
2010-11-01 08:27:43 +00:00
|
|
|
int redisvAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *format, va_list ap);
|
|
|
|
int redisAsyncCommand(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, const char *format, ...);
|
|
|
|
int redisAsyncCommandArgv(redisAsyncContext *ac, redisCallbackFn *fn, void *privdata, int argc, const char **argv, const size_t *argvlen);
|
2010-10-31 20:20:47 +00:00
|
|
|
|
|
|
|
#endif
|