annotate vamp-client/stub.h @ 78:f4b5c0e70771

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