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