c@5
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@5
|
2
|
c@18
|
3 /*
|
c@18
|
4 VamPipe
|
c@18
|
5
|
c@18
|
6 Centre for Digital Music, Queen Mary, University of London.
|
c@18
|
7 Copyright 2015-2016 QMUL.
|
c@18
|
8
|
c@18
|
9 Permission is hereby granted, free of charge, to any person
|
c@18
|
10 obtaining a copy of this software and associated documentation
|
c@18
|
11 files (the "Software"), to deal in the Software without
|
c@18
|
12 restriction, including without limitation the rights to use, copy,
|
c@18
|
13 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@18
|
14 of the Software, and to permit persons to whom the Software is
|
c@18
|
15 furnished to do so, subject to the following conditions:
|
c@18
|
16
|
c@18
|
17 The above copyright notice and this permission notice shall be
|
c@18
|
18 included in all copies or substantial portions of the Software.
|
c@18
|
19
|
c@18
|
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@18
|
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@18
|
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@18
|
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@18
|
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@18
|
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@18
|
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@18
|
27
|
c@18
|
28 Except as contained in this notice, the names of the Centre for
|
c@18
|
29 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@18
|
30 shall not be used in advertising or otherwise to promote the sale,
|
c@18
|
31 use or other dealings in this Software without prior written
|
c@18
|
32 authorization.
|
c@18
|
33 */
|
c@18
|
34
|
c@5
|
35 #ifndef VAMP_JSON_H
|
c@5
|
36 #define VAMP_JSON_H
|
c@5
|
37
|
c@5
|
38 #include <vector>
|
c@5
|
39 #include <string>
|
c@5
|
40 #include <sstream>
|
c@5
|
41 #include <stdexcept>
|
c@5
|
42
|
c@5
|
43 #include <json11/json11.hpp>
|
c@5
|
44 #include <base-n/include/basen.hpp>
|
c@5
|
45
|
c@5
|
46 #include <vamp-hostsdk/Plugin.h>
|
c@5
|
47 #include <vamp-hostsdk/PluginLoader.h>
|
c@5
|
48
|
c@10
|
49 #include "bits/PluginHandleMapper.h"
|
c@25
|
50 #include "bits/RequestResponseType.h"
|
c@10
|
51
|
c@10
|
52 namespace vampipe {
|
c@10
|
53
|
c@6
|
54 /**
|
c@6
|
55 * Convert the structures laid out in the Vamp SDK classes into JSON
|
c@6
|
56 * (and back again) following the schema in the vamp-json-schema
|
c@6
|
57 * project repo.
|
c@6
|
58 */
|
c@5
|
59 class VampJson
|
c@5
|
60 {
|
c@5
|
61 public:
|
c@5
|
62 class Failure : virtual public std::runtime_error {
|
c@5
|
63 public:
|
c@5
|
64 Failure(std::string s) : runtime_error(s) { }
|
c@5
|
65 };
|
c@5
|
66
|
c@5
|
67 template <typename T>
|
c@5
|
68 static json11::Json
|
c@5
|
69 fromBasicDescriptor(const T &t) {
|
c@5
|
70 return json11::Json::object {
|
c@5
|
71 { "identifier", t.identifier },
|
c@5
|
72 { "name", t.name },
|
c@5
|
73 { "description", t.description }
|
c@5
|
74 };
|
c@5
|
75 }
|
c@5
|
76
|
c@5
|
77 template <typename T>
|
c@5
|
78 static void
|
c@5
|
79 toBasicDescriptor(json11::Json j, T &t) {
|
c@5
|
80 if (!j.is_object()) {
|
c@5
|
81 throw Failure("object expected for basic descriptor content");
|
c@5
|
82 }
|
c@5
|
83 if (!j["identifier"].is_string()) {
|
c@5
|
84 throw Failure("string expected for identifier");
|
c@5
|
85 }
|
c@5
|
86 t.identifier = j["identifier"].string_value();
|
c@5
|
87 t.name = j["name"].string_value();
|
c@5
|
88 t.description = j["description"].string_value();
|
c@5
|
89 }
|
c@5
|
90
|
c@5
|
91 template <typename T>
|
c@5
|
92 static json11::Json
|
c@5
|
93 fromValueExtents(const T &t) {
|
c@5
|
94 return json11::Json::object {
|
c@5
|
95 { "min", t.minValue },
|
c@5
|
96 { "max", t.maxValue }
|
c@5
|
97 };
|
c@5
|
98 }
|
c@5
|
99
|
c@5
|
100 template <typename T>
|
c@5
|
101 static bool
|
c@5
|
102 toValueExtents(json11::Json j, T &t) {
|
c@5
|
103 if (j["extents"].is_null()) {
|
c@5
|
104 return false;
|
c@5
|
105 } else if (j["extents"].is_object()) {
|
c@5
|
106 if (j["extents"]["min"].is_number() &&
|
c@5
|
107 j["extents"]["max"].is_number()) {
|
c@5
|
108 t.minValue = j["extents"]["min"].number_value();
|
c@5
|
109 t.maxValue = j["extents"]["max"].number_value();
|
c@5
|
110 return true;
|
c@5
|
111 } else {
|
c@5
|
112 throw Failure("numbers expected for min and max");
|
c@5
|
113 }
|
c@5
|
114 } else {
|
c@5
|
115 throw Failure("object expected for extents (if present)");
|
c@5
|
116 }
|
c@5
|
117 }
|
c@5
|
118
|
c@5
|
119 static json11::Json
|
c@5
|
120 fromRealTime(const Vamp::RealTime &r) {
|
c@5
|
121 return json11::Json::object {
|
c@5
|
122 { "s", r.sec },
|
c@5
|
123 { "n", r.nsec }
|
c@5
|
124 };
|
c@5
|
125 }
|
c@5
|
126
|
c@5
|
127 static Vamp::RealTime
|
c@5
|
128 toRealTime(json11::Json j) {
|
c@5
|
129 json11::Json sec = j["s"];
|
c@5
|
130 json11::Json nsec = j["n"];
|
c@5
|
131 if (!sec.is_number() || !nsec.is_number()) {
|
c@5
|
132 throw Failure("invalid Vamp::RealTime object " + j.dump());
|
c@5
|
133 }
|
c@5
|
134 return Vamp::RealTime(sec.int_value(), nsec.int_value());
|
c@5
|
135 }
|
c@5
|
136
|
c@5
|
137 static std::string
|
c@5
|
138 fromSampleType(Vamp::Plugin::OutputDescriptor::SampleType type) {
|
c@5
|
139 switch (type) {
|
c@5
|
140 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
|
c@5
|
141 return "OneSamplePerStep";
|
c@5
|
142 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
|
c@5
|
143 return "FixedSampleRate";
|
c@5
|
144 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
|
c@5
|
145 return "VariableSampleRate";
|
c@5
|
146 }
|
c@5
|
147 return "";
|
c@5
|
148 }
|
c@5
|
149
|
c@5
|
150 static Vamp::Plugin::OutputDescriptor::SampleType
|
c@5
|
151 toSampleType(std::string text) {
|
c@5
|
152 if (text == "OneSamplePerStep") {
|
c@5
|
153 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
|
c@5
|
154 } else if (text == "FixedSampleRate") {
|
c@5
|
155 return Vamp::Plugin::OutputDescriptor::FixedSampleRate;
|
c@5
|
156 } else if (text == "VariableSampleRate") {
|
c@5
|
157 return Vamp::Plugin::OutputDescriptor::VariableSampleRate;
|
c@5
|
158 } else {
|
c@5
|
159 throw Failure("invalid sample type string: " + text);
|
c@5
|
160 }
|
c@5
|
161 }
|
c@5
|
162
|
c@5
|
163 static json11::Json
|
c@5
|
164 fromOutputDescriptor(const Vamp::Plugin::OutputDescriptor &desc) {
|
c@5
|
165 json11::Json::object jo {
|
c@5
|
166 { "basic", fromBasicDescriptor(desc) },
|
c@5
|
167 { "unit", desc.unit },
|
c@5
|
168 { "sampleType", fromSampleType(desc.sampleType) },
|
c@5
|
169 { "sampleRate", desc.sampleRate },
|
c@5
|
170 { "hasDuration", desc.hasDuration }
|
c@5
|
171 };
|
c@5
|
172 if (desc.hasFixedBinCount) {
|
c@5
|
173 jo["binCount"] = int(desc.binCount);
|
c@5
|
174 jo["binNames"] = json11::Json::array
|
c@5
|
175 (desc.binNames.begin(), desc.binNames.end());
|
c@5
|
176 }
|
c@5
|
177 if (desc.hasKnownExtents) {
|
c@5
|
178 jo["extents"] = fromValueExtents(desc);
|
c@5
|
179 }
|
c@5
|
180 if (desc.isQuantized) {
|
c@5
|
181 jo["quantizeStep"] = desc.quantizeStep;
|
c@5
|
182 }
|
c@5
|
183 return json11::Json(jo);
|
c@5
|
184 }
|
c@12
|
185
|
c@5
|
186 static Vamp::Plugin::OutputDescriptor
|
c@5
|
187 toOutputDescriptor(json11::Json j) {
|
c@5
|
188
|
c@5
|
189 Vamp::Plugin::OutputDescriptor od;
|
c@5
|
190 if (!j.is_object()) {
|
c@5
|
191 throw Failure("object expected for output descriptor");
|
c@5
|
192 }
|
c@5
|
193
|
c@5
|
194 toBasicDescriptor(j["basic"], od);
|
c@5
|
195
|
c@5
|
196 od.unit = j["unit"].string_value();
|
c@5
|
197
|
c@5
|
198 od.sampleType = toSampleType(j["sampleType"].string_value());
|
c@5
|
199
|
c@5
|
200 if (!j["sampleRate"].is_number()) {
|
c@5
|
201 throw Failure("number expected for sample rate");
|
c@5
|
202 }
|
c@5
|
203 od.sampleRate = j["sampleRate"].number_value();
|
c@5
|
204 od.hasDuration = j["hasDuration"].bool_value();
|
c@5
|
205
|
c@5
|
206 if (j["binCount"].is_number() && j["binCount"].int_value() > 0) {
|
c@5
|
207 od.hasFixedBinCount = true;
|
c@5
|
208 od.binCount = j["binCount"].int_value();
|
c@5
|
209 for (auto &n: j["binNames"].array_items()) {
|
c@5
|
210 if (!n.is_string()) {
|
c@5
|
211 throw Failure("string expected for bin name");
|
c@5
|
212 }
|
c@5
|
213 od.binNames.push_back(n.string_value());
|
c@5
|
214 }
|
c@5
|
215 } else {
|
c@5
|
216 od.hasFixedBinCount = false;
|
c@5
|
217 }
|
c@5
|
218
|
c@5
|
219 bool extentsPresent = toValueExtents(j, od);
|
c@5
|
220 od.hasKnownExtents = extentsPresent;
|
c@5
|
221
|
c@5
|
222 if (j["quantizeStep"].is_number()) {
|
c@5
|
223 od.isQuantized = true;
|
c@5
|
224 od.quantizeStep = j["quantizeStep"].number_value();
|
c@5
|
225 } else {
|
c@5
|
226 od.isQuantized = false;
|
c@5
|
227 }
|
c@5
|
228
|
c@5
|
229 return od;
|
c@5
|
230 }
|
c@5
|
231
|
c@5
|
232 static json11::Json
|
c@5
|
233 fromParameterDescriptor(const Vamp::PluginBase::ParameterDescriptor &desc) {
|
c@5
|
234
|
c@5
|
235 json11::Json::object jo {
|
c@5
|
236 { "basic", fromBasicDescriptor(desc) },
|
c@5
|
237 { "unit", desc.unit },
|
c@5
|
238 { "extents", fromValueExtents(desc) },
|
c@5
|
239 { "defaultValue", desc.defaultValue },
|
c@5
|
240 { "valueNames", json11::Json::array
|
c@5
|
241 (desc.valueNames.begin(), desc.valueNames.end()) }
|
c@5
|
242 };
|
c@5
|
243 if (desc.isQuantized) {
|
c@5
|
244 jo["quantizeStep"] = desc.quantizeStep;
|
c@5
|
245 }
|
c@5
|
246 return json11::Json(jo);
|
c@5
|
247 }
|
c@5
|
248
|
c@5
|
249 static Vamp::PluginBase::ParameterDescriptor
|
c@5
|
250 toParameterDescriptor(json11::Json j) {
|
c@5
|
251
|
c@5
|
252 Vamp::PluginBase::ParameterDescriptor pd;
|
c@5
|
253 if (!j.is_object()) {
|
c@5
|
254 throw Failure("object expected for parameter descriptor");
|
c@5
|
255 }
|
c@5
|
256
|
c@5
|
257 toBasicDescriptor(j["basic"], pd);
|
c@5
|
258
|
c@5
|
259 pd.unit = j["unit"].string_value();
|
c@5
|
260
|
c@5
|
261 bool extentsPresent = toValueExtents(j, pd);
|
c@5
|
262 if (!extentsPresent) {
|
c@5
|
263 throw Failure("extents must be present in parameter descriptor");
|
c@5
|
264 }
|
c@5
|
265
|
c@5
|
266 if (!j["defaultValue"].is_number()) {
|
c@5
|
267 throw Failure("number expected for default value");
|
c@5
|
268 }
|
c@5
|
269
|
c@5
|
270 pd.defaultValue = j["defaultValue"].number_value();
|
c@5
|
271
|
c@5
|
272 pd.valueNames.clear();
|
c@5
|
273 for (auto &n: j["valueNames"].array_items()) {
|
c@5
|
274 if (!n.is_string()) {
|
c@5
|
275 throw Failure("string expected for value name");
|
c@5
|
276 }
|
c@5
|
277 pd.valueNames.push_back(n.string_value());
|
c@5
|
278 }
|
c@5
|
279
|
c@5
|
280 if (j["quantizeStep"].is_number()) {
|
c@5
|
281 pd.isQuantized = true;
|
c@5
|
282 pd.quantizeStep = j["quantizeStep"].number_value();
|
c@5
|
283 } else {
|
c@5
|
284 pd.isQuantized = false;
|
c@5
|
285 }
|
c@5
|
286
|
c@5
|
287 return pd;
|
c@5
|
288 }
|
c@5
|
289
|
c@5
|
290 static std::string
|
c@5
|
291 fromFloatBuffer(const float *buffer, size_t nfloats) {
|
c@5
|
292 // must use char pointers, otherwise the converter will only
|
c@5
|
293 // encode every 4th byte (as it will count up in float* steps)
|
c@5
|
294 const char *start = reinterpret_cast<const char *>(buffer);
|
c@5
|
295 const char *end = reinterpret_cast<const char *>(buffer + nfloats);
|
c@5
|
296 std::string encoded;
|
c@5
|
297 bn::encode_b64(start, end, back_inserter(encoded));
|
c@5
|
298 return encoded;
|
c@5
|
299 }
|
c@5
|
300
|
c@5
|
301 static std::vector<float>
|
c@5
|
302 toFloatBuffer(std::string encoded) {
|
c@5
|
303 std::string decoded;
|
c@5
|
304 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded));
|
c@5
|
305 const float *buffer = reinterpret_cast<const float *>(decoded.c_str());
|
c@5
|
306 size_t n = decoded.size() / sizeof(float);
|
c@5
|
307 return std::vector<float>(buffer, buffer + n);
|
c@5
|
308 }
|
c@5
|
309
|
c@5
|
310 static json11::Json
|
c@5
|
311 fromFeature(const Vamp::Plugin::Feature &f) {
|
c@5
|
312
|
c@5
|
313 json11::Json::object jo;
|
c@5
|
314 if (f.values.size() > 0) {
|
c@5
|
315 jo["b64values"] = fromFloatBuffer(f.values.data(), f.values.size());
|
c@5
|
316 }
|
c@5
|
317 if (f.label != "") {
|
c@5
|
318 jo["label"] = f.label;
|
c@5
|
319 }
|
c@5
|
320 if (f.hasTimestamp) {
|
c@5
|
321 jo["timestamp"] = fromRealTime(f.timestamp);
|
c@5
|
322 }
|
c@5
|
323 if (f.hasDuration) {
|
c@5
|
324 jo["duration"] = fromRealTime(f.duration);
|
c@5
|
325 }
|
c@5
|
326 return json11::Json(jo);
|
c@5
|
327 }
|
c@5
|
328
|
c@5
|
329 static Vamp::Plugin::Feature
|
c@5
|
330 toFeature(json11::Json j) {
|
c@5
|
331
|
c@5
|
332 Vamp::Plugin::Feature f;
|
c@5
|
333 if (!j.is_object()) {
|
c@5
|
334 throw Failure("object expected for feature");
|
c@5
|
335 }
|
c@5
|
336 if (j["timestamp"].is_object()) {
|
c@5
|
337 f.timestamp = toRealTime(j["timestamp"]);
|
c@5
|
338 f.hasTimestamp = true;
|
c@5
|
339 }
|
c@5
|
340 if (j["duration"].is_object()) {
|
c@5
|
341 f.duration = toRealTime(j["duration"]);
|
c@5
|
342 f.hasDuration = true;
|
c@5
|
343 }
|
c@5
|
344 if (j["b64values"].is_string()) {
|
c@5
|
345 f.values = toFloatBuffer(j["b64values"].string_value());
|
c@5
|
346 } else if (j["values"].is_array()) {
|
c@5
|
347 for (auto v : j["values"].array_items()) {
|
c@5
|
348 f.values.push_back(v.number_value());
|
c@5
|
349 }
|
c@5
|
350 }
|
c@5
|
351 f.label = j["label"].string_value();
|
c@5
|
352 return f;
|
c@5
|
353 }
|
c@5
|
354
|
c@5
|
355 static json11::Json
|
c@5
|
356 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs) {
|
c@5
|
357
|
c@5
|
358 json11::Json::object jo;
|
c@5
|
359 for (const auto &fsi : fs) {
|
c@5
|
360 std::vector<json11::Json> fj;
|
c@5
|
361 for (const Vamp::Plugin::Feature &f: fsi.second) {
|
c@5
|
362 fj.push_back(fromFeature(f));
|
c@5
|
363 }
|
c@5
|
364 std::stringstream sstr;
|
c@5
|
365 sstr << fsi.first;
|
c@5
|
366 std::string n = sstr.str();
|
c@5
|
367 jo[n] = fj;
|
c@5
|
368 }
|
c@5
|
369 return json11::Json(jo);
|
c@5
|
370 }
|
c@5
|
371
|
c@5
|
372 static Vamp::Plugin::FeatureList
|
c@5
|
373 toFeatureList(json11::Json j) {
|
c@5
|
374
|
c@5
|
375 Vamp::Plugin::FeatureList fl;
|
c@5
|
376 if (!j.is_array()) {
|
c@5
|
377 throw Failure("array expected for feature list");
|
c@5
|
378 }
|
c@5
|
379 for (const json11::Json &fj : j.array_items()) {
|
c@5
|
380 fl.push_back(toFeature(fj));
|
c@5
|
381 }
|
c@5
|
382 return fl;
|
c@5
|
383 }
|
c@5
|
384
|
c@5
|
385 static Vamp::Plugin::FeatureSet
|
c@5
|
386 toFeatureSet(json11::Json j) {
|
c@5
|
387
|
c@5
|
388 Vamp::Plugin::FeatureSet fs;
|
c@5
|
389 if (!j.is_object()) {
|
c@5
|
390 throw Failure("object expected for feature set");
|
c@5
|
391 }
|
c@5
|
392 for (auto &entry : j.object_items()) {
|
c@5
|
393 std::string nstr = entry.first;
|
c@5
|
394 size_t count = 0;
|
c@5
|
395 int n = stoi(nstr, &count);
|
c@5
|
396 if (n < 0 || fs.find(n) != fs.end() || count < nstr.size()) {
|
c@5
|
397 throw Failure("invalid or duplicate numerical index for output");
|
c@5
|
398 }
|
c@5
|
399 fs[n] = toFeatureList(entry.second);
|
c@5
|
400 }
|
c@5
|
401 return fs;
|
c@5
|
402 }
|
c@5
|
403
|
c@5
|
404 static std::string
|
c@5
|
405 fromInputDomain(Vamp::Plugin::InputDomain domain) {
|
c@5
|
406
|
c@5
|
407 switch (domain) {
|
c@5
|
408 case Vamp::Plugin::TimeDomain:
|
c@5
|
409 return "TimeDomain";
|
c@5
|
410 case Vamp::Plugin::FrequencyDomain:
|
c@5
|
411 return "FrequencyDomain";
|
c@5
|
412 }
|
c@5
|
413 return "";
|
c@5
|
414 }
|
c@5
|
415
|
c@5
|
416 static Vamp::Plugin::InputDomain
|
c@5
|
417 toInputDomain(std::string text) {
|
c@5
|
418
|
c@5
|
419 if (text == "TimeDomain") {
|
c@5
|
420 return Vamp::Plugin::TimeDomain;
|
c@5
|
421 } else if (text == "FrequencyDomain") {
|
c@5
|
422 return Vamp::Plugin::FrequencyDomain;
|
c@5
|
423 } else {
|
c@5
|
424 throw Failure("invalid input domain string: " + text);
|
c@5
|
425 }
|
c@5
|
426 }
|
c@5
|
427
|
c@5
|
428 static json11::Json
|
c@5
|
429 fromPluginStaticData(const Vamp::HostExt::PluginStaticData &d) {
|
c@5
|
430
|
c@5
|
431 json11::Json::object jo;
|
c@5
|
432 jo["pluginKey"] = d.pluginKey;
|
c@5
|
433 jo["basic"] = fromBasicDescriptor(d.basic);
|
c@5
|
434 jo["maker"] = d.maker;
|
c@5
|
435 jo["copyright"] = d.copyright;
|
c@5
|
436 jo["pluginVersion"] = d.pluginVersion;
|
c@5
|
437
|
c@5
|
438 json11::Json::array cat;
|
c@5
|
439 for (const std::string &c: d.category) cat.push_back(c);
|
c@5
|
440 jo["category"] = cat;
|
c@5
|
441
|
c@5
|
442 jo["minChannelCount"] = d.minChannelCount;
|
c@5
|
443 jo["maxChannelCount"] = d.maxChannelCount;
|
c@5
|
444
|
c@5
|
445 json11::Json::array params;
|
c@5
|
446 Vamp::PluginBase::ParameterList vparams = d.parameters;
|
c@5
|
447 for (auto &p: vparams) params.push_back(fromParameterDescriptor(p));
|
c@5
|
448 jo["parameters"] = params;
|
c@5
|
449
|
c@5
|
450 json11::Json::array progs;
|
c@5
|
451 Vamp::PluginBase::ProgramList vprogs = d.programs;
|
c@5
|
452 for (auto &p: vprogs) progs.push_back(p);
|
c@5
|
453 jo["programs"] = progs;
|
c@5
|
454
|
c@5
|
455 jo["inputDomain"] = fromInputDomain(d.inputDomain);
|
c@5
|
456
|
c@5
|
457 json11::Json::array outinfo;
|
c@5
|
458 auto vouts = d.basicOutputInfo;
|
c@5
|
459 for (auto &o: vouts) outinfo.push_back(fromBasicDescriptor(o));
|
c@5
|
460 jo["basicOutputInfo"] = outinfo;
|
c@5
|
461
|
c@5
|
462 return json11::Json(jo);
|
c@5
|
463 }
|
c@5
|
464
|
c@5
|
465 static Vamp::HostExt::PluginStaticData
|
c@5
|
466 toPluginStaticData(json11::Json j) {
|
c@5
|
467
|
c@5
|
468 std::string err;
|
c@5
|
469 if (!j.has_shape({
|
c@5
|
470 { "pluginKey", json11::Json::STRING },
|
c@5
|
471 { "pluginVersion", json11::Json::NUMBER },
|
c@5
|
472 { "minChannelCount", json11::Json::NUMBER },
|
c@5
|
473 { "maxChannelCount", json11::Json::NUMBER },
|
c@5
|
474 { "inputDomain", json11::Json::STRING }}, err)) {
|
c@5
|
475 throw Failure("malformed plugin static data: " + err);
|
c@5
|
476 }
|
c@5
|
477
|
c@5
|
478 if (!j["basicOutputInfo"].is_array()) {
|
c@5
|
479 throw Failure("array expected for basic output info");
|
c@5
|
480 }
|
c@5
|
481
|
c@5
|
482 if (!j["maker"].is_null() &&
|
c@5
|
483 !j["maker"].is_string()) {
|
c@5
|
484 throw Failure("string expected for maker");
|
c@5
|
485 }
|
c@5
|
486
|
c@5
|
487 if (!j["copyright"].is_null() &&
|
c@5
|
488 !j["copyright"].is_string()) {
|
c@5
|
489 throw Failure("string expected for copyright");
|
c@5
|
490 }
|
c@5
|
491
|
c@5
|
492 if (!j["category"].is_null() &&
|
c@5
|
493 !j["category"].is_array()) {
|
c@5
|
494 throw Failure("array expected for category");
|
c@5
|
495 }
|
c@5
|
496
|
c@5
|
497 if (!j["parameters"].is_null() &&
|
c@5
|
498 !j["parameters"].is_array()) {
|
c@5
|
499 throw Failure("array expected for parameters");
|
c@5
|
500 }
|
c@5
|
501
|
c@5
|
502 if (!j["programs"].is_null() &&
|
c@5
|
503 !j["programs"].is_array()) {
|
c@5
|
504 throw Failure("array expected for programs");
|
c@5
|
505 }
|
c@5
|
506
|
c@5
|
507 if (!j["inputDomain"].is_null() &&
|
c@5
|
508 !j["inputDomain"].is_string()) {
|
c@5
|
509 throw Failure("string expected for inputDomain");
|
c@5
|
510 }
|
c@5
|
511
|
c@5
|
512 if (!j["basicOutputInfo"].is_null() &&
|
c@5
|
513 !j["basicOutputInfo"].is_array()) {
|
c@5
|
514 throw Failure("array expected for basicOutputInfo");
|
c@5
|
515 }
|
c@5
|
516
|
c@5
|
517 Vamp::HostExt::PluginStaticData psd;
|
c@5
|
518
|
c@5
|
519 psd.pluginKey = j["pluginKey"].string_value();
|
c@5
|
520
|
c@5
|
521 toBasicDescriptor(j["basic"], psd.basic);
|
c@5
|
522
|
c@5
|
523 psd.maker = j["maker"].string_value();
|
c@5
|
524 psd.copyright = j["copyright"].string_value();
|
c@5
|
525 psd.pluginVersion = j["pluginVersion"].int_value();
|
c@5
|
526
|
c@5
|
527 for (const auto &c : j["category"].array_items()) {
|
c@5
|
528 if (!c.is_string()) {
|
c@5
|
529 throw Failure("strings expected in category array");
|
c@5
|
530 }
|
c@5
|
531 psd.category.push_back(c.string_value());
|
c@5
|
532 }
|
c@5
|
533
|
c@5
|
534 psd.minChannelCount = j["minChannelCount"].int_value();
|
c@5
|
535 psd.maxChannelCount = j["maxChannelCount"].int_value();
|
c@5
|
536
|
c@5
|
537 for (const auto &p : j["parameters"].array_items()) {
|
c@5
|
538 auto pd = toParameterDescriptor(p);
|
c@5
|
539 psd.parameters.push_back(pd);
|
c@5
|
540 }
|
c@5
|
541
|
c@5
|
542 for (const auto &p : j["programs"].array_items()) {
|
c@5
|
543 if (!p.is_string()) {
|
c@5
|
544 throw Failure("strings expected in programs array");
|
c@5
|
545 }
|
c@5
|
546 psd.programs.push_back(p.string_value());
|
c@5
|
547 }
|
c@5
|
548
|
c@5
|
549 psd.inputDomain = toInputDomain(j["inputDomain"].string_value());
|
c@5
|
550
|
c@5
|
551 for (const auto &bo : j["basicOutputInfo"].array_items()) {
|
c@5
|
552 Vamp::HostExt::PluginStaticData::Basic b;
|
c@5
|
553 toBasicDescriptor(bo, b);
|
c@5
|
554 psd.basicOutputInfo.push_back(b);
|
c@5
|
555 }
|
c@5
|
556
|
c@5
|
557 return psd;
|
c@5
|
558 }
|
c@5
|
559
|
c@5
|
560 static json11::Json
|
c@5
|
561 fromPluginConfiguration(const Vamp::HostExt::PluginConfiguration &c) {
|
c@5
|
562
|
c@5
|
563 json11::Json::object jo;
|
c@5
|
564
|
c@5
|
565 json11::Json::object paramValues;
|
c@5
|
566 for (auto &vp: c.parameterValues) {
|
c@5
|
567 paramValues[vp.first] = vp.second;
|
c@5
|
568 }
|
c@5
|
569 jo["parameterValues"] = paramValues;
|
c@5
|
570
|
c@5
|
571 if (c.currentProgram != "") {
|
c@5
|
572 jo["currentProgram"] = c.currentProgram;
|
c@5
|
573 }
|
c@5
|
574
|
c@5
|
575 jo["channelCount"] = c.channelCount;
|
c@5
|
576 jo["stepSize"] = c.stepSize;
|
c@5
|
577 jo["blockSize"] = c.blockSize;
|
c@5
|
578
|
c@5
|
579 return json11::Json(jo);
|
c@5
|
580 }
|
c@5
|
581
|
c@5
|
582 static Vamp::HostExt::PluginConfiguration
|
c@5
|
583 toPluginConfiguration(json11::Json j) {
|
c@5
|
584
|
c@5
|
585 std::string err;
|
c@5
|
586 if (!j.has_shape({
|
c@5
|
587 { "channelCount", json11::Json::NUMBER },
|
c@5
|
588 { "stepSize", json11::Json::NUMBER },
|
c@5
|
589 { "blockSize", json11::Json::NUMBER } }, err)) {
|
c@5
|
590 throw Failure("malformed plugin configuration: " + err);
|
c@5
|
591 }
|
c@5
|
592
|
c@5
|
593 if (!j["parameterValues"].is_null() &&
|
c@5
|
594 !j["parameterValues"].is_object()) {
|
c@5
|
595 throw Failure("object expected for parameter values");
|
c@5
|
596 }
|
c@5
|
597
|
c@5
|
598 for (auto &pv : j["parameterValues"].object_items()) {
|
c@5
|
599 if (!pv.second.is_number()) {
|
c@5
|
600 throw Failure("number expected for parameter value");
|
c@5
|
601 }
|
c@5
|
602 }
|
c@5
|
603
|
c@5
|
604 if (!j["currentProgram"].is_null() &&
|
c@5
|
605 !j["currentProgram"].is_string()) {
|
c@5
|
606 throw Failure("string expected for program name");
|
c@5
|
607 }
|
c@5
|
608
|
c@5
|
609 Vamp::HostExt::PluginConfiguration config;
|
c@5
|
610
|
c@5
|
611 config.channelCount = j["channelCount"].number_value();
|
c@5
|
612 config.stepSize = j["stepSize"].number_value();
|
c@5
|
613 config.blockSize = j["blockSize"].number_value();
|
c@5
|
614
|
c@5
|
615 for (auto &pv : j["parameterValues"].object_items()) {
|
c@5
|
616 config.parameterValues[pv.first] = pv.second.number_value();
|
c@5
|
617 }
|
c@5
|
618
|
c@5
|
619 if (j["currentProgram"].is_string()) {
|
c@5
|
620 config.currentProgram = j["currentProgram"].string_value();
|
c@5
|
621 }
|
c@5
|
622
|
c@5
|
623 return config;
|
c@5
|
624 }
|
c@5
|
625
|
c@5
|
626 static json11::Json
|
c@5
|
627 fromAdapterFlags(int flags) {
|
c@5
|
628
|
c@5
|
629 json11::Json::array arr;
|
c@5
|
630
|
c@5
|
631 if (flags & Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN) {
|
c@5
|
632 arr.push_back("AdaptInputDomain");
|
c@5
|
633 }
|
c@5
|
634 if (flags & Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT) {
|
c@5
|
635 arr.push_back("AdaptChannelCount");
|
c@5
|
636 }
|
c@5
|
637 if (flags & Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE) {
|
c@5
|
638 arr.push_back("AdaptBufferSize");
|
c@5
|
639 }
|
c@5
|
640
|
c@5
|
641 return json11::Json(arr);
|
c@5
|
642 }
|
c@5
|
643
|
c@5
|
644 static Vamp::HostExt::PluginLoader::AdapterFlags
|
c@5
|
645 toAdapterFlags(json11::Json j) {
|
c@5
|
646
|
c@5
|
647 if (!j.is_array()) {
|
c@5
|
648 throw Failure("array expected for adapter flags");
|
c@5
|
649 }
|
c@5
|
650 int flags = 0x0;
|
c@5
|
651
|
c@5
|
652 for (auto &jj: j.array_items()) {
|
c@5
|
653 if (!jj.is_string()) {
|
c@5
|
654 throw Failure("string expected for adapter flag");
|
c@5
|
655 }
|
c@5
|
656 std::string text = jj.string_value();
|
c@5
|
657 if (text == "AdaptInputDomain") {
|
c@5
|
658 flags |= Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN;
|
c@5
|
659 } else if (text == "AdaptChannelCount") {
|
c@5
|
660 flags |= Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT;
|
c@5
|
661 } else if (text == "AdaptBufferSize") {
|
c@5
|
662 flags |= Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE;
|
c@5
|
663 } else if (text == "AdaptAllSafe") {
|
c@5
|
664 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL_SAFE;
|
c@5
|
665 } else if (text == "AdaptAll") {
|
c@5
|
666 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL;
|
c@5
|
667 } else {
|
c@5
|
668 throw Failure("invalid adapter flag string: " + text);
|
c@5
|
669 }
|
c@5
|
670 }
|
c@5
|
671
|
c@5
|
672 return Vamp::HostExt::PluginLoader::AdapterFlags(flags);
|
c@5
|
673 }
|
c@5
|
674
|
c@5
|
675 static json11::Json
|
c@17
|
676 fromLoadRequest(const Vamp::HostExt::LoadRequest &req) {
|
c@5
|
677
|
c@5
|
678 json11::Json::object jo;
|
c@5
|
679 jo["pluginKey"] = req.pluginKey;
|
c@5
|
680 jo["inputSampleRate"] = req.inputSampleRate;
|
c@5
|
681 jo["adapterFlags"] = fromAdapterFlags(req.adapterFlags);
|
c@5
|
682 return json11::Json(jo);
|
c@5
|
683 }
|
c@5
|
684
|
c@5
|
685 static Vamp::HostExt::LoadRequest
|
c@5
|
686 toLoadRequest(json11::Json j) {
|
c@5
|
687
|
c@5
|
688 std::string err;
|
c@5
|
689
|
c@5
|
690 if (!j.has_shape({
|
c@5
|
691 { "pluginKey", json11::Json::STRING },
|
c@32
|
692 { "inputSampleRate", json11::Json::NUMBER } }, err)) {
|
c@12
|
693 throw Failure("malformed load request: " + err);
|
c@5
|
694 }
|
c@5
|
695
|
c@5
|
696 Vamp::HostExt::LoadRequest req;
|
c@5
|
697 req.pluginKey = j["pluginKey"].string_value();
|
c@5
|
698 req.inputSampleRate = j["inputSampleRate"].number_value();
|
c@32
|
699 if (!j["adapterFlags"].is_null()) {
|
c@32
|
700 req.adapterFlags = toAdapterFlags(j["adapterFlags"]);
|
c@32
|
701 }
|
c@5
|
702 return req;
|
c@5
|
703 }
|
c@10
|
704
|
c@10
|
705 static json11::Json
|
c@17
|
706 fromLoadResponse(const Vamp::HostExt::LoadResponse &resp,
|
c@10
|
707 PluginHandleMapper &mapper) {
|
c@10
|
708
|
c@10
|
709 json11::Json::object jo;
|
c@10
|
710 jo["pluginHandle"] = double(mapper.pluginToHandle(resp.plugin));
|
c@10
|
711 jo["staticData"] = fromPluginStaticData(resp.staticData);
|
c@10
|
712 jo["defaultConfiguration"] =
|
c@10
|
713 fromPluginConfiguration(resp.defaultConfiguration);
|
c@10
|
714 return json11::Json(jo);
|
c@10
|
715 }
|
c@10
|
716
|
c@10
|
717 static Vamp::HostExt::LoadResponse
|
c@10
|
718 toLoadResponse(json11::Json j,
|
c@10
|
719 PluginHandleMapper &mapper) {
|
c@10
|
720
|
c@10
|
721 std::string err;
|
c@10
|
722
|
c@10
|
723 if (!j.has_shape({
|
c@10
|
724 { "pluginHandle", json11::Json::NUMBER },
|
c@10
|
725 { "staticData", json11::Json::OBJECT },
|
c@10
|
726 { "defaultConfiguration", json11::Json::OBJECT } }, err)) {
|
c@12
|
727 throw Failure("malformed load response: " + err);
|
c@10
|
728 }
|
c@10
|
729
|
c@10
|
730 Vamp::HostExt::LoadResponse resp;
|
c@10
|
731 resp.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value());
|
c@10
|
732 resp.staticData = toPluginStaticData(j["staticData"]);
|
c@10
|
733 resp.defaultConfiguration = toPluginConfiguration(j["defaultConfiguration"]);
|
c@10
|
734 return resp;
|
c@10
|
735 }
|
c@12
|
736
|
c@12
|
737 static json11::Json
|
c@13
|
738 fromConfigurationRequest(const Vamp::HostExt::ConfigurationRequest &cr,
|
c@13
|
739 PluginHandleMapper &mapper) {
|
c@13
|
740
|
c@13
|
741 json11::Json::object jo;
|
c@13
|
742
|
c@13
|
743 jo["pluginHandle"] = mapper.pluginToHandle(cr.plugin);
|
c@13
|
744 jo["configuration"] = fromPluginConfiguration(cr.configuration);
|
c@13
|
745
|
c@13
|
746 return json11::Json(jo);
|
c@13
|
747 }
|
c@13
|
748
|
c@13
|
749 static Vamp::HostExt::ConfigurationRequest
|
c@13
|
750 toConfigurationRequest(json11::Json j,
|
c@13
|
751 PluginHandleMapper &mapper) {
|
c@13
|
752
|
c@13
|
753 std::string err;
|
c@13
|
754
|
c@13
|
755 if (!j.has_shape({
|
c@13
|
756 { "pluginHandle", json11::Json::NUMBER },
|
c@13
|
757 { "configuration", json11::Json::OBJECT } }, err)) {
|
c@13
|
758 throw Failure("malformed configuration request: " + err);
|
c@13
|
759 }
|
c@13
|
760
|
c@13
|
761 Vamp::HostExt::ConfigurationRequest cr;
|
c@13
|
762 cr.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value());
|
c@13
|
763 cr.configuration = toPluginConfiguration(j["configuration"]);
|
c@13
|
764 return cr;
|
c@13
|
765 }
|
c@13
|
766
|
c@13
|
767 static json11::Json
|
c@12
|
768 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr) {
|
c@12
|
769
|
c@13
|
770 json11::Json::object jo;
|
c@12
|
771
|
c@12
|
772 json11::Json::array outs;
|
c@12
|
773 for (auto &d: cr.outputs) {
|
c@12
|
774 outs.push_back(fromOutputDescriptor(d));
|
c@12
|
775 }
|
c@13
|
776 jo["outputList"] = outs;
|
c@12
|
777
|
c@13
|
778 return json11::Json(jo);
|
c@12
|
779 }
|
c@12
|
780
|
c@13
|
781 static Vamp::HostExt::ConfigurationResponse
|
c@13
|
782 toConfigurationResponse(json11::Json j) {
|
c@13
|
783
|
c@12
|
784 Vamp::HostExt::ConfigurationResponse cr;
|
c@12
|
785
|
c@12
|
786 if (!j["outputList"].is_array()) {
|
c@12
|
787 throw Failure("array expected for output list");
|
c@12
|
788 }
|
c@12
|
789
|
c@12
|
790 for (const auto &o: j["outputList"].array_items()) {
|
c@12
|
791 cr.outputs.push_back(toOutputDescriptor(o));
|
c@12
|
792 }
|
c@12
|
793
|
c@12
|
794 return cr;
|
c@12
|
795 }
|
c@16
|
796
|
c@16
|
797 static json11::Json
|
c@16
|
798 fromProcessRequest(const Vamp::HostExt::ProcessRequest &r,
|
c@16
|
799 PluginHandleMapper &mapper) {
|
c@16
|
800
|
c@16
|
801 json11::Json::object jo;
|
c@16
|
802 jo["pluginHandle"] = mapper.pluginToHandle(r.plugin);
|
c@16
|
803
|
c@16
|
804 json11::Json::object io;
|
c@16
|
805 io["timestamp"] = fromRealTime(r.timestamp);
|
c@16
|
806
|
c@16
|
807 json11::Json::array chans;
|
c@16
|
808 for (size_t i = 0; i < r.inputBuffers.size(); ++i) {
|
c@16
|
809 json11::Json::object c;
|
c@16
|
810 c["b64values"] = fromFloatBuffer(r.inputBuffers[i].data(),
|
c@16
|
811 r.inputBuffers[i].size());
|
c@16
|
812 chans.push_back(c);
|
c@16
|
813 }
|
c@16
|
814 io["inputBuffers"] = chans;
|
c@16
|
815
|
c@16
|
816 jo["processInput"] = io;
|
c@16
|
817 return json11::Json(jo);
|
c@16
|
818 }
|
c@17
|
819
|
c@17
|
820 static Vamp::HostExt::ProcessRequest
|
c@17
|
821 toProcessRequest(json11::Json j, PluginHandleMapper &mapper) {
|
c@17
|
822
|
c@17
|
823 std::string err;
|
c@17
|
824
|
c@17
|
825 if (!j.has_shape({
|
c@17
|
826 { "pluginHandle", json11::Json::NUMBER },
|
c@17
|
827 { "processInput", json11::Json::OBJECT } }, err)) {
|
c@17
|
828 throw Failure("malformed process request: " + err);
|
c@17
|
829 }
|
c@17
|
830
|
c@17
|
831 auto input = j["processInput"];
|
c@17
|
832
|
c@17
|
833 if (!input.has_shape({
|
c@17
|
834 { "timestamp", json11::Json::OBJECT },
|
c@17
|
835 { "inputBuffers", json11::Json::ARRAY } }, err)) {
|
c@17
|
836 throw Failure("malformed process request: " + err);
|
c@17
|
837 }
|
c@17
|
838
|
c@17
|
839 Vamp::HostExt::ProcessRequest r;
|
c@17
|
840 r.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value());
|
c@17
|
841
|
c@17
|
842 r.timestamp = toRealTime(input["timestamp"]);
|
c@17
|
843
|
c@17
|
844 for (auto a: input["inputBuffers"].array_items()) {
|
c@17
|
845 if (a["b64values"].is_string()) {
|
c@17
|
846 r.inputBuffers.push_back(toFloatBuffer
|
c@17
|
847 (a["b64values"].string_value()));
|
c@17
|
848 } else if (a["values"].is_array()) {
|
c@17
|
849 std::vector<float> buf;
|
c@17
|
850 for (auto v : a["values"].array_items()) {
|
c@17
|
851 buf.push_back(v.number_value());
|
c@17
|
852 }
|
c@17
|
853 r.inputBuffers.push_back(buf);
|
c@17
|
854 } else {
|
c@17
|
855 throw Failure("expected values or b64values in inputBuffers object");
|
c@17
|
856 }
|
c@17
|
857 }
|
c@17
|
858
|
c@17
|
859 return r;
|
c@17
|
860 }
|
c@17
|
861
|
c@17
|
862 static json11::Json
|
c@17
|
863 fromVampRequest_List() {
|
c@17
|
864
|
c@17
|
865 json11::Json::object jo;
|
c@17
|
866 jo["type"] = "list";
|
c@17
|
867 return json11::Json(jo);
|
c@17
|
868 }
|
c@17
|
869
|
c@17
|
870 static json11::Json
|
c@17
|
871 fromVampResponse_List(std::string errorText,
|
c@17
|
872 const std::vector<Vamp::HostExt::PluginStaticData> &d) {
|
c@17
|
873
|
c@17
|
874 json11::Json::object jo;
|
c@24
|
875 jo["type"] = "list";
|
c@17
|
876 jo["success"] = (errorText == "");
|
c@17
|
877 jo["errorText"] = errorText;
|
c@17
|
878
|
c@17
|
879 json11::Json::array arr;
|
c@17
|
880 for (const auto &a: d) {
|
c@17
|
881 arr.push_back(fromPluginStaticData(a));
|
c@17
|
882 }
|
c@24
|
883 json11::Json::object po;
|
c@24
|
884 po["plugins"] = arr;
|
c@24
|
885
|
c@24
|
886 jo["content"] = po;
|
c@17
|
887 return json11::Json(jo);
|
c@17
|
888 }
|
c@17
|
889
|
c@17
|
890 static json11::Json
|
c@17
|
891 fromVampRequest_Load(const Vamp::HostExt::LoadRequest &req) {
|
c@17
|
892
|
c@17
|
893 json11::Json::object jo;
|
c@17
|
894 jo["type"] = "load";
|
c@17
|
895 jo["content"] = fromLoadRequest(req);
|
c@17
|
896 return json11::Json(jo);
|
c@17
|
897 }
|
c@17
|
898
|
c@17
|
899 static json11::Json
|
c@17
|
900 fromVampResponse_Load(const Vamp::HostExt::LoadResponse &resp,
|
c@17
|
901 PluginHandleMapper &mapper) {
|
c@17
|
902
|
c@17
|
903 json11::Json::object jo;
|
c@24
|
904 jo["type"] = "load";
|
c@17
|
905 jo["success"] = (resp.plugin != 0);
|
c@17
|
906 jo["errorText"] = "";
|
c@24
|
907 jo["content"] = fromLoadResponse(resp, mapper);
|
c@17
|
908 return json11::Json(jo);
|
c@17
|
909 }
|
c@17
|
910
|
c@17
|
911 static json11::Json
|
c@17
|
912 fromVampRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req,
|
c@17
|
913 PluginHandleMapper &mapper) {
|
c@17
|
914
|
c@17
|
915 json11::Json::object jo;
|
c@17
|
916 jo["type"] = "configure";
|
c@17
|
917 jo["content"] = fromConfigurationRequest(req, mapper);
|
c@17
|
918 return json11::Json(jo);
|
c@17
|
919 }
|
c@17
|
920
|
c@17
|
921 static json11::Json
|
c@17
|
922 fromVampResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp) {
|
c@17
|
923
|
c@17
|
924 json11::Json::object jo;
|
c@24
|
925 jo["type"] = "configure";
|
c@17
|
926 jo["success"] = (!resp.outputs.empty());
|
c@17
|
927 jo["errorText"] = "";
|
c@24
|
928 jo["content"] = fromConfigurationResponse(resp);
|
c@17
|
929 return json11::Json(jo);
|
c@17
|
930 }
|
c@17
|
931
|
c@17
|
932 static json11::Json
|
c@17
|
933 fromVampRequest_Process(const Vamp::HostExt::ProcessRequest &req,
|
c@17
|
934 PluginHandleMapper &mapper) {
|
c@17
|
935
|
c@17
|
936 json11::Json::object jo;
|
c@17
|
937 jo["type"] = "process";
|
c@17
|
938 jo["content"] = fromProcessRequest(req, mapper);
|
c@17
|
939 return json11::Json(jo);
|
c@17
|
940 }
|
c@17
|
941
|
c@17
|
942 static json11::Json
|
c@17
|
943 fromVampResponse_Process(const Vamp::HostExt::ProcessResponse &resp) {
|
c@17
|
944
|
c@17
|
945 json11::Json::object jo;
|
c@24
|
946 jo["type"] = "process";
|
c@17
|
947 jo["success"] = true;
|
c@17
|
948 jo["errorText"] = "";
|
c@24
|
949 jo["content"] = fromFeatureSet(resp.features);
|
c@17
|
950 return json11::Json(jo);
|
c@17
|
951 }
|
c@17
|
952
|
c@17
|
953 static json11::Json
|
c@24
|
954 fromVampRequest_Finish(Vamp::Plugin *p,
|
c@24
|
955 PluginHandleMapper &mapper) {
|
c@17
|
956
|
c@17
|
957 json11::Json::object jo;
|
c@17
|
958 jo["type"] = "finish";
|
c@24
|
959 json11::Json::object fo;
|
c@24
|
960 fo["pluginHandle"] = mapper.pluginToHandle(p);
|
c@24
|
961 jo["content"] = fo;
|
c@17
|
962 return json11::Json(jo);
|
c@17
|
963 }
|
c@17
|
964
|
c@17
|
965 static json11::Json
|
c@17
|
966 fromVampResponse_Finish(const Vamp::HostExt::ProcessResponse &resp) {
|
c@17
|
967
|
c@17
|
968 json11::Json::object jo;
|
c@24
|
969 jo["type"] = "finish";
|
c@17
|
970 jo["success"] = true;
|
c@17
|
971 jo["errorText"] = "";
|
c@24
|
972 jo["content"] = fromFeatureSet(resp.features);
|
c@17
|
973 return json11::Json(jo);
|
c@17
|
974 }
|
c@24
|
975
|
c@24
|
976 private: // go private briefly for a couple of helper functions
|
c@24
|
977
|
c@24
|
978 static void
|
c@24
|
979 checkTypeField(json11::Json j, std::string expected) {
|
c@24
|
980 if (!j["type"].is_string()) {
|
c@24
|
981 throw Failure("string expected for type");
|
c@24
|
982 }
|
c@24
|
983 if (j["type"].string_value() != expected) {
|
c@24
|
984 throw Failure("expected value \"" + expected + "\" for type");
|
c@24
|
985 }
|
c@24
|
986 }
|
c@24
|
987
|
c@24
|
988 static bool
|
c@24
|
989 successful(json11::Json j) {
|
c@24
|
990 if (!j["success"].is_bool()) {
|
c@24
|
991 throw Failure("bool expected for success");
|
c@24
|
992 }
|
c@24
|
993 return j["success"].bool_value();
|
c@24
|
994 }
|
c@24
|
995
|
c@24
|
996 public:
|
c@25
|
997 static RRType
|
c@25
|
998 getRequestResponseType(json11::Json j) {
|
c@25
|
999
|
c@25
|
1000 if (!j["type"].is_string()) {
|
c@25
|
1001 throw Failure("string expected for type");
|
c@25
|
1002 }
|
c@25
|
1003
|
c@25
|
1004 std::string type = j["type"].string_value();
|
c@25
|
1005
|
c@25
|
1006 if (type == "list") return RRType::List;
|
c@25
|
1007 else if (type == "load") return RRType::Load;
|
c@25
|
1008 else if (type == "configure") return RRType::Configure;
|
c@25
|
1009 else if (type == "process") return RRType::Process;
|
c@25
|
1010 else if (type == "finish") return RRType::Finish;
|
c@25
|
1011 else {
|
c@25
|
1012 throw Failure("unknown or unexpected request/response type \"" +
|
c@25
|
1013 type + "\"");
|
c@25
|
1014 }
|
c@25
|
1015 }
|
c@25
|
1016
|
c@24
|
1017 static void
|
c@24
|
1018 toVampRequest_List(json11::Json j) {
|
c@24
|
1019
|
c@24
|
1020 checkTypeField(j, "list");
|
c@24
|
1021 }
|
c@24
|
1022
|
c@24
|
1023 static std::vector<Vamp::HostExt::PluginStaticData>
|
c@24
|
1024 toVampResponse_List(json11::Json j) {
|
c@24
|
1025
|
c@24
|
1026 std::vector<Vamp::HostExt::PluginStaticData> arr;
|
c@24
|
1027 if (successful(j)) {
|
c@24
|
1028 for (const auto &a: j["content"]["plugins"].array_items()) {
|
c@24
|
1029 arr.push_back(toPluginStaticData(a));
|
c@24
|
1030 }
|
c@24
|
1031 }
|
c@24
|
1032 return arr;
|
c@24
|
1033 }
|
c@24
|
1034
|
c@24
|
1035 static Vamp::HostExt::LoadRequest
|
c@24
|
1036 toVampRequest_Load(json11::Json j) {
|
c@24
|
1037
|
c@24
|
1038 checkTypeField(j, "load");
|
c@24
|
1039 return toLoadRequest(j["content"]);
|
c@24
|
1040 }
|
c@24
|
1041
|
c@24
|
1042 static Vamp::HostExt::LoadResponse
|
c@24
|
1043 toVampResponse_Load(json11::Json j, PluginHandleMapper &mapper) {
|
c@24
|
1044
|
c@24
|
1045 Vamp::HostExt::LoadResponse resp;
|
c@24
|
1046 if (successful(j)) {
|
c@24
|
1047 resp = toLoadResponse(j["content"], mapper);
|
c@24
|
1048 }
|
c@24
|
1049 return resp;
|
c@24
|
1050 }
|
c@24
|
1051
|
c@24
|
1052 static Vamp::HostExt::ConfigurationRequest
|
c@24
|
1053 toVampRequest_Configure(json11::Json j, PluginHandleMapper &mapper) {
|
c@24
|
1054
|
c@24
|
1055 checkTypeField(j, "configure");
|
c@24
|
1056 return toConfigurationRequest(j["content"], mapper);
|
c@24
|
1057 }
|
c@24
|
1058
|
c@24
|
1059 static Vamp::HostExt::ConfigurationResponse
|
c@24
|
1060 toVampResponse_Configure(json11::Json j) {
|
c@24
|
1061
|
c@24
|
1062 Vamp::HostExt::ConfigurationResponse resp;
|
c@24
|
1063 if (successful(j)) {
|
c@24
|
1064 resp = toConfigurationResponse(j["content"]);
|
c@24
|
1065 }
|
c@24
|
1066 return resp;
|
c@24
|
1067 }
|
c@24
|
1068
|
c@24
|
1069 static Vamp::HostExt::ProcessRequest
|
c@24
|
1070 toVampRequest_Process(json11::Json j, PluginHandleMapper &mapper) {
|
c@24
|
1071
|
c@24
|
1072 checkTypeField(j, "process");
|
c@24
|
1073 return toProcessRequest(j["content"], mapper);
|
c@24
|
1074 }
|
c@24
|
1075
|
c@24
|
1076 static Vamp::HostExt::ProcessResponse
|
c@24
|
1077 toVampResponse_Process(json11::Json j) {
|
c@24
|
1078
|
c@24
|
1079 Vamp::HostExt::ProcessResponse resp;
|
c@24
|
1080 if (successful(j)) {
|
c@24
|
1081 resp.features = toFeatureSet(j["content"]);
|
c@24
|
1082 }
|
c@24
|
1083 return resp;
|
c@24
|
1084 }
|
c@24
|
1085
|
c@24
|
1086 static Vamp::Plugin *
|
c@24
|
1087 toVampRequest_Finish(json11::Json j, PluginHandleMapper &mapper) {
|
c@24
|
1088
|
c@24
|
1089 checkTypeField(j, "finish");
|
c@24
|
1090 return mapper.handleToPlugin(j["content"]["pluginHandle"].int_value());
|
c@24
|
1091 }
|
c@24
|
1092
|
c@24
|
1093 static Vamp::HostExt::ProcessResponse
|
c@24
|
1094 toVampResponse_Finish(json11::Json j) {
|
c@24
|
1095
|
c@24
|
1096 Vamp::HostExt::ProcessResponse resp;
|
c@24
|
1097 if (successful(j)) {
|
c@24
|
1098 resp.features = toFeatureSet(j["content"]);
|
c@24
|
1099 }
|
c@24
|
1100 return resp;
|
c@24
|
1101 }
|
c@5
|
1102 };
|
c@5
|
1103
|
c@10
|
1104 }
|
c@5
|
1105
|
c@5
|
1106 #endif
|