Mercurial > hg > vamp-plugin-load-checker
diff checker.cpp @ 4:6f891a9c6434
Make checker with hard-coded knowledge about various plugin types and paths; fix some process management problems
author | Chris Cannam |
---|---|
date | Wed, 13 Apr 2016 12:00:07 +0100 |
parents | 3bae396cf8e0 |
children | 74064d6f5e07 |
line wrap: on
line diff
--- a/checker.cpp Wed Apr 13 09:12:04 2016 +0100 +++ b/checker.cpp Wed Apr 13 12:00:07 2016 +0100 @@ -1,12 +1,23 @@ -#include "plugincandidates.h" +#include "knownplugins.h" -int main(int argc, char **argv) +#include <iostream> + +using namespace std; + +int main(int, char **) { - //!!! just a test - PluginCandidates candidates("./helper"); - candidates.scan("vamp", - { "/usr/lib/vamp", "/usr/local/lib/vamp" }, - "vampGetPluginDescriptor"); + KnownPlugins kp; + + for (auto t: kp.getKnownPluginTypes()) { + cout << "successful libraries for plugin type \"" + << kp.getTagFor(t) << "\":" << endl; + for (auto lib: kp.getCandidateLibrariesFor(t)) { + cout << lib << endl; + } + } + + cout << "Failure message (if any):" << endl; + cout << kp.getFailureReport() << endl; }