Mercurial > hg > piper-cpp
diff utilities/vampipe-convert.cpp @ 44:a98ef4c2616b
Make base64/text selectable when serialising process and feature blocks; add base64 version as an output format for vampipe-convert; make VamPipePluginLibrary switch to returning base64 encoding as soon as it is fed any as input
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 08 Sep 2016 15:27:48 +0100 |
parents | 91f5c92d3bf7 |
children | f4244a2d55ac |
line wrap: on
line diff
--- a/utilities/vampipe-convert.cpp Wed Aug 24 10:50:40 2016 +0100 +++ b/utilities/vampipe-convert.cpp Thu Sep 08 15:27:48 2016 +0100 @@ -24,11 +24,14 @@ " <informat>: the format to read from stdin\n" " (\"json\" or \"capnp\", default is \"json\")\n" " <outformat>: the format to convert to and write to stdout\n" - " (\"json\" or \"capnp\", default is \"json\")\n" - " request|response: whether to expect Vamp request or response messages\n\n" + " (\"json\", \"json-b64\" or \"capnp\", default is \"json\")\n" + " request|response: whether messages are Vamp request or response type\n\n" "If <informat> and <outformat> differ, convert from <informat> to <outformat>.\n" "If <informat> and <outformat> are the same, just check validity of incoming\n" - "messages and pass them to output.\n\n"; + "messages and pass them to output.\n\n" + "Specifying \"json-b64\" as output format forces base64 encoding for process and\n" + "feature blocks, unlike the \"json\" output format which uses text encoding.\n" + "The \"json\" input format accepts either.\n\n"; exit(2); } @@ -93,6 +96,7 @@ Json j = convertRequestJson(input); rr.type = VampJson::getRequestResponseType(j); + VampJson::BufferSerialisation serialisation = VampJson::BufferSerialisation::Text; switch (rr.type) { @@ -106,7 +110,7 @@ rr.configurationRequest = VampJson::toVampRequest_Configure(j, mapper); break; case RRType::Process: - rr.processRequest = VampJson::toVampRequest_Process(j, mapper); + rr.processRequest = VampJson::toVampRequest_Process(j, mapper, serialisation); break; case RRType::Finish: rr.finishPlugin = VampJson::toVampRequest_Finish(j, mapper); @@ -119,7 +123,7 @@ } void -writeRequestJson(RequestOrResponse &rr) +writeRequestJson(RequestOrResponse &rr, bool useBase64) { Json j; @@ -135,7 +139,11 @@ j = VampJson::fromVampRequest_Configure(rr.configurationRequest, mapper); break; case RRType::Process: - j = VampJson::fromVampRequest_Process(rr.processRequest, mapper); + j = VampJson::fromVampRequest_Process + (rr.processRequest, mapper, + useBase64 ? + VampJson::BufferSerialisation::Base64 : + VampJson::BufferSerialisation::Text); break; case RRType::Finish: j = VampJson::fromVampRequest_Finish(rr.finishPlugin, mapper); @@ -162,6 +170,7 @@ Json j = convertResponseJson(input); rr.type = VampJson::getRequestResponseType(j); + VampJson::BufferSerialisation serialisation = VampJson::BufferSerialisation::Text; switch (rr.type) { @@ -175,10 +184,10 @@ rr.configurationResponse = VampJson::toVampResponse_Configure(j); break; case RRType::Process: - rr.processResponse = VampJson::toVampResponse_Process(j); + rr.processResponse = VampJson::toVampResponse_Process(j, serialisation); break; case RRType::Finish: - rr.finishResponse = VampJson::toVampResponse_Finish(j); + rr.finishResponse = VampJson::toVampResponse_Finish(j, serialisation); break; case RRType::NotValid: break; @@ -188,7 +197,7 @@ } void -writeResponseJson(RequestOrResponse &rr) +writeResponseJson(RequestOrResponse &rr, bool useBase64) { Json j; @@ -204,10 +213,18 @@ j = VampJson::fromVampResponse_Configure(rr.configurationResponse); break; case RRType::Process: - j = VampJson::fromVampResponse_Process(rr.processResponse); + j = VampJson::fromVampResponse_Process + (rr.processResponse, + useBase64 ? + VampJson::BufferSerialisation::Base64 : + VampJson::BufferSerialisation::Text); break; case RRType::Finish: - j = VampJson::fromVampResponse_Finish(rr.finishResponse); + j = VampJson::fromVampResponse_Finish + (rr.finishResponse, + useBase64 ? + VampJson::BufferSerialisation::Base64 : + VampJson::BufferSerialisation::Text); break; case RRType::NotValid: break; @@ -393,9 +410,15 @@ { if (format == "json") { if (rr.direction == RequestOrResponse::Request) { - writeRequestJson(rr); + writeRequestJson(rr, false); } else { - writeResponseJson(rr); + writeResponseJson(rr, false); + } + } else if (format == "json-b64") { + if (rr.direction == RequestOrResponse::Request) { + writeRequestJson(rr, true); + } else { + writeResponseJson(rr, true); } } else if (format == "capnp") { if (rr.direction == RequestOrResponse::Request) {