-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathRedisResult.cpp
109 lines (96 loc) · 1.61 KB
/
RedisResult.cpp
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
#include "RedisResult.h"
#include "hiredis.h"
#include "BasePacket.h"
#include <sstream>
RedisResult::RedisResult()
{
m_reply = NULL;
pos = 0;
}
RedisResult::~RedisResult()
{
if(m_reply)
freeReplyObject(m_reply);
}
void RedisResult::setResult(redisReply * result)
{
m_reply = result;
}
bool RedisResult::isEmpty()
{
return !(m_reply && (m_reply->str || m_reply->elements > 0));
}
bool RedisResult::fetch()
{
if (pos >= getRowCount())
return false;
return true;
}
uint32 RedisResult::getRowCount()
{
return m_reply->str ? 1 : m_reply->elements;
}
uint32 RedisResult::getFieldsCount()
{
return getRowCount();
}
const char * RedisResult::getData(int & len)
{
const char * str;
// key or list
if (m_reply->str)
{
len = m_reply->len;
str = m_reply->str;
}
else
{
len = m_reply->element[pos]->len;
str = m_reply->element[pos]->str;
}
pos++;
return str;
}
const char * RedisResult::getData()
{
const char * str;
if (m_reply->str)
{
str = m_reply->str;
}
else
{
str = m_reply->element[pos]->str;
}
pos++;
return str;
}
RedisResult &RedisResult::operator>>(std::string& value)
{
if (pos >= getFieldsCount())
{
ERROR_LOG("redis row count upper limit");
return *this;
}
// string
std::istringstream ins(m_reply->str ? m_reply->str : m_reply->element[pos]->str);
ins >> value;
pos++;
return *this;
}
int RedisResult::readBlob(BasePacket * packet)
{
int len;
const char * pdata = getData(len);
if (len > 0)
{
packet->append((const uint8 *)pdata, len);
}
return len;
}
std::string_view RedisResult::getStream()
{
int len;
const char * p = getData(len);
return std::string_view(p, len);
}