comparison vamp-client/AutoPlugin.h @ 118:ff3fd8d1b2dc

Boilerplate comments
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 27 Oct 2016 12:01:37 +0100
parents d74dfc11927c
children 5876f3e9c677
comparison
equal deleted inserted replaced
117:5dffc5147176 118:ff3fd8d1b2dc
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 /*
3 Piper C++
4
5 An API for audio analysis and feature extraction plugins.
6
7 Centre for Digital Music, Queen Mary, University of London.
8 Copyright 2006-2016 Chris Cannam and QMUL.
9
10 Permission is hereby granted, free of charge, to any person
11 obtaining a copy of this software and associated documentation
12 files (the "Software"), to deal in the Software without
13 restriction, including without limitation the rights to use, copy,
14 modify, merge, publish, distribute, sublicense, and/or sell copies
15 of the Software, and to permit persons to whom the Software is
16 furnished to do so, subject to the following conditions:
17
18 The above copyright notice and this permission notice shall be
19 included in all copies or substantial portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 Except as contained in this notice, the names of the Centre for
30 Digital Music; Queen Mary, University of London; and Chris Cannam
31 shall not be used in advertising or otherwise to promote the sale,
32 use or other dealings in this Software without prior written
33 authorization.
34 */
2 35
3 #ifndef PIPER_AUTO_PLUGIN_H 36 #ifndef PIPER_AUTO_PLUGIN_H
4 #define PIPER_AUTO_PLUGIN_H 37 #define PIPER_AUTO_PLUGIN_H
5 38
6 #include "ProcessQtTransport.h" 39 #include "ProcessQtTransport.h"
13 46
14 class AutoPlugin : public Vamp::Plugin 47 class AutoPlugin : public Vamp::Plugin
15 { 48 {
16 public: 49 public:
17 AutoPlugin(std::string serverName, 50 AutoPlugin(std::string serverName,
18 std::string pluginKey, 51 std::string pluginKey,
19 float inputSampleRate, 52 float inputSampleRate,
20 int adapterFlags) : 53 int adapterFlags) :
21 Vamp::Plugin(inputSampleRate), 54 Vamp::Plugin(inputSampleRate),
22 m_transport(serverName), 55 m_transport(serverName),
23 m_client(&m_transport) 56 m_client(&m_transport)
24 { 57 {
25 LoadRequest req; 58 LoadRequest req;
26 req.pluginKey = pluginKey; 59 req.pluginKey = pluginKey;
27 req.inputSampleRate = inputSampleRate; 60 req.inputSampleRate = inputSampleRate;
28 req.adapterFlags = adapterFlags; 61 req.adapterFlags = adapterFlags;
29 LoadResponse resp = m_client.loadPlugin(req); 62 LoadResponse resp = m_client.loadPlugin(req);
30 m_plugin = resp.plugin; 63 m_plugin = resp.plugin;
31 } 64 }
32 65
33 virtual ~AutoPlugin() { 66 virtual ~AutoPlugin() {
34 delete m_plugin; 67 delete m_plugin;
35 } 68 }
36 69
37 bool isOK() const { 70 bool isOK() const {
38 return (m_plugin != nullptr); 71 return (m_plugin != nullptr);
39 } 72 }
40 73
41 virtual std::string getIdentifier() const { 74 virtual std::string getIdentifier() const {
42 return getPlugin()->getIdentifier(); 75 return getPlugin()->getIdentifier();
43 } 76 }
44 77
45 virtual std::string getName() const { 78 virtual std::string getName() const {
46 return getPlugin()->getName(); 79 return getPlugin()->getName();
47 } 80 }
48 81
49 virtual std::string getDescription() const { 82 virtual std::string getDescription() const {
50 return getPlugin()->getDescription(); 83 return getPlugin()->getDescription();
51 } 84 }
52 85
53 virtual std::string getMaker() const { 86 virtual std::string getMaker() const {
54 return getPlugin()->getMaker(); 87 return getPlugin()->getMaker();
55 } 88 }
56 89
57 virtual std::string getCopyright() const { 90 virtual std::string getCopyright() const {
58 return getPlugin()->getCopyright(); 91 return getPlugin()->getCopyright();
59 } 92 }
60 93
61 virtual int getPluginVersion() const { 94 virtual int getPluginVersion() const {
62 return getPlugin()->getPluginVersion(); 95 return getPlugin()->getPluginVersion();
63 } 96 }
64 97
65 virtual ParameterList getParameterDescriptors() const { 98 virtual ParameterList getParameterDescriptors() const {
66 return getPlugin()->getParameterDescriptors(); 99 return getPlugin()->getParameterDescriptors();
67 } 100 }
68 101
69 virtual float getParameter(std::string name) const { 102 virtual float getParameter(std::string name) const {
70 return getPlugin()->getParameter(name); 103 return getPlugin()->getParameter(name);
71 } 104 }
72 105
73 virtual void setParameter(std::string name, float value) { 106 virtual void setParameter(std::string name, float value) {
74 getPlugin()->setParameter(name, value); 107 getPlugin()->setParameter(name, value);
75 } 108 }
76 109
77 virtual ProgramList getPrograms() const { 110 virtual ProgramList getPrograms() const {
78 return getPlugin()->getPrograms(); 111 return getPlugin()->getPrograms();
79 } 112 }
81 virtual std::string getCurrentProgram() const { 114 virtual std::string getCurrentProgram() const {
82 return getPlugin()->getCurrentProgram(); 115 return getPlugin()->getCurrentProgram();
83 } 116 }
84 117
85 virtual void selectProgram(std::string program) { 118 virtual void selectProgram(std::string program) {
86 getPlugin()->selectProgram(program); 119 getPlugin()->selectProgram(program);
87 } 120 }
88 121
89 virtual bool initialise(size_t inputChannels, 122 virtual bool initialise(size_t inputChannels,
90 size_t stepSize, 123 size_t stepSize,
91 size_t blockSize) { 124 size_t blockSize) {
92 return getPlugin()->initialise(inputChannels, stepSize, blockSize); 125 return getPlugin()->initialise(inputChannels, stepSize, blockSize);
93 } 126 }
94 127
95 virtual void reset() { 128 virtual void reset() {
96 getPlugin()->reset(); 129 getPlugin()->reset();
97 } 130 }
98 131
99 virtual InputDomain getInputDomain() const { 132 virtual InputDomain getInputDomain() const {
100 return getPlugin()->getInputDomain(); 133 return getPlugin()->getInputDomain();
101 } 134 }
102 135
103 virtual size_t getPreferredBlockSize() const { 136 virtual size_t getPreferredBlockSize() const {
104 return getPlugin()->getPreferredBlockSize(); 137 return getPlugin()->getPreferredBlockSize();
105 } 138 }
106 139
107 virtual size_t getPreferredStepSize() const { 140 virtual size_t getPreferredStepSize() const {
108 return getPlugin()->getPreferredStepSize(); 141 return getPlugin()->getPreferredStepSize();
109 } 142 }
110 143
111 virtual size_t getMinChannelCount() const { 144 virtual size_t getMinChannelCount() const {
112 return getPlugin()->getMinChannelCount(); 145 return getPlugin()->getMinChannelCount();
113 } 146 }
114 147
115 virtual size_t getMaxChannelCount() const { 148 virtual size_t getMaxChannelCount() const {
116 return getPlugin()->getMaxChannelCount(); 149 return getPlugin()->getMaxChannelCount();
117 } 150 }
118 151
119 virtual OutputList getOutputDescriptors() const { 152 virtual OutputList getOutputDescriptors() const {
120 return getPlugin()->getOutputDescriptors(); 153 return getPlugin()->getOutputDescriptors();
121 } 154 }
122 155
123 virtual FeatureSet process(const float *const *inputBuffers, 156 virtual FeatureSet process(const float *const *inputBuffers,
124 Vamp::RealTime timestamp) { 157 Vamp::RealTime timestamp) {
125 return getPlugin()->process(inputBuffers, timestamp); 158 return getPlugin()->process(inputBuffers, timestamp);
126 } 159 }
127 160
128 virtual FeatureSet getRemainingFeatures() { 161 virtual FeatureSet getRemainingFeatures() {
129 return getPlugin()->getRemainingFeatures(); 162 return getPlugin()->getRemainingFeatures();
130 } 163 }
131 164
132 private: 165 private:
133 ProcessQtTransport m_transport; 166 ProcessQtTransport m_transport;
134 CapnpRRClient m_client; 167 CapnpRRClient m_client;
135 Vamp::Plugin *m_plugin; 168 Vamp::Plugin *m_plugin;
136 Vamp::Plugin *getPlugin() const { 169 Vamp::Plugin *getPlugin() const {
137 if (!m_plugin) { 170 if (!m_plugin) {
138 throw std::logic_error 171 throw std::logic_error
139 ("Plugin load failed (should have called AutoPlugin::isOK)"); 172 ("Plugin load failed (should have called AutoPlugin::isOK)");
140 } 173 }
141 return m_plugin; 174 return m_plugin;
142 } 175 }
143 }; 176 };
144 177
145 } 178 }
146 } 179 }