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