annotate json/VampJson.h @ 5:6e8607ebad03

Promote the more successful experiments (todo: get them to build again)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 13 May 2016 13:48:59 +0100
parents
children d8358afe3f2c
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@5 3 #ifndef VAMP_JSON_H
c@5 4 #define VAMP_JSON_H
c@5 5
c@5 6 #include <vector>
c@5 7 #include <string>
c@5 8 #include <sstream>
c@5 9 #include <stdexcept>
c@5 10
c@5 11 #include <json11/json11.hpp>
c@5 12 #include <base-n/include/basen.hpp>
c@5 13
c@5 14 #include <vamp-hostsdk/Plugin.h>
c@5 15 #include <vamp-hostsdk/PluginLoader.h>
c@5 16
c@5 17 class VampJson
c@5 18 {
c@5 19 public:
c@5 20 class Failure : virtual public std::runtime_error {
c@5 21 public:
c@5 22 Failure(std::string s) : runtime_error(s) { }
c@5 23 };
c@5 24
c@5 25 template <typename T>
c@5 26 static json11::Json
c@5 27 fromBasicDescriptor(const T &t) {
c@5 28 return json11::Json::object {
c@5 29 { "identifier", t.identifier },
c@5 30 { "name", t.name },
c@5 31 { "description", t.description }
c@5 32 };
c@5 33 }
c@5 34
c@5 35 template <typename T>
c@5 36 static void
c@5 37 toBasicDescriptor(json11::Json j, T &t) {
c@5 38 if (!j.is_object()) {
c@5 39 throw Failure("object expected for basic descriptor content");
c@5 40 }
c@5 41 if (!j["identifier"].is_string()) {
c@5 42 throw Failure("string expected for identifier");
c@5 43 }
c@5 44 t.identifier = j["identifier"].string_value();
c@5 45 t.name = j["name"].string_value();
c@5 46 t.description = j["description"].string_value();
c@5 47 }
c@5 48
c@5 49 template <typename T>
c@5 50 static json11::Json
c@5 51 fromValueExtents(const T &t) {
c@5 52 return json11::Json::object {
c@5 53 { "min", t.minValue },
c@5 54 { "max", t.maxValue }
c@5 55 };
c@5 56 }
c@5 57
c@5 58 template <typename T>
c@5 59 static bool
c@5 60 toValueExtents(json11::Json j, T &t) {
c@5 61 if (j["extents"].is_null()) {
c@5 62 return false;
c@5 63 } else if (j["extents"].is_object()) {
c@5 64 if (j["extents"]["min"].is_number() &&
c@5 65 j["extents"]["max"].is_number()) {
c@5 66 t.minValue = j["extents"]["min"].number_value();
c@5 67 t.maxValue = j["extents"]["max"].number_value();
c@5 68 return true;
c@5 69 } else {
c@5 70 throw Failure("numbers expected for min and max");
c@5 71 }
c@5 72 } else {
c@5 73 throw Failure("object expected for extents (if present)");
c@5 74 }
c@5 75 }
c@5 76
c@5 77 static json11::Json
c@5 78 fromRealTime(const Vamp::RealTime &r) {
c@5 79 return json11::Json::object {
c@5 80 { "s", r.sec },
c@5 81 { "n", r.nsec }
c@5 82 };
c@5 83 }
c@5 84
c@5 85 static Vamp::RealTime
c@5 86 toRealTime(json11::Json j) {
c@5 87 json11::Json sec = j["s"];
c@5 88 json11::Json nsec = j["n"];
c@5 89 if (!sec.is_number() || !nsec.is_number()) {
c@5 90 throw Failure("invalid Vamp::RealTime object " + j.dump());
c@5 91 }
c@5 92 return Vamp::RealTime(sec.int_value(), nsec.int_value());
c@5 93 }
c@5 94
c@5 95 static std::string
c@5 96 fromSampleType(Vamp::Plugin::OutputDescriptor::SampleType type) {
c@5 97 switch (type) {
c@5 98 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
c@5 99 return "OneSamplePerStep";
c@5 100 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
c@5 101 return "FixedSampleRate";
c@5 102 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
c@5 103 return "VariableSampleRate";
c@5 104 }
c@5 105 return "";
c@5 106 }
c@5 107
c@5 108 static Vamp::Plugin::OutputDescriptor::SampleType
c@5 109 toSampleType(std::string text) {
c@5 110 if (text == "OneSamplePerStep") {
c@5 111 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
c@5 112 } else if (text == "FixedSampleRate") {
c@5 113 return Vamp::Plugin::OutputDescriptor::FixedSampleRate;
c@5 114 } else if (text == "VariableSampleRate") {
c@5 115 return Vamp::Plugin::OutputDescriptor::VariableSampleRate;
c@5 116 } else {
c@5 117 throw Failure("invalid sample type string: " + text);
c@5 118 }
c@5 119 }
c@5 120
c@5 121 static json11::Json
c@5 122 fromOutputDescriptor(const Vamp::Plugin::OutputDescriptor &desc) {
c@5 123 json11::Json::object jo {
c@5 124 { "basic", fromBasicDescriptor(desc) },
c@5 125 { "unit", desc.unit },
c@5 126 { "sampleType", fromSampleType(desc.sampleType) },
c@5 127 { "sampleRate", desc.sampleRate },
c@5 128 { "hasDuration", desc.hasDuration }
c@5 129 };
c@5 130 if (desc.hasFixedBinCount) {
c@5 131 jo["binCount"] = int(desc.binCount);
c@5 132 jo["binNames"] = json11::Json::array
c@5 133 (desc.binNames.begin(), desc.binNames.end());
c@5 134 }
c@5 135 if (desc.hasKnownExtents) {
c@5 136 jo["extents"] = fromValueExtents(desc);
c@5 137 }
c@5 138 if (desc.isQuantized) {
c@5 139 jo["quantizeStep"] = desc.quantizeStep;
c@5 140 }
c@5 141 return json11::Json(jo);
c@5 142 }
c@5 143
c@5 144 static Vamp::Plugin::OutputDescriptor
c@5 145 toOutputDescriptor(json11::Json j) {
c@5 146
c@5 147 Vamp::Plugin::OutputDescriptor od;
c@5 148 if (!j.is_object()) {
c@5 149 throw Failure("object expected for output descriptor");
c@5 150 }
c@5 151
c@5 152 toBasicDescriptor(j["basic"], od);
c@5 153
c@5 154 od.unit = j["unit"].string_value();
c@5 155
c@5 156 od.sampleType = toSampleType(j["sampleType"].string_value());
c@5 157
c@5 158 if (!j["sampleRate"].is_number()) {
c@5 159 throw Failure("number expected for sample rate");
c@5 160 }
c@5 161 od.sampleRate = j["sampleRate"].number_value();
c@5 162 od.hasDuration = j["hasDuration"].bool_value();
c@5 163
c@5 164 if (j["binCount"].is_number() && j["binCount"].int_value() > 0) {
c@5 165 od.hasFixedBinCount = true;
c@5 166 od.binCount = j["binCount"].int_value();
c@5 167 for (auto &n: j["binNames"].array_items()) {
c@5 168 if (!n.is_string()) {
c@5 169 throw Failure("string expected for bin name");
c@5 170 }
c@5 171 od.binNames.push_back(n.string_value());
c@5 172 }
c@5 173 } else {
c@5 174 od.hasFixedBinCount = false;
c@5 175 }
c@5 176
c@5 177 bool extentsPresent = toValueExtents(j, od);
c@5 178 od.hasKnownExtents = extentsPresent;
c@5 179
c@5 180 if (j["quantizeStep"].is_number()) {
c@5 181 od.isQuantized = true;
c@5 182 od.quantizeStep = j["quantizeStep"].number_value();
c@5 183 } else {
c@5 184 od.isQuantized = false;
c@5 185 }
c@5 186
c@5 187 return od;
c@5 188 }
c@5 189
c@5 190 static json11::Json
c@5 191 fromParameterDescriptor(const Vamp::PluginBase::ParameterDescriptor &desc) {
c@5 192
c@5 193 json11::Json::object jo {
c@5 194 { "basic", fromBasicDescriptor(desc) },
c@5 195 { "unit", desc.unit },
c@5 196 { "extents", fromValueExtents(desc) },
c@5 197 { "defaultValue", desc.defaultValue },
c@5 198 { "valueNames", json11::Json::array
c@5 199 (desc.valueNames.begin(), desc.valueNames.end()) }
c@5 200 };
c@5 201 if (desc.isQuantized) {
c@5 202 jo["quantizeStep"] = desc.quantizeStep;
c@5 203 }
c@5 204 return json11::Json(jo);
c@5 205 }
c@5 206
c@5 207 static Vamp::PluginBase::ParameterDescriptor
c@5 208 toParameterDescriptor(json11::Json j) {
c@5 209
c@5 210 Vamp::PluginBase::ParameterDescriptor pd;
c@5 211 if (!j.is_object()) {
c@5 212 throw Failure("object expected for parameter descriptor");
c@5 213 }
c@5 214
c@5 215 toBasicDescriptor(j["basic"], pd);
c@5 216
c@5 217 pd.unit = j["unit"].string_value();
c@5 218
c@5 219 bool extentsPresent = toValueExtents(j, pd);
c@5 220 if (!extentsPresent) {
c@5 221 throw Failure("extents must be present in parameter descriptor");
c@5 222 }
c@5 223
c@5 224 if (!j["defaultValue"].is_number()) {
c@5 225 throw Failure("number expected for default value");
c@5 226 }
c@5 227
c@5 228 pd.defaultValue = j["defaultValue"].number_value();
c@5 229
c@5 230 pd.valueNames.clear();
c@5 231 for (auto &n: j["valueNames"].array_items()) {
c@5 232 if (!n.is_string()) {
c@5 233 throw Failure("string expected for value name");
c@5 234 }
c@5 235 pd.valueNames.push_back(n.string_value());
c@5 236 }
c@5 237
c@5 238 if (j["quantizeStep"].is_number()) {
c@5 239 pd.isQuantized = true;
c@5 240 pd.quantizeStep = j["quantizeStep"].number_value();
c@5 241 } else {
c@5 242 pd.isQuantized = false;
c@5 243 }
c@5 244
c@5 245 return pd;
c@5 246 }
c@5 247
c@5 248 static std::string
c@5 249 fromFloatBuffer(const float *buffer, size_t nfloats) {
c@5 250 // must use char pointers, otherwise the converter will only
c@5 251 // encode every 4th byte (as it will count up in float* steps)
c@5 252 const char *start = reinterpret_cast<const char *>(buffer);
c@5 253 const char *end = reinterpret_cast<const char *>(buffer + nfloats);
c@5 254 std::string encoded;
c@5 255 bn::encode_b64(start, end, back_inserter(encoded));
c@5 256 return encoded;
c@5 257 }
c@5 258
c@5 259 static std::vector<float>
c@5 260 toFloatBuffer(std::string encoded) {
c@5 261 std::string decoded;
c@5 262 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded));
c@5 263 const float *buffer = reinterpret_cast<const float *>(decoded.c_str());
c@5 264 size_t n = decoded.size() / sizeof(float);
c@5 265 return std::vector<float>(buffer, buffer + n);
c@5 266 }
c@5 267
c@5 268 static json11::Json
c@5 269 fromFeature(const Vamp::Plugin::Feature &f) {
c@5 270
c@5 271 json11::Json::object jo;
c@5 272 if (f.values.size() > 0) {
c@5 273 jo["b64values"] = fromFloatBuffer(f.values.data(), f.values.size());
c@5 274 }
c@5 275 if (f.label != "") {
c@5 276 jo["label"] = f.label;
c@5 277 }
c@5 278 if (f.hasTimestamp) {
c@5 279 jo["timestamp"] = fromRealTime(f.timestamp);
c@5 280 }
c@5 281 if (f.hasDuration) {
c@5 282 jo["duration"] = fromRealTime(f.duration);
c@5 283 }
c@5 284 return json11::Json(jo);
c@5 285 }
c@5 286
c@5 287 static Vamp::Plugin::Feature
c@5 288 toFeature(json11::Json j) {
c@5 289
c@5 290 Vamp::Plugin::Feature f;
c@5 291 if (!j.is_object()) {
c@5 292 throw Failure("object expected for feature");
c@5 293 }
c@5 294 if (j["timestamp"].is_object()) {
c@5 295 f.timestamp = toRealTime(j["timestamp"]);
c@5 296 f.hasTimestamp = true;
c@5 297 }
c@5 298 if (j["duration"].is_object()) {
c@5 299 f.duration = toRealTime(j["duration"]);
c@5 300 f.hasDuration = true;
c@5 301 }
c@5 302 if (j["b64values"].is_string()) {
c@5 303 f.values = toFloatBuffer(j["b64values"].string_value());
c@5 304 } else if (j["values"].is_array()) {
c@5 305 for (auto v : j["values"].array_items()) {
c@5 306 f.values.push_back(v.number_value());
c@5 307 }
c@5 308 }
c@5 309 f.label = j["label"].string_value();
c@5 310 return f;
c@5 311 }
c@5 312
c@5 313 static json11::Json
c@5 314 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs) {
c@5 315
c@5 316 json11::Json::object jo;
c@5 317 for (const auto &fsi : fs) {
c@5 318 std::vector<json11::Json> fj;
c@5 319 for (const Vamp::Plugin::Feature &f: fsi.second) {
c@5 320 fj.push_back(fromFeature(f));
c@5 321 }
c@5 322 std::stringstream sstr;
c@5 323 sstr << fsi.first;
c@5 324 std::string n = sstr.str();
c@5 325 jo[n] = fj;
c@5 326 }
c@5 327 return json11::Json(jo);
c@5 328 }
c@5 329
c@5 330 static Vamp::Plugin::FeatureList
c@5 331 toFeatureList(json11::Json j) {
c@5 332
c@5 333 Vamp::Plugin::FeatureList fl;
c@5 334 if (!j.is_array()) {
c@5 335 throw Failure("array expected for feature list");
c@5 336 }
c@5 337 for (const json11::Json &fj : j.array_items()) {
c@5 338 fl.push_back(toFeature(fj));
c@5 339 }
c@5 340 return fl;
c@5 341 }
c@5 342
c@5 343 static Vamp::Plugin::FeatureSet
c@5 344 toFeatureSet(json11::Json j) {
c@5 345
c@5 346 Vamp::Plugin::FeatureSet fs;
c@5 347 if (!j.is_object()) {
c@5 348 throw Failure("object expected for feature set");
c@5 349 }
c@5 350 for (auto &entry : j.object_items()) {
c@5 351 std::string nstr = entry.first;
c@5 352 size_t count = 0;
c@5 353 int n = stoi(nstr, &count);
c@5 354 if (n < 0 || fs.find(n) != fs.end() || count < nstr.size()) {
c@5 355 throw Failure("invalid or duplicate numerical index for output");
c@5 356 }
c@5 357 fs[n] = toFeatureList(entry.second);
c@5 358 }
c@5 359 return fs;
c@5 360 }
c@5 361
c@5 362 static std::string
c@5 363 fromInputDomain(Vamp::Plugin::InputDomain domain) {
c@5 364
c@5 365 switch (domain) {
c@5 366 case Vamp::Plugin::TimeDomain:
c@5 367 return "TimeDomain";
c@5 368 case Vamp::Plugin::FrequencyDomain:
c@5 369 return "FrequencyDomain";
c@5 370 }
c@5 371 return "";
c@5 372 }
c@5 373
c@5 374 static Vamp::Plugin::InputDomain
c@5 375 toInputDomain(std::string text) {
c@5 376
c@5 377 if (text == "TimeDomain") {
c@5 378 return Vamp::Plugin::TimeDomain;
c@5 379 } else if (text == "FrequencyDomain") {
c@5 380 return Vamp::Plugin::FrequencyDomain;
c@5 381 } else {
c@5 382 throw Failure("invalid input domain string: " + text);
c@5 383 }
c@5 384 }
c@5 385
c@5 386 static json11::Json
c@5 387 fromPluginStaticData(const Vamp::HostExt::PluginStaticData &d) {
c@5 388
c@5 389 json11::Json::object jo;
c@5 390 jo["pluginKey"] = d.pluginKey;
c@5 391 jo["basic"] = fromBasicDescriptor(d.basic);
c@5 392 jo["maker"] = d.maker;
c@5 393 jo["copyright"] = d.copyright;
c@5 394 jo["pluginVersion"] = d.pluginVersion;
c@5 395
c@5 396 json11::Json::array cat;
c@5 397 for (const std::string &c: d.category) cat.push_back(c);
c@5 398 jo["category"] = cat;
c@5 399
c@5 400 jo["minChannelCount"] = d.minChannelCount;
c@5 401 jo["maxChannelCount"] = d.maxChannelCount;
c@5 402
c@5 403 json11::Json::array params;
c@5 404 Vamp::PluginBase::ParameterList vparams = d.parameters;
c@5 405 for (auto &p: vparams) params.push_back(fromParameterDescriptor(p));
c@5 406 jo["parameters"] = params;
c@5 407
c@5 408 json11::Json::array progs;
c@5 409 Vamp::PluginBase::ProgramList vprogs = d.programs;
c@5 410 for (auto &p: vprogs) progs.push_back(p);
c@5 411 jo["programs"] = progs;
c@5 412
c@5 413 jo["inputDomain"] = fromInputDomain(d.inputDomain);
c@5 414
c@5 415 json11::Json::array outinfo;
c@5 416 auto vouts = d.basicOutputInfo;
c@5 417 for (auto &o: vouts) outinfo.push_back(fromBasicDescriptor(o));
c@5 418 jo["basicOutputInfo"] = outinfo;
c@5 419
c@5 420 return json11::Json(jo);
c@5 421 }
c@5 422
c@5 423 static Vamp::HostExt::PluginStaticData
c@5 424 toPluginStaticData(json11::Json j) {
c@5 425
c@5 426 std::string err;
c@5 427 if (!j.has_shape({
c@5 428 { "pluginKey", json11::Json::STRING },
c@5 429 { "pluginVersion", json11::Json::NUMBER },
c@5 430 { "minChannelCount", json11::Json::NUMBER },
c@5 431 { "maxChannelCount", json11::Json::NUMBER },
c@5 432 { "inputDomain", json11::Json::STRING }}, err)) {
c@5 433 throw Failure("malformed plugin static data: " + err);
c@5 434 }
c@5 435
c@5 436 if (!j["basicOutputInfo"].is_array()) {
c@5 437 throw Failure("array expected for basic output info");
c@5 438 }
c@5 439
c@5 440 if (!j["maker"].is_null() &&
c@5 441 !j["maker"].is_string()) {
c@5 442 throw Failure("string expected for maker");
c@5 443 }
c@5 444
c@5 445 if (!j["copyright"].is_null() &&
c@5 446 !j["copyright"].is_string()) {
c@5 447 throw Failure("string expected for copyright");
c@5 448 }
c@5 449
c@5 450 if (!j["category"].is_null() &&
c@5 451 !j["category"].is_array()) {
c@5 452 throw Failure("array expected for category");
c@5 453 }
c@5 454
c@5 455 if (!j["parameters"].is_null() &&
c@5 456 !j["parameters"].is_array()) {
c@5 457 throw Failure("array expected for parameters");
c@5 458 }
c@5 459
c@5 460 if (!j["programs"].is_null() &&
c@5 461 !j["programs"].is_array()) {
c@5 462 throw Failure("array expected for programs");
c@5 463 }
c@5 464
c@5 465 if (!j["inputDomain"].is_null() &&
c@5 466 !j["inputDomain"].is_string()) {
c@5 467 throw Failure("string expected for inputDomain");
c@5 468 }
c@5 469
c@5 470 if (!j["basicOutputInfo"].is_null() &&
c@5 471 !j["basicOutputInfo"].is_array()) {
c@5 472 throw Failure("array expected for basicOutputInfo");
c@5 473 }
c@5 474
c@5 475 Vamp::HostExt::PluginStaticData psd;
c@5 476
c@5 477 psd.pluginKey = j["pluginKey"].string_value();
c@5 478
c@5 479 toBasicDescriptor(j["basic"], psd.basic);
c@5 480
c@5 481 psd.maker = j["maker"].string_value();
c@5 482 psd.copyright = j["copyright"].string_value();
c@5 483 psd.pluginVersion = j["pluginVersion"].int_value();
c@5 484
c@5 485 for (const auto &c : j["category"].array_items()) {
c@5 486 if (!c.is_string()) {
c@5 487 throw Failure("strings expected in category array");
c@5 488 }
c@5 489 psd.category.push_back(c.string_value());
c@5 490 }
c@5 491
c@5 492 psd.minChannelCount = j["minChannelCount"].int_value();
c@5 493 psd.maxChannelCount = j["maxChannelCount"].int_value();
c@5 494
c@5 495 for (const auto &p : j["parameters"].array_items()) {
c@5 496 auto pd = toParameterDescriptor(p);
c@5 497 psd.parameters.push_back(pd);
c@5 498 }
c@5 499
c@5 500 for (const auto &p : j["programs"].array_items()) {
c@5 501 if (!p.is_string()) {
c@5 502 throw Failure("strings expected in programs array");
c@5 503 }
c@5 504 psd.programs.push_back(p.string_value());
c@5 505 }
c@5 506
c@5 507 psd.inputDomain = toInputDomain(j["inputDomain"].string_value());
c@5 508
c@5 509 for (const auto &bo : j["basicOutputInfo"].array_items()) {
c@5 510 Vamp::HostExt::PluginStaticData::Basic b;
c@5 511 toBasicDescriptor(bo, b);
c@5 512 psd.basicOutputInfo.push_back(b);
c@5 513 }
c@5 514
c@5 515 return psd;
c@5 516 }
c@5 517
c@5 518 static json11::Json
c@5 519 fromPluginConfiguration(const Vamp::HostExt::PluginConfiguration &c) {
c@5 520
c@5 521 json11::Json::object jo;
c@5 522
c@5 523 json11::Json::object paramValues;
c@5 524 for (auto &vp: c.parameterValues) {
c@5 525 paramValues[vp.first] = vp.second;
c@5 526 }
c@5 527 jo["parameterValues"] = paramValues;
c@5 528
c@5 529 if (c.currentProgram != "") {
c@5 530 jo["currentProgram"] = c.currentProgram;
c@5 531 }
c@5 532
c@5 533 jo["channelCount"] = c.channelCount;
c@5 534 jo["stepSize"] = c.stepSize;
c@5 535 jo["blockSize"] = c.blockSize;
c@5 536
c@5 537 return json11::Json(jo);
c@5 538 }
c@5 539
c@5 540 static Vamp::HostExt::PluginConfiguration
c@5 541 toPluginConfiguration(json11::Json j) {
c@5 542
c@5 543 std::string err;
c@5 544 if (!j.has_shape({
c@5 545 { "channelCount", json11::Json::NUMBER },
c@5 546 { "stepSize", json11::Json::NUMBER },
c@5 547 { "blockSize", json11::Json::NUMBER } }, err)) {
c@5 548 throw Failure("malformed plugin configuration: " + err);
c@5 549 }
c@5 550
c@5 551 if (!j["parameterValues"].is_null() &&
c@5 552 !j["parameterValues"].is_object()) {
c@5 553 throw Failure("object expected for parameter values");
c@5 554 }
c@5 555
c@5 556 for (auto &pv : j["parameterValues"].object_items()) {
c@5 557 if (!pv.second.is_number()) {
c@5 558 throw Failure("number expected for parameter value");
c@5 559 }
c@5 560 }
c@5 561
c@5 562 if (!j["currentProgram"].is_null() &&
c@5 563 !j["currentProgram"].is_string()) {
c@5 564 throw Failure("string expected for program name");
c@5 565 }
c@5 566
c@5 567 Vamp::HostExt::PluginConfiguration config;
c@5 568
c@5 569 config.channelCount = j["channelCount"].number_value();
c@5 570 config.stepSize = j["stepSize"].number_value();
c@5 571 config.blockSize = j["blockSize"].number_value();
c@5 572
c@5 573 for (auto &pv : j["parameterValues"].object_items()) {
c@5 574 config.parameterValues[pv.first] = pv.second.number_value();
c@5 575 }
c@5 576
c@5 577 if (j["currentProgram"].is_string()) {
c@5 578 config.currentProgram = j["currentProgram"].string_value();
c@5 579 }
c@5 580
c@5 581 return config;
c@5 582 }
c@5 583
c@5 584 static json11::Json
c@5 585 fromAdapterFlags(int flags) {
c@5 586
c@5 587 json11::Json::array arr;
c@5 588
c@5 589 if (flags & Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN) {
c@5 590 arr.push_back("AdaptInputDomain");
c@5 591 }
c@5 592 if (flags & Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT) {
c@5 593 arr.push_back("AdaptChannelCount");
c@5 594 }
c@5 595 if (flags & Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE) {
c@5 596 arr.push_back("AdaptBufferSize");
c@5 597 }
c@5 598
c@5 599 return json11::Json(arr);
c@5 600 }
c@5 601
c@5 602 static Vamp::HostExt::PluginLoader::AdapterFlags
c@5 603 toAdapterFlags(json11::Json j) {
c@5 604
c@5 605 if (!j.is_array()) {
c@5 606 throw Failure("array expected for adapter flags");
c@5 607 }
c@5 608 int flags = 0x0;
c@5 609
c@5 610 for (auto &jj: j.array_items()) {
c@5 611 if (!jj.is_string()) {
c@5 612 throw Failure("string expected for adapter flag");
c@5 613 }
c@5 614 std::string text = jj.string_value();
c@5 615 if (text == "AdaptInputDomain") {
c@5 616 flags |= Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN;
c@5 617 } else if (text == "AdaptChannelCount") {
c@5 618 flags |= Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT;
c@5 619 } else if (text == "AdaptBufferSize") {
c@5 620 flags |= Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE;
c@5 621 } else if (text == "AdaptAllSafe") {
c@5 622 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL_SAFE;
c@5 623 } else if (text == "AdaptAll") {
c@5 624 flags |= Vamp::HostExt::PluginLoader::ADAPT_ALL;
c@5 625 } else {
c@5 626 throw Failure("invalid adapter flag string: " + text);
c@5 627 }
c@5 628 }
c@5 629
c@5 630 return Vamp::HostExt::PluginLoader::AdapterFlags(flags);
c@5 631 }
c@5 632
c@5 633 static json11::Json
c@5 634 fromLoadRequest(Vamp::HostExt::LoadRequest req) {
c@5 635
c@5 636 json11::Json::object jo;
c@5 637 jo["pluginKey"] = req.pluginKey;
c@5 638 jo["inputSampleRate"] = req.inputSampleRate;
c@5 639 jo["adapterFlags"] = fromAdapterFlags(req.adapterFlags);
c@5 640 return json11::Json(jo);
c@5 641 }
c@5 642
c@5 643 static Vamp::HostExt::LoadRequest
c@5 644 toLoadRequest(json11::Json j) {
c@5 645
c@5 646 std::string err;
c@5 647
c@5 648 if (!j.has_shape({
c@5 649 { "pluginKey", json11::Json::STRING },
c@5 650 { "inputSampleRate", json11::Json::NUMBER },
c@5 651 { "adapterFlags", json11::Json::ARRAY } }, err)) {
c@5 652 throw VampJson::Failure("malformed load request: " + err);
c@5 653 }
c@5 654
c@5 655 Vamp::HostExt::LoadRequest req;
c@5 656 req.pluginKey = j["pluginKey"].string_value();
c@5 657 req.inputSampleRate = j["inputSampleRate"].number_value();
c@5 658 req.adapterFlags = toAdapterFlags(j["adapterFlags"]);
c@5 659 return req;
c@5 660 }
c@5 661 };
c@5 662
c@5 663
c@5 664 #endif