annotate capnproto/VampnProto.h @ 74:d45cfa25aaad

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