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