c@75
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@75
|
2
|
c@75
|
3 /*
|
c@75
|
4 Piper C++
|
c@75
|
5
|
c@75
|
6 Centre for Digital Music, Queen Mary, University of London.
|
c@75
|
7 Copyright 2015-2016 QMUL.
|
c@75
|
8
|
c@75
|
9 Permission is hereby granted, free of charge, to any person
|
c@75
|
10 obtaining a copy of this software and associated documentation
|
c@75
|
11 files (the "Software"), to deal in the Software without
|
c@75
|
12 restriction, including without limitation the rights to use, copy,
|
c@75
|
13 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@75
|
14 of the Software, and to permit persons to whom the Software is
|
c@75
|
15 furnished to do so, subject to the following conditions:
|
c@75
|
16
|
c@75
|
17 The above copyright notice and this permission notice shall be
|
c@75
|
18 included in all copies or substantial portions of the Software.
|
c@75
|
19
|
c@75
|
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@75
|
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@75
|
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@75
|
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@75
|
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@75
|
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@75
|
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@75
|
27
|
c@75
|
28 Except as contained in this notice, the names of the Centre for
|
c@75
|
29 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@75
|
30 shall not be used in advertising or otherwise to promote the sale,
|
c@75
|
31 use or other dealings in this Software without prior written
|
c@75
|
32 authorization.
|
c@75
|
33 */
|
c@75
|
34
|
c@75
|
35 #ifndef PIPER_VAMP_JSON_H
|
c@75
|
36 #define PIPER_VAMP_JSON_H
|
c@75
|
37
|
c@75
|
38 #include <vector>
|
c@75
|
39 #include <string>
|
c@75
|
40 #include <sstream>
|
c@75
|
41
|
c@75
|
42 #include <json11/json11.hpp>
|
c@75
|
43 #include <base-n/include/basen.hpp>
|
c@75
|
44
|
c@75
|
45 #include <vamp-hostsdk/Plugin.h>
|
c@75
|
46 #include <vamp-hostsdk/PluginLoader.h>
|
c@80
|
47 #include <vamp-hostsdk/PluginStaticData.h>
|
c@80
|
48 #include <vamp-hostsdk/PluginConfiguration.h>
|
c@80
|
49 #include <vamp-hostsdk/RequestResponse.h>
|
c@75
|
50
|
c@75
|
51 #include "vamp-support/PluginHandleMapper.h"
|
c@75
|
52 #include "vamp-support/PluginOutputIdMapper.h"
|
c@75
|
53 #include "vamp-support/RequestResponseType.h"
|
c@75
|
54
|
c@75
|
55 namespace piper {
|
c@75
|
56
|
c@75
|
57 /**
|
c@75
|
58 * Convert the structures laid out in the Vamp SDK classes into JSON
|
c@75
|
59 * (and back again) following the schema in the vamp-json-schema
|
c@75
|
60 * project repo.
|
c@75
|
61 *
|
c@75
|
62 * Functions with names starting "from" convert from a Vamp SDK object
|
c@75
|
63 * to JSON output. Most of them return a json11::Json object, with a
|
c@75
|
64 * few exceptions for low-level utilities that return a string. These
|
c@75
|
65 * functions succeed all of the time.
|
c@75
|
66 *
|
c@75
|
67 * Functions with names starting "to" convert to a Vamp SDK object
|
c@75
|
68 * from JSON input. These functions all accept a json11::Json object
|
c@75
|
69 * as first argument, with a few exceptions for low-level utilities
|
c@75
|
70 * that accept a string. These functions all accept a string reference
|
c@75
|
71 * as a final argument and return an error string through it if the
|
c@75
|
72 * conversion fails. If conversion fails the return value is
|
c@75
|
73 * undefined, and any returned object may be incomplete or
|
c@75
|
74 * invalid. Callers should check for an empty error string (indicating
|
c@75
|
75 * success) before using the returned value.
|
c@75
|
76 */
|
c@75
|
77
|
c@75
|
78 class VampJson
|
c@75
|
79 {
|
c@75
|
80 public:
|
c@75
|
81 /** Serialisation format for arrays of floats (process input and
|
c@75
|
82 * feature values). Wherever such an array appears, it may
|
c@75
|
83 * alternatively be replaced by a single string containing a
|
c@75
|
84 * base-64 encoding of the IEEE float buffer. When parsing, if a
|
c@75
|
85 * string is found instead of an array in this case, it will be
|
c@75
|
86 * interpreted as a base-64 encoded buffer. Only array or base-64
|
c@75
|
87 * encoding may be provided, not both.
|
c@75
|
88 */
|
c@75
|
89 enum class BufferSerialisation {
|
c@75
|
90
|
c@75
|
91 /** Default JSON serialisation of values in array form. This
|
c@75
|
92 * is relatively slow to parse and serialise, and can take a
|
c@75
|
93 * lot of space.
|
c@75
|
94 */
|
c@75
|
95 Array,
|
c@75
|
96
|
c@75
|
97 /** Base64-encoded string of the raw data as packed
|
c@75
|
98 * little-endian IEEE 32-bit floats. Faster and more compact
|
c@75
|
99 * than the text encoding but more complicated to
|
c@75
|
100 * provide. Note that Base64 serialisations produced by this
|
c@75
|
101 * library do not including padding characters and so are not
|
c@75
|
102 * necessarily multiples of 4 characters long. You will need
|
c@75
|
103 * to pad them yourself if concatenating them or supplying to
|
c@75
|
104 * a consumer that expects padding.
|
c@75
|
105 */
|
c@75
|
106 Base64
|
c@75
|
107 };
|
c@75
|
108
|
c@75
|
109 static bool failed(const std::string &err) {
|
c@75
|
110 return err != "";
|
c@75
|
111 }
|
c@75
|
112
|
c@75
|
113 template <typename T>
|
c@75
|
114 static json11::Json
|
c@75
|
115 fromBasicDescriptor(const T &t) {
|
c@75
|
116 return json11::Json::object {
|
c@75
|
117 { "identifier", t.identifier },
|
c@75
|
118 { "name", t.name },
|
c@75
|
119 { "description", t.description }
|
c@75
|
120 };
|
c@75
|
121 }
|
c@75
|
122
|
c@75
|
123 template <typename T>
|
c@75
|
124 static void
|
c@75
|
125 toBasicDescriptor(json11::Json j, T &t, std::string &err) {
|
c@75
|
126 if (!j.is_object()) {
|
c@75
|
127 err = "object expected for basic descriptor content";
|
c@75
|
128 return;
|
c@75
|
129 }
|
c@75
|
130 if (!j["identifier"].is_string()) {
|
c@75
|
131 err = "string expected for identifier";
|
c@75
|
132 return;
|
c@75
|
133 }
|
c@75
|
134 t.identifier = j["identifier"].string_value();
|
c@75
|
135 t.name = j["name"].string_value();
|
c@75
|
136 t.description = j["description"].string_value();
|
c@75
|
137 }
|
c@75
|
138
|
c@75
|
139 template <typename T>
|
c@75
|
140 static json11::Json
|
c@75
|
141 fromValueExtents(const T &t) {
|
c@75
|
142 return json11::Json::object {
|
c@75
|
143 { "min", t.minValue },
|
c@75
|
144 { "max", t.maxValue }
|
c@75
|
145 };
|
c@75
|
146 }
|
c@75
|
147
|
c@75
|
148 template <typename T>
|
c@75
|
149 static bool
|
c@75
|
150 toValueExtents(json11::Json j, T &t, std::string &err) {
|
c@75
|
151 if (j["extents"].is_null()) {
|
c@75
|
152 return false;
|
c@75
|
153 } else if (j["extents"].is_object()) {
|
c@75
|
154 if (j["extents"]["min"].is_number() &&
|
c@75
|
155 j["extents"]["max"].is_number()) {
|
c@75
|
156 t.minValue = j["extents"]["min"].number_value();
|
c@75
|
157 t.maxValue = j["extents"]["max"].number_value();
|
c@75
|
158 return true;
|
c@75
|
159 } else {
|
c@75
|
160 err = "numbers expected for min and max";
|
c@75
|
161 return false;
|
c@75
|
162 }
|
c@75
|
163 } else {
|
c@75
|
164 err = "object expected for extents (if present)";
|
c@75
|
165 return false;
|
c@75
|
166 }
|
c@75
|
167 }
|
c@75
|
168
|
c@75
|
169 static json11::Json
|
c@75
|
170 fromRealTime(const Vamp::RealTime &r) {
|
c@75
|
171 return json11::Json::object {
|
c@75
|
172 { "s", r.sec },
|
c@75
|
173 { "n", r.nsec }
|
c@75
|
174 };
|
c@75
|
175 }
|
c@75
|
176
|
c@75
|
177 static Vamp::RealTime
|
c@75
|
178 toRealTime(json11::Json j, std::string &err) {
|
c@75
|
179 json11::Json sec = j["s"];
|
c@75
|
180 json11::Json nsec = j["n"];
|
c@75
|
181 if (!sec.is_number() || !nsec.is_number()) {
|
c@75
|
182 err = "invalid Vamp::RealTime object " + j.dump();
|
c@75
|
183 return {};
|
c@75
|
184 }
|
c@75
|
185 return Vamp::RealTime(sec.int_value(), nsec.int_value());
|
c@75
|
186 }
|
c@75
|
187
|
c@75
|
188 static std::string
|
c@75
|
189 fromSampleType(Vamp::Plugin::OutputDescriptor::SampleType type) {
|
c@75
|
190 switch (type) {
|
c@75
|
191 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
|
c@75
|
192 return "OneSamplePerStep";
|
c@75
|
193 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
|
c@75
|
194 return "FixedSampleRate";
|
c@75
|
195 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
|
c@75
|
196 return "VariableSampleRate";
|
c@75
|
197 }
|
c@75
|
198 return "";
|
c@75
|
199 }
|
c@75
|
200
|
c@75
|
201 static Vamp::Plugin::OutputDescriptor::SampleType
|
c@75
|
202 toSampleType(std::string text, std::string &err) {
|
c@75
|
203 if (text == "OneSamplePerStep") {
|
c@75
|
204 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
|
c@75
|
205 } else if (text == "FixedSampleRate") {
|
c@75
|
206 return Vamp::Plugin::OutputDescriptor::FixedSampleRate;
|
c@75
|
207 } else if (text == "VariableSampleRate") {
|
c@75
|
208 return Vamp::Plugin::OutputDescriptor::VariableSampleRate;
|
c@75
|
209 } else {
|
c@75
|
210 err = "invalid sample type string: " + text;
|
c@75
|
211 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
|
c@75
|
212 }
|
c@75
|
213 }
|
c@75
|
214
|
c@75
|
215 static json11::Json
|
c@75
|
216 fromConfiguredOutputDescriptor(const Vamp::Plugin::OutputDescriptor &desc) {
|
c@75
|
217 json11::Json::object jo {
|
c@75
|
218 { "unit", desc.unit },
|
c@75
|
219 { "sampleType", fromSampleType(desc.sampleType) },
|
c@75
|
220 { "sampleRate", desc.sampleRate },
|
c@75
|
221 { "hasDuration", desc.hasDuration }
|
c@75
|
222 };
|
c@75
|
223 if (desc.hasFixedBinCount) {
|
c@75
|
224 jo["binCount"] = int(desc.binCount);
|
c@75
|
225 jo["binNames"] = json11::Json::array
|
c@75
|
226 (desc.binNames.begin(), desc.binNames.end());
|
c@75
|
227 }
|
c@75
|
228 if (desc.hasKnownExtents) {
|
c@75
|
229 jo["extents"] = fromValueExtents(desc);
|
c@75
|
230 }
|
c@75
|
231 if (desc.isQuantized) {
|
c@75
|
232 jo["quantizeStep"] = desc.quantizeStep;
|
c@75
|
233 }
|
c@75
|
234 return json11::Json(jo);
|
c@75
|
235 }
|
c@75
|
236
|
c@75
|
237 static json11::Json
|
c@75
|
238 fromOutputDescriptor(const Vamp::Plugin::OutputDescriptor &desc) {
|
c@75
|
239 json11::Json::object jo {
|
c@75
|
240 { "basic", fromBasicDescriptor(desc) },
|
c@75
|
241 { "configured", fromConfiguredOutputDescriptor(desc) }
|
c@75
|
242 };
|
c@75
|
243 return json11::Json(jo);
|
c@75
|
244 }
|
c@75
|
245
|
c@75
|
246 static Vamp::Plugin::OutputDescriptor
|
c@75
|
247 toConfiguredOutputDescriptor(json11::Json j, std::string &err) {
|
c@75
|
248
|
c@75
|
249 Vamp::Plugin::OutputDescriptor od;
|
c@75
|
250 if (!j.is_object()) {
|
c@75
|
251 err = "object expected for output descriptor";
|
c@75
|
252 return {};
|
c@75
|
253 }
|
c@75
|
254
|
c@75
|
255 od.unit = j["unit"].string_value();
|
c@75
|
256
|
c@75
|
257 od.sampleType = toSampleType(j["sampleType"].string_value(), err);
|
c@75
|
258 if (failed(err)) return {};
|
c@75
|
259
|
c@75
|
260 if (!j["sampleRate"].is_number()) {
|
c@75
|
261 err = "number expected for sample rate";
|
c@75
|
262 return {};
|
c@75
|
263 }
|
c@75
|
264 od.sampleRate = j["sampleRate"].number_value();
|
c@75
|
265 od.hasDuration = j["hasDuration"].bool_value();
|
c@75
|
266
|
c@75
|
267 if (j["binCount"].is_number() && j["binCount"].int_value() > 0) {
|
c@75
|
268 od.hasFixedBinCount = true;
|
c@75
|
269 od.binCount = j["binCount"].int_value();
|
c@75
|
270 for (auto &n: j["binNames"].array_items()) {
|
c@75
|
271 if (!n.is_string()) {
|
c@75
|
272 err = "string expected for bin name";
|
c@75
|
273 return {};
|
c@75
|
274 }
|
c@75
|
275 od.binNames.push_back(n.string_value());
|
c@75
|
276 }
|
c@75
|
277 } else {
|
c@75
|
278 od.hasFixedBinCount = false;
|
c@75
|
279 }
|
c@75
|
280
|
c@75
|
281 bool extentsPresent = toValueExtents(j, od, err);
|
c@75
|
282 if (failed(err)) return {};
|
c@75
|
283
|
c@75
|
284 od.hasKnownExtents = extentsPresent;
|
c@75
|
285
|
c@75
|
286 if (j["quantizeStep"].is_number()) {
|
c@75
|
287 od.isQuantized = true;
|
c@75
|
288 od.quantizeStep = j["quantizeStep"].number_value();
|
c@75
|
289 } else {
|
c@75
|
290 od.isQuantized = false;
|
c@75
|
291 }
|
c@75
|
292
|
c@75
|
293 return od;
|
c@75
|
294 }
|
c@75
|
295
|
c@75
|
296 static Vamp::Plugin::OutputDescriptor
|
c@75
|
297 toOutputDescriptor(json11::Json j, std::string &err) {
|
c@75
|
298
|
c@75
|
299 Vamp::Plugin::OutputDescriptor od;
|
c@75
|
300 if (!j.is_object()) {
|
c@75
|
301 err = "object expected for output descriptor";
|
c@75
|
302 return {};
|
c@75
|
303 }
|
c@75
|
304
|
c@75
|
305 od = toConfiguredOutputDescriptor(j, err);
|
c@75
|
306 if (failed(err)) return {};
|
c@75
|
307
|
c@75
|
308 toBasicDescriptor(j["basic"], od, err);
|
c@75
|
309 if (failed(err)) return {};
|
c@75
|
310
|
c@75
|
311 return od;
|
c@75
|
312 }
|
c@75
|
313
|
c@75
|
314 static json11::Json
|
c@75
|
315 fromParameterDescriptor(const Vamp::PluginBase::ParameterDescriptor &desc) {
|
c@75
|
316
|
c@75
|
317 json11::Json::object jo {
|
c@75
|
318 { "basic", fromBasicDescriptor(desc) },
|
c@75
|
319 { "unit", desc.unit },
|
c@75
|
320 { "extents", fromValueExtents(desc) },
|
c@75
|
321 { "defaultValue", desc.defaultValue },
|
c@75
|
322 { "valueNames", json11::Json::array
|
c@75
|
323 (desc.valueNames.begin(), desc.valueNames.end()) }
|
c@75
|
324 };
|
c@75
|
325 if (desc.isQuantized) {
|
c@75
|
326 jo["quantizeStep"] = desc.quantizeStep;
|
c@75
|
327 }
|
c@75
|
328 return json11::Json(jo);
|
c@75
|
329 }
|
c@75
|
330
|
c@75
|
331 static Vamp::PluginBase::ParameterDescriptor
|
c@75
|
332 toParameterDescriptor(json11::Json j, std::string &err) {
|
c@75
|
333
|
c@75
|
334 Vamp::PluginBase::ParameterDescriptor pd;
|
c@75
|
335 if (!j.is_object()) {
|
c@75
|
336 err = "object expected for parameter descriptor";
|
c@75
|
337 return {};
|
c@75
|
338 }
|
c@75
|
339
|
c@75
|
340 toBasicDescriptor(j["basic"], pd, err);
|
c@75
|
341 if (failed(err)) return {};
|
c@75
|
342
|
c@75
|
343 pd.unit = j["unit"].string_value();
|
c@75
|
344
|
c@75
|
345 bool extentsPresent = toValueExtents(j, pd, err);
|
c@75
|
346 if (failed(err)) return {};
|
c@75
|
347 if (!extentsPresent) {
|
c@75
|
348 err = "extents must be present in parameter descriptor";
|
c@75
|
349 return {};
|
c@75
|
350 }
|
c@75
|
351
|
c@75
|
352 if (!j["defaultValue"].is_number()) {
|
c@75
|
353 err = "number expected for default value";
|
c@75
|
354 return {};
|
c@75
|
355 }
|
c@75
|
356
|
c@75
|
357 pd.defaultValue = j["defaultValue"].number_value();
|
c@75
|
358
|
c@75
|
359 pd.valueNames.clear();
|
c@75
|
360 for (auto &n: j["valueNames"].array_items()) {
|
c@75
|
361 if (!n.is_string()) {
|
c@75
|
362 err = "string expected for value name";
|
c@75
|
363 return {};
|
c@75
|
364 }
|
c@75
|
365 pd.valueNames.push_back(n.string_value());
|
c@75
|
366 }
|
c@75
|
367
|
c@75
|
368 if (j["quantizeStep"].is_number()) {
|
c@75
|
369 pd.isQuantized = true;
|
c@75
|
370 pd.quantizeStep = j["quantizeStep"].number_value();
|
c@75
|
371 } else {
|
c@75
|
372 pd.isQuantized = false;
|
c@75
|
373 }
|
c@75
|
374
|
c@75
|
375 return pd;
|
c@75
|
376 }
|
c@75
|
377
|
c@75
|
378 static std::string
|
c@75
|
379 fromFloatBuffer(const float *buffer, size_t nfloats) {
|
c@75
|
380 // must use char pointers, otherwise the converter will only
|
c@75
|
381 // encode every 4th byte (as it will count up in float* steps)
|
c@75
|
382 const char *start = reinterpret_cast<const char *>(buffer);
|
c@75
|
383 const char *end = reinterpret_cast<const char *>(buffer + nfloats);
|
c@75
|
384 std::string encoded;
|
c@75
|
385 bn::encode_b64(start, end, back_inserter(encoded));
|
c@75
|
386 return encoded;
|
c@75
|
387 }
|
c@75
|
388
|
c@75
|
389 static std::vector<float>
|
c@75
|
390 toFloatBuffer(std::string encoded, std::string & /* err */) {
|
c@75
|
391 std::string decoded;
|
c@75
|
392 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded));
|
c@75
|
393 const float *buffer = reinterpret_cast<const float *>(decoded.c_str());
|
c@75
|
394 size_t n = decoded.size() / sizeof(float);
|
c@75
|
395 return std::vector<float>(buffer, buffer + n);
|
c@75
|
396 }
|
c@75
|
397
|
c@75
|
398 static json11::Json
|
c@75
|
399 fromFeature(const Vamp::Plugin::Feature &f,
|
c@75
|
400 BufferSerialisation serialisation) {
|
c@75
|
401
|
c@75
|
402 json11::Json::object jo;
|
c@75
|
403 if (f.values.size() > 0) {
|
c@75
|
404 if (serialisation == BufferSerialisation::Array) {
|
c@75
|
405 jo["featureValues"] = json11::Json::array(f.values.begin(),
|
c@75
|
406 f.values.end());
|
c@75
|
407 } else {
|
c@75
|
408 jo["featureValues"] = fromFloatBuffer(f.values.data(),
|
c@75
|
409 f.values.size());
|
c@75
|
410 }
|
c@75
|
411 }
|
c@75
|
412 if (f.label != "") {
|
c@75
|
413 jo["label"] = f.label;
|
c@75
|
414 }
|
c@75
|
415 if (f.hasTimestamp) {
|
c@75
|
416 jo["timestamp"] = fromRealTime(f.timestamp);
|
c@75
|
417 }
|
c@75
|
418 if (f.hasDuration) {
|
c@75
|
419 jo["duration"] = fromRealTime(f.duration);
|
c@75
|
420 }
|
c@75
|
421 return json11::Json(jo);
|
c@75
|
422 }
|
c@75
|
423
|
c@75
|
424 static Vamp::Plugin::Feature
|
c@75
|
425 toFeature(json11::Json j, BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
426
|
c@75
|
427 Vamp::Plugin::Feature f;
|
c@75
|
428 if (!j.is_object()) {
|
c@75
|
429 err = "object expected for feature";
|
c@75
|
430 return {};
|
c@75
|
431 }
|
c@75
|
432 if (j["timestamp"].is_object()) {
|
c@75
|
433 f.timestamp = toRealTime(j["timestamp"], err);
|
c@75
|
434 if (failed(err)) return {};
|
c@75
|
435 f.hasTimestamp = true;
|
c@75
|
436 }
|
c@75
|
437 if (j["duration"].is_object()) {
|
c@75
|
438 f.duration = toRealTime(j["duration"], err);
|
c@75
|
439 if (failed(err)) return {};
|
c@75
|
440 f.hasDuration = true;
|
c@75
|
441 }
|
c@75
|
442 if (j["featureValues"].is_string()) {
|
c@75
|
443 f.values = toFloatBuffer(j["featureValues"].string_value(), err);
|
c@75
|
444 if (failed(err)) return {};
|
c@75
|
445 serialisation = BufferSerialisation::Base64;
|
c@75
|
446 } else if (j["featureValues"].is_array()) {
|
c@75
|
447 for (auto v : j["featureValues"].array_items()) {
|
c@75
|
448 f.values.push_back(v.number_value());
|
c@75
|
449 }
|
c@75
|
450 serialisation = BufferSerialisation::Array;
|
c@75
|
451 }
|
c@75
|
452 f.label = j["label"].string_value();
|
c@75
|
453 return f;
|
c@75
|
454 }
|
c@75
|
455
|
c@75
|
456 static json11::Json
|
c@75
|
457 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs,
|
c@75
|
458 const PluginOutputIdMapper &omapper,
|
c@75
|
459 BufferSerialisation serialisation) {
|
c@75
|
460
|
c@75
|
461 json11::Json::object jo;
|
c@75
|
462 for (const auto &fsi : fs) {
|
c@75
|
463 std::vector<json11::Json> fj;
|
c@75
|
464 for (const Vamp::Plugin::Feature &f: fsi.second) {
|
c@75
|
465 fj.push_back(fromFeature(f, serialisation));
|
c@75
|
466 }
|
c@75
|
467 jo[omapper.indexToId(fsi.first)] = fj;
|
c@75
|
468 }
|
c@75
|
469 return json11::Json(jo);
|
c@75
|
470 }
|
c@75
|
471
|
c@75
|
472 static Vamp::Plugin::FeatureList
|
c@75
|
473 toFeatureList(json11::Json j,
|
c@75
|
474 BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
475
|
c@75
|
476 Vamp::Plugin::FeatureList fl;
|
c@75
|
477 if (!j.is_array()) {
|
c@75
|
478 err = "array expected for feature list";
|
c@75
|
479 return {};
|
c@75
|
480 }
|
c@75
|
481 for (const json11::Json &fj : j.array_items()) {
|
c@75
|
482 fl.push_back(toFeature(fj, serialisation, err));
|
c@75
|
483 if (failed(err)) return {};
|
c@75
|
484 }
|
c@75
|
485 return fl;
|
c@75
|
486 }
|
c@75
|
487
|
c@75
|
488 static Vamp::Plugin::FeatureSet
|
c@75
|
489 toFeatureSet(json11::Json j,
|
c@75
|
490 const PluginOutputIdMapper &omapper,
|
c@75
|
491 BufferSerialisation &serialisation,
|
c@75
|
492 std::string &err) {
|
c@75
|
493
|
c@75
|
494 Vamp::Plugin::FeatureSet fs;
|
c@75
|
495 if (!j.is_object()) {
|
c@75
|
496 err = "object expected for feature set";
|
c@75
|
497 return {};
|
c@75
|
498 }
|
c@75
|
499 for (auto &entry : j.object_items()) {
|
c@75
|
500 int n = omapper.idToIndex(entry.first);
|
c@75
|
501 if (fs.find(n) != fs.end()) {
|
c@75
|
502 err = "duplicate numerical index for output";
|
c@75
|
503 return {};
|
c@75
|
504 }
|
c@75
|
505 fs[n] = toFeatureList(entry.second, serialisation, err);
|
c@75
|
506 if (failed(err)) return {};
|
c@75
|
507 }
|
c@75
|
508 return fs;
|
c@75
|
509 }
|
c@75
|
510
|
c@75
|
511 static std::string
|
c@75
|
512 fromInputDomain(Vamp::Plugin::InputDomain domain) {
|
c@75
|
513
|
c@75
|
514 switch (domain) {
|
c@75
|
515 case Vamp::Plugin::TimeDomain:
|
c@75
|
516 return "TimeDomain";
|
c@75
|
517 case Vamp::Plugin::FrequencyDomain:
|
c@75
|
518 return "FrequencyDomain";
|
c@75
|
519 }
|
c@75
|
520 return "";
|
c@75
|
521 }
|
c@75
|
522
|
c@75
|
523 static Vamp::Plugin::InputDomain
|
c@75
|
524 toInputDomain(std::string text, std::string &err) {
|
c@75
|
525
|
c@75
|
526 if (text == "TimeDomain") {
|
c@75
|
527 return Vamp::Plugin::TimeDomain;
|
c@75
|
528 } else if (text == "FrequencyDomain") {
|
c@75
|
529 return Vamp::Plugin::FrequencyDomain;
|
c@75
|
530 } else {
|
c@75
|
531 err = "invalid input domain string: " + text;
|
c@75
|
532 return {};
|
c@75
|
533 }
|
c@75
|
534 }
|
c@75
|
535
|
c@75
|
536 static json11::Json
|
c@75
|
537 fromPluginStaticData(const Vamp::HostExt::PluginStaticData &d) {
|
c@75
|
538
|
c@75
|
539 json11::Json::object jo;
|
c@75
|
540 jo["key"] = d.pluginKey;
|
c@75
|
541 jo["basic"] = fromBasicDescriptor(d.basic);
|
c@75
|
542 jo["maker"] = d.maker;
|
c@75
|
543 jo["copyright"] = d.copyright;
|
c@75
|
544 jo["version"] = d.pluginVersion;
|
c@75
|
545
|
c@75
|
546 json11::Json::array cat;
|
c@75
|
547 for (const std::string &c: d.category) cat.push_back(c);
|
c@75
|
548 jo["category"] = cat;
|
c@75
|
549
|
c@75
|
550 jo["minChannelCount"] = d.minChannelCount;
|
c@75
|
551 jo["maxChannelCount"] = d.maxChannelCount;
|
c@75
|
552
|
c@75
|
553 json11::Json::array params;
|
c@75
|
554 Vamp::PluginBase::ParameterList vparams = d.parameters;
|
c@75
|
555 for (auto &p: vparams) params.push_back(fromParameterDescriptor(p));
|
c@75
|
556 jo["parameters"] = params;
|
c@75
|
557
|
c@75
|
558 json11::Json::array progs;
|
c@75
|
559 Vamp::PluginBase::ProgramList vprogs = d.programs;
|
c@75
|
560 for (auto &p: vprogs) progs.push_back(p);
|
c@75
|
561 jo["programs"] = progs;
|
c@75
|
562
|
c@75
|
563 jo["inputDomain"] = fromInputDomain(d.inputDomain);
|
c@75
|
564
|
c@75
|
565 json11::Json::array outinfo;
|
c@75
|
566 auto vouts = d.basicOutputInfo;
|
c@75
|
567 for (auto &o: vouts) outinfo.push_back(fromBasicDescriptor(o));
|
c@75
|
568 jo["basicOutputInfo"] = outinfo;
|
c@75
|
569
|
c@75
|
570 return json11::Json(jo);
|
c@75
|
571 }
|
c@75
|
572
|
c@75
|
573 static Vamp::HostExt::PluginStaticData
|
c@75
|
574 toPluginStaticData(json11::Json j, std::string &err) {
|
c@75
|
575
|
c@75
|
576 if (!j.has_shape({
|
c@75
|
577 { "key", json11::Json::STRING },
|
c@75
|
578 { "version", json11::Json::NUMBER },
|
c@75
|
579 { "minChannelCount", json11::Json::NUMBER },
|
c@75
|
580 { "maxChannelCount", json11::Json::NUMBER },
|
c@75
|
581 { "inputDomain", json11::Json::STRING }}, err)) {
|
c@75
|
582
|
c@75
|
583 err = "malformed plugin static data: " + err;
|
c@75
|
584
|
c@75
|
585 } else if (!j["basicOutputInfo"].is_array()) {
|
c@75
|
586
|
c@75
|
587 err = "array expected for basic output info";
|
c@75
|
588
|
c@75
|
589 } else if (!j["maker"].is_null() &&
|
c@75
|
590 !j["maker"].is_string()) {
|
c@75
|
591
|
c@75
|
592 err = "string expected for maker";
|
c@75
|
593
|
c@75
|
594 } else if (!j["copyright"].is_null() &&
|
c@75
|
595 !j["copyright"].is_string()) {
|
c@75
|
596 err = "string expected for copyright";
|
c@75
|
597
|
c@75
|
598 } else if (!j["category"].is_null() &&
|
c@75
|
599 !j["category"].is_array()) {
|
c@75
|
600
|
c@75
|
601 err = "array expected for category";
|
c@75
|
602
|
c@75
|
603 } else if (!j["parameters"].is_null() &&
|
c@75
|
604 !j["parameters"].is_array()) {
|
c@75
|
605
|
c@75
|
606 err = "array expected for parameters";
|
c@75
|
607
|
c@75
|
608 } else if (!j["programs"].is_null() &&
|
c@75
|
609 !j["programs"].is_array()) {
|
c@75
|
610
|
c@75
|
611 err = "array expected for programs";
|
c@75
|
612
|
c@75
|
613 } else if (!j["inputDomain"].is_null() &&
|
c@75
|
614 !j["inputDomain"].is_string()) {
|
c@75
|
615
|
c@75
|
616 err = "string expected for inputDomain";
|
c@75
|
617
|
c@75
|
618 } else if (!j["basicOutputInfo"].is_null() &&
|
c@75
|
619 !j["basicOutputInfo"].is_array()) {
|
c@75
|
620
|
c@75
|
621 err = "array expected for basicOutputInfo";
|
c@75
|
622
|
c@75
|
623 } else {
|
c@75
|
624
|
c@75
|
625 Vamp::HostExt::PluginStaticData psd;
|
c@75
|
626
|
c@75
|
627 psd.pluginKey = j["key"].string_value();
|
c@75
|
628
|
c@75
|
629 toBasicDescriptor(j["basic"], psd.basic, err);
|
c@75
|
630 if (failed(err)) return {};
|
c@75
|
631
|
c@75
|
632 psd.maker = j["maker"].string_value();
|
c@75
|
633 psd.copyright = j["copyright"].string_value();
|
c@75
|
634 psd.pluginVersion = j["version"].int_value();
|
c@75
|
635
|
c@75
|
636 for (const auto &c : j["category"].array_items()) {
|
c@75
|
637 if (!c.is_string()) {
|
c@75
|
638 err = "strings expected in category array";
|
c@75
|
639 return {};
|
c@75
|
640 }
|
c@75
|
641 psd.category.push_back(c.string_value());
|
c@75
|
642 }
|
c@75
|
643
|
c@75
|
644 psd.minChannelCount = j["minChannelCount"].int_value();
|
c@75
|
645 psd.maxChannelCount = j["maxChannelCount"].int_value();
|
c@75
|
646
|
c@75
|
647 for (const auto &p : j["parameters"].array_items()) {
|
c@75
|
648 auto pd = toParameterDescriptor(p, err);
|
c@75
|
649 if (failed(err)) return {};
|
c@75
|
650 psd.parameters.push_back(pd);
|
c@75
|
651 }
|
c@75
|
652
|
c@75
|
653 for (const auto &p : j["programs"].array_items()) {
|
c@75
|
654 if (!p.is_string()) {
|
c@75
|
655 err = "strings expected in programs array";
|
c@75
|
656 return {};
|
c@75
|
657 }
|
c@75
|
658 psd.programs.push_back(p.string_value());
|
c@75
|
659 }
|
c@75
|
660
|
c@75
|
661 psd.inputDomain = toInputDomain(j["inputDomain"].string_value(), err);
|
c@75
|
662 if (failed(err)) return {};
|
c@75
|
663
|
c@75
|
664 for (const auto &bo : j["basicOutputInfo"].array_items()) {
|
c@75
|
665 Vamp::HostExt::PluginStaticData::Basic b;
|
c@75
|
666 toBasicDescriptor(bo, b, err);
|
c@75
|
667 if (failed(err)) return {};
|
c@75
|
668 psd.basicOutputInfo.push_back(b);
|
c@75
|
669 }
|
c@75
|
670
|
c@75
|
671 return psd;
|
c@75
|
672 }
|
c@75
|
673
|
c@75
|
674 // fallthrough error case
|
c@75
|
675 return {};
|
c@75
|
676 }
|
c@75
|
677
|
c@75
|
678 static json11::Json
|
c@75
|
679 fromPluginConfiguration(const Vamp::HostExt::PluginConfiguration &c) {
|
c@75
|
680
|
c@75
|
681 json11::Json::object jo;
|
c@75
|
682
|
c@75
|
683 json11::Json::object paramValues;
|
c@75
|
684 for (auto &vp: c.parameterValues) {
|
c@75
|
685 paramValues[vp.first] = vp.second;
|
c@75
|
686 }
|
c@75
|
687 jo["parameterValues"] = paramValues;
|
c@75
|
688
|
c@75
|
689 if (c.currentProgram != "") {
|
c@75
|
690 jo["currentProgram"] = c.currentProgram;
|
c@75
|
691 }
|
c@75
|
692
|
c@75
|
693 jo["channelCount"] = c.channelCount;
|
c@75
|
694 jo["stepSize"] = c.stepSize;
|
c@75
|
695 jo["blockSize"] = c.blockSize;
|
c@75
|
696
|
c@75
|
697 return json11::Json(jo);
|
c@75
|
698 }
|
c@75
|
699
|
c@75
|
700 static Vamp::HostExt::PluginConfiguration
|
c@75
|
701 toPluginConfiguration(json11::Json j, std::string &err) {
|
c@75
|
702
|
c@75
|
703 if (!j.has_shape({
|
c@75
|
704 { "channelCount", json11::Json::NUMBER },
|
c@75
|
705 { "stepSize", json11::Json::NUMBER },
|
c@75
|
706 { "blockSize", json11::Json::NUMBER } }, err)) {
|
c@75
|
707 err = "malformed plugin configuration: " + err;
|
c@75
|
708 return {};
|
c@75
|
709 }
|
c@75
|
710
|
c@75
|
711 if (!j["parameterValues"].is_null() &&
|
c@75
|
712 !j["parameterValues"].is_object()) {
|
c@75
|
713 err = "object expected for parameter values";
|
c@75
|
714 return {};
|
c@75
|
715 }
|
c@75
|
716
|
c@75
|
717 for (auto &pv : j["parameterValues"].object_items()) {
|
c@75
|
718 if (!pv.second.is_number()) {
|
c@75
|
719 err = "number expected for parameter value";
|
c@75
|
720 return {};
|
c@75
|
721 }
|
c@75
|
722 }
|
c@75
|
723
|
c@75
|
724 if (!j["currentProgram"].is_null() &&
|
c@75
|
725 !j["currentProgram"].is_string()) {
|
c@75
|
726 err = "string expected for program name";
|
c@75
|
727 return {};
|
c@75
|
728 }
|
c@75
|
729
|
c@75
|
730 Vamp::HostExt::PluginConfiguration config;
|
c@75
|
731
|
c@75
|
732 config.channelCount = j["channelCount"].number_value();
|
c@75
|
733 config.stepSize = j["stepSize"].number_value();
|
c@75
|
734 config.blockSize = j["blockSize"].number_value();
|
c@75
|
735
|
c@75
|
736 for (auto &pv : j["parameterValues"].object_items()) {
|
c@75
|
737 config.parameterValues[pv.first] = pv.second.number_value();
|
c@75
|
738 }
|
c@75
|
739
|
c@75
|
740 if (j["currentProgram"].is_string()) {
|
c@75
|
741 config.currentProgram = j["currentProgram"].string_value();
|
c@75
|
742 }
|
c@75
|
743
|
c@75
|
744 return config;
|
c@75
|
745 }
|
c@75
|
746
|
c@75
|
747 static json11::Json
|
c@75
|
748 fromAdapterFlags(int flags) {
|
c@75
|
749
|
c@75
|
750 json11::Json::array arr;
|
c@75
|
751
|
c@75
|
752 if (flags & Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN) {
|
c@75
|
753 arr.push_back("AdaptInputDomain");
|
c@75
|
754 }
|
c@75
|
755 if (flags & Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT) {
|
c@75
|
756 arr.push_back("AdaptChannelCount");
|
c@75
|
757 }
|
c@75
|
758 if (flags & Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE) {
|
c@75
|
759 arr.push_back("AdaptBufferSize");
|
c@75
|
760 }
|
c@75
|
761
|
c@75
|
762 return json11::Json(arr);
|
c@75
|
763 }
|
c@75
|
764
|
c@75
|
765 static Vamp::HostExt::PluginLoader::AdapterFlags
|
c@75
|
766 toAdapterFlags(json11::Json j, std::string &err) {
|
c@75
|
767
|
c@75
|
768 int flags = 0x0;
|
c@75
|
769
|
c@75
|
770 if (!j.is_array()) {
|
c@75
|
771
|
c@75
|
772 err = "array expected for adapter flags";
|
c@75
|
773
|
c@75
|
774 } else {
|
c@75
|
775
|
c@75
|
776 for (auto &jj: j.array_items()) {
|
c@75
|
777 if (!jj.is_string()) {
|
c@75
|
778 err = "string expected for adapter flag";
|
c@75
|
779 break;
|
c@75
|
780 }
|
c@75
|
781 std::string text = jj.string_value();
|
c@75
|
782 if (text == "AdaptInputDomain") {
|
c@75
|
783 flags |= Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN;
|
c@75
|
784 } else if (text == "AdaptChannelCount") {
|
c@75
|
785 flags |= Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT;
|
c@75
|
786 } else if (text == "AdaptBufferSize") {
|
c@75
|
787 flags |= Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE;
|
c@75
|
788 } else if (text == "AdaptAllSafe") {
|
c@75
|
789 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL_SAFE;
|
c@75
|
790 } else if (text == "AdaptAll") {
|
c@75
|
791 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL;
|
c@75
|
792 } else {
|
c@75
|
793 err = "invalid adapter flag string: " + text;
|
c@75
|
794 break;
|
c@75
|
795 }
|
c@75
|
796 }
|
c@75
|
797 }
|
c@75
|
798
|
c@75
|
799 return Vamp::HostExt::PluginLoader::AdapterFlags(flags);
|
c@75
|
800 }
|
c@75
|
801
|
c@75
|
802 static json11::Json
|
c@75
|
803 fromLoadRequest(const Vamp::HostExt::LoadRequest &req) {
|
c@75
|
804
|
c@75
|
805 json11::Json::object jo;
|
c@75
|
806 jo["key"] = req.pluginKey;
|
c@75
|
807 jo["inputSampleRate"] = req.inputSampleRate;
|
c@75
|
808 jo["adapterFlags"] = fromAdapterFlags(req.adapterFlags);
|
c@75
|
809 return json11::Json(jo);
|
c@75
|
810 }
|
c@75
|
811
|
c@75
|
812 static Vamp::HostExt::LoadRequest
|
c@75
|
813 toLoadRequest(json11::Json j, std::string &err) {
|
c@75
|
814
|
c@75
|
815 if (!j.has_shape({
|
c@75
|
816 { "key", json11::Json::STRING },
|
c@75
|
817 { "inputSampleRate", json11::Json::NUMBER } }, err)) {
|
c@75
|
818 err = "malformed load request: " + err;
|
c@75
|
819 return {};
|
c@75
|
820 }
|
c@75
|
821
|
c@75
|
822 Vamp::HostExt::LoadRequest req;
|
c@75
|
823 req.pluginKey = j["key"].string_value();
|
c@75
|
824 req.inputSampleRate = j["inputSampleRate"].number_value();
|
c@75
|
825 if (!j["adapterFlags"].is_null()) {
|
c@75
|
826 req.adapterFlags = toAdapterFlags(j["adapterFlags"], err);
|
c@75
|
827 if (failed(err)) return {};
|
c@75
|
828 }
|
c@75
|
829 return req;
|
c@75
|
830 }
|
c@75
|
831
|
c@75
|
832 static json11::Json
|
c@75
|
833 fromLoadResponse(const Vamp::HostExt::LoadResponse &resp,
|
c@75
|
834 const PluginHandleMapper &pmapper) {
|
c@75
|
835
|
c@75
|
836 json11::Json::object jo;
|
c@75
|
837 jo["handle"] = double(pmapper.pluginToHandle(resp.plugin));
|
c@75
|
838 jo["staticData"] = fromPluginStaticData(resp.staticData);
|
c@75
|
839 jo["defaultConfiguration"] =
|
c@75
|
840 fromPluginConfiguration(resp.defaultConfiguration);
|
c@75
|
841 return json11::Json(jo);
|
c@75
|
842 }
|
c@75
|
843
|
c@75
|
844 static Vamp::HostExt::LoadResponse
|
c@75
|
845 toLoadResponse(json11::Json j,
|
c@75
|
846 const PluginHandleMapper &pmapper, std::string &err) {
|
c@75
|
847
|
c@75
|
848 if (!j.has_shape({
|
c@75
|
849 { "handle", json11::Json::NUMBER },
|
c@75
|
850 { "staticData", json11::Json::OBJECT },
|
c@75
|
851 { "defaultConfiguration", json11::Json::OBJECT } }, err)) {
|
c@75
|
852 err = "malformed load response: " + err;
|
c@75
|
853 return {};
|
c@75
|
854 }
|
c@75
|
855
|
c@75
|
856 Vamp::HostExt::LoadResponse resp;
|
c@75
|
857 resp.plugin = pmapper.handleToPlugin(j["handle"].int_value());
|
c@75
|
858 resp.staticData = toPluginStaticData(j["staticData"], err);
|
c@75
|
859 if (failed(err)) return {};
|
c@75
|
860 resp.defaultConfiguration = toPluginConfiguration(j["defaultConfiguration"],
|
c@75
|
861 err);
|
c@75
|
862 if (failed(err)) return {};
|
c@75
|
863 return resp;
|
c@75
|
864 }
|
c@75
|
865
|
c@75
|
866 static json11::Json
|
c@75
|
867 fromConfigurationRequest(const Vamp::HostExt::ConfigurationRequest &cr,
|
c@75
|
868 const PluginHandleMapper &pmapper) {
|
c@75
|
869
|
c@75
|
870 json11::Json::object jo;
|
c@75
|
871
|
c@75
|
872 jo["handle"] = pmapper.pluginToHandle(cr.plugin);
|
c@75
|
873 jo["configuration"] = fromPluginConfiguration(cr.configuration);
|
c@75
|
874
|
c@75
|
875 return json11::Json(jo);
|
c@75
|
876 }
|
c@75
|
877
|
c@75
|
878 static Vamp::HostExt::ConfigurationRequest
|
c@75
|
879 toConfigurationRequest(json11::Json j,
|
c@75
|
880 const PluginHandleMapper &pmapper, std::string &err) {
|
c@75
|
881
|
c@75
|
882 if (!j.has_shape({
|
c@75
|
883 { "handle", json11::Json::NUMBER },
|
c@75
|
884 { "configuration", json11::Json::OBJECT } }, err)) {
|
c@75
|
885 err = "malformed configuration request: " + err;
|
c@75
|
886 return {};
|
c@75
|
887 }
|
c@75
|
888
|
c@75
|
889 Vamp::HostExt::ConfigurationRequest cr;
|
c@75
|
890 cr.plugin = pmapper.handleToPlugin(j["handle"].int_value());
|
c@75
|
891 cr.configuration = toPluginConfiguration(j["configuration"], err);
|
c@75
|
892 if (failed(err)) return {};
|
c@75
|
893 return cr;
|
c@75
|
894 }
|
c@75
|
895
|
c@75
|
896 static json11::Json
|
c@75
|
897 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr,
|
c@75
|
898 const PluginHandleMapper &pmapper) {
|
c@75
|
899
|
c@75
|
900 json11::Json::object jo;
|
c@75
|
901
|
c@75
|
902 jo["handle"] = pmapper.pluginToHandle(cr.plugin);
|
c@75
|
903
|
c@75
|
904 json11::Json::array outs;
|
c@75
|
905 for (auto &d: cr.outputs) {
|
c@75
|
906 outs.push_back(fromOutputDescriptor(d));
|
c@75
|
907 }
|
c@75
|
908 jo["outputList"] = outs;
|
c@75
|
909
|
c@75
|
910 return json11::Json(jo);
|
c@75
|
911 }
|
c@75
|
912
|
c@75
|
913 static Vamp::HostExt::ConfigurationResponse
|
c@75
|
914 toConfigurationResponse(json11::Json j,
|
c@75
|
915 const PluginHandleMapper &pmapper, std::string &err) {
|
c@75
|
916
|
c@75
|
917 Vamp::HostExt::ConfigurationResponse cr;
|
c@75
|
918
|
c@75
|
919 cr.plugin = pmapper.handleToPlugin(j["handle"].int_value());
|
c@75
|
920
|
c@75
|
921 if (!j["outputList"].is_array()) {
|
c@75
|
922 err = "array expected for output list";
|
c@75
|
923 return {};
|
c@75
|
924 }
|
c@75
|
925
|
c@75
|
926 for (const auto &o: j["outputList"].array_items()) {
|
c@75
|
927 cr.outputs.push_back(toOutputDescriptor(o, err));
|
c@75
|
928 if (failed(err)) return {};
|
c@75
|
929 }
|
c@75
|
930
|
c@75
|
931 return cr;
|
c@75
|
932 }
|
c@75
|
933
|
c@75
|
934 static json11::Json
|
c@75
|
935 fromProcessRequest(const Vamp::HostExt::ProcessRequest &r,
|
c@75
|
936 const PluginHandleMapper &pmapper,
|
c@75
|
937 BufferSerialisation serialisation) {
|
c@75
|
938
|
c@75
|
939 json11::Json::object jo;
|
c@75
|
940 jo["handle"] = pmapper.pluginToHandle(r.plugin);
|
c@75
|
941
|
c@75
|
942 json11::Json::object io;
|
c@75
|
943 io["timestamp"] = fromRealTime(r.timestamp);
|
c@75
|
944
|
c@75
|
945 json11::Json::array chans;
|
c@75
|
946 for (size_t i = 0; i < r.inputBuffers.size(); ++i) {
|
c@75
|
947 if (serialisation == BufferSerialisation::Array) {
|
c@75
|
948 chans.push_back(json11::Json::array(r.inputBuffers[i].begin(),
|
c@75
|
949 r.inputBuffers[i].end()));
|
c@75
|
950 } else {
|
c@75
|
951 chans.push_back(fromFloatBuffer(r.inputBuffers[i].data(),
|
c@75
|
952 r.inputBuffers[i].size()));
|
c@75
|
953 }
|
c@75
|
954 }
|
c@75
|
955 io["inputBuffers"] = chans;
|
c@75
|
956
|
c@75
|
957 jo["processInput"] = io;
|
c@75
|
958 return json11::Json(jo);
|
c@75
|
959 }
|
c@75
|
960
|
c@75
|
961 static Vamp::HostExt::ProcessRequest
|
c@75
|
962 toProcessRequest(json11::Json j,
|
c@75
|
963 const PluginHandleMapper &pmapper,
|
c@75
|
964 BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
965
|
c@75
|
966 if (!j.has_shape({
|
c@75
|
967 { "handle", json11::Json::NUMBER },
|
c@75
|
968 { "processInput", json11::Json::OBJECT } }, err)) {
|
c@75
|
969 err = "malformed process request: " + err;
|
c@75
|
970 return {};
|
c@75
|
971 }
|
c@75
|
972
|
c@75
|
973 auto input = j["processInput"];
|
c@75
|
974
|
c@75
|
975 if (!input.has_shape({
|
c@75
|
976 { "timestamp", json11::Json::OBJECT },
|
c@75
|
977 { "inputBuffers", json11::Json::ARRAY } }, err)) {
|
c@75
|
978 err = "malformed process request: " + err;
|
c@75
|
979 return {};
|
c@75
|
980 }
|
c@75
|
981
|
c@75
|
982 Vamp::HostExt::ProcessRequest r;
|
c@75
|
983 r.plugin = pmapper.handleToPlugin(j["handle"].int_value());
|
c@75
|
984
|
c@75
|
985 r.timestamp = toRealTime(input["timestamp"], err);
|
c@75
|
986 if (failed(err)) return {};
|
c@75
|
987
|
c@75
|
988 for (const auto &a: input["inputBuffers"].array_items()) {
|
c@75
|
989
|
c@75
|
990 if (a.is_string()) {
|
c@75
|
991 std::vector<float> buf = toFloatBuffer(a.string_value(),
|
c@75
|
992 err);
|
c@75
|
993 if (failed(err)) return {};
|
c@75
|
994 r.inputBuffers.push_back(buf);
|
c@75
|
995 serialisation = BufferSerialisation::Base64;
|
c@75
|
996
|
c@75
|
997 } else if (a.is_array()) {
|
c@75
|
998 std::vector<float> buf;
|
c@75
|
999 for (auto v : a.array_items()) {
|
c@75
|
1000 buf.push_back(v.number_value());
|
c@75
|
1001 }
|
c@75
|
1002 r.inputBuffers.push_back(buf);
|
c@75
|
1003 serialisation = BufferSerialisation::Array;
|
c@75
|
1004
|
c@75
|
1005 } else {
|
c@75
|
1006 err = "expected arrays or strings in inputBuffers array";
|
c@75
|
1007 return {};
|
c@75
|
1008 }
|
c@75
|
1009 }
|
c@75
|
1010
|
c@75
|
1011 return r;
|
c@75
|
1012 }
|
c@75
|
1013
|
c@75
|
1014 private: // go private briefly for a couple of helper functions
|
c@75
|
1015
|
c@75
|
1016 static void
|
c@75
|
1017 checkTypeField(json11::Json j, std::string expected, std::string &err) {
|
c@75
|
1018 if (!j["method"].is_string()) {
|
c@75
|
1019 err = "string expected for method";
|
c@75
|
1020 return;
|
c@75
|
1021 }
|
c@75
|
1022 if (j["method"].string_value() != expected) {
|
c@75
|
1023 err = "expected value \"" + expected + "\" for type";
|
c@75
|
1024 return;
|
c@75
|
1025 }
|
c@75
|
1026 }
|
c@75
|
1027
|
c@75
|
1028 static bool
|
c@75
|
1029 successful(json11::Json j, std::string &err) {
|
c@75
|
1030 if (!j["success"].is_bool()) {
|
c@75
|
1031 err = "bool expected for success";
|
c@75
|
1032 return false;
|
c@75
|
1033 }
|
c@75
|
1034 return j["success"].bool_value();
|
c@75
|
1035 }
|
c@75
|
1036
|
c@75
|
1037 static void
|
c@75
|
1038 markRPC(json11::Json::object &jo) {
|
c@75
|
1039 jo["jsonrpc"] = "2.0";
|
c@75
|
1040 }
|
c@75
|
1041
|
c@75
|
1042 static void
|
c@75
|
1043 addId(json11::Json::object &jo, const json11::Json &id) {
|
c@75
|
1044 if (!id.is_null()) {
|
c@75
|
1045 jo["id"] = id;
|
c@75
|
1046 }
|
c@75
|
1047 }
|
c@75
|
1048
|
c@75
|
1049 public:
|
c@75
|
1050
|
c@75
|
1051 static json11::Json
|
c@75
|
1052 fromRpcRequest_List(const json11::Json &id) {
|
c@75
|
1053
|
c@75
|
1054 json11::Json::object jo;
|
c@75
|
1055 markRPC(jo);
|
c@75
|
1056
|
c@75
|
1057 jo["method"] = "list";
|
c@75
|
1058 addId(jo, id);
|
c@75
|
1059 return json11::Json(jo);
|
c@75
|
1060 }
|
c@75
|
1061
|
c@75
|
1062 static json11::Json
|
c@75
|
1063 fromRpcResponse_List(const Vamp::HostExt::ListResponse &resp,
|
c@75
|
1064 const json11::Json &id) {
|
c@75
|
1065
|
c@75
|
1066 json11::Json::object jo;
|
c@75
|
1067 markRPC(jo);
|
c@75
|
1068
|
c@75
|
1069 json11::Json::array arr;
|
c@75
|
1070 for (const auto &a: resp.available) {
|
c@75
|
1071 arr.push_back(fromPluginStaticData(a));
|
c@75
|
1072 }
|
c@75
|
1073 json11::Json::object po;
|
c@75
|
1074 po["available"] = arr;
|
c@75
|
1075
|
c@75
|
1076 jo["method"] = "list";
|
c@75
|
1077 jo["result"] = po;
|
c@75
|
1078 addId(jo, id);
|
c@75
|
1079 return json11::Json(jo);
|
c@75
|
1080 }
|
c@75
|
1081
|
c@75
|
1082 static json11::Json
|
c@75
|
1083 fromRpcRequest_Load(const Vamp::HostExt::LoadRequest &req,
|
c@75
|
1084 const json11::Json &id) {
|
c@75
|
1085
|
c@75
|
1086 json11::Json::object jo;
|
c@75
|
1087 markRPC(jo);
|
c@75
|
1088
|
c@75
|
1089 jo["method"] = "load";
|
c@75
|
1090 jo["params"] = fromLoadRequest(req);
|
c@75
|
1091 addId(jo, id);
|
c@75
|
1092 return json11::Json(jo);
|
c@75
|
1093 }
|
c@75
|
1094
|
c@75
|
1095 static json11::Json
|
c@75
|
1096 fromRpcResponse_Load(const Vamp::HostExt::LoadResponse &resp,
|
c@75
|
1097 const PluginHandleMapper &pmapper,
|
c@75
|
1098 const json11::Json &id) {
|
c@75
|
1099
|
c@75
|
1100 if (resp.plugin) {
|
c@75
|
1101
|
c@75
|
1102 json11::Json::object jo;
|
c@75
|
1103 markRPC(jo);
|
c@75
|
1104
|
c@75
|
1105 jo["method"] = "load";
|
c@75
|
1106 jo["result"] = fromLoadResponse(resp, pmapper);
|
c@75
|
1107 addId(jo, id);
|
c@75
|
1108 return json11::Json(jo);
|
c@75
|
1109
|
c@75
|
1110 } else {
|
c@75
|
1111 return fromError("Failed to load plugin", RRType::Load, id);
|
c@75
|
1112 }
|
c@75
|
1113 }
|
c@75
|
1114
|
c@75
|
1115 static json11::Json
|
c@75
|
1116 fromRpcRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req,
|
c@75
|
1117 const PluginHandleMapper &pmapper,
|
c@75
|
1118 const json11::Json &id) {
|
c@75
|
1119
|
c@75
|
1120 json11::Json::object jo;
|
c@75
|
1121 markRPC(jo);
|
c@75
|
1122
|
c@75
|
1123 jo["method"] = "configure";
|
c@75
|
1124 jo["params"] = fromConfigurationRequest(req, pmapper);
|
c@75
|
1125 addId(jo, id);
|
c@75
|
1126 return json11::Json(jo);
|
c@75
|
1127 }
|
c@75
|
1128
|
c@75
|
1129 static json11::Json
|
c@75
|
1130 fromRpcResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp,
|
c@75
|
1131 const PluginHandleMapper &pmapper,
|
c@75
|
1132 const json11::Json &id) {
|
c@75
|
1133
|
c@75
|
1134 if (!resp.outputs.empty()) {
|
c@75
|
1135
|
c@75
|
1136 json11::Json::object jo;
|
c@75
|
1137 markRPC(jo);
|
c@75
|
1138
|
c@75
|
1139 jo["method"] = "configure";
|
c@75
|
1140 jo["result"] = fromConfigurationResponse(resp, pmapper);
|
c@75
|
1141 addId(jo, id);
|
c@75
|
1142 return json11::Json(jo);
|
c@75
|
1143
|
c@75
|
1144 } else {
|
c@75
|
1145 return fromError("Failed to configure plugin", RRType::Configure, id);
|
c@75
|
1146 }
|
c@75
|
1147 }
|
c@75
|
1148
|
c@75
|
1149 static json11::Json
|
c@75
|
1150 fromRpcRequest_Process(const Vamp::HostExt::ProcessRequest &req,
|
c@75
|
1151 const PluginHandleMapper &pmapper,
|
c@75
|
1152 BufferSerialisation serialisation,
|
c@75
|
1153 const json11::Json &id) {
|
c@75
|
1154
|
c@75
|
1155 json11::Json::object jo;
|
c@75
|
1156 markRPC(jo);
|
c@75
|
1157
|
c@75
|
1158 jo["method"] = "process";
|
c@75
|
1159 jo["params"] = fromProcessRequest(req, pmapper, serialisation);
|
c@75
|
1160 addId(jo, id);
|
c@75
|
1161 return json11::Json(jo);
|
c@75
|
1162 }
|
c@75
|
1163
|
c@75
|
1164 static json11::Json
|
c@75
|
1165 fromRpcResponse_Process(const Vamp::HostExt::ProcessResponse &resp,
|
c@75
|
1166 const PluginHandleMapper &pmapper,
|
c@75
|
1167 BufferSerialisation serialisation,
|
c@75
|
1168 const json11::Json &id) {
|
c@75
|
1169
|
c@75
|
1170 json11::Json::object jo;
|
c@75
|
1171 markRPC(jo);
|
c@75
|
1172
|
c@75
|
1173 json11::Json::object po;
|
c@75
|
1174 po["handle"] = pmapper.pluginToHandle(resp.plugin);
|
c@75
|
1175 po["features"] = fromFeatureSet(resp.features,
|
c@75
|
1176 *pmapper.pluginToOutputIdMapper(resp.plugin),
|
c@75
|
1177 serialisation);
|
c@75
|
1178 jo["method"] = "process";
|
c@75
|
1179 jo["result"] = po;
|
c@75
|
1180 addId(jo, id);
|
c@75
|
1181 return json11::Json(jo);
|
c@75
|
1182 }
|
c@75
|
1183
|
c@75
|
1184 static json11::Json
|
c@75
|
1185 fromRpcRequest_Finish(const Vamp::HostExt::FinishRequest &req,
|
c@75
|
1186 const PluginHandleMapper &pmapper,
|
c@75
|
1187 const json11::Json &id) {
|
c@75
|
1188
|
c@75
|
1189 json11::Json::object jo;
|
c@75
|
1190 markRPC(jo);
|
c@75
|
1191
|
c@75
|
1192 json11::Json::object fo;
|
c@75
|
1193 fo["handle"] = pmapper.pluginToHandle(req.plugin);
|
c@75
|
1194
|
c@75
|
1195 jo["method"] = "finish";
|
c@75
|
1196 jo["params"] = fo;
|
c@75
|
1197 addId(jo, id);
|
c@75
|
1198 return json11::Json(jo);
|
c@75
|
1199 }
|
c@75
|
1200
|
c@75
|
1201 static json11::Json
|
c@75
|
1202 fromRpcResponse_Finish(const Vamp::HostExt::ProcessResponse &resp,
|
c@75
|
1203 const PluginHandleMapper &pmapper,
|
c@75
|
1204 BufferSerialisation serialisation,
|
c@75
|
1205 const json11::Json &id) {
|
c@75
|
1206
|
c@75
|
1207 json11::Json::object jo;
|
c@75
|
1208 markRPC(jo);
|
c@75
|
1209
|
c@75
|
1210 json11::Json::object po;
|
c@75
|
1211 po["handle"] = pmapper.pluginToHandle(resp.plugin);
|
c@75
|
1212 po["features"] = fromFeatureSet(resp.features,
|
c@75
|
1213 *pmapper.pluginToOutputIdMapper(resp.plugin),
|
c@75
|
1214 serialisation);
|
c@75
|
1215 jo["method"] = "finish";
|
c@75
|
1216 jo["result"] = po;
|
c@75
|
1217 addId(jo, id);
|
c@75
|
1218 return json11::Json(jo);
|
c@75
|
1219 }
|
c@75
|
1220
|
c@75
|
1221 static json11::Json
|
c@75
|
1222 fromError(std::string errorText,
|
c@75
|
1223 RRType responseType,
|
c@75
|
1224 const json11::Json &id) {
|
c@75
|
1225
|
c@75
|
1226 json11::Json::object jo;
|
c@75
|
1227 markRPC(jo);
|
c@75
|
1228
|
c@75
|
1229 std::string type;
|
c@75
|
1230
|
c@75
|
1231 if (responseType == RRType::List) type = "list";
|
c@75
|
1232 else if (responseType == RRType::Load) type = "load";
|
c@75
|
1233 else if (responseType == RRType::Configure) type = "configure";
|
c@75
|
1234 else if (responseType == RRType::Process) type = "process";
|
c@75
|
1235 else if (responseType == RRType::Finish) type = "finish";
|
c@75
|
1236 else type = "invalid";
|
c@75
|
1237
|
c@75
|
1238 json11::Json::object eo;
|
c@75
|
1239 eo["code"] = 0;
|
c@75
|
1240 eo["message"] =
|
c@75
|
1241 std::string("error in ") + type + " request: " + errorText;
|
c@75
|
1242
|
c@75
|
1243 jo["method"] = type;
|
c@75
|
1244 jo["error"] = eo;
|
c@75
|
1245 addId(jo, id);
|
c@75
|
1246 return json11::Json(jo);
|
c@75
|
1247 }
|
c@75
|
1248
|
c@75
|
1249 static RRType
|
c@75
|
1250 getRequestResponseType(json11::Json j, std::string &err) {
|
c@75
|
1251
|
c@75
|
1252 if (!j["method"].is_string()) {
|
c@75
|
1253 err = "string expected for method";
|
c@75
|
1254 return RRType::NotValid;
|
c@75
|
1255 }
|
c@75
|
1256
|
c@75
|
1257 std::string type = j["method"].string_value();
|
c@75
|
1258
|
c@75
|
1259 if (type == "list") return RRType::List;
|
c@75
|
1260 else if (type == "load") return RRType::Load;
|
c@75
|
1261 else if (type == "configure") return RRType::Configure;
|
c@75
|
1262 else if (type == "process") return RRType::Process;
|
c@75
|
1263 else if (type == "finish") return RRType::Finish;
|
c@75
|
1264 else if (type == "invalid") return RRType::NotValid;
|
c@75
|
1265 else {
|
c@75
|
1266 err = "unknown or unexpected request/response type \"" + type + "\"";
|
c@75
|
1267 return RRType::NotValid;
|
c@75
|
1268 }
|
c@75
|
1269 }
|
c@75
|
1270
|
c@75
|
1271 static void
|
c@75
|
1272 toRpcRequest_List(json11::Json j, std::string &err) {
|
c@75
|
1273 checkTypeField(j, "list", err);
|
c@75
|
1274 }
|
c@75
|
1275
|
c@75
|
1276 static Vamp::HostExt::ListResponse
|
c@75
|
1277 toRpcResponse_List(json11::Json j, std::string &err) {
|
c@75
|
1278
|
c@75
|
1279 Vamp::HostExt::ListResponse resp;
|
c@75
|
1280 if (successful(j, err) && !failed(err)) {
|
c@75
|
1281 for (const auto &a: j["result"]["available"].array_items()) {
|
c@75
|
1282 resp.available.push_back(toPluginStaticData(a, err));
|
c@75
|
1283 if (failed(err)) return {};
|
c@75
|
1284 }
|
c@75
|
1285 }
|
c@75
|
1286
|
c@75
|
1287 return resp;
|
c@75
|
1288 }
|
c@75
|
1289
|
c@75
|
1290 static Vamp::HostExt::LoadRequest
|
c@75
|
1291 toRpcRequest_Load(json11::Json j, std::string &err) {
|
c@75
|
1292
|
c@75
|
1293 checkTypeField(j, "load", err);
|
c@75
|
1294 if (failed(err)) return {};
|
c@75
|
1295 return toLoadRequest(j["params"], err);
|
c@75
|
1296 }
|
c@75
|
1297
|
c@75
|
1298 static Vamp::HostExt::LoadResponse
|
c@75
|
1299 toRpcResponse_Load(json11::Json j,
|
c@75
|
1300 const PluginHandleMapper &pmapper,
|
c@75
|
1301 std::string &err) {
|
c@75
|
1302
|
c@75
|
1303 Vamp::HostExt::LoadResponse resp;
|
c@75
|
1304 if (successful(j, err) && !failed(err)) {
|
c@75
|
1305 resp = toLoadResponse(j["result"], pmapper, err);
|
c@75
|
1306 }
|
c@75
|
1307 return resp;
|
c@75
|
1308 }
|
c@75
|
1309
|
c@75
|
1310 static Vamp::HostExt::ConfigurationRequest
|
c@75
|
1311 toRpcRequest_Configure(json11::Json j,
|
c@75
|
1312 const PluginHandleMapper &pmapper,
|
c@75
|
1313 std::string &err) {
|
c@75
|
1314
|
c@75
|
1315 checkTypeField(j, "configure", err);
|
c@75
|
1316 if (failed(err)) return {};
|
c@75
|
1317 return toConfigurationRequest(j["params"], pmapper, err);
|
c@75
|
1318 }
|
c@75
|
1319
|
c@75
|
1320 static Vamp::HostExt::ConfigurationResponse
|
c@75
|
1321 toRpcResponse_Configure(json11::Json j,
|
c@75
|
1322 const PluginHandleMapper &pmapper,
|
c@75
|
1323 std::string &err) {
|
c@75
|
1324
|
c@75
|
1325 Vamp::HostExt::ConfigurationResponse resp;
|
c@75
|
1326 if (successful(j, err) && !failed(err)) {
|
c@75
|
1327 resp = toConfigurationResponse(j["result"], pmapper, err);
|
c@75
|
1328 }
|
c@75
|
1329 return resp;
|
c@75
|
1330 }
|
c@75
|
1331
|
c@75
|
1332 static Vamp::HostExt::ProcessRequest
|
c@75
|
1333 toRpcRequest_Process(json11::Json j, const PluginHandleMapper &pmapper,
|
c@75
|
1334 BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
1335
|
c@75
|
1336 checkTypeField(j, "process", err);
|
c@75
|
1337 if (failed(err)) return {};
|
c@75
|
1338 return toProcessRequest(j["params"], pmapper, serialisation, err);
|
c@75
|
1339 }
|
c@75
|
1340
|
c@75
|
1341 static Vamp::HostExt::ProcessResponse
|
c@75
|
1342 toRpcResponse_Process(json11::Json j,
|
c@75
|
1343 const PluginHandleMapper &pmapper,
|
c@75
|
1344 BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
1345
|
c@75
|
1346 Vamp::HostExt::ProcessResponse resp;
|
c@75
|
1347 if (successful(j, err) && !failed(err)) {
|
c@75
|
1348 auto jc = j["result"];
|
c@75
|
1349 auto h = jc["handle"].int_value();
|
c@75
|
1350 resp.plugin = pmapper.handleToPlugin(h);
|
c@75
|
1351 resp.features = toFeatureSet(jc["features"],
|
c@75
|
1352 *pmapper.handleToOutputIdMapper(h),
|
c@75
|
1353 serialisation, err);
|
c@75
|
1354 }
|
c@75
|
1355 return resp;
|
c@75
|
1356 }
|
c@75
|
1357
|
c@75
|
1358 static Vamp::HostExt::FinishRequest
|
c@75
|
1359 toRpcRequest_Finish(json11::Json j, const PluginHandleMapper &pmapper,
|
c@75
|
1360 std::string &err) {
|
c@75
|
1361
|
c@75
|
1362 checkTypeField(j, "finish", err);
|
c@75
|
1363 if (failed(err)) return {};
|
c@75
|
1364 Vamp::HostExt::FinishRequest req;
|
c@75
|
1365 req.plugin = pmapper.handleToPlugin
|
c@75
|
1366 (j["params"]["handle"].int_value());
|
c@75
|
1367 return req;
|
c@75
|
1368 }
|
c@75
|
1369
|
c@75
|
1370 static Vamp::HostExt::ProcessResponse
|
c@75
|
1371 toRpcResponse_Finish(json11::Json j,
|
c@75
|
1372 const PluginHandleMapper &pmapper,
|
c@75
|
1373 BufferSerialisation &serialisation, std::string &err) {
|
c@75
|
1374
|
c@75
|
1375 Vamp::HostExt::ProcessResponse resp;
|
c@75
|
1376 if (successful(j, err) && !failed(err)) {
|
c@75
|
1377 auto jc = j["result"];
|
c@75
|
1378 auto h = jc["handle"].int_value();
|
c@75
|
1379 resp.plugin = pmapper.handleToPlugin(h);
|
c@75
|
1380 resp.features = toFeatureSet(jc["features"],
|
c@75
|
1381 *pmapper.handleToOutputIdMapper(h),
|
c@75
|
1382 serialisation, err);
|
c@75
|
1383 }
|
c@75
|
1384 return resp;
|
c@75
|
1385 }
|
c@75
|
1386 };
|
c@75
|
1387
|
c@75
|
1388 }
|
c@75
|
1389
|
c@75
|
1390 #endif
|