c@7: c@7: #include "VampJson.h" c@7: c@7: #include c@7: #include c@7: #include c@7: c@7: #include c@7: #include c@7: c@7: using namespace std; c@7: using namespace Vamp; c@7: using namespace Vamp::HostExt; c@7: using namespace json11; c@7: c@7: static map loadedPlugins; c@7: static set initialisedPlugins; c@7: c@7: static uint32_t nextHandle = 1; // plugin handle type must fit in JSON number c@7: c@7: Vamp::HostExt::LoadResponse c@7: loadPlugin(json11::Json j) { c@7: c@7: auto req = VampJson::toLoadRequest(j); c@7: auto loader = Vamp::HostExt::PluginLoader::getInstance(); c@7: auto response = loader->loadPlugin(req); c@7: c@7: if (!response.plugin) { c@7: throw VampJson::Failure("plugin load failed"); c@7: } c@7: c@7: return response; c@7: } c@7: c@7: Vamp::Plugin::OutputList c@7: configurePlugin(Vamp::Plugin *plugin, json11::Json j) { c@7: c@7: auto config = VampJson::toPluginConfiguration(j); c@7: auto loader = Vamp::HostExt::PluginLoader::getInstance(); c@7: auto outputs = loader->configurePlugin(plugin, config); c@7: c@7: if (outputs.empty()) { c@7: throw VampJson::Failure("plugin initialisation failed (invalid channelCount, stepSize, blockSize?)"); c@7: } c@7: c@7: return outputs; c@7: } c@7: c@7: Json c@7: handle_list(Json content) c@7: { c@7: if (content != Json()) { c@7: throw VampJson::Failure("no content expected for list request"); c@7: } c@7: c@7: auto loader = PluginLoader::getInstance(); c@7: auto pluginData = loader->listPluginData(); c@7: c@7: Json::array j; c@7: for (const auto &pd: pluginData) { c@7: j.push_back(VampJson::fromPluginStaticData(pd)); c@7: } c@7: return Json(j); c@7: } c@7: c@7: Json c@7: handle_load(Json j) c@7: { c@7: auto loadResponse = loadPlugin(j); c@7: c@7: if (!loadResponse.plugin) { c@7: throw VampJson::Failure("plugin load failed"); c@7: } c@7: c@7: uint32_t h = nextHandle++; c@7: loadedPlugins[h] = loadResponse.plugin; c@7: c@7: Json::object response; c@7: response["pluginHandle"] = double(h); c@7: response["staticData"] = c@7: VampJson::fromPluginStaticData(loadResponse.staticData); c@7: response["defaultConfiguration"] = c@7: VampJson::fromPluginConfiguration(loadResponse.defaultConfiguration); c@7: c@7: cerr << "Loaded plugin: handle is " << h << endl; c@7: c@7: return Json(response); c@7: } c@7: c@7: Json c@7: handle_configure(Json j) c@7: { c@7: string err; c@7: c@7: if (!j.has_shape({ c@7: { "pluginHandle", Json::NUMBER }, c@7: { "configuration", Json::OBJECT }}, err)) { c@7: throw VampJson::Failure("malformed configuration request: " + err); c@7: } c@7: c@7: uint32_t handle = j["pluginHandle"].int_value(); c@7: c@7: if (loadedPlugins.find(handle) == loadedPlugins.end()) { c@7: throw VampJson::Failure("unknown plugin handle"); c@7: } c@7: c@7: if (initialisedPlugins.find(handle) != initialisedPlugins.end()) { c@7: throw VampJson::Failure("plugin has already been initialised"); c@7: } c@7: c@7: Plugin *plugin = loadedPlugins[handle]; c@7: c@7: Json config = j["configuration"]; c@7: c@7: configurePlugin(plugin, config); c@7: c@7: initialisedPlugins.insert(handle); c@7: c@7: cerr << "Configured and initialised plugin " << handle << endl; c@7: c@7: Json::object jout; c@7: Json::array outs; c@7: Vamp::Plugin::OutputList vouts = plugin->getOutputDescriptors(); c@7: for (auto &o: vouts) { c@7: outs.push_back(VampJson::fromOutputDescriptor(o)); c@7: } c@7: jout["outputList"] = outs; c@7: return Json(jout); c@7: } c@7: c@7: Json c@7: handle(string input) c@7: { c@7: string err; c@7: Json j = Json::parse(input, err); c@7: c@7: if (err != "") { c@7: throw VampJson::Failure("invalid request: " + err); c@7: } c@7: c@7: if (!j["verb"].is_string()) { c@7: throw VampJson::Failure("verb expected in request"); c@7: } c@7: c@7: if (!j["content"].is_null() && c@7: !j["content"].is_object()) { c@7: throw VampJson::Failure("object expected for content"); c@7: } c@7: c@7: string verb = j["verb"].string_value(); c@7: Json content = j["content"]; c@7: Json result; c@7: c@7: if (verb == "list") { c@7: result = handle_list(content); c@7: } else if (verb == "load") { c@7: result = handle_load(content); c@7: } else if (verb == "configure") { c@7: result = handle_configure(content); c@7: } else { c@7: throw VampJson::Failure("unknown verb: " + verb + c@7: " (known verbs are: list load configure)"); c@7: } c@7: c@7: return result; c@7: } c@7: c@7: Json c@7: success_response(Json payload) c@7: { c@7: Json::object obj; c@7: obj["success"] = true; c@7: obj["response"] = payload; c@7: return Json(obj); c@7: } c@7: c@7: Json c@7: error_response(string text) c@7: { c@7: Json::object obj; c@7: obj["success"] = false; c@7: obj["errorText"] = text; c@7: return Json(obj); c@7: } c@7: c@7: template c@7: T &getline(T &in, string prompt, string &out) c@7: { c@7: cerr << prompt; c@7: return getline(in, out); c@7: } c@7: c@7: int main(int, char **) c@7: { c@7: string line; c@7: c@7: while (getline(cin, "> ", line)) { c@7: try { c@7: Json result = handle(line); c@7: cout << success_response(result).dump() << endl; c@7: } catch (const VampJson::Failure &e) { c@7: cout << error_response(e.what()).dump() << endl; c@7: } c@7: } c@7: c@7: return 0; c@7: } c@7: c@7: