comparison vamp-stubber/stubber.cpp @ 240:d00199f3b010

More helpful comments etc
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 13 Jun 2017 16:07:58 +0100
parents 0664784566d8
children fdab0a246298
comparison
equal deleted inserted replaced
239:335a5909d4a8 240:d00199f3b010
194 } 194 }
195 195
196 void 196 void
197 emitFor(string libname, const ListResponse &resp) 197 emitFor(string libname, const ListResponse &resp)
198 { 198 {
199 // The same plugin key may appear more than once in the available
200 // list, if the same plugin is installed in more than one location
201 // on the Vamp path. To avoid emitting its wrapper definition
202 // multiple times, we need to keep a record of which ones we've
203 // emitted for each stage
204 set<string> emitted;
205
199 cout << 206 cout <<
200 "\n#include \"PiperExport.h\"\n" 207 "\n#include \"PiperExport.h\"\n"
201 "\n" 208 "\n"
202 "// #include your own plugin headers here\n" 209 "// !!! The following #include(s) are guesses. Replace them with the\n"
210 "// real header files in which your plugin classes are defined.\n"
211 "//\n";
212
213 for (const auto &plugin: resp.available) {
214
215 string key = plugin.pluginKey;
216 if (emitted.find(key) != emitted.end()) {
217 continue;
218 }
219
220 PlausibleMetadata pm = inventPlausibleMetadata(key);
221
222 cout << "#include \"" << pm.className << ".h\"\n";
223
224 emitted.insert(key);
225 }
226
227 cout <<
203 "\n" 228 "\n"
204 "using piper_vamp_js::PiperAdapter;\n" 229 "using piper_vamp_js::PiperAdapter;\n"
205 "using piper_vamp_js::PiperPluginLibrary;\n" 230 "using piper_vamp_js::PiperPluginLibrary;\n"
206 "\n" 231 "\n"
207 "static std::string libname(\"" << libname << "\");\n" 232 "static std::string libname(\"" << libname << "\");\n"
208 "\n"; 233 "\n";
209 234
210 // The same plugin key may appear more than once in the available 235 emitted.clear();
211 // list, if the same plugin is installed in more than one location
212 // on the Vamp path. To avoid emitting its wrapper definition
213 // multiple times, we need to keep a record of which ones we've
214 // emitted for each stage
215 set<string> emitted;
216
217 for (const auto &plugin: resp.available) { 236 for (const auto &plugin: resp.available) {
218 237
219 string key = plugin.pluginKey; 238 string key = plugin.pluginKey;
220 if (emitted.find(key) != emitted.end()) { 239 if (emitted.find(key) != emitted.end()) {
221 continue; 240 continue;
222 } 241 }
223 242
224 PlausibleMetadata pm = inventPlausibleMetadata(key); 243 PlausibleMetadata pm = inventPlausibleMetadata(key);
244 cout << "// !!! Replace " << pm.className << " in the following line with the real\n"
245 "// name of the class implementing the \"" << plugin.basic.identifier << "\" plugin.\n"
246 "//\n";
225 cout << "static PiperAdapter<" 247 cout << "static PiperAdapter<"
226 << pm.className 248 << pm.className
227 << "> // replace with the actual Vamp plugin class name for \"" 249 << ">\n" << pm.adapterName
228 << plugin.basic.identifier << "\" plugin\n" << pm.adapterName
229 << "(\n libname,\n "; 250 << "(\n libname,\n ";
230 251
231 string catString = "{ "; 252 string catString = "{ ";
232 bool first = true; 253 bool first = true;
233 for (auto c: plugin.category) { 254 for (auto c: plugin.category) {