Mercurial > hg > piper-cpp
view utilities/json-to-capnp.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 | 55d69b26d4db |
children | f4244a2d55ac |
line wrap: on
line source
#include "VampJson.h" #include "VampnProto.h" #include <iostream> #include <sstream> #include <stdexcept> #include "bits/PreservingPluginHandleMapper.h" using namespace std; using namespace json11; using namespace vampipe; // Accepting JSON objects with two fields, "type" and "payload". The // "type" string corresponds to the JSON schema filename // (e.g. "outputdescriptor") and the "payload" is the JSON object // encoded with that schema. Json json_input(string input) { string err; Json j = Json::parse(input, err); if (err != "") { throw VampJson::Failure("invalid json: " + err); } if (!j.is_object()) { throw VampJson::Failure("object expected at top level"); } if (!j["type"].is_string()) { throw VampJson::Failure("string expected for type field"); } if (!j["payload"].is_object()) { throw VampJson::Failure("object expected for payload field"); } return j; } void handle_input(::capnp::MallocMessageBuilder &message, string input) { string err; Json j = json_input(input); string type = j["type"].string_value(); Json payload = j["payload"]; VampJson::BufferSerialisation serialisation; if (type == "configurationrequest") { auto req = message.initRoot<ConfigurationRequest>(); PreservingPluginHandleMapper mapper; VampnProto::buildConfigurationRequest (req, VampJson::toConfigurationRequest(payload, mapper), mapper); } else if (type == "configurationresponse") { auto resp = message.initRoot<ConfigurationResponse>(); VampnProto::buildConfigurationResponse (resp, VampJson::toConfigurationResponse(payload)); } else if (type == "feature") { auto f = message.initRoot<Feature>(); VampnProto::buildFeature (f, VampJson::toFeature(payload, serialisation)); } else if (type == "featureset") { auto fs = message.initRoot<FeatureSet>(); VampnProto::buildFeatureSet (fs, VampJson::toFeatureSet(payload, serialisation)); } else if (type == "loadrequest") { auto req = message.initRoot<LoadRequest>(); VampnProto::buildLoadRequest (req, VampJson::toLoadRequest(payload)); } else if (type == "loadresponse") { auto resp = message.initRoot<LoadResponse>(); PreservingPluginHandleMapper mapper; VampnProto::buildLoadResponse (resp, VampJson::toLoadResponse(payload, mapper), mapper); } else if (type == "outputdescriptor") { auto od = message.initRoot<OutputDescriptor>(); VampnProto::buildOutputDescriptor (od, VampJson::toOutputDescriptor(payload)); } else if (type == "parameterdescriptor") { auto pd = message.initRoot<ParameterDescriptor>(); VampnProto::buildParameterDescriptor (pd, VampJson::toParameterDescriptor(payload)); } else if (type == "pluginconfiguration") { auto pc = message.initRoot<PluginConfiguration>(); auto config = VampJson::toPluginConfiguration(payload); VampnProto::buildPluginConfiguration(pc, config); } else if (type == "pluginstaticdata") { auto pc = message.initRoot<PluginStaticData>(); auto sd = VampJson::toPluginStaticData(payload); VampnProto::buildPluginStaticData(pc, sd); } else if (type == "processrequest") { auto p = message.initRoot<ProcessRequest>(); PreservingPluginHandleMapper mapper; VampnProto::buildProcessRequest (p, VampJson::toProcessRequest(payload, mapper, serialisation), mapper); } else if (type == "realtime") { auto b = message.initRoot<RealTime>(); VampnProto::buildRealTime (b, VampJson::toRealTime(payload)); } else { throw VampJson::Failure("unknown or unsupported JSON schema type " + type); } } int main(int, char **) { string input; while (getline(cin, input)) { try { ::capnp::MallocMessageBuilder message; handle_input(message, input); writePackedMessageToFd(1, message); // stdout return 0; } catch (const VampJson::Failure &e) { cerr << "Failed to convert JSON to Cap'n Proto message: " << e.what() << endl; return 1; } } }