cannam@111
|
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@98
|
35
|
c@98
|
36 #ifndef PIPER_AUTO_PLUGIN_H
|
c@98
|
37 #define PIPER_AUTO_PLUGIN_H
|
c@98
|
38
|
c@98
|
39 #include "ProcessQtTransport.h"
|
c@98
|
40 #include "CapnpRRClient.h"
|
c@98
|
41
|
c@98
|
42 #include <cstdint>
|
c@98
|
43
|
c@98
|
44 namespace piper_vamp {
|
c@98
|
45 namespace client {
|
c@98
|
46
|
c@98
|
47 class AutoPlugin : public Vamp::Plugin
|
c@98
|
48 {
|
c@98
|
49 public:
|
c@101
|
50 AutoPlugin(std::string serverName,
|
c@118
|
51 std::string pluginKey,
|
c@118
|
52 float inputSampleRate,
|
c@118
|
53 int adapterFlags) :
|
c@118
|
54 Vamp::Plugin(inputSampleRate),
|
c@119
|
55 m_transport(serverName, "capnp"),
|
c@118
|
56 m_client(&m_transport)
|
c@98
|
57 {
|
c@118
|
58 LoadRequest req;
|
c@118
|
59 req.pluginKey = pluginKey;
|
c@118
|
60 req.inputSampleRate = inputSampleRate;
|
c@118
|
61 req.adapterFlags = adapterFlags;
|
c@118
|
62 LoadResponse resp = m_client.loadPlugin(req);
|
c@118
|
63 m_plugin = resp.plugin;
|
c@98
|
64 }
|
c@98
|
65
|
c@98
|
66 virtual ~AutoPlugin() {
|
c@118
|
67 delete m_plugin;
|
c@98
|
68 }
|
c@98
|
69
|
c@98
|
70 bool isOK() const {
|
c@118
|
71 return (m_plugin != nullptr);
|
c@98
|
72 }
|
c@98
|
73
|
c@98
|
74 virtual std::string getIdentifier() const {
|
c@118
|
75 return getPlugin()->getIdentifier();
|
c@98
|
76 }
|
c@98
|
77
|
c@98
|
78 virtual std::string getName() const {
|
c@118
|
79 return getPlugin()->getName();
|
c@98
|
80 }
|
c@98
|
81
|
c@98
|
82 virtual std::string getDescription() const {
|
c@118
|
83 return getPlugin()->getDescription();
|
c@98
|
84 }
|
c@98
|
85
|
c@98
|
86 virtual std::string getMaker() const {
|
c@118
|
87 return getPlugin()->getMaker();
|
c@98
|
88 }
|
c@98
|
89
|
c@98
|
90 virtual std::string getCopyright() const {
|
c@118
|
91 return getPlugin()->getCopyright();
|
c@98
|
92 }
|
c@98
|
93
|
c@98
|
94 virtual int getPluginVersion() const {
|
c@98
|
95 return getPlugin()->getPluginVersion();
|
c@98
|
96 }
|
c@98
|
97
|
c@98
|
98 virtual ParameterList getParameterDescriptors() const {
|
c@118
|
99 return getPlugin()->getParameterDescriptors();
|
c@98
|
100 }
|
c@98
|
101
|
c@98
|
102 virtual float getParameter(std::string name) const {
|
c@118
|
103 return getPlugin()->getParameter(name);
|
c@98
|
104 }
|
c@98
|
105
|
c@98
|
106 virtual void setParameter(std::string name, float value) {
|
c@118
|
107 getPlugin()->setParameter(name, value);
|
c@98
|
108 }
|
c@98
|
109
|
c@98
|
110 virtual ProgramList getPrograms() const {
|
c@98
|
111 return getPlugin()->getPrograms();
|
c@98
|
112 }
|
c@98
|
113
|
c@98
|
114 virtual std::string getCurrentProgram() const {
|
c@98
|
115 return getPlugin()->getCurrentProgram();
|
c@98
|
116 }
|
c@98
|
117
|
c@98
|
118 virtual void selectProgram(std::string program) {
|
c@118
|
119 getPlugin()->selectProgram(program);
|
c@98
|
120 }
|
c@98
|
121
|
c@98
|
122 virtual bool initialise(size_t inputChannels,
|
c@98
|
123 size_t stepSize,
|
c@98
|
124 size_t blockSize) {
|
c@118
|
125 return getPlugin()->initialise(inputChannels, stepSize, blockSize);
|
c@98
|
126 }
|
c@98
|
127
|
c@98
|
128 virtual void reset() {
|
c@118
|
129 getPlugin()->reset();
|
c@98
|
130 }
|
c@98
|
131
|
c@98
|
132 virtual InputDomain getInputDomain() const {
|
c@118
|
133 return getPlugin()->getInputDomain();
|
c@98
|
134 }
|
c@98
|
135
|
c@98
|
136 virtual size_t getPreferredBlockSize() const {
|
c@118
|
137 return getPlugin()->getPreferredBlockSize();
|
c@98
|
138 }
|
c@98
|
139
|
c@98
|
140 virtual size_t getPreferredStepSize() const {
|
c@118
|
141 return getPlugin()->getPreferredStepSize();
|
c@98
|
142 }
|
c@98
|
143
|
c@98
|
144 virtual size_t getMinChannelCount() const {
|
c@118
|
145 return getPlugin()->getMinChannelCount();
|
c@98
|
146 }
|
c@98
|
147
|
c@98
|
148 virtual size_t getMaxChannelCount() const {
|
c@118
|
149 return getPlugin()->getMaxChannelCount();
|
c@98
|
150 }
|
c@98
|
151
|
c@98
|
152 virtual OutputList getOutputDescriptors() const {
|
c@118
|
153 return getPlugin()->getOutputDescriptors();
|
c@98
|
154 }
|
c@98
|
155
|
c@98
|
156 virtual FeatureSet process(const float *const *inputBuffers,
|
c@118
|
157 Vamp::RealTime timestamp) {
|
c@118
|
158 return getPlugin()->process(inputBuffers, timestamp);
|
c@98
|
159 }
|
c@98
|
160
|
c@98
|
161 virtual FeatureSet getRemainingFeatures() {
|
c@118
|
162 return getPlugin()->getRemainingFeatures();
|
c@98
|
163 }
|
c@98
|
164
|
c@98
|
165 private:
|
c@98
|
166 ProcessQtTransport m_transport;
|
c@98
|
167 CapnpRRClient m_client;
|
c@98
|
168 Vamp::Plugin *m_plugin;
|
c@98
|
169 Vamp::Plugin *getPlugin() const {
|
c@118
|
170 if (!m_plugin) {
|
c@118
|
171 throw std::logic_error
|
c@118
|
172 ("Plugin load failed (should have called AutoPlugin::isOK)");
|
c@118
|
173 }
|
c@118
|
174 return m_plugin;
|
c@98
|
175 }
|
c@98
|
176 };
|
c@98
|
177
|
c@98
|
178 }
|
c@98
|
179 }
|
c@98
|
180
|
c@98
|
181 #endif
|
c@98
|
182
|
c@98
|
183
|