]> git.saurik.com Git - redis.git/blame - deps/hiredis/hiredis.h
Update hiredis to 0.9.2
[redis.git] / deps / hiredis / hiredis.h
CommitLineData
24f753a8
PN
1/*
2 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
021321e0
PN
3 * Copyright (c) 2010, Pieter Noordhuis <pcnoordhuis at gmail dot com>
4 *
24f753a8
PN
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
32#ifndef __HIREDIS_H
33#define __HIREDIS_H
34#include <stdio.h> /* for size_t */
35#include <stdarg.h> /* for va_list */
36
37#define HIREDIS_MAJOR 0
38#define HIREDIS_MINOR 9
021321e0 39#define HIREDIS_PATCH 2
24f753a8
PN
40
41#define REDIS_ERR -1
42#define REDIS_OK 0
43
44/* When an error occurs, the err flag in a context is set to hold the type of
45 * error that occured. REDIS_ERR_IO means there was an I/O error and you
46 * should use the "errno" variable to find out what is wrong.
47 * For other values, the "errstr" field will hold a description. */
48#define REDIS_ERR_IO 1 /* error in read or write */
49#define REDIS_ERR_EOF 3 /* eof */
50#define REDIS_ERR_PROTOCOL 4 /* protocol error */
51#define REDIS_ERR_OTHER 2 /* something else */
52
53/* Connection type can be blocking or non-blocking and is set in the
54 * least significant bit of the flags field in redisContext. */
55#define REDIS_BLOCK 0x1
56
57/* Connection may be disconnected before being free'd. The second bit
58 * in the flags field is set when the context is connected. */
59#define REDIS_CONNECTED 0x2
60
61/* The async API might try to disconnect cleanly and flush the output
62 * buffer and read all subsequent replies before disconnecting.
63 * This flag means no new commands can come in and the connection
64 * should be terminated once all replies have been read. */
65#define REDIS_DISCONNECTING 0x4
66
24f753a8
PN
67#define REDIS_REPLY_STRING 1
68#define REDIS_REPLY_ARRAY 2
69#define REDIS_REPLY_INTEGER 3
70#define REDIS_REPLY_NIL 4
71#define REDIS_REPLY_STATUS 5
021321e0
PN
72#define REDIS_REPLY_ERROR 6
73
74#ifdef __cplusplus
75extern "C" {
76#endif
24f753a8
PN
77
78/* This is the reply object returned by redisCommand() */
79typedef struct redisReply {
80 int type; /* REDIS_REPLY_* */
81 long long integer; /* The integer when type is REDIS_REPLY_INTEGER */
82 int len; /* Length of string */
83 char *str; /* Used for both REDIS_REPLY_ERROR and REDIS_REPLY_STRING */
84 size_t elements; /* number of elements, for REDIS_REPLY_ARRAY */
85 struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */
86} redisReply;
87
88typedef struct redisReadTask {
89 int type;
90 int elements; /* number of elements in multibulk container */
24f753a8 91 int idx; /* index in parent (array) object */
021321e0
PN
92 void *obj; /* holds user-generated value for a read task */
93 struct redisReadTask *parent; /* parent task */
94 void *privdata; /* user-settable arbitrary field */
24f753a8
PN
95} redisReadTask;
96
97typedef struct redisReplyObjectFunctions {
98 void *(*createString)(const redisReadTask*, char*, size_t);
99 void *(*createArray)(const redisReadTask*, int);
100 void *(*createInteger)(const redisReadTask*, long long);
101 void *(*createNil)(const redisReadTask*);
102 void (*freeObject)(void*);
103} redisReplyObjectFunctions;
104
105struct redisContext; /* need forward declaration of redisContext */
106
107/* Context for a connection to Redis */
108typedef struct redisContext {
109 int fd;
110 int flags;
111 char *obuf; /* Write buffer */
112 int err; /* Error flags, 0 when there is no error */
113 char *errstr; /* String representation of error when applicable */
114
115 /* Function set for reply buildup and reply reader */
116 redisReplyObjectFunctions *fn;
117 void *reader;
118} redisContext;
119
120void freeReplyObject(void *reply);
afc156c2
PN
121void *redisReplyReaderCreate();
122int redisReplyReaderSetReplyObjectFunctions(void *reader, redisReplyObjectFunctions *fn);
021321e0 123int redisReplyReaderSetPrivdata(void *reader, void *privdata);
24f753a8
PN
124void *redisReplyReaderGetObject(void *reader);
125char *redisReplyReaderGetError(void *reader);
126void redisReplyReaderFree(void *ptr);
57c9babd 127void redisReplyReaderFeed(void *reader, char *buf, size_t len);
24f753a8
PN
128int redisReplyReaderGetReply(void *reader, void **reply);
129
130/* Functions to format a command according to the protocol. */
131int redisvFormatCommand(char **target, const char *format, va_list ap);
132int redisFormatCommand(char **target, const char *format, ...);
133int redisFormatCommandArgv(char **target, int argc, const char **argv, const size_t *argvlen);
134
135redisContext *redisConnect(const char *ip, int port);
136redisContext *redisConnectNonBlock(const char *ip, int port);
137redisContext *redisConnectUnix(const char *path);
138redisContext *redisConnectUnixNonBlock(const char *path);
139int redisSetReplyObjectFunctions(redisContext *c, redisReplyObjectFunctions *fn);
140void redisFree(redisContext *c);
141int redisBufferRead(redisContext *c);
142int redisBufferWrite(redisContext *c, int *done);
143
144/* In a blocking context, this function first checks if there are unconsumed
145 * replies to return and returns one if so. Otherwise, it flushes the output
146 * buffer to the socket and reads until it has a reply. In a non-blocking
147 * context, it will return unconsumed replies until there are no more. */
148int redisGetReply(redisContext *c, void **reply);
149int redisGetReplyFromReader(redisContext *c, void **reply);
150
151/* Write a command to the output buffer. Use these functions in blocking mode
152 * to get a pipeline of commands. */
153void redisvAppendCommand(redisContext *c, const char *format, va_list ap);
154void redisAppendCommand(redisContext *c, const char *format, ...);
155void redisAppendCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen);
156
157/* Issue a command to Redis. In a blocking context, it is identical to calling
158 * redisAppendCommand, followed by redisGetReply. The function will return
159 * NULL if there was an error in performing the request, otherwise it will
160 * return the reply. In a non-blocking context, it is identical to calling
161 * only redisAppendCommand and will always return NULL. */
162void *redisvCommand(redisContext *c, const char *format, va_list ap);
163void *redisCommand(redisContext *c, const char *format, ...);
164void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen);
165
021321e0
PN
166#ifdef __cplusplus
167}
168#endif
169
24f753a8 170#endif