annotate utilities/json-to-capnp.cpp @ 51:f4244a2d55ac

Introduce and use output id mappers
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 16 Sep 2016 15:10:57 +0100
parents a98ef4c2616b
children 38780f15ac8d
rev   line source
c@5 1
c@5 2 #include "VampJson.h"
c@6 3 #include "VampnProto.h"
c@5 4
c@5 5 #include <iostream>
c@5 6 #include <sstream>
c@5 7 #include <stdexcept>
c@5 8
c@40 9 #include "bits/PreservingPluginHandleMapper.h"
c@40 10
c@5 11 using namespace std;
c@5 12 using namespace json11;
c@5 13 using namespace vampipe;
c@5 14
c@5 15 // Accepting JSON objects with two fields, "type" and "payload". The
c@5 16 // "type" string corresponds to the JSON schema filename
c@5 17 // (e.g. "outputdescriptor") and the "payload" is the JSON object
c@5 18 // encoded with that schema.
c@5 19
c@5 20 Json
c@5 21 json_input(string input)
c@5 22 {
c@5 23 string err;
c@5 24 Json j = Json::parse(input, err);
c@5 25 if (err != "") {
c@5 26 throw VampJson::Failure("invalid json: " + err);
c@5 27 }
c@5 28 if (!j.is_object()) {
c@5 29 throw VampJson::Failure("object expected at top level");
c@5 30 }
c@5 31 if (!j["type"].is_string()) {
c@5 32 throw VampJson::Failure("string expected for type field");
c@5 33 }
c@5 34 if (!j["payload"].is_object()) {
c@5 35 throw VampJson::Failure("object expected for payload field");
c@5 36 }
c@5 37 return j;
c@5 38 }
c@5 39
c@5 40 void
c@5 41 handle_input(::capnp::MallocMessageBuilder &message, string input)
c@5 42 {
c@5 43 string err;
c@5 44
c@5 45 Json j = json_input(input);
c@5 46 string type = j["type"].string_value();
c@5 47 Json payload = j["payload"];
c@44 48 VampJson::BufferSerialisation serialisation;
c@5 49
c@23 50 if (type == "configurationrequest") {
c@20 51 auto req = message.initRoot<ConfigurationRequest>();
c@20 52 PreservingPluginHandleMapper mapper;
c@20 53 VampnProto::buildConfigurationRequest
c@20 54 (req, VampJson::toConfigurationRequest(payload, mapper), mapper);
c@5 55
c@5 56 } else if (type == "configurationresponse") {
c@21 57 auto resp = message.initRoot<ConfigurationResponse>();
c@21 58 VampnProto::buildConfigurationResponse
c@21 59 (resp, VampJson::toConfigurationResponse(payload));
c@5 60
c@5 61 } else if (type == "feature") {
c@5 62 auto f = message.initRoot<Feature>();
c@6 63 VampnProto::buildFeature
c@44 64 (f, VampJson::toFeature(payload, serialisation));
c@5 65
c@5 66 } else if (type == "featureset") {
c@5 67 auto fs = message.initRoot<FeatureSet>();
c@51 68 PreservingPluginOutputIdMapper omapper;
c@6 69 VampnProto::buildFeatureSet
c@51 70 (fs, VampJson::toFeatureSet(payload, omapper, serialisation), omapper);
c@5 71
c@5 72 } else if (type == "loadrequest") {
c@5 73 auto req = message.initRoot<LoadRequest>();
c@6 74 VampnProto::buildLoadRequest
c@5 75 (req, VampJson::toLoadRequest(payload));
c@5 76
c@5 77 } else if (type == "loadresponse") {
c@21 78 auto resp = message.initRoot<LoadResponse>();
c@21 79 PreservingPluginHandleMapper mapper;
c@21 80 VampnProto::buildLoadResponse
c@21 81 (resp, VampJson::toLoadResponse(payload, mapper), mapper);
c@5 82
c@5 83 } else if (type == "outputdescriptor") {
c@5 84 auto od = message.initRoot<OutputDescriptor>();
c@6 85 VampnProto::buildOutputDescriptor
c@5 86 (od, VampJson::toOutputDescriptor(payload));
c@5 87
c@5 88 } else if (type == "parameterdescriptor") {
c@5 89 auto pd = message.initRoot<ParameterDescriptor>();
c@6 90 VampnProto::buildParameterDescriptor
c@5 91 (pd, VampJson::toParameterDescriptor(payload));
c@5 92
c@5 93 } else if (type == "pluginconfiguration") {
c@5 94 auto pc = message.initRoot<PluginConfiguration>();
c@5 95 auto config = VampJson::toPluginConfiguration(payload);
c@6 96 VampnProto::buildPluginConfiguration(pc, config);
c@5 97
c@5 98 } else if (type == "pluginstaticdata") {
c@5 99 auto pc = message.initRoot<PluginStaticData>();
c@5 100 auto sd = VampJson::toPluginStaticData(payload);
c@6 101 VampnProto::buildPluginStaticData(pc, sd);
c@5 102
c@22 103 } else if (type == "processrequest") {
c@22 104 auto p = message.initRoot<ProcessRequest>();
c@22 105 PreservingPluginHandleMapper mapper;
c@22 106 VampnProto::buildProcessRequest
c@44 107 (p, VampJson::toProcessRequest(payload, mapper, serialisation), mapper);
c@5 108
c@5 109 } else if (type == "realtime") {
c@5 110 auto b = message.initRoot<RealTime>();
c@6 111 VampnProto::buildRealTime
c@5 112 (b, VampJson::toRealTime(payload));
c@5 113
c@5 114 } else {
c@5 115 throw VampJson::Failure("unknown or unsupported JSON schema type " +
c@5 116 type);
c@5 117 }
c@5 118 }
c@5 119
c@5 120 int main(int, char **)
c@5 121 {
c@5 122 string input;
c@5 123
c@5 124 while (getline(cin, input)) {
c@5 125 try {
c@5 126 ::capnp::MallocMessageBuilder message;
c@5 127 handle_input(message, input);
c@5 128 writePackedMessageToFd(1, message); // stdout
c@5 129 return 0;
c@5 130 } catch (const VampJson::Failure &e) {
c@5 131 cerr << "Failed to convert JSON to Cap'n Proto message: "
c@5 132 << e.what() << endl;
c@5 133 return 1;
c@5 134 }
c@5 135 }
c@5 136 }
c@5 137
c@5 138