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