annotate json/VampJson.h @ 47:fa2edfabf829

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