@@ -47,7 +47,7 @@ Database_Redis::Database_Redis(Settings &conf)
47
47
ctx = redisConnect (addr, port);
48
48
if (!ctx) {
49
49
throw FileNotGoodException (" Cannot allocate redis context" );
50
- } else if (ctx->err ) {
50
+ } else if (ctx->err ) {
51
51
std::string err = std::string (" Connection error: " ) + ctx->errstr ;
52
52
redisFree (ctx);
53
53
throw FileNotGoodException (err);
@@ -92,7 +92,7 @@ bool Database_Redis::saveBlock(const v3s16 &pos, const std::string &data)
92
92
93
93
if (reply->type == REDIS_REPLY_ERROR) {
94
94
errorstream << " WARNING: saveBlock: saving block " << PP (pos)
95
- << " failed" << std::endl;
95
+ << " failed: " << reply-> str << std::endl;
96
96
freeReplyObject (reply);
97
97
return false ;
98
98
}
@@ -110,13 +110,20 @@ std::string Database_Redis::loadBlock(const v3s16 &pos)
110
110
if (!reply) {
111
111
throw FileNotGoodException (std::string (
112
112
" Redis command 'HGET %s %s' failed: " ) + ctx->errstr );
113
- } else if (reply->type != REDIS_REPLY_STRING) {
114
- return " " ;
115
113
}
116
-
117
- std::string str (reply->str , reply->len );
118
- freeReplyObject (reply); // std::string copies the memory so this won't cause any problems
119
- return str;
114
+ switch (reply->type ) {
115
+ case REDIS_REPLY_STRING: {
116
+ std::string str (reply->str , reply->len );
117
+ // std::string copies the memory so this won't cause any problems
118
+ freeReplyObject (reply);
119
+ return str;
120
+ }
121
+ case REDIS_REPLY_ERROR:
122
+ errorstream << " WARNING: loadBlock: loading block " << PP (pos)
123
+ << " failed: " << reply->str << std::endl;
124
+ }
125
+ freeReplyObject (reply);
126
+ return " " ;
120
127
}
121
128
122
129
bool Database_Redis::deleteBlock (const v3s16 &pos)
@@ -130,7 +137,7 @@ bool Database_Redis::deleteBlock(const v3s16 &pos)
130
137
" Redis command 'HDEL %s %s' failed: " ) + ctx->errstr );
131
138
} else if (reply->type == REDIS_REPLY_ERROR) {
132
139
errorstream << " WARNING: deleteBlock: deleting block " << PP (pos)
133
- << " failed" << std::endl;
140
+ << " failed: " << reply-> str << std::endl;
134
141
freeReplyObject (reply);
135
142
return false ;
136
143
}
@@ -145,12 +152,16 @@ void Database_Redis::listAllLoadableBlocks(std::vector<v3s16> &dst)
145
152
if (!reply) {
146
153
throw FileNotGoodException (std::string (
147
154
" Redis command 'HKEYS %s' failed: " ) + ctx->errstr );
148
- } else if (reply->type != REDIS_REPLY_ARRAY) {
149
- throw FileNotGoodException (" Failed to get keys from database" );
150
155
}
151
- for (size_t i = 0 ; i < reply->elements ; i++) {
152
- assert (reply->element [i]->type == REDIS_REPLY_STRING);
153
- dst.push_back (getIntegerAsBlock (stoi64 (reply->element [i]->str )));
156
+ switch (reply->type ) {
157
+ case REDIS_REPLY_ARRAY:
158
+ for (size_t i = 0 ; i < reply->elements ; i++) {
159
+ assert (reply->element [i]->type == REDIS_REPLY_STRING);
160
+ dst.push_back (getIntegerAsBlock (stoi64 (reply->element [i]->str )));
161
+ }
162
+ case REDIS_REPLY_ERROR:
163
+ throw FileNotGoodException (std::string (
164
+ " Failed to get keys from database: " ) + reply->str );
154
165
}
155
166
freeReplyObject (reply);
156
167
}
0 commit comments