annotate capnproto/VampnProto.h @ 56:815e94fedc1c

Introduce ListResponse type as well
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 19 Sep 2016 14:10:19 +0100
parents 38780f15ac8d
children 7aec704705c7
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 #include "vamp.capnp.h"
c@5 36
c@5 37 #include <capnp/message.h>
c@5 38 #include <capnp/serialize-packed.h>
c@5 39
c@5 40 #include <vamp-hostsdk/Plugin.h>
c@5 41 #include <vamp-hostsdk/PluginLoader.h>
c@5 42 #include <vamp-hostsdk/PluginStaticData.h>
c@5 43
c@10 44 #include "bits/PluginHandleMapper.h"
c@49 45 #include "bits/PluginOutputIdMapper.h"
c@26 46 #include "bits/RequestResponseType.h"
c@10 47
c@5 48 namespace vampipe
c@5 49 {
c@5 50
c@5 51 /**
c@5 52 * Convert the structures laid out in the Vamp SDK classes into Cap'n
c@6 53 * Proto structures (and back again).
c@5 54 *
c@6 55 * At least some of this will be necessary for any implementation
c@6 56 * using Cap'n Proto that uses the C++ Vamp SDK to provide its
c@6 57 * reference structures. An implementation could alternatively use the
c@6 58 * Cap'n Proto structures directly, and interact with Vamp plugins
c@6 59 * using the Vamp C API, without using the C++ Vamp SDK classes at
c@18 60 * all. That would avoid a lot of copying (in Cap'n Proto style).
c@5 61 */
c@6 62 class VampnProto
c@5 63 {
c@5 64 public:
c@5 65 typedef ::capnp::MallocMessageBuilder MsgBuilder;
c@5 66
c@5 67 template <typename T, typename B>
c@5 68 static void buildBasicDescriptor(B &basic, const T &t) {
c@5 69 basic.setIdentifier(t.identifier);
c@5 70 basic.setName(t.name);
c@5 71 basic.setDescription(t.description);
c@5 72 }
c@5 73
c@5 74 template <typename T, typename B>
c@5 75 static void readBasicDescriptor(T &t, const B &basic) {
c@5 76 t.identifier = basic.getIdentifier();
c@5 77 t.name = basic.getName();
c@5 78 t.description = basic.getDescription();
c@5 79 }
c@5 80
c@5 81 template <typename T, typename M>
c@5 82 static void buildValueExtents(M &m, const T &t) {
c@5 83 m.setMinValue(t.minValue);
c@5 84 m.setMaxValue(t.maxValue);
c@5 85 }
c@5 86
c@5 87 template <typename T, typename M>
c@5 88 static void readValueExtents(T &t, const M &m) {
c@5 89 t.minValue = m.getMinValue();
c@5 90 t.maxValue = m.getMaxValue();
c@5 91 }
c@5 92
c@5 93 static void buildRealTime(RealTime::Builder &b, const Vamp::RealTime &t) {
c@5 94 b.setSec(t.sec);
c@5 95 b.setNsec(t.nsec);
c@5 96 }
c@5 97
c@5 98 static void readRealTime(Vamp::RealTime &t, const RealTime::Reader &r) {
c@5 99 t.sec = r.getSec();
c@5 100 t.nsec = r.getNsec();
c@5 101 }
c@5 102
c@5 103 static SampleType
c@5 104 fromSampleType(Vamp::Plugin::OutputDescriptor::SampleType t) {
c@5 105 switch (t) {
c@5 106 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
c@5 107 return SampleType::ONE_SAMPLE_PER_STEP;
c@5 108 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
c@5 109 return SampleType::FIXED_SAMPLE_RATE;
c@5 110 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
c@5 111 return SampleType::VARIABLE_SAMPLE_RATE;
c@5 112 }
c@5 113 throw std::logic_error("unexpected Vamp SampleType enum value");
c@5 114 }
c@5 115
c@5 116 static Vamp::Plugin::OutputDescriptor::SampleType
c@5 117 toSampleType(SampleType t) {
c@5 118 switch (t) {
c@5 119 case SampleType::ONE_SAMPLE_PER_STEP:
c@5 120 return Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
c@5 121 case SampleType::FIXED_SAMPLE_RATE:
c@5 122 return Vamp::Plugin::OutputDescriptor::FixedSampleRate;
c@5 123 case SampleType::VARIABLE_SAMPLE_RATE:
c@5 124 return Vamp::Plugin::OutputDescriptor::VariableSampleRate;
c@5 125 }
c@5 126 throw std::logic_error("unexpected Capnp SampleType enum value");
c@5 127 }
c@5 128
c@5 129 static void
c@5 130 buildOutputDescriptor(OutputDescriptor::Builder &b,
c@5 131 const Vamp::Plugin::OutputDescriptor &od) {
c@5 132
c@5 133 auto basic = b.initBasic();
c@5 134 buildBasicDescriptor(basic, od);
c@5 135
c@5 136 b.setUnit(od.unit);
c@5 137
c@5 138 b.setSampleType(fromSampleType(od.sampleType));
c@5 139 b.setSampleRate(od.sampleRate);
c@5 140 b.setHasDuration(od.hasDuration);
c@5 141
c@5 142 b.setHasFixedBinCount(od.hasFixedBinCount);
c@5 143 if (od.hasFixedBinCount) {
c@5 144 b.setBinCount(od.binCount);
c@5 145 if (od.binNames.size() > 0) {
c@5 146 auto binNames = b.initBinNames(od.binNames.size());
c@5 147 for (size_t i = 0; i < od.binNames.size(); ++i) {
c@5 148 binNames.set(i, od.binNames[i]);
c@5 149 }
c@5 150 }
c@5 151 }
c@5 152
c@5 153 b.setHasKnownExtents(od.hasKnownExtents);
c@5 154 if (od.hasKnownExtents) {
c@5 155 buildValueExtents(b, od);
c@5 156 }
c@5 157
c@5 158 b.setIsQuantized(od.isQuantized);
c@5 159 if (od.isQuantized) {
c@5 160 b.setQuantizeStep(od.quantizeStep);
c@5 161 }
c@5 162 }
c@5 163
c@5 164 static void
c@5 165 readOutputDescriptor(Vamp::Plugin::OutputDescriptor &od,
c@5 166 const OutputDescriptor::Reader &r) {
c@5 167
c@5 168 readBasicDescriptor(od, r.getBasic());
c@5 169
c@5 170 od.unit = r.getUnit();
c@5 171
c@5 172 od.sampleType = toSampleType(r.getSampleType());
c@5 173 od.sampleRate = r.getSampleRate();
c@5 174 od.hasDuration = r.getHasDuration();
c@5 175
c@5 176 od.hasFixedBinCount = r.getHasFixedBinCount();
c@5 177 if (od.hasFixedBinCount) {
c@5 178 od.binCount = r.getBinCount();
c@13 179 od.binNames.clear();
c@28 180 auto nn = r.getBinNames();
c@28 181 for (const auto &n: nn) {
c@5 182 od.binNames.push_back(n);
c@5 183 }
c@5 184 }
c@5 185
c@5 186 od.hasKnownExtents = r.getHasKnownExtents();
c@5 187 if (od.hasKnownExtents) {
c@5 188 readValueExtents(od, r);
c@5 189 }
c@5 190
c@5 191 od.isQuantized = r.getIsQuantized();
c@5 192 if (od.isQuantized) {
c@5 193 od.quantizeStep = r.getQuantizeStep();
c@5 194 }
c@5 195 }
c@5 196
c@5 197 static void
c@5 198 buildParameterDescriptor(ParameterDescriptor::Builder &b,
c@5 199 const Vamp::Plugin::ParameterDescriptor &pd) {
c@5 200
c@5 201 auto basic = b.initBasic();
c@5 202 buildBasicDescriptor(basic, pd);
c@5 203
c@5 204 b.setUnit(pd.unit);
c@5 205
c@5 206 buildValueExtents(b, pd);
c@5 207
c@5 208 b.setDefaultValue(pd.defaultValue);
c@5 209
c@5 210 b.setIsQuantized(pd.isQuantized);
c@5 211 if (pd.isQuantized) {
c@5 212 b.setQuantizeStep(pd.quantizeStep);
c@5 213 }
c@5 214
c@5 215 if (pd.valueNames.size() > 0) {
c@5 216 auto valueNames = b.initValueNames(pd.valueNames.size());
c@5 217 for (size_t i = 0; i < pd.valueNames.size(); ++i) {
c@5 218 valueNames.set(i, pd.valueNames[i]);
c@5 219 }
c@5 220 }
c@5 221 }
c@5 222
c@5 223 static void
c@5 224 readParameterDescriptor(Vamp::Plugin::ParameterDescriptor &pd,
c@5 225 const ParameterDescriptor::Reader &r) {
c@5 226
c@5 227 readBasicDescriptor(pd, r.getBasic());
c@5 228
c@5 229 pd.unit = r.getUnit();
c@5 230
c@5 231 readValueExtents(pd, r);
c@5 232
c@5 233 pd.defaultValue = r.getDefaultValue();
c@5 234
c@5 235 pd.isQuantized = r.getIsQuantized();
c@5 236 if (pd.isQuantized) {
c@5 237 pd.quantizeStep = r.getQuantizeStep();
c@5 238 }
c@5 239
c@13 240 pd.valueNames.clear();
c@28 241 auto nn = r.getValueNames();
c@28 242 for (const auto &n: nn) {
c@5 243 pd.valueNames.push_back(n);
c@5 244 }
c@5 245 }
c@5 246
c@5 247 static void
c@5 248 buildFeature(Feature::Builder &b,
c@5 249 const Vamp::Plugin::Feature &f) {
c@5 250
c@5 251 b.setHasTimestamp(f.hasTimestamp);
c@5 252 if (f.hasTimestamp) {
c@5 253 auto timestamp = b.initTimestamp();
c@5 254 buildRealTime(timestamp, f.timestamp);
c@5 255 }
c@5 256
c@5 257 b.setHasDuration(f.hasDuration);
c@5 258 if (f.hasDuration) {
c@5 259 auto duration = b.initDuration();
c@5 260 buildRealTime(duration, f.duration);
c@5 261 }
c@5 262
c@5 263 b.setLabel(f.label);
c@5 264
c@5 265 if (f.values.size() > 0) {
c@5 266 auto values = b.initValues(f.values.size());
c@5 267 for (size_t i = 0; i < f.values.size(); ++i) {
c@5 268 values.set(i, f.values[i]);
c@5 269 }
c@5 270 }
c@5 271 }
c@5 272
c@5 273 static void
c@5 274 readFeature(Vamp::Plugin::Feature &f,
c@5 275 const Feature::Reader &r) {
c@5 276
c@5 277 f.hasTimestamp = r.getHasTimestamp();
c@5 278 if (f.hasTimestamp) {
c@5 279 readRealTime(f.timestamp, r.getTimestamp());
c@5 280 }
c@5 281
c@5 282 f.hasDuration = r.getHasDuration();
c@5 283 if (f.hasDuration) {
c@5 284 readRealTime(f.duration, r.getDuration());
c@5 285 }
c@5 286
c@5 287 f.label = r.getLabel();
c@5 288
c@13 289 f.values.clear();
c@28 290 auto vv = r.getValues();
c@28 291 for (auto v: vv) {
c@5 292 f.values.push_back(v);
c@5 293 }
c@5 294 }
c@5 295
c@5 296 static void
c@5 297 buildFeatureSet(FeatureSet::Builder &b,
c@49 298 const Vamp::Plugin::FeatureSet &fs,
c@49 299 const PluginOutputIdMapper &omapper) {
c@5 300
c@5 301 auto featureset = b.initFeaturePairs(fs.size());
c@5 302 int ix = 0;
c@5 303 for (const auto &fsi : fs) {
c@5 304 auto fspair = featureset[ix];
c@49 305 fspair.setOutput(omapper.indexToId(fsi.first));
c@5 306 auto featurelist = fspair.initFeatures(fsi.second.size());
c@5 307 for (size_t j = 0; j < fsi.second.size(); ++j) {
c@5 308 auto feature = featurelist[j];
c@5 309 buildFeature(feature, fsi.second[j]);
c@5 310 }
c@5 311 ++ix;
c@5 312 }
c@5 313 }
c@5 314
c@5 315 static void
c@5 316 readFeatureSet(Vamp::Plugin::FeatureSet &fs,
c@49 317 const FeatureSet::Reader &r,
c@49 318 const PluginOutputIdMapper &omapper) {
c@5 319
c@13 320 fs.clear();
c@28 321 auto pp = r.getFeaturePairs();
c@28 322 for (const auto &p: pp) {
c@5 323 Vamp::Plugin::FeatureList vfl;
c@28 324 auto ff = p.getFeatures();
c@28 325 for (const auto &f: ff) {
c@5 326 Vamp::Plugin::Feature vf;
c@5 327 readFeature(vf, f);
c@5 328 vfl.push_back(vf);
c@5 329 }
c@49 330 fs[omapper.idToIndex(p.getOutput())] = vfl;
c@5 331 }
c@5 332 }
c@5 333
c@5 334 static InputDomain
c@5 335 fromInputDomain(Vamp::Plugin::InputDomain d) {
c@5 336 switch(d) {
c@5 337 case Vamp::Plugin::TimeDomain:
c@5 338 return InputDomain::TIME_DOMAIN;
c@5 339 case Vamp::Plugin::FrequencyDomain:
c@5 340 return InputDomain::FREQUENCY_DOMAIN;
c@5 341 default:
c@5 342 throw std::logic_error("unexpected Vamp InputDomain enum value");
c@5 343 }
c@5 344 }
c@5 345
c@5 346 static Vamp::Plugin::InputDomain
c@5 347 toInputDomain(InputDomain d) {
c@5 348 switch(d) {
c@5 349 case InputDomain::TIME_DOMAIN:
c@5 350 return Vamp::Plugin::TimeDomain;
c@5 351 case InputDomain::FREQUENCY_DOMAIN:
c@5 352 return Vamp::Plugin::FrequencyDomain;
c@5 353 default:
c@5 354 throw std::logic_error("unexpected Capnp InputDomain enum value");
c@5 355 }
c@5 356 }
c@5 357
c@5 358 static void
c@5 359 buildPluginStaticData(PluginStaticData::Builder &b,
c@5 360 const Vamp::HostExt::PluginStaticData &d) {
c@5 361
c@5 362 b.setPluginKey(d.pluginKey);
c@5 363
c@5 364 auto basic = b.initBasic();
c@5 365 buildBasicDescriptor(basic, d.basic);
c@5 366
c@5 367 b.setMaker(d.maker);
c@5 368 b.setCopyright(d.copyright);
c@5 369 b.setPluginVersion(d.pluginVersion);
c@5 370
c@5 371 auto clist = b.initCategory(d.category.size());
c@5 372 for (size_t i = 0; i < d.category.size(); ++i) {
c@5 373 clist.set(i, d.category[i]);
c@5 374 }
c@5 375
c@5 376 b.setMinChannelCount(d.minChannelCount);
c@5 377 b.setMaxChannelCount(d.maxChannelCount);
c@5 378
c@5 379 const auto &vparams = d.parameters;
c@5 380 auto plist = b.initParameters(vparams.size());
c@5 381 for (size_t i = 0; i < vparams.size(); ++i) {
c@5 382 auto pd = plist[i];
c@5 383 buildParameterDescriptor(pd, vparams[i]);
c@5 384 }
c@5 385
c@5 386 const auto &vprogs = d.programs;
c@5 387 auto pglist = b.initPrograms(vprogs.size());
c@5 388 for (size_t i = 0; i < vprogs.size(); ++i) {
c@5 389 pglist.set(i, vprogs[i]);
c@5 390 }
c@5 391
c@5 392 b.setInputDomain(fromInputDomain(d.inputDomain));
c@5 393
c@5 394 const auto &vouts = d.basicOutputInfo;
c@5 395 auto olist = b.initBasicOutputInfo(vouts.size());
c@5 396 for (size_t i = 0; i < vouts.size(); ++i) {
c@5 397 auto od = olist[i];
c@5 398 buildBasicDescriptor(od, vouts[i]);
c@5 399 }
c@5 400 }
c@5 401
c@5 402 static void
c@5 403 readPluginStaticData(Vamp::HostExt::PluginStaticData &d,
c@5 404 const PluginStaticData::Reader &r) {
c@5 405
c@5 406 d.pluginKey = r.getPluginKey();
c@5 407
c@5 408 readBasicDescriptor(d.basic, r.getBasic());
c@5 409
c@5 410 d.maker = r.getMaker();
c@5 411 d.copyright = r.getCopyright();
c@5 412 d.pluginVersion = r.getPluginVersion();
c@5 413
c@13 414 d.category.clear();
c@28 415 auto cc = r.getCategory();
c@28 416 for (auto c: cc) {
c@5 417 d.category.push_back(c);
c@5 418 }
c@5 419
c@5 420 d.minChannelCount = r.getMinChannelCount();
c@5 421 d.maxChannelCount = r.getMaxChannelCount();
c@5 422
c@13 423 d.parameters.clear();
c@28 424 auto pp = r.getParameters();
c@28 425 for (auto p: pp) {
c@5 426 Vamp::Plugin::ParameterDescriptor pd;
c@5 427 readParameterDescriptor(pd, p);
c@5 428 d.parameters.push_back(pd);
c@5 429 }
c@5 430
c@13 431 d.programs.clear();
c@28 432 auto prp = r.getPrograms();
c@28 433 for (auto p: prp) {
c@5 434 d.programs.push_back(p);
c@5 435 }
c@5 436
c@5 437 d.inputDomain = toInputDomain(r.getInputDomain());
c@5 438
c@13 439 d.basicOutputInfo.clear();
c@28 440 auto oo = r.getBasicOutputInfo();
c@28 441 for (auto o: oo) {
c@5 442 Vamp::HostExt::PluginStaticData::Basic b;
c@5 443 readBasicDescriptor(b, o);
c@5 444 d.basicOutputInfo.push_back(b);
c@5 445 }
c@5 446 }
c@5 447
c@5 448 static void
c@5 449 buildPluginConfiguration(PluginConfiguration::Builder &b,
c@5 450 const Vamp::HostExt::PluginConfiguration &c) {
c@5 451
c@5 452 const auto &vparams = c.parameterValues;
c@5 453 auto params = b.initParameterValues(vparams.size());
c@5 454 int i = 0;
c@5 455 for (const auto &pp : vparams) {
c@5 456 auto param = params[i++];
c@5 457 param.setParameter(pp.first);
c@5 458 param.setValue(pp.second);
c@5 459 }
c@5 460
c@5 461 b.setCurrentProgram(c.currentProgram);
c@5 462 b.setChannelCount(c.channelCount);
c@5 463 b.setStepSize(c.stepSize);
c@5 464 b.setBlockSize(c.blockSize);
c@5 465 }
c@5 466
c@5 467 static void
c@5 468 readPluginConfiguration(Vamp::HostExt::PluginConfiguration &c,
c@5 469 const PluginConfiguration::Reader &r) {
c@5 470
c@28 471 auto pp = r.getParameterValues();
c@28 472 for (const auto &p: pp) {
c@28 473 c.parameterValues[p.getParameter()] = p.getValue();
c@5 474 }
c@5 475
c@5 476 c.currentProgram = r.getCurrentProgram();
c@5 477 c.channelCount = r.getChannelCount();
c@5 478 c.stepSize = r.getStepSize();
c@5 479 c.blockSize = r.getBlockSize();
c@5 480 }
c@5 481
c@5 482 static void
c@5 483 buildLoadRequest(LoadRequest::Builder &r,
c@5 484 const Vamp::HostExt::LoadRequest &req) {
c@5 485
c@5 486 r.setPluginKey(req.pluginKey);
c@5 487 r.setInputSampleRate(req.inputSampleRate);
c@5 488
c@5 489 std::vector<AdapterFlag> flags;
c@5 490 if (req.adapterFlags & Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN) {
c@5 491 flags.push_back(AdapterFlag::ADAPT_INPUT_DOMAIN);
c@5 492 }
c@5 493 if (req.adapterFlags & Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT) {
c@5 494 flags.push_back(AdapterFlag::ADAPT_CHANNEL_COUNT);
c@5 495 }
c@5 496 if (req.adapterFlags & Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE) {
c@5 497 flags.push_back(AdapterFlag::ADAPT_BUFFER_SIZE);
c@5 498 }
c@5 499
c@5 500 auto f = r.initAdapterFlags(flags.size());
c@5 501 for (size_t i = 0; i < flags.size(); ++i) {
c@5 502 f.set(i, flags[i]);
c@5 503 }
c@5 504 }
c@5 505
c@5 506 static void
c@5 507 readLoadRequest(Vamp::HostExt::LoadRequest &req,
c@5 508 const LoadRequest::Reader &r) {
c@5 509
c@5 510 req.pluginKey = r.getPluginKey();
c@5 511 req.inputSampleRate = r.getInputSampleRate();
c@5 512
c@5 513 int flags = 0;
c@28 514 auto aa = r.getAdapterFlags();
c@28 515 for (auto a: aa) {
c@5 516 if (a == AdapterFlag::ADAPT_INPUT_DOMAIN) {
c@5 517 flags |= Vamp::HostExt::PluginLoader::ADAPT_INPUT_DOMAIN;
c@5 518 }
c@5 519 if (a == AdapterFlag::ADAPT_CHANNEL_COUNT) {
c@5 520 flags |= Vamp::HostExt::PluginLoader::ADAPT_CHANNEL_COUNT;
c@5 521 }
c@5 522 if (a == AdapterFlag::ADAPT_BUFFER_SIZE) {
c@5 523 flags |= Vamp::HostExt::PluginLoader::ADAPT_BUFFER_SIZE;
c@5 524 }
c@5 525 }
c@5 526 req.adapterFlags = flags;
c@5 527 }
c@10 528
c@10 529 static void
c@10 530 buildLoadResponse(LoadResponse::Builder &b,
c@10 531 const Vamp::HostExt::LoadResponse &resp,
c@51 532 const PluginHandleMapper &pmapper) {
c@10 533
c@49 534 b.setPluginHandle(pmapper.pluginToHandle(resp.plugin));
c@10 535 auto sd = b.initStaticData();
c@10 536 buildPluginStaticData(sd, resp.staticData);
c@10 537 auto conf = b.initDefaultConfiguration();
c@10 538 buildPluginConfiguration(conf, resp.defaultConfiguration);
c@10 539 }
c@10 540
c@10 541 static void
c@10 542 readLoadResponse(Vamp::HostExt::LoadResponse &resp,
c@10 543 const LoadResponse::Reader &r,
c@51 544 const PluginHandleMapper &pmapper) {
c@10 545
c@49 546 resp.plugin = pmapper.handleToPlugin(r.getPluginHandle());
c@10 547 readPluginStaticData(resp.staticData, r.getStaticData());
c@10 548 readPluginConfiguration(resp.defaultConfiguration,
c@10 549 r.getDefaultConfiguration());
c@10 550 }
c@13 551
c@13 552 static void
c@13 553 buildConfigurationRequest(ConfigurationRequest::Builder &b,
c@13 554 const Vamp::HostExt::ConfigurationRequest &cr,
c@51 555 const PluginHandleMapper &pmapper) {
c@13 556
c@49 557 b.setPluginHandle(pmapper.pluginToHandle(cr.plugin));
c@13 558 auto c = b.initConfiguration();
c@13 559 buildPluginConfiguration(c, cr.configuration);
c@13 560 }
c@13 561
c@13 562 static void
c@13 563 readConfigurationRequest(Vamp::HostExt::ConfigurationRequest &cr,
c@13 564 const ConfigurationRequest::Reader &r,
c@51 565 const PluginHandleMapper &pmapper) {
c@13 566
c@13 567 auto h = r.getPluginHandle();
c@49 568 cr.plugin = pmapper.handleToPlugin(h);
c@13 569 auto c = r.getConfiguration();
c@13 570 readPluginConfiguration(cr.configuration, c);
c@13 571 }
c@13 572
c@13 573 static void
c@13 574 buildConfigurationResponse(ConfigurationResponse::Builder &b,
c@55 575 const Vamp::HostExt::ConfigurationResponse &cr,
c@55 576 const PluginHandleMapper &pmapper) {
c@13 577
c@55 578 b.setPluginHandle(pmapper.pluginToHandle(cr.plugin));
c@13 579 auto olist = b.initOutputs(cr.outputs.size());
c@13 580 for (size_t i = 0; i < cr.outputs.size(); ++i) {
c@13 581 auto od = olist[i];
c@13 582 buildOutputDescriptor(od, cr.outputs[i]);
c@13 583 }
c@13 584 }
c@13 585
c@13 586 static void
c@13 587 readConfigurationResponse(Vamp::HostExt::ConfigurationResponse &cr,
c@55 588 const ConfigurationResponse::Reader &r,
c@55 589 const PluginHandleMapper &pmapper) {
c@13 590
c@55 591 cr.plugin = pmapper.handleToPlugin(r.getPluginHandle());
c@13 592 cr.outputs.clear();
c@28 593 auto oo = r.getOutputs();
c@28 594 for (const auto &o: oo) {
c@13 595 Vamp::Plugin::OutputDescriptor desc;
c@13 596 readOutputDescriptor(desc, o);
c@13 597 cr.outputs.push_back(desc);
c@13 598 }
c@13 599 }
c@14 600
c@14 601 static void
c@14 602 buildProcessInput(ProcessInput::Builder &b,
c@14 603 Vamp::RealTime timestamp,
c@14 604 const std::vector<std::vector<float> > &buffers) {
c@14 605
c@14 606 auto t = b.initTimestamp();
c@14 607 buildRealTime(t, timestamp);
c@14 608 auto vv = b.initInputBuffers(buffers.size());
c@14 609 for (size_t ch = 0; ch < buffers.size(); ++ch) {
c@14 610 const int n = int(buffers[ch].size());
c@14 611 vv.init(ch, n);
c@14 612 auto v = vv[ch];
c@14 613 for (int i = 0; i < n; ++i) {
c@14 614 v.set(i, buffers[ch][i]);
c@14 615 }
c@14 616 }
c@14 617 }
c@14 618
c@14 619 static void
c@14 620 readProcessInput(Vamp::RealTime &timestamp,
c@14 621 std::vector<std::vector<float> > &buffers,
c@14 622 const ProcessInput::Reader &b) {
c@14 623
c@14 624 readRealTime(timestamp, b.getTimestamp());
c@14 625 buffers.clear();
c@28 626 auto vv = b.getInputBuffers();
c@28 627 for (const auto &v: vv) {
c@14 628 std::vector<float> buf;
c@14 629 for (auto x: v) {
c@14 630 buf.push_back(x);
c@14 631 }
c@14 632 buffers.push_back(buf);
c@14 633 }
c@14 634 }
c@14 635
c@14 636 static void
c@14 637 buildProcessRequest(ProcessRequest::Builder &b,
c@14 638 const Vamp::HostExt::ProcessRequest &pr,
c@51 639 const PluginHandleMapper &pmapper) {
c@14 640
c@49 641 b.setPluginHandle(pmapper.pluginToHandle(pr.plugin));
c@14 642 auto input = b.initInput();
c@14 643 buildProcessInput(input, pr.timestamp, pr.inputBuffers);
c@14 644 }
c@14 645
c@14 646 static void
c@14 647 readProcessRequest(Vamp::HostExt::ProcessRequest &pr,
c@14 648 const ProcessRequest::Reader &r,
c@51 649 const PluginHandleMapper &pmapper) {
c@14 650
c@14 651 auto h = r.getPluginHandle();
c@49 652 pr.plugin = pmapper.handleToPlugin(h);
c@14 653 readProcessInput(pr.timestamp, pr.inputBuffers, r.getInput());
c@14 654 }
c@14 655
c@14 656 static void
c@15 657 buildProcessResponse(ProcessResponse::Builder &b,
c@49 658 const Vamp::HostExt::ProcessResponse &pr,
c@51 659 const PluginHandleMapper &pmapper) {
c@15 660
c@52 661 b.setPluginHandle(pmapper.pluginToHandle(pr.plugin));
c@15 662 auto f = b.initFeatures();
c@51 663 buildFeatureSet(f, pr.features,
c@51 664 pmapper.pluginToOutputIdMapper(pr.plugin));
c@15 665 }
c@15 666
c@15 667 static void
c@15 668 readProcessResponse(Vamp::HostExt::ProcessResponse &pr,
c@49 669 const ProcessResponse::Reader &r,
c@51 670 const PluginHandleMapper &pmapper) {
c@15 671
c@52 672 auto h = r.getPluginHandle();
c@52 673 pr.plugin = pmapper.handleToPlugin(h);
c@51 674 readFeatureSet(pr.features, r.getFeatures(),
c@51 675 pmapper.handleToOutputIdMapper(r.getPluginHandle()));
c@15 676 }
c@15 677
c@15 678 static void
c@15 679 buildVampRequest_List(VampRequest::Builder &b) {
c@14 680 b.getRequest().setList();
c@14 681 }
c@14 682
c@14 683 static void
c@15 684 buildVampResponse_List(VampResponse::Builder &b,
c@56 685 const Vamp::HostExt::ListResponse &resp) {
c@56 686 b.setSuccess(true);
c@24 687 auto r = b.getResponse().initList();
c@56 688 auto p = r.initPlugins(resp.pluginData.size());
c@56 689 for (size_t i = 0; i < resp.pluginData.size(); ++i) {
c@24 690 auto pd = p[i];
c@56 691 buildPluginStaticData(pd, resp.pluginData[i]);
c@15 692 }
c@15 693 }
c@15 694
c@15 695 static void
c@15 696 buildVampRequest_Load(VampRequest::Builder &b,
c@15 697 const Vamp::HostExt::LoadRequest &req) {
c@14 698 auto u = b.getRequest().initLoad();
c@14 699 buildLoadRequest(u, req);
c@14 700 }
c@14 701
c@14 702 static void
c@15 703 buildVampResponse_Load(VampResponse::Builder &b,
c@15 704 const Vamp::HostExt::LoadResponse &resp,
c@51 705 const PluginHandleMapper &pmapper) {
c@17 706 b.setSuccess(resp.plugin != 0);
c@15 707 auto u = b.getResponse().initLoad();
c@49 708 buildLoadResponse(u, resp, pmapper);
c@15 709 }
c@15 710
c@15 711 static void
c@15 712 buildVampRequest_Configure(VampRequest::Builder &b,
c@15 713 const Vamp::HostExt::ConfigurationRequest &cr,
c@51 714 const PluginHandleMapper &pmapper) {
c@14 715 auto u = b.getRequest().initConfigure();
c@49 716 buildConfigurationRequest(u, cr, pmapper);
c@14 717 }
c@14 718
c@14 719 static void
c@15 720 buildVampResponse_Configure(VampResponse::Builder &b,
c@55 721 const Vamp::HostExt::ConfigurationResponse &cr,
c@55 722 const PluginHandleMapper &pmapper) {
c@17 723 b.setSuccess(!cr.outputs.empty());
c@15 724 auto u = b.getResponse().initConfigure();
c@55 725 buildConfigurationResponse(u, cr, pmapper);
c@15 726 }
c@15 727
c@15 728 static void
c@15 729 buildVampRequest_Process(VampRequest::Builder &b,
c@15 730 const Vamp::HostExt::ProcessRequest &pr,
c@51 731 const PluginHandleMapper &pmapper) {
c@14 732 auto u = b.getRequest().initProcess();
c@49 733 buildProcessRequest(u, pr, pmapper);
c@14 734 }
c@15 735
c@15 736 static void
c@15 737 buildVampResponse_Process(VampResponse::Builder &b,
c@49 738 const Vamp::HostExt::ProcessResponse &pr,
c@51 739 const PluginHandleMapper &pmapper) {
c@17 740 b.setSuccess(true);
c@15 741 auto u = b.getResponse().initProcess();
c@51 742 buildProcessResponse(u, pr, pmapper);
c@15 743 }
c@17 744
c@17 745 static void
c@23 746 buildVampRequest_Finish(VampRequest::Builder &b,
c@55 747 const Vamp::HostExt::FinishRequest &req,
c@51 748 const PluginHandleMapper &pmapper) {
c@17 749
c@23 750 auto u = b.getRequest().initFinish();
c@55 751 u.setPluginHandle(pmapper.pluginToHandle(req.plugin));
c@17 752 }
c@17 753
c@17 754 static void
c@17 755 buildVampResponse_Finish(VampResponse::Builder &b,
c@49 756 const Vamp::HostExt::ProcessResponse &pr,
c@51 757 const PluginHandleMapper &pmapper) {
c@17 758
c@51 759 buildVampResponse_Process(b, pr, pmapper);
c@17 760 }
c@26 761
c@52 762 static void
c@52 763 buildVampResponse_Error(VampResponse::Builder &b,
c@52 764 const std::string &errorText,
c@52 765 RRType responseType)
c@52 766 {
c@52 767 std::string type;
c@52 768
c@52 769 if (responseType == RRType::List) {
c@52 770 type = "list";
c@52 771 b.getResponse().initList();
c@52 772 } else if (responseType == RRType::Load) {
c@52 773 type = "load";
c@52 774 b.getResponse().initLoad();
c@52 775 } else if (responseType == RRType::Configure) {
c@52 776 type = "configure";
c@52 777 b.getResponse().initConfigure();
c@52 778 } else if (responseType == RRType::Process) {
c@52 779 type = "process";
c@52 780 b.getResponse().initProcess();
c@52 781 } else if (responseType == RRType::Finish) {
c@52 782 type = "finish";
c@52 783 b.getResponse().initFinish();
c@52 784 } else {
c@52 785 type = "invalid";
c@52 786 }
c@52 787
c@52 788 b.setSuccess(false);
c@52 789 b.setErrorText(std::string("error in ") + type + " request: " + errorText);
c@52 790 }
c@52 791
c@52 792 static void
c@52 793 buildVampResponse_Exception(VampResponse::Builder &b,
c@52 794 const std::exception &e,
c@52 795 RRType responseType)
c@52 796 {
c@52 797 return buildVampResponse_Error(b, e.what(), responseType);
c@52 798 }
c@52 799
c@26 800 static RRType
c@26 801 getRequestResponseType(const VampRequest::Reader &r) {
c@26 802 switch (r.getRequest().which()) {
c@26 803 case VampRequest::Request::Which::LIST:
c@26 804 return RRType::List;
c@26 805 case VampRequest::Request::Which::LOAD:
c@26 806 return RRType::Load;
c@26 807 case VampRequest::Request::Which::CONFIGURE:
c@26 808 return RRType::Configure;
c@26 809 case VampRequest::Request::Which::PROCESS:
c@26 810 return RRType::Process;
c@26 811 case VampRequest::Request::Which::FINISH:
c@26 812 return RRType::Finish;
c@26 813 }
c@27 814 return RRType::NotValid;
c@26 815 }
c@26 816
c@26 817 static RRType
c@26 818 getRequestResponseType(const VampResponse::Reader &r) {
c@26 819 switch (r.getResponse().which()) {
c@26 820 case VampResponse::Response::Which::LIST:
c@26 821 return RRType::List;
c@26 822 case VampResponse::Response::Which::LOAD:
c@26 823 return RRType::Load;
c@26 824 case VampResponse::Response::Which::CONFIGURE:
c@26 825 return RRType::Configure;
c@26 826 case VampResponse::Response::Which::PROCESS:
c@26 827 return RRType::Process;
c@26 828 case VampResponse::Response::Which::FINISH:
c@26 829 return RRType::Finish;
c@26 830 }
c@27 831 return RRType::NotValid;
c@26 832 }
c@26 833
c@26 834 static void
c@26 835 readVampRequest_List(const VampRequest::Reader &r) {
c@26 836 if (getRequestResponseType(r) != RRType::List) {
c@27 837 throw std::logic_error("not a list request");
c@26 838 }
c@26 839 }
c@26 840
c@26 841 static void
c@56 842 readVampResponse_List(Vamp::HostExt::ListResponse &resp,
c@26 843 const VampResponse::Reader &r) {
c@26 844 if (getRequestResponseType(r) != RRType::List) {
c@27 845 throw std::logic_error("not a list response");
c@26 846 }
c@56 847 resp.pluginData.clear();
c@26 848 if (r.getSuccess()) {
c@28 849 auto pp = r.getResponse().getList().getPlugins();
c@28 850 for (const auto &p: pp) {
c@26 851 Vamp::HostExt::PluginStaticData psd;
c@26 852 readPluginStaticData(psd, p);
c@56 853 resp.pluginData.push_back(psd);
c@26 854 }
c@26 855 }
c@26 856 }
c@26 857
c@27 858 static void
c@27 859 readVampRequest_Load(Vamp::HostExt::LoadRequest &req,
c@27 860 const VampRequest::Reader &r) {
c@27 861 if (getRequestResponseType(r) != RRType::Load) {
c@27 862 throw std::logic_error("not a load request");
c@27 863 }
c@27 864 readLoadRequest(req, r.getRequest().getLoad());
c@27 865 }
c@27 866
c@27 867 static void
c@27 868 readVampResponse_Load(Vamp::HostExt::LoadResponse &resp,
c@27 869 const VampResponse::Reader &r,
c@51 870 const PluginHandleMapper &pmapper) {
c@27 871 if (getRequestResponseType(r) != RRType::Load) {
c@27 872 throw std::logic_error("not a load response");
c@27 873 }
c@27 874 resp = {};
c@27 875 if (r.getSuccess()) {
c@49 876 readLoadResponse(resp, r.getResponse().getLoad(), pmapper);
c@27 877 }
c@27 878 }
c@27 879
c@27 880 static void
c@27 881 readVampRequest_Configure(Vamp::HostExt::ConfigurationRequest &req,
c@27 882 const VampRequest::Reader &r,
c@51 883 const PluginHandleMapper &pmapper) {
c@27 884 if (getRequestResponseType(r) != RRType::Configure) {
c@27 885 throw std::logic_error("not a configuration request");
c@27 886 }
c@49 887 readConfigurationRequest(req, r.getRequest().getConfigure(), pmapper);
c@27 888 }
c@27 889
c@27 890 static void
c@27 891 readVampResponse_Configure(Vamp::HostExt::ConfigurationResponse &resp,
c@55 892 const VampResponse::Reader &r,
c@55 893 const PluginHandleMapper &pmapper) {
c@27 894 if (getRequestResponseType(r) != RRType::Configure) {
c@27 895 throw std::logic_error("not a configuration response");
c@27 896 }
c@27 897 resp = {};
c@27 898 if (r.getSuccess()) {
c@55 899 readConfigurationResponse(resp,
c@55 900 r.getResponse().getConfigure(),
c@55 901 pmapper);
c@27 902 }
c@27 903 }
c@27 904
c@27 905 static void
c@27 906 readVampRequest_Process(Vamp::HostExt::ProcessRequest &req,
c@27 907 const VampRequest::Reader &r,
c@51 908 const PluginHandleMapper &pmapper) {
c@27 909 if (getRequestResponseType(r) != RRType::Process) {
c@27 910 throw std::logic_error("not a process request");
c@27 911 }
c@49 912 readProcessRequest(req, r.getRequest().getProcess(), pmapper);
c@27 913 }
c@27 914
c@27 915 static void
c@27 916 readVampResponse_Process(Vamp::HostExt::ProcessResponse &resp,
c@49 917 const VampResponse::Reader &r,
c@51 918 const PluginHandleMapper &pmapper) {
c@27 919 if (getRequestResponseType(r) != RRType::Process) {
c@27 920 throw std::logic_error("not a process response");
c@27 921 }
c@27 922 resp = {};
c@27 923 if (r.getSuccess()) {
c@51 924 readProcessResponse(resp, r.getResponse().getProcess(), pmapper);
c@27 925 }
c@27 926 }
c@27 927
c@27 928 static void
c@55 929 readVampRequest_Finish(Vamp::HostExt::FinishRequest &req,
c@27 930 const VampRequest::Reader &r,
c@51 931 const PluginHandleMapper &pmapper) {
c@27 932 if (getRequestResponseType(r) != RRType::Finish) {
c@27 933 throw std::logic_error("not a finish request");
c@27 934 }
c@55 935 req.plugin = pmapper.handleToPlugin
c@27 936 (r.getRequest().getFinish().getPluginHandle());
c@27 937 }
c@27 938
c@27 939 static void
c@27 940 readVampResponse_Finish(Vamp::HostExt::ProcessResponse &resp,
c@49 941 const VampResponse::Reader &r,
c@51 942 const PluginHandleMapper &pmapper) {
c@27 943 if (getRequestResponseType(r) != RRType::Finish) {
c@27 944 throw std::logic_error("not a finish response");
c@27 945 }
c@27 946 resp = {};
c@27 947 if (r.getSuccess()) {
c@51 948 readProcessResponse(resp, r.getResponse().getFinish(), pmapper);
c@27 949 }
c@27 950 }
c@5 951 };
c@5 952
c@5 953 }
c@5 954
c@5 955