annotate vamp-capnp/VampnProto.h @ 95:b6ac26b72b59

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