Skip to content

Commit 3f5c2de

Browse files
committedMay 6, 2015
Improve Redis error messages
1 parent 2b44e75 commit 3f5c2de

File tree

1 file changed

+25
-14
lines changed

1 file changed

+25
-14
lines changed
 

‎src/database-redis.cpp

+25-14
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Database_Redis::Database_Redis(Settings &conf)
4747
ctx = redisConnect(addr, port);
4848
if (!ctx) {
4949
throw FileNotGoodException("Cannot allocate redis context");
50-
} else if(ctx->err) {
50+
} else if (ctx->err) {
5151
std::string err = std::string("Connection error: ") + ctx->errstr;
5252
redisFree(ctx);
5353
throw FileNotGoodException(err);
@@ -92,7 +92,7 @@ bool Database_Redis::saveBlock(const v3s16 &pos, const std::string &data)
9292

9393
if (reply->type == REDIS_REPLY_ERROR) {
9494
errorstream << "WARNING: saveBlock: saving block " << PP(pos)
95-
<< "failed" << std::endl;
95+
<< " failed: " << reply->str << std::endl;
9696
freeReplyObject(reply);
9797
return false;
9898
}
@@ -110,13 +110,20 @@ std::string Database_Redis::loadBlock(const v3s16 &pos)
110110
if (!reply) {
111111
throw FileNotGoodException(std::string(
112112
"Redis command 'HGET %s %s' failed: ") + ctx->errstr);
113-
} else if (reply->type != REDIS_REPLY_STRING) {
114-
return "";
115113
}
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 "";
120127
}
121128

122129
bool Database_Redis::deleteBlock(const v3s16 &pos)
@@ -130,7 +137,7 @@ bool Database_Redis::deleteBlock(const v3s16 &pos)
130137
"Redis command 'HDEL %s %s' failed: ") + ctx->errstr);
131138
} else if (reply->type == REDIS_REPLY_ERROR) {
132139
errorstream << "WARNING: deleteBlock: deleting block " << PP(pos)
133-
<< " failed" << std::endl;
140+
<< " failed: " << reply->str << std::endl;
134141
freeReplyObject(reply);
135142
return false;
136143
}
@@ -145,12 +152,16 @@ void Database_Redis::listAllLoadableBlocks(std::vector<v3s16> &dst)
145152
if (!reply) {
146153
throw FileNotGoodException(std::string(
147154
"Redis command 'HKEYS %s' failed: ") + ctx->errstr);
148-
} else if (reply->type != REDIS_REPLY_ARRAY) {
149-
throw FileNotGoodException("Failed to get keys from database");
150155
}
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);
154165
}
155166
freeReplyObject(reply);
156167
}

0 commit comments

Comments
 (0)
Please sign in to comment.