comparison utilities/json-to-capnp.cpp @ 5:6e8607ebad03

Promote the more successful experiments (todo: get them to build again)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 13 May 2016 13:48:59 +0100
parents
children d8358afe3f2c
comparison
equal deleted inserted replaced
4:25499f505d0e 5:6e8607ebad03
1
2 #include "VampJson.h"
3 #include "vampipe-convert.h"
4
5 #include <iostream>
6 #include <sstream>
7 #include <stdexcept>
8
9 using namespace std;
10 using namespace json11;
11 using namespace vampipe;
12
13 // Accepting JSON objects with two fields, "type" and "payload". The
14 // "type" string corresponds to the JSON schema filename
15 // (e.g. "outputdescriptor") and the "payload" is the JSON object
16 // encoded with that schema.
17
18 Json
19 json_input(string input)
20 {
21 string err;
22 Json j = Json::parse(input, err);
23 if (err != "") {
24 throw VampJson::Failure("invalid json: " + err);
25 }
26 if (!j.is_object()) {
27 throw VampJson::Failure("object expected at top level");
28 }
29 if (!j["type"].is_string()) {
30 throw VampJson::Failure("string expected for type field");
31 }
32 if (!j["payload"].is_object()) {
33 throw VampJson::Failure("object expected for payload field");
34 }
35 return j;
36 }
37
38 void
39 handle_input(::capnp::MallocMessageBuilder &message, string input)
40 {
41 string err;
42
43 Json j = json_input(input);
44 string type = j["type"].string_value();
45 Json payload = j["payload"];
46
47 if (type == "basic") {
48 throw VampJson::Failure("can't convert Basic block on its own");
49
50 } else if (type == "configurationrequest") {
51 throw VampJson::Failure("not implemented yet"); ///!!!
52
53 } else if (type == "configurationresponse") {
54 throw VampJson::Failure("not implemented yet"); ///!!!
55
56 } else if (type == "feature") {
57 auto f = message.initRoot<Feature>();
58 VampSDKConverter::buildFeature
59 (f, VampJson::toFeature(payload));
60
61 } else if (type == "featureset") {
62 auto fs = message.initRoot<FeatureSet>();
63 VampSDKConverter::buildFeatureSet
64 (fs, VampJson::toFeatureSet(payload));
65
66 } else if (type == "loadrequest") {
67 auto req = message.initRoot<LoadRequest>();
68 VampSDKConverter::buildLoadRequest
69 (req, VampJson::toLoadRequest(payload));
70
71 } else if (type == "loadresponse") {
72 //!!! response types & configure call for plugin handles, but
73 //!!! we don't have any context in which a plugin handle can
74 //!!! be persistent here
75 throw VampJson::Failure("not implemented yet"); ///!!!
76
77 } else if (type == "outputdescriptor") {
78 auto od = message.initRoot<OutputDescriptor>();
79 VampSDKConverter::buildOutputDescriptor
80 (od, VampJson::toOutputDescriptor(payload));
81
82 } else if (type == "parameterdescriptor") {
83 auto pd = message.initRoot<ParameterDescriptor>();
84 VampSDKConverter::buildParameterDescriptor
85 (pd, VampJson::toParameterDescriptor(payload));
86
87 } else if (type == "pluginconfiguration") {
88 auto pc = message.initRoot<PluginConfiguration>();
89 auto config = VampJson::toPluginConfiguration(payload);
90 VampSDKConverter::buildPluginConfiguration(pc, config);
91
92 } else if (type == "pluginstaticdata") {
93 auto pc = message.initRoot<PluginStaticData>();
94 auto sd = VampJson::toPluginStaticData(payload);
95 VampSDKConverter::buildPluginStaticData(pc, sd);
96
97 } else if (type == "processblock") {
98 throw VampJson::Failure("not implemented yet"); ///!!!
99
100 } else if (type == "realtime") {
101 auto b = message.initRoot<RealTime>();
102 VampSDKConverter::buildRealTime
103 (b, VampJson::toRealTime(payload));
104
105 } else if (type == "valueextents") {
106 throw VampJson::Failure("no ValueExtents struct in Cap'n Proto mapping");
107
108 } else {
109 throw VampJson::Failure("unknown or unsupported JSON schema type " +
110 type);
111 }
112 }
113
114 int main(int, char **)
115 {
116 string input;
117
118 while (getline(cin, input)) {
119 try {
120 ::capnp::MallocMessageBuilder message;
121 handle_input(message, input);
122 writePackedMessageToFd(1, message); // stdout
123 return 0;
124 } catch (const VampJson::Failure &e) {
125 cerr << "Failed to convert JSON to Cap'n Proto message: "
126 << e.what() << endl;
127 return 1;
128 }
129 }
130 }
131
132