annotate utilities/json-cli.cpp @ 56:815e94fedc1c

Introduce ListResponse type as well
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 19 Sep 2016 14:10:19 +0100
parents 38780f15ac8d
children 85ec33975434
rev   line source
c@55 1
c@55 2 //!!! This program was an early test -- it should still compile but
c@55 3 //!!! it's incomplete. Remove it and use the server program instead.
c@7 4
c@7 5 #include "VampJson.h"
c@40 6 #include "bits/CountingPluginHandleMapper.h"
c@7 7
c@7 8 #include <iostream>
c@7 9 #include <sstream>
c@7 10 #include <stdexcept>
c@7 11
c@7 12 #include <map>
c@7 13 #include <set>
c@7 14
c@7 15 using namespace std;
c@7 16 using namespace Vamp;
c@7 17 using namespace Vamp::HostExt;
c@7 18 using namespace json11;
c@10 19 using namespace vampipe;
c@7 20
c@40 21 static CountingPluginHandleMapper mapper;
c@7 22
c@7 23 Vamp::HostExt::LoadResponse
c@7 24 loadPlugin(json11::Json j) {
c@7 25
c@7 26 auto req = VampJson::toLoadRequest(j);
c@7 27 auto loader = Vamp::HostExt::PluginLoader::getInstance();
c@7 28 auto response = loader->loadPlugin(req);
c@7 29
c@7 30 if (!response.plugin) {
c@7 31 throw VampJson::Failure("plugin load failed");
c@7 32 }
c@7 33
c@7 34 return response;
c@7 35 }
c@7 36
c@12 37 Vamp::HostExt::ConfigurationResponse
c@7 38 configurePlugin(Vamp::Plugin *plugin, json11::Json j) {
c@7 39
c@7 40 auto config = VampJson::toPluginConfiguration(j);
c@16 41 Vamp::HostExt::ConfigurationRequest req;
c@16 42 req.plugin = plugin;
c@16 43 req.configuration = config;
c@7 44 auto loader = Vamp::HostExt::PluginLoader::getInstance();
c@7 45
c@16 46 auto response = loader->configurePlugin(req);
c@16 47 if (response.outputs.empty()) {
c@7 48 throw VampJson::Failure("plugin initialisation failed (invalid channelCount, stepSize, blockSize?)");
c@7 49 }
c@12 50 return response;
c@7 51 }
c@7 52
c@7 53 Json
c@7 54 handle_list(Json content)
c@7 55 {
c@7 56 if (content != Json()) {
c@7 57 throw VampJson::Failure("no content expected for list request");
c@7 58 }
c@7 59
c@7 60 auto loader = PluginLoader::getInstance();
c@56 61 auto resp = loader->listPluginData();
c@7 62
c@7 63 Json::array j;
c@56 64 for (const auto &pd: resp.pluginData) {
c@7 65 j.push_back(VampJson::fromPluginStaticData(pd));
c@7 66 }
c@7 67 return Json(j);
c@7 68 }
c@7 69
c@7 70 Json
c@7 71 handle_load(Json j)
c@7 72 {
c@7 73 auto loadResponse = loadPlugin(j);
c@7 74
c@7 75 if (!loadResponse.plugin) {
c@7 76 throw VampJson::Failure("plugin load failed");
c@7 77 }
c@11 78
c@11 79 mapper.addPlugin(loadResponse.plugin);
c@7 80
c@11 81 return VampJson::fromLoadResponse(loadResponse, mapper);
c@7 82 }
c@7 83
c@7 84 Json
c@7 85 handle_configure(Json j)
c@7 86 {
c@7 87 string err;
c@7 88
c@7 89 if (!j.has_shape({
c@7 90 { "pluginHandle", Json::NUMBER },
c@7 91 { "configuration", Json::OBJECT }}, err)) {
c@7 92 throw VampJson::Failure("malformed configuration request: " + err);
c@7 93 }
c@7 94
c@11 95 int32_t handle = j["pluginHandle"].int_value();
c@7 96
c@40 97 if (mapper.isConfigured(handle)) {
c@40 98 throw VampJson::Failure("plugin has already been configured");
c@7 99 }
c@7 100
c@11 101 Plugin *plugin = mapper.handleToPlugin(handle);
c@7 102
c@7 103 Json config = j["configuration"];
c@7 104
c@12 105 auto response = configurePlugin(plugin, config);
c@7 106
c@40 107 mapper.markConfigured(handle, 0, 0); //!!!
c@7 108
c@7 109 cerr << "Configured and initialised plugin " << handle << endl;
c@7 110
c@55 111 return VampJson::fromConfigurationResponse(response, mapper);
c@7 112 }
c@7 113
c@7 114 Json
c@7 115 handle(string input)
c@7 116 {
c@7 117 string err;
c@7 118 Json j = Json::parse(input, err);
c@7 119
c@7 120 if (err != "") {
c@7 121 throw VampJson::Failure("invalid request: " + err);
c@7 122 }
c@7 123
c@24 124 if (!j["type"].is_string()) {
c@24 125 throw VampJson::Failure("type expected in request");
c@7 126 }
c@7 127
c@7 128 if (!j["content"].is_null() &&
c@7 129 !j["content"].is_object()) {
c@7 130 throw VampJson::Failure("object expected for content");
c@7 131 }
c@7 132
c@24 133 string verb = j["type"].string_value();
c@7 134 Json content = j["content"];
c@7 135 Json result;
c@7 136
c@7 137 if (verb == "list") {
c@7 138 result = handle_list(content);
c@7 139 } else if (verb == "load") {
c@7 140 result = handle_load(content);
c@7 141 } else if (verb == "configure") {
c@7 142 result = handle_configure(content);
c@7 143 } else {
c@7 144 throw VampJson::Failure("unknown verb: " + verb +
c@7 145 " (known verbs are: list load configure)");
c@7 146 }
c@7 147
c@7 148 return result;
c@7 149 }
c@7 150
c@7 151 Json
c@7 152 success_response(Json payload)
c@7 153 {
c@7 154 Json::object obj;
c@7 155 obj["success"] = true;
c@7 156 obj["response"] = payload;
c@7 157 return Json(obj);
c@7 158 }
c@7 159
c@7 160 Json
c@7 161 error_response(string text)
c@7 162 {
c@7 163 Json::object obj;
c@7 164 obj["success"] = false;
c@7 165 obj["errorText"] = text;
c@7 166 return Json(obj);
c@7 167 }
c@7 168
c@7 169 template<typename T>
c@7 170 T &getline(T &in, string prompt, string &out)
c@7 171 {
c@7 172 cerr << prompt;
c@7 173 return getline(in, out);
c@7 174 }
c@7 175
c@7 176 int main(int, char **)
c@7 177 {
c@7 178 string line;
c@7 179
c@7 180 while (getline(cin, "> ", line)) {
c@7 181 try {
c@7 182 Json result = handle(line);
c@7 183 cout << success_response(result).dump() << endl;
c@7 184 } catch (const VampJson::Failure &e) {
c@7 185 cout << error_response(e.what()).dump() << endl;
c@11 186 } catch (const PluginHandleMapper::NotFound &e) {
c@11 187 cout << error_response(e.what()).dump() << endl;
c@7 188 }
c@7 189 }
c@7 190
c@7 191 return 0;
c@7 192 }
c@7 193
c@7 194