annotate vamp-client/PluginStub.h @ 167:4a37daf5f8b4

Add a failed state to the plugin stub, to prevent it making any further requests after (for example) a process has timed out
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 31 Jan 2017 11:08:31 +0000
parents ff3fd8d1b2dc
children f13dc1db2229
rev   line source
c@118 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@118 2 /*
c@118 3 Piper C++
c@118 4
c@118 5 An API for audio analysis and feature extraction plugins.
c@118 6
c@118 7 Centre for Digital Music, Queen Mary, University of London.
c@118 8 Copyright 2006-2016 Chris Cannam and QMUL.
c@118 9
c@118 10 Permission is hereby granted, free of charge, to any person
c@118 11 obtaining a copy of this software and associated documentation
c@118 12 files (the "Software"), to deal in the Software without
c@118 13 restriction, including without limitation the rights to use, copy,
c@118 14 modify, merge, publish, distribute, sublicense, and/or sell copies
c@118 15 of the Software, and to permit persons to whom the Software is
c@118 16 furnished to do so, subject to the following conditions:
c@118 17
c@118 18 The above copyright notice and this permission notice shall be
c@118 19 included in all copies or substantial portions of the Software.
c@118 20
c@118 21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
c@118 22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c@118 23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c@118 24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
c@118 25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
c@118 26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
c@118 27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c@118 28
c@118 29 Except as contained in this notice, the names of the Centre for
c@118 30 Digital Music; Queen Mary, University of London; and Chris Cannam
c@118 31 shall not be used in advertising or otherwise to promote the sale,
c@118 32 use or other dealings in this Software without prior written
c@118 33 authorization.
c@118 34 */
c@94 35
c@94 36 #ifndef PIPER_PLUGIN_STUB_H
c@94 37 #define PIPER_PLUGIN_STUB_H
c@94 38
c@94 39 #include <vamp-hostsdk/Plugin.h>
c@94 40 #include <vamp-hostsdk/PluginLoader.h>
c@97 41
c@97 42 #include "vamp-support/PluginStaticData.h"
c@97 43 #include "vamp-support/PluginConfiguration.h"
c@94 44
cannam@167 45 #include "PluginClient.h"
cannam@167 46
c@94 47 #include <cstdint>
cannam@167 48 #include <iostream>
c@94 49
c@97 50 namespace piper_vamp {
c@97 51 namespace client {
c@94 52
c@94 53 class PluginStub : public Vamp::Plugin
c@94 54 {
c@94 55 enum State {
cannam@167 56 Loaded, Configured, Finished, Failed
c@94 57 };
c@94 58
c@94 59 public:
c@94 60 PluginStub(PluginClient *client,
c@94 61 std::string pluginKey,
c@94 62 float inputSampleRate,
c@94 63 int adapterFlags,
c@97 64 PluginStaticData psd,
c@97 65 PluginConfiguration defaultConfig) :
c@94 66 Plugin(inputSampleRate),
c@94 67 m_client(client),
c@94 68 m_key(pluginKey),
c@94 69 m_adapterFlags(adapterFlags),
c@94 70 m_state(Loaded),
c@94 71 m_psd(psd),
c@94 72 m_defaultConfig(defaultConfig),
c@94 73 m_config(defaultConfig)
c@94 74 { }
c@94 75
c@94 76 virtual ~PluginStub() {
cannam@167 77 if (m_state != Finished && m_state != Failed) {
cannam@167 78 try {
cannam@167 79 (void)m_client->finish(this);
cannam@167 80 } catch (const std::exception &e) {
cannam@167 81 // Finish can throw, but our destructor must not
cannam@167 82 std::cerr << "WARNING: PluginStub::~PluginStub: caught exception from finish(): " << e.what() << std::endl;
cannam@167 83 }
c@94 84 }
c@94 85 }
c@94 86
c@94 87 virtual std::string getIdentifier() const {
c@94 88 return m_psd.basic.identifier;
c@94 89 }
c@94 90
c@94 91 virtual std::string getName() const {
c@94 92 return m_psd.basic.name;
c@94 93 }
c@94 94
c@94 95 virtual std::string getDescription() const {
c@94 96 return m_psd.basic.description;
c@94 97 }
c@94 98
c@94 99 virtual std::string getMaker() const {
c@94 100 return m_psd.maker;
c@94 101 }
c@94 102
c@94 103 virtual std::string getCopyright() const {
c@94 104 return m_psd.copyright;
c@94 105 }
c@94 106
c@94 107 virtual int getPluginVersion() const {
c@94 108 return m_psd.pluginVersion;
c@94 109 }
c@94 110
c@94 111 virtual ParameterList getParameterDescriptors() const {
c@94 112 return m_psd.parameters;
c@94 113 }
c@94 114
c@94 115 virtual float getParameter(std::string name) const {
c@94 116 if (m_config.parameterValues.find(name) != m_config.parameterValues.end()) {
c@94 117 return m_config.parameterValues.at(name);
c@94 118 } else {
c@94 119 return 0.f;
c@94 120 }
c@94 121 }
c@94 122
c@94 123 virtual void setParameter(std::string name, float value) {
cannam@167 124 if (m_state == Failed) {
cannam@167 125 throw std::logic_error("Plugin is in failed state");
cannam@167 126 }
c@94 127 if (m_state != Loaded) {
cannam@167 128 m_state = Failed;
c@94 129 throw std::logic_error("Can't set parameter after plugin initialised");
c@94 130 }
c@94 131 m_config.parameterValues[name] = value;
c@94 132 }
c@94 133
c@94 134 virtual ProgramList getPrograms() const {
c@94 135 return m_psd.programs;
c@94 136 }
c@94 137
c@94 138 virtual std::string getCurrentProgram() const {
c@94 139 return m_config.currentProgram;
c@94 140 }
c@94 141
c@94 142 virtual void selectProgram(std::string program) {
cannam@167 143 if (m_state == Failed) {
cannam@167 144 throw std::logic_error("Plugin is in failed state");
cannam@167 145 }
c@94 146 if (m_state != Loaded) {
cannam@167 147 m_state = Failed;
c@94 148 throw std::logic_error("Can't select program after plugin initialised");
c@94 149 }
c@94 150 m_config.currentProgram = program;
c@94 151 }
c@94 152
c@94 153 virtual bool initialise(size_t inputChannels,
c@94 154 size_t stepSize,
c@94 155 size_t blockSize) {
c@94 156
cannam@167 157 if (m_state == Failed) {
cannam@167 158 throw std::logic_error("Plugin is in failed state");
cannam@167 159 }
c@94 160 if (m_state != Loaded) {
cannam@167 161 m_state = Failed;
c@94 162 throw std::logic_error("Plugin has already been initialised");
c@94 163 }
c@94 164
c@102 165 m_config.channelCount = int(inputChannels);
c@102 166 m_config.stepSize = int(stepSize);
c@102 167 m_config.blockSize = int(blockSize);
c@94 168
c@94 169 m_outputs = m_client->configure(this, m_config);
c@94 170
c@94 171 if (!m_outputs.empty()) {
c@94 172 m_state = Configured;
c@94 173 return true;
c@94 174 } else {
c@94 175 return false;
c@94 176 }
c@94 177 }
c@94 178
c@94 179 virtual void reset() {
c@94 180
cannam@167 181 if (m_state == Failed) {
cannam@167 182 throw std::logic_error("Plugin is in failed state");
cannam@167 183 }
c@94 184 if (m_state == Loaded) {
c@94 185 // reset is a no-op if the plugin hasn't been initialised yet
c@94 186 return;
c@94 187 }
c@94 188
c@94 189 m_client->reset(this, m_config);
c@94 190
c@94 191 m_state = Configured;
c@94 192 }
c@94 193
c@94 194 virtual InputDomain getInputDomain() const {
c@94 195 return m_psd.inputDomain;
c@94 196 }
c@94 197
c@94 198 virtual size_t getPreferredBlockSize() const {
c@94 199 return m_defaultConfig.blockSize;
c@94 200 }
c@94 201
c@94 202 virtual size_t getPreferredStepSize() const {
c@94 203 return m_defaultConfig.stepSize;
c@94 204 }
c@94 205
c@94 206 virtual size_t getMinChannelCount() const {
c@94 207 return m_psd.minChannelCount;
c@94 208 }
c@94 209
c@94 210 virtual size_t getMaxChannelCount() const {
c@94 211 return m_psd.maxChannelCount;
c@94 212 }
c@94 213
c@94 214 virtual OutputList getOutputDescriptors() const {
cannam@167 215
cannam@167 216 if (m_state == Failed) {
cannam@167 217 throw std::logic_error("Plugin is in failed state");
cannam@167 218 }
c@94 219 if (m_state == Configured) {
c@94 220 return m_outputs;
c@94 221 }
c@94 222
c@94 223 //!!! todo: figure out for which hosts (and adapters?) it may
c@94 224 //!!! be a problem that the output descriptors are incomplete
c@94 225 //!!! here. Any such hosts/adapters are broken, but I bet they
c@94 226 //!!! exist
c@94 227
c@94 228 OutputList staticOutputs;
c@94 229 for (const auto &o: m_psd.basicOutputInfo) {
c@94 230 OutputDescriptor od;
c@94 231 od.identifier = o.identifier;
c@94 232 od.name = o.name;
c@94 233 od.description = o.description;
c@94 234 staticOutputs.push_back(od);
c@94 235 }
c@94 236 return staticOutputs;
c@94 237 }
c@94 238
c@94 239 virtual FeatureSet process(const float *const *inputBuffers,
c@118 240 Vamp::RealTime timestamp) {
c@94 241
cannam@167 242 if (m_state == Failed) {
cannam@167 243 throw std::logic_error("Plugin is in failed state");
cannam@167 244 }
c@94 245 if (m_state == Loaded) {
cannam@167 246 m_state = Failed;
c@94 247 throw std::logic_error("Plugin has not been initialised");
c@94 248 }
c@94 249 if (m_state == Finished) {
cannam@167 250 m_state = Failed;
c@94 251 throw std::logic_error("Plugin has already been disposed of");
c@94 252 }
c@94 253
c@94 254 //!!! ew
c@94 255 std::vector<std::vector<float> > vecbuf;
c@94 256 for (int c = 0; c < m_config.channelCount; ++c) {
c@94 257 vecbuf.push_back(std::vector<float>
c@94 258 (inputBuffers[c],
c@94 259 inputBuffers[c] + m_config.blockSize));
c@94 260 }
c@94 261
c@94 262 return m_client->process(this, vecbuf, timestamp);
c@94 263 }
c@94 264
c@94 265 virtual FeatureSet getRemainingFeatures() {
c@94 266
cannam@167 267 if (m_state == Failed) {
cannam@167 268 throw std::logic_error("Plugin is in failed state");
cannam@167 269 }
c@94 270 if (m_state == Loaded) {
cannam@167 271 m_state = Failed;
c@94 272 throw std::logic_error("Plugin has not been configured");
c@94 273 }
c@94 274 if (m_state == Finished) {
cannam@167 275 m_state = Failed;
c@94 276 throw std::logic_error("Plugin has already been disposed of");
c@94 277 }
c@94 278
c@94 279 m_state = Finished;
c@94 280
c@94 281 return m_client->finish(this);
c@94 282 }
c@94 283
c@94 284 // Not Plugin methods, but needed by the PluginClient to support reloads:
c@94 285
c@94 286 virtual float getInputSampleRate() const {
c@94 287 return m_inputSampleRate;
c@94 288 }
c@94 289
c@94 290 virtual std::string getPluginKey() const {
c@94 291 return m_key;
c@94 292 }
c@94 293
c@94 294 virtual int getAdapterFlags() const {
c@94 295 return m_adapterFlags;
c@94 296 }
c@94 297
c@94 298 private:
c@94 299 PluginClient *m_client;
c@94 300 std::string m_key;
c@94 301 int m_adapterFlags;
c@94 302 State m_state;
c@97 303 PluginStaticData m_psd;
c@94 304 OutputList m_outputs;
c@97 305 PluginConfiguration m_defaultConfig;
c@97 306 PluginConfiguration m_config;
c@94 307 };
c@94 308
c@94 309 }
c@94 310 }
c@94 311
c@94 312 #endif