annotate vamp-client/PluginStub.h @ 96:215c9fb6b7a4

Rename to CapnpRRClient (request-response, as opposed to individual RPC calls)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 17:00:06 +0100
parents a660dca988f8
children 427c4c725085
rev   line source
c@94 1
c@94 2 #ifndef PIPER_PLUGIN_STUB_H
c@94 3 #define PIPER_PLUGIN_STUB_H
c@94 4
c@94 5 #include <vamp-hostsdk/Plugin.h>
c@94 6 #include <vamp-hostsdk/PluginLoader.h>
c@94 7 #include <vamp-hostsdk/PluginStaticData.h>
c@94 8 #include <vamp-hostsdk/PluginConfiguration.h>
c@94 9
c@94 10 #include <cstdint>
c@94 11
c@94 12 #include "PluginClient.h"
c@94 13
c@94 14 namespace piper {
c@94 15 namespace vampclient {
c@94 16
c@94 17 class PluginStub : public Vamp::Plugin
c@94 18 {
c@94 19 enum State {
c@94 20 Loaded, Configured, Finished
c@94 21 };
c@94 22
c@94 23 public:
c@94 24 PluginStub(PluginClient *client,
c@94 25 std::string pluginKey,
c@94 26 float inputSampleRate,
c@94 27 int adapterFlags,
c@94 28 Vamp::HostExt::PluginStaticData psd,
c@94 29 Vamp::HostExt::PluginConfiguration defaultConfig) :
c@94 30 Plugin(inputSampleRate),
c@94 31 m_client(client),
c@94 32 m_key(pluginKey),
c@94 33 m_adapterFlags(adapterFlags),
c@94 34 m_state(Loaded),
c@94 35 m_psd(psd),
c@94 36 m_defaultConfig(defaultConfig),
c@94 37 m_config(defaultConfig)
c@94 38 { }
c@94 39
c@94 40 virtual ~PluginStub() {
c@94 41 if (m_state != Finished) {
c@94 42 (void)m_client->finish(this);
c@94 43 }
c@94 44 }
c@94 45
c@94 46 virtual std::string getIdentifier() const {
c@94 47 return m_psd.basic.identifier;
c@94 48 }
c@94 49
c@94 50 virtual std::string getName() const {
c@94 51 return m_psd.basic.name;
c@94 52 }
c@94 53
c@94 54 virtual std::string getDescription() const {
c@94 55 return m_psd.basic.description;
c@94 56 }
c@94 57
c@94 58 virtual std::string getMaker() const {
c@94 59 return m_psd.maker;
c@94 60 }
c@94 61
c@94 62 virtual std::string getCopyright() const {
c@94 63 return m_psd.copyright;
c@94 64 }
c@94 65
c@94 66 virtual int getPluginVersion() const {
c@94 67 return m_psd.pluginVersion;
c@94 68 }
c@94 69
c@94 70 virtual ParameterList getParameterDescriptors() const {
c@94 71 return m_psd.parameters;
c@94 72 }
c@94 73
c@94 74 virtual float getParameter(std::string name) const {
c@94 75 if (m_config.parameterValues.find(name) != m_config.parameterValues.end()) {
c@94 76 return m_config.parameterValues.at(name);
c@94 77 } else {
c@94 78 return 0.f;
c@94 79 }
c@94 80 }
c@94 81
c@94 82 virtual void setParameter(std::string name, float value) {
c@94 83 if (m_state != Loaded) {
c@94 84 throw std::logic_error("Can't set parameter after plugin initialised");
c@94 85 }
c@94 86 m_config.parameterValues[name] = value;
c@94 87 }
c@94 88
c@94 89 virtual ProgramList getPrograms() const {
c@94 90 return m_psd.programs;
c@94 91 }
c@94 92
c@94 93 virtual std::string getCurrentProgram() const {
c@94 94 return m_config.currentProgram;
c@94 95 }
c@94 96
c@94 97 virtual void selectProgram(std::string program) {
c@94 98 if (m_state != Loaded) {
c@94 99 throw std::logic_error("Can't select program after plugin initialised");
c@94 100 }
c@94 101 m_config.currentProgram = program;
c@94 102 }
c@94 103
c@94 104 virtual bool initialise(size_t inputChannels,
c@94 105 size_t stepSize,
c@94 106 size_t blockSize) {
c@94 107
c@94 108 if (m_state != Loaded) {
c@94 109 throw std::logic_error("Plugin has already been initialised");
c@94 110 }
c@94 111
c@94 112 m_config.channelCount = inputChannels;
c@94 113 m_config.stepSize = stepSize;
c@94 114 m_config.blockSize = blockSize;
c@94 115
c@94 116 m_outputs = m_client->configure(this, m_config);
c@94 117
c@94 118 if (!m_outputs.empty()) {
c@94 119 m_state = Configured;
c@94 120 return true;
c@94 121 } else {
c@94 122 return false;
c@94 123 }
c@94 124 }
c@94 125
c@94 126 virtual void reset() {
c@94 127
c@94 128 if (m_state == Loaded) {
c@94 129 // reset is a no-op if the plugin hasn't been initialised yet
c@94 130 return;
c@94 131 }
c@94 132
c@94 133 m_client->reset(this, m_config);
c@94 134
c@94 135 m_state = Configured;
c@94 136 }
c@94 137
c@94 138 virtual InputDomain getInputDomain() const {
c@94 139 return m_psd.inputDomain;
c@94 140 }
c@94 141
c@94 142 virtual size_t getPreferredBlockSize() const {
c@94 143 return m_defaultConfig.blockSize;
c@94 144 }
c@94 145
c@94 146 virtual size_t getPreferredStepSize() const {
c@94 147 return m_defaultConfig.stepSize;
c@94 148 }
c@94 149
c@94 150 virtual size_t getMinChannelCount() const {
c@94 151 return m_psd.minChannelCount;
c@94 152 }
c@94 153
c@94 154 virtual size_t getMaxChannelCount() const {
c@94 155 return m_psd.maxChannelCount;
c@94 156 }
c@94 157
c@94 158 virtual OutputList getOutputDescriptors() const {
c@94 159 if (m_state == Configured) {
c@94 160 return m_outputs;
c@94 161 }
c@94 162
c@94 163 //!!! todo: figure out for which hosts (and adapters?) it may
c@94 164 //!!! be a problem that the output descriptors are incomplete
c@94 165 //!!! here. Any such hosts/adapters are broken, but I bet they
c@94 166 //!!! exist
c@94 167
c@94 168 OutputList staticOutputs;
c@94 169 for (const auto &o: m_psd.basicOutputInfo) {
c@94 170 OutputDescriptor od;
c@94 171 od.identifier = o.identifier;
c@94 172 od.name = o.name;
c@94 173 od.description = o.description;
c@94 174 staticOutputs.push_back(od);
c@94 175 }
c@94 176 return staticOutputs;
c@94 177 }
c@94 178
c@94 179 virtual FeatureSet process(const float *const *inputBuffers,
c@94 180 Vamp::RealTime timestamp) {
c@94 181
c@94 182 if (m_state == Loaded) {
c@94 183 throw std::logic_error("Plugin has not been initialised");
c@94 184 }
c@94 185 if (m_state == Finished) {
c@94 186 throw std::logic_error("Plugin has already been disposed of");
c@94 187 }
c@94 188
c@94 189 //!!! ew
c@94 190 std::vector<std::vector<float> > vecbuf;
c@94 191 for (int c = 0; c < m_config.channelCount; ++c) {
c@94 192 vecbuf.push_back(std::vector<float>
c@94 193 (inputBuffers[c],
c@94 194 inputBuffers[c] + m_config.blockSize));
c@94 195 }
c@94 196
c@94 197 return m_client->process(this, vecbuf, timestamp);
c@94 198 }
c@94 199
c@94 200 virtual FeatureSet getRemainingFeatures() {
c@94 201
c@94 202 if (m_state == Loaded) {
c@94 203 throw std::logic_error("Plugin has not been configured");
c@94 204 }
c@94 205 if (m_state == Finished) {
c@94 206 throw std::logic_error("Plugin has already been disposed of");
c@94 207 }
c@94 208
c@94 209 m_state = Finished;
c@94 210
c@94 211 return m_client->finish(this);
c@94 212 }
c@94 213
c@94 214 // Not Plugin methods, but needed by the PluginClient to support reloads:
c@94 215
c@94 216 virtual float getInputSampleRate() const {
c@94 217 return m_inputSampleRate;
c@94 218 }
c@94 219
c@94 220 virtual std::string getPluginKey() const {
c@94 221 return m_key;
c@94 222 }
c@94 223
c@94 224 virtual int getAdapterFlags() const {
c@94 225 return m_adapterFlags;
c@94 226 }
c@94 227
c@94 228 private:
c@94 229 PluginClient *m_client;
c@94 230 std::string m_key;
c@94 231 int m_adapterFlags;
c@94 232 State m_state;
c@94 233 Vamp::HostExt::PluginStaticData m_psd;
c@94 234 OutputList m_outputs;
c@94 235 Vamp::HostExt::PluginConfiguration m_defaultConfig;
c@94 236 Vamp::HostExt::PluginConfiguration m_config;
c@94 237 };
c@94 238
c@94 239 }
c@94 240 }
c@94 241
c@94 242 #endif