annotate vamp-capnp/VampnProto.h @ 97:427c4c725085

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