annotate utilities/json-cli.cpp @ 40:55d69b26d4db

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