comparison vamp-server/convert.cpp @ 180:bd543e74a9bf

Correct the inspection of the JSON object in successful to look for both error and success objects, writing out an error string if neither are present. Revert error handling in readInput() for JSON.
author Lucas Thompson <dev@lucas.im>
date Fri, 03 Feb 2017 11:12:27 +0000
parents 60dc013bd69c
children df381a2e6fa1
comparison
equal deleted inserted replaced
179:0e13b7b80464 180:bd543e74a9bf
556 eof = false; 556 eof = false;
557 557
558 if (format == "json") { 558 if (format == "json") {
559 string err; 559 string err;
560 auto result = readInputJson(direction, err, eof); 560 auto result = readInputJson(direction, err, eof);
561 const bool isRecognisedError = !result.success && result.errorText != ""; 561 if (err != "") throw runtime_error(err);
562 562 else return result;
563 // if the RequestOrResponse (result) has been populated with success=false and an error message
564 // then the server returned a well formed error, it is safe to return it for conversion
565 // -- but if err is populated, something else has gone wrong
566 if (isRecognisedError || err == "")
567 return result;
568 else
569 throw runtime_error(err);
570 } else if (format == "capnp") { 563 } else if (format == "capnp") {
571 return readInputCapnp(direction, eof); 564 return readInputCapnp(direction, eof);
572 } else { 565 } else {
573 throw runtime_error("unknown input format \"" + format + "\""); 566 throw runtime_error("unknown input format \"" + format + "\"");
574 } 567 }