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