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