Mercurial > hg > piper-cpp
comparison vamp-json/VampJson.h @ 183:03b067abd91d
Explicitly handle the individual error cases.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 03 Feb 2017 12:41:37 +0000 |
parents | bd543e74a9bf |
children | 3eb00e5c76c4 |
comparison
equal
deleted
inserted
replaced
182:02c3a8596c2b | 183:03b067abd91d |
---|---|
1107 } | 1107 } |
1108 } | 1108 } |
1109 | 1109 |
1110 static bool | 1110 static bool |
1111 successful(json11::Json j, std::string &err) { | 1111 successful(json11::Json j, std::string &err) { |
1112 if (j["result"].is_object()) { | 1112 const bool hasResult = j["result"].is_object(); |
1113 return true; | 1113 const bool hasError = j["error"].is_object(); |
1114 } else if (j["error"].is_object()) { | 1114 if (hasResult && hasError) { |
1115 err = "valid response may contain only one of result and error objects"; | |
1116 return false; | |
1117 } else if (hasError) { | |
1118 return false; | |
1119 } else if (!hasResult) { | |
1120 err = "either a result or an error object is required for a valid response"; | |
1115 return false; | 1121 return false; |
1116 } else { | 1122 } else { |
1117 err = "result or error object required for valid response"; | 1123 return true; |
1118 return false; | |
1119 } | 1124 } |
1120 } | 1125 } |
1121 | 1126 |
1122 static void | 1127 static void |
1123 markRPC(json11::Json::object &jo) { | 1128 markRPC(json11::Json::object &jo) { |