-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdredis.d
executable file
·212 lines (194 loc) · 4.7 KB
/
dredis.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import core.sys.posix.sys.time;
import std.stdio;
import std.conv;
import std.string;
import hiredis;
struct RedisReply
{
string str;
}
class DredisException : Exception
{
this(string s) {
super(s);
}
}
/**
* Contains two flavor of Redis Client
* - Dredis (isThrow == true): a client that throws exception when error occurs
* - SilentDredis (isThrow == false): a client that does not throw and returns default values when error occurs.
*/
template DredisTemplate(bool isThrow)
{
class Redis
{
private redisContext* context;
static if (!isThrow)
{
// TODO: Mayby default values should be config as template args
private string defaultString = "nil";
private long defaultNumber = 0L;
public void setDefaultValue(string str)
{
defaultString = str;
}
public void setDefaultNumber(long number)
{
defaultNumber = number;
}
}
public redisContext* getContext()
{
return context;
}
public bool connect(const(char*) host, int port, int timeout)
{
timeval ts = {1, timeout * 1000};
context = redisConnectWithTimeout(host, port, ts);
if (context.err)
{
static if (isThrow)
{
throw new DredisException("Cannot connect to redis server!");
}
return false;
}
else
{
return true;
}
}
/****************************
* String Operations
***************************/
public bool set(const(char)[] key, const(char)[] val)
{
return boolCmd("SET", key, val);
}
private string errStr(string msg)
{
static if (isThrow)
{
throw new DredisException(msg);
}
else
{
return defaultString;
}
}
private long errLong(string msg)
{
static if (isThrow)
{
throw new DredisException(msg);
}
else
{
return defaultNumber;
}
}
public string get(const(char)[] key)
{
redisReply* rep = cast(redisReply*) redisCommand(context, "GET %s", toStringz(key));
string s;
switch (rep.type)
{
case REDIS_REPLY_STRING:
s = to!string(rep.str);
break;
case REDIS_REPLY_NIL:
s = "nil";
break;
case REDIS_REPLY_ERROR:
s = errStr(to!string(rep.str));
break;
default:
s = errStr("Other");
}
freeReplyObject(rep);
return s;
}
public long getLong(const(char)[] key)
{
redisReply* rep = cast(redisReply*) redisCommand(context, "GET %s", toStringz(key));
long s;
switch (rep.type)
{
case REDIS_REPLY_INTEGER:
s = rep.integer;
case REDIS_REPLY_STRING:
// find an efficient way to conver char* to long
// s = to!long(to!string(rep.str));
s = std.c.stdlib.atoi(rep.str);
break;
case REDIS_REPLY_ERROR:
// TODO: when in ExcMode, throw an exception
static if (isThrow)
{
throw new DredisException("ahah");
}
else
{
s = defaultNumber;
}
break;
default:
static if (isThrow)
{
throw new DredisException("haha");
}
else
{
s = defaultNumber;
}
break;
}
freeReplyObject(rep);
return s;
}
public bool del(const(char)[] key)
{
return boolCmd("DEL", key);
}
/**
* Common implementation of boolean commands
* TODO: How can I combine boolCmd with/without/withmany values?
**/
private bool boolCmd(string cmd, const(char)[] key)
{
redisReply* rep = cast(redisReply*) redisCommand(context, toStringz(cmd ~ " %s"), toStringz(key));
bool succ = true;
if (rep.type == REDIS_REPLY_ERROR)
{
succ = false;
}
freeReplyObject(rep);
return succ;
}
private bool boolCmd(string cmd, const(char)[] key, const(char)[] val)
{
redisReply* rep = cast(redisReply*) redisCommand(context, toStringz(cmd ~ " %s %s"), toStringz(key), toStringz(val));
bool succ = true;
if (rep.type == REDIS_REPLY_ERROR)
{
succ = false;
}
freeReplyObject(rep);
return succ;
}
}
}
/**
* Dredis Client. When error occurs, throws DredisException
*/
alias DredisTemplate!true.Redis Dredis;
/**
* SilentDredis Client that echos no Exception.
* When error occurs, returns a default value.
* By default: {
* defaultString = "nil";
* defaultNumber = 0L;
* }
* You can specify default values with setDefaultXXX methods.
*/
alias DredisTemplate!false.Redis SilentDredis;