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@134
|
53 int adapterFlags,
|
c@134
|
54 LogCallback *logger) : // logger may be nullptr for cerr
|
c@118
|
55 Vamp::Plugin(inputSampleRate),
|
c@134
|
56 m_logger(logger),
|
c@134
|
57 m_transport(serverName, "capnp", logger),
|
c@134
|
58 m_client(&m_transport, logger)
|
c@98
|
59 {
|
c@118
|
60 LoadRequest req;
|
c@118
|
61 req.pluginKey = pluginKey;
|
c@118
|
62 req.inputSampleRate = inputSampleRate;
|
c@118
|
63 req.adapterFlags = adapterFlags;
|
c@121
|
64 try {
|
c@121
|
65 LoadResponse resp = m_client.loadPlugin(req);
|
c@121
|
66 m_plugin = resp.plugin;
|
c@121
|
67 } catch (ServerCrashed c) {
|
c@134
|
68 log(std::string("AutoPlugin: Server crashed: ") + c.what());
|
c@121
|
69 m_plugin = 0;
|
c@121
|
70 }
|
c@98
|
71 }
|
c@98
|
72
|
c@98
|
73 virtual ~AutoPlugin() {
|
c@118
|
74 delete m_plugin;
|
c@98
|
75 }
|
c@98
|
76
|
c@98
|
77 bool isOK() const {
|
c@118
|
78 return (m_plugin != nullptr);
|
c@98
|
79 }
|
c@98
|
80
|
c@98
|
81 virtual std::string getIdentifier() const {
|
c@118
|
82 return getPlugin()->getIdentifier();
|
c@98
|
83 }
|
c@98
|
84
|
c@98
|
85 virtual std::string getName() const {
|
c@118
|
86 return getPlugin()->getName();
|
c@98
|
87 }
|
c@98
|
88
|
c@98
|
89 virtual std::string getDescription() const {
|
c@118
|
90 return getPlugin()->getDescription();
|
c@98
|
91 }
|
c@98
|
92
|
c@98
|
93 virtual std::string getMaker() const {
|
c@118
|
94 return getPlugin()->getMaker();
|
c@98
|
95 }
|
c@98
|
96
|
c@98
|
97 virtual std::string getCopyright() const {
|
c@118
|
98 return getPlugin()->getCopyright();
|
c@98
|
99 }
|
c@98
|
100
|
c@98
|
101 virtual int getPluginVersion() const {
|
c@98
|
102 return getPlugin()->getPluginVersion();
|
c@98
|
103 }
|
c@98
|
104
|
c@98
|
105 virtual ParameterList getParameterDescriptors() const {
|
c@118
|
106 return getPlugin()->getParameterDescriptors();
|
c@98
|
107 }
|
c@98
|
108
|
c@98
|
109 virtual float getParameter(std::string name) const {
|
c@118
|
110 return getPlugin()->getParameter(name);
|
c@98
|
111 }
|
c@98
|
112
|
c@98
|
113 virtual void setParameter(std::string name, float value) {
|
c@118
|
114 getPlugin()->setParameter(name, value);
|
c@98
|
115 }
|
c@98
|
116
|
c@98
|
117 virtual ProgramList getPrograms() const {
|
c@98
|
118 return getPlugin()->getPrograms();
|
c@98
|
119 }
|
c@98
|
120
|
c@98
|
121 virtual std::string getCurrentProgram() const {
|
c@98
|
122 return getPlugin()->getCurrentProgram();
|
c@98
|
123 }
|
c@98
|
124
|
c@98
|
125 virtual void selectProgram(std::string program) {
|
c@118
|
126 getPlugin()->selectProgram(program);
|
c@98
|
127 }
|
c@98
|
128
|
c@98
|
129 virtual bool initialise(size_t inputChannels,
|
c@98
|
130 size_t stepSize,
|
c@98
|
131 size_t blockSize) {
|
c@118
|
132 return getPlugin()->initialise(inputChannels, stepSize, blockSize);
|
c@98
|
133 }
|
c@98
|
134
|
c@98
|
135 virtual void reset() {
|
c@118
|
136 getPlugin()->reset();
|
c@98
|
137 }
|
c@98
|
138
|
c@98
|
139 virtual InputDomain getInputDomain() const {
|
c@118
|
140 return getPlugin()->getInputDomain();
|
c@98
|
141 }
|
c@98
|
142
|
c@98
|
143 virtual size_t getPreferredBlockSize() const {
|
c@118
|
144 return getPlugin()->getPreferredBlockSize();
|
c@98
|
145 }
|
c@98
|
146
|
c@98
|
147 virtual size_t getPreferredStepSize() const {
|
c@118
|
148 return getPlugin()->getPreferredStepSize();
|
c@98
|
149 }
|
c@98
|
150
|
c@98
|
151 virtual size_t getMinChannelCount() const {
|
c@118
|
152 return getPlugin()->getMinChannelCount();
|
c@98
|
153 }
|
c@98
|
154
|
c@98
|
155 virtual size_t getMaxChannelCount() const {
|
c@118
|
156 return getPlugin()->getMaxChannelCount();
|
c@98
|
157 }
|
c@98
|
158
|
c@98
|
159 virtual OutputList getOutputDescriptors() const {
|
c@118
|
160 return getPlugin()->getOutputDescriptors();
|
c@98
|
161 }
|
c@98
|
162
|
c@98
|
163 virtual FeatureSet process(const float *const *inputBuffers,
|
c@118
|
164 Vamp::RealTime timestamp) {
|
c@118
|
165 return getPlugin()->process(inputBuffers, timestamp);
|
c@98
|
166 }
|
c@98
|
167
|
c@98
|
168 virtual FeatureSet getRemainingFeatures() {
|
c@118
|
169 return getPlugin()->getRemainingFeatures();
|
c@98
|
170 }
|
c@98
|
171
|
c@98
|
172 private:
|
c@134
|
173 LogCallback *m_logger;
|
c@98
|
174 ProcessQtTransport m_transport;
|
c@98
|
175 CapnpRRClient m_client;
|
c@98
|
176 Vamp::Plugin *m_plugin;
|
c@98
|
177 Vamp::Plugin *getPlugin() const {
|
c@118
|
178 if (!m_plugin) {
|
c@134
|
179 log("AutoPlugin: getPlugin() failed (caller should have called AutoPlugin::isOK)");
|
c@134
|
180 throw std::logic_error("Plugin load failed");
|
c@118
|
181 }
|
c@118
|
182 return m_plugin;
|
c@98
|
183 }
|
c@134
|
184
|
c@134
|
185 void log(std::string message) const {
|
c@134
|
186 if (m_logger) m_logger->log(message);
|
c@134
|
187 else std::cerr << message << std::endl;
|
c@134
|
188 }
|
c@98
|
189 };
|
c@98
|
190
|
c@98
|
191 }
|
c@98
|
192 }
|
c@98
|
193
|
c@98
|
194 #endif
|
c@98
|
195
|
c@98
|
196
|