forked from stanleyhsl/CRedisClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisClientKey.cpp
More file actions
312 lines (259 loc) · 5.4 KB
/
RedisClientKey.cpp
File metadata and controls
312 lines (259 loc) · 5.4 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/**
*
* @file RedisClientKey.cpp
* @brief CRedisClient key 操作的代码实现。
*
*
* @author: Stanley Huang
* @date: 2015年8月14日
*
*/
#include "Command.h"
#include "CRedisClient.h"
int64_t CRedisClient::keys( const std::string &pattern , VecString &values )
{
Command cmd("KEYS");
cmd << pattern;
_getArry(cmd, values);
return values.size();
}
int64_t CRedisClient::del( CRedisClient::VecString &keys )
{
Command cmd("DEL");
VecString::const_iterator it = keys.begin();
VecString::const_iterator end = keys.end();
for ( ; it != end ; ++it )
{
cmd << *it;
}
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::exists( const string& key )
{
Command cmd("EXISTS");
cmd << key;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::expireAt( const string& key , const uint64_t& timestamp )
{
Command cmd("EXPIREAT");
cmd << key << timestamp;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::pExpireAt( const string& key , const uint64_t& timestamp )
{
Command cmd("PEXPIREAT");
cmd << key << timestamp;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::expire( const string& key , const uint64_t& seconds )
{
Command cmd("EXPIRE");
cmd << key << seconds;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::pExpire( const string& key , const uint64_t& msec )
{
Command cmd("PEXPIRE");
cmd << key << msec;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
int64_t CRedisClient::ttl( const string& key )
{
Command cmd("TTL");
cmd << key;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
int64_t CRedisClient::pttl( const string& key )
{
Command cmd("PTTL");
cmd << key;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::persist( const string& key )
{
Command cmd("PERSIST");
cmd << key;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
bool CRedisClient::move( const string& key , const int& dstDBIndex )
{
Command cmd("MOVE");
cmd << key << dstDBIndex;
int64_t num = 0;
_getInt(cmd, num);
return num;
}
string CRedisClient::object( const EobjSubCommand& subcommand , const string& key )
{
Command cmd("OBJECT");
int64_t num = 0;
string retStr;
std::stringstream ss;
switch ( subcommand )
{
case REFCOUNT :
cmd << "REFCOUNT" << key;
if ( _getInt(cmd, num) )
{
ss << num;
return ss.str();
}
break;
case IDLETIME :
cmd << "IDLETIME" << key;
if ( _getInt(cmd, num) )
{
ss << num;
return ss.str();
}
break;
case ENCODING :
cmd << "ENCODING" << key;
if ( _getString(cmd, retStr) )
{
return retStr;
}
break;
}
return REDIS_NIL;
}
string CRedisClient::randomKey( )
{
Command cmd("RANDOMKEY");
string retKey;
if ( _getString(cmd, retKey) )
return retKey;
else
return REDIS_NIL;
}
bool CRedisClient::rename( const string& key , const string& newKey )
{
Command cmd("RENAME");
string status;
cmd << key << newKey;
return _getStatus(cmd, status);
}
bool CRedisClient::renameNx( const string& key , const string& newKey )
{
Command cmd("RENAMENX");
int64_t num = 0;
cmd << key << newKey;
if ( _getInt(cmd, num) )
{
return num;
}
return false;
}
bool CRedisClient::sort( const string& key , VecString& values , const bool& desc )
{
Command cmd("SORT");
cmd << key;
if ( desc )
cmd << "DESC";
if ( _getArry(cmd, values) )
{
return values.size();
}
return false;
}
bool CRedisClient::type( const string& key , string& type )
{
Command cmd("TYPE");
cmd << key;
return _getStatus(cmd, type);
}
int CRedisClient::scan( VecString& values , const int& index , const string& pattern ,
const int& count )
{
Command cmd("SCAN");
string val;
int64_t nextNo;
CResult arry;
cmd << index;
if ( !pattern.empty() )
{
DEBUGOUT("PATTERN:", pattern)
cmd << "MATCH" << pattern;
}
if ( count > 0 && count != 10 )
{
DEBUGOUT("PATTERN:", pattern)
cmd << "COUNT" << count;
}
if ( !_getArry(cmd, arry) )
return -1;
CResult::ListCResult arrList = arry.getArry();
if ( arrList.size() != 2 )
return -2;
CResult::ListCResult::const_iterator it = arrList.begin();
val = it->getString(); //throw TypeErr
std::istringstream istr(val);
istr >> nextNo;
if ( istr.fail() )
{
throw ProtocolErr(val + ": data received is unexpected");
}
DEBUGOUT("nextNo", nextNo)
++it;
CResult::ListCResult::const_iterator itKeybgein = it->getArry().begin();
CResult::ListCResult::const_iterator itKeyend = it->getArry().end();
values.clear();
while ( itKeybgein != itKeyend )
{
val = itKeybgein->getString();
values.push_back(val);
itKeybgein++;
}
return nextNo;
}
bool CRedisClient::dump( const string& key , string& retStr )
{
Command cmd("DUMP");
cmd << key;
return _getString(cmd, retStr);
}
bool CRedisClient::restore( const string& key , const string& buf , const int& ttl )
{
Command cmd("RESTORE");
string status;
cmd << key << ttl << buf;
return _getStatus(cmd, status);
}
bool CRedisClient::migrate( const string& key ,const string& host , const uint16_t& port ,
const uint16_t& db , const uint16_t& timeout )
{
CResult result;
Command cmd("MIGRATE");
cmd << host << port << key << db << timeout;
_socket.clearBuffer();
_sendCommand(cmd);
_getReply(result);
ReplyType type = result.getType();
if ( REDIS_REPLY_STATUS == type )
{
//"+NOKEY" may returned
if ( result.compare(0,2,"OK")==0 || result.compare(0,2,"ok")==0 )
return true;
}
throw ReplyErr(result);
return false;
}