annotate utilities/json-to-capnp.cpp @ 19:f379b0e9a8e1

Add (but don't yet use) the constant plugin handle mapper
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 20 May 2016 10:25:01 +0100
parents d8358afe3f2c
children 7ca64f74add2
rev   line source
c@5 1
c@5 2 #include "VampJson.h"
c@6 3 #include "VampnProto.h"
c@5 4
c@19 5 #include "bits/ConstantPluginHandleMapper.h"
c@19 6
c@5 7 #include <iostream>
c@5 8 #include <sstream>
c@5 9 #include <stdexcept>
c@5 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@5 48
c@5 49 if (type == "basic") {
c@5 50 throw VampJson::Failure("can't convert Basic block on its own");
c@5 51
c@5 52 } else if (type == "configurationrequest") {
c@5 53 throw VampJson::Failure("not implemented yet"); ///!!!
c@5 54
c@5 55 } else if (type == "configurationresponse") {
c@5 56 throw VampJson::Failure("not implemented yet"); ///!!!
c@5 57
c@5 58 } else if (type == "feature") {
c@5 59 auto f = message.initRoot<Feature>();
c@6 60 VampnProto::buildFeature
c@5 61 (f, VampJson::toFeature(payload));
c@5 62
c@5 63 } else if (type == "featureset") {
c@5 64 auto fs = message.initRoot<FeatureSet>();
c@6 65 VampnProto::buildFeatureSet
c@5 66 (fs, VampJson::toFeatureSet(payload));
c@5 67
c@5 68 } else if (type == "loadrequest") {
c@5 69 auto req = message.initRoot<LoadRequest>();
c@6 70 VampnProto::buildLoadRequest
c@5 71 (req, VampJson::toLoadRequest(payload));
c@5 72
c@5 73 } else if (type == "loadresponse") {
c@5 74 //!!! response types & configure call for plugin handles, but
c@5 75 //!!! we don't have any context in which a plugin handle can
c@5 76 //!!! be persistent here
c@5 77 throw VampJson::Failure("not implemented yet"); ///!!!
c@5 78
c@5 79 } else if (type == "outputdescriptor") {
c@5 80 auto od = message.initRoot<OutputDescriptor>();
c@6 81 VampnProto::buildOutputDescriptor
c@5 82 (od, VampJson::toOutputDescriptor(payload));
c@5 83
c@5 84 } else if (type == "parameterdescriptor") {
c@5 85 auto pd = message.initRoot<ParameterDescriptor>();
c@6 86 VampnProto::buildParameterDescriptor
c@5 87 (pd, VampJson::toParameterDescriptor(payload));
c@5 88
c@5 89 } else if (type == "pluginconfiguration") {
c@5 90 auto pc = message.initRoot<PluginConfiguration>();
c@5 91 auto config = VampJson::toPluginConfiguration(payload);
c@6 92 VampnProto::buildPluginConfiguration(pc, config);
c@5 93
c@5 94 } else if (type == "pluginstaticdata") {
c@5 95 auto pc = message.initRoot<PluginStaticData>();
c@5 96 auto sd = VampJson::toPluginStaticData(payload);
c@6 97 VampnProto::buildPluginStaticData(pc, sd);
c@5 98
c@5 99 } else if (type == "processblock") {
c@5 100 throw VampJson::Failure("not implemented yet"); ///!!!
c@5 101
c@5 102 } else if (type == "realtime") {
c@5 103 auto b = message.initRoot<RealTime>();
c@6 104 VampnProto::buildRealTime
c@5 105 (b, VampJson::toRealTime(payload));
c@5 106
c@5 107 } else if (type == "valueextents") {
c@5 108 throw VampJson::Failure("no ValueExtents struct in Cap'n Proto mapping");
c@5 109
c@5 110 } else {
c@5 111 throw VampJson::Failure("unknown or unsupported JSON schema type " +
c@5 112 type);
c@5 113 }
c@5 114 }
c@5 115
c@5 116 int main(int, char **)
c@5 117 {
c@5 118 string input;
c@5 119
c@5 120 while (getline(cin, input)) {
c@5 121 try {
c@5 122 ::capnp::MallocMessageBuilder message;
c@5 123 handle_input(message, input);
c@5 124 writePackedMessageToFd(1, message); // stdout
c@5 125 return 0;
c@5 126 } catch (const VampJson::Failure &e) {
c@5 127 cerr << "Failed to convert JSON to Cap'n Proto message: "
c@5 128 << e.what() << endl;
c@5 129 return 1;
c@5 130 }
c@5 131 }
c@5 132 }
c@5 133
c@5 134