-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreply.cpp
102 lines (85 loc) · 2.02 KB
/
reply.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
#include "reply.h"
#include <hiredis/hiredis.h>
#include <windows.h>
namespace async_redis
{
reply::reply(void *raw_reply)
{
reply_type = type::invalid;
if (raw_reply == nullptr) {
return;
}
redisReply *r = (redisReply *)raw_reply;
reply_type = (type)r->type;
int_val = r->integer;
if (r->len && r->str) {
str_val = std::string(r->str);
}
if (reply_type == type::arrays && r->elements && r->element) {
for (size_t i = 0; i < r->elements; ++i) {
rows.emplace_back(r->element[i]);
}
}
}
//reply::reply(reply &&other) noexcept
//{
// reply_type = other.reply_type;
// rows = std::move(other.rows);
// str_val = std::move(other.str_val);
// int_val = other.int_val;
//}
//
//reply &reply::operator=(reply &&other) noexcept
//{
// if (this != &other) {
// reply_type = other.reply_type;
// rows = std::move(other.rows);
// str_val = std::move(other.str_val);
// int_val = other.int_val;
// }
// return *this;
//}
reply::operator bool() const
{
return reply_type == type::invalid;
}
reply::type reply::Type() const
{
return reply_type;
}
bool reply::Ok() const
{
return reply_type != type::invalid && reply_type != type::error;
}
const char *reply::Status() const
{
if (reply_type == type::invalid) {
return "reply is invalid";
}
if (reply_type == type::status || reply_type == type::error) {
return str_val.c_str();
}
return nullptr;
}
const std::vector<reply> &reply::GetArray() const
{
if (reply_type != type::arrays) {
throw std::invalid_argument("Redis reply type does not match");
}
return rows;
}
int64_t reply::GetInt() const
{
if (reply_type != type::integer) {
throw std::invalid_argument("Redis reply type does not match");
}
return int_val;
}
const std::string &reply::GetString() const
{
if (reply_type != type::string) {
throw std::invalid_argument("Redis reply type does not match");
}
return str_val;
}
}