Chris@5
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@5
|
2 /*
|
Chris@5
|
3 Copyright (c) 2016 Queen Mary, University of London
|
Chris@5
|
4
|
Chris@5
|
5 Permission is hereby granted, free of charge, to any person
|
Chris@5
|
6 obtaining a copy of this software and associated documentation
|
Chris@5
|
7 files (the "Software"), to deal in the Software without
|
Chris@5
|
8 restriction, including without limitation the rights to use, copy,
|
Chris@5
|
9 modify, merge, publish, distribute, sublicense, and/or sell copies
|
Chris@5
|
10 of the Software, and to permit persons to whom the Software is
|
Chris@5
|
11 furnished to do so, subject to the following conditions:
|
Chris@5
|
12
|
Chris@5
|
13 The above copyright notice and this permission notice shall be
|
Chris@5
|
14 included in all copies or substantial portions of the Software.
|
Chris@5
|
15
|
Chris@5
|
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
Chris@5
|
17 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
Chris@5
|
18 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
Chris@5
|
19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
Chris@5
|
20 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
Chris@5
|
21 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
Chris@5
|
22 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
Chris@5
|
23
|
Chris@5
|
24 Except as contained in this notice, the names of the Centre for
|
Chris@5
|
25 Digital Music and Queen Mary, University of London shall not be
|
Chris@5
|
26 used in advertising or otherwise to promote the sale, use or other
|
Chris@5
|
27 dealings in this Software without prior written authorization.
|
Chris@5
|
28 */
|
Chris@3
|
29
|
Chris@4
|
30 #include "knownplugins.h"
|
Chris@3
|
31
|
Chris@4
|
32 #include <iostream>
|
Chris@4
|
33
|
Chris@4
|
34 using namespace std;
|
Chris@4
|
35
|
Chris@6
|
36 struct LogCallback : PluginCandidates::LogCallback {
|
Chris@6
|
37 virtual void log(string message) {
|
Chris@6
|
38 cerr << "checker: log: " << message;
|
Chris@6
|
39 }
|
Chris@6
|
40 };
|
Chris@6
|
41
|
Chris@4
|
42 int main(int, char **)
|
Chris@3
|
43 {
|
Chris@6
|
44 LogCallback cb;
|
Chris@6
|
45 KnownPlugins kp("./helper", &cb); //!!!
|
Chris@6
|
46
|
Chris@4
|
47 for (auto t: kp.getKnownPluginTypes()) {
|
Chris@4
|
48 cout << "successful libraries for plugin type \""
|
Chris@4
|
49 << kp.getTagFor(t) << "\":" << endl;
|
Chris@4
|
50 for (auto lib: kp.getCandidateLibrariesFor(t)) {
|
Chris@4
|
51 cout << lib << endl;
|
Chris@4
|
52 }
|
Chris@4
|
53 }
|
Chris@4
|
54
|
Chris@4
|
55 cout << "Failure message (if any):" << endl;
|
Chris@4
|
56 cout << kp.getFailureReport() << endl;
|
Chris@3
|
57 }
|
Chris@3
|
58
|