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