Chris@0
|
1
|
Chris@0
|
2 /**
|
Chris@1
|
3 * Plugin Load Checker Helper
|
Chris@0
|
4 *
|
Chris@1
|
5 * This program accepts the name of a descriptor function as its only
|
Chris@1
|
6 * command-line argument. It then reads a list of plugin library paths
|
Chris@1
|
7 * from stdin, one per line. For each path read, it attempts to load
|
Chris@1
|
8 * that library and retrieve the named descriptor function, printing a
|
Chris@1
|
9 * line to stdout reporting whether this was successful or not and
|
Chris@1
|
10 * then flushing stdout. The output line format is described
|
Chris@1
|
11 * below. The program exits with code 0 if all libraries were loaded
|
Chris@1
|
12 * successfully and non-zero otherwise.
|
Chris@0
|
13 *
|
Chris@0
|
14 * Note that library paths must be ready to pass to dlopen() or
|
Chris@0
|
15 * equivalent; this usually means they should be absolute paths.
|
Chris@0
|
16 *
|
Chris@0
|
17 * Output line for successful load of library libname.so:
|
Chris@0
|
18 * SUCCESS|/path/to/libname.so|
|
Chris@0
|
19 *
|
Chris@0
|
20 * Output line for failed load of library libname.so:
|
Chris@0
|
21 * FAILURE|/path/to/libname.so|Reason for failure if available
|
Chris@0
|
22 *
|
Chris@0
|
23 * Note that sometimes plugins will crash completely on load, bringing
|
Chris@0
|
24 * down this program with them. If the program exits before all listed
|
Chris@0
|
25 * plugins have been checked, this means that the plugin following the
|
Chris@0
|
26 * last reported one has crashed. Typically the caller may want to run
|
Chris@0
|
27 * it again, omitting that plugin.
|
Chris@0
|
28 */
|
Chris@0
|
29
|
Chris@0
|
30 #ifdef _WIN32
|
Chris@0
|
31 #include <windows.h>
|
Chris@0
|
32 #include <process.h>
|
Chris@0
|
33 #define DLOPEN(a,b) LoadLibrary((a).toStdWString().c_str())
|
Chris@0
|
34 #define DLSYM(a,b) GetProcAddress((HINSTANCE)(a),(b))
|
Chris@0
|
35 #define DLCLOSE(a) (!FreeLibrary((HINSTANCE)(a)))
|
Chris@0
|
36 #define DLERROR() ""
|
Chris@0
|
37 #else
|
Chris@0
|
38 #include <dlfcn.h>
|
Chris@0
|
39 #define DLOPEN(a,b) dlopen((a).c_str(),(b))
|
Chris@0
|
40 #define DLSYM(a,b) dlsym((a),(b).c_str())
|
Chris@0
|
41 #define DLCLOSE(a) dlclose((a))
|
Chris@0
|
42 #define DLERROR() dlerror()
|
Chris@0
|
43 #endif
|
Chris@0
|
44
|
Chris@0
|
45 #include <string>
|
Chris@0
|
46 #include <iostream>
|
Chris@0
|
47
|
Chris@0
|
48 using namespace std;
|
Chris@0
|
49
|
Chris@0
|
50 string error()
|
Chris@0
|
51 {
|
Chris@0
|
52 string e = dlerror();
|
Chris@0
|
53 if (e == "") return "(unknown error)";
|
Chris@0
|
54 else return e;
|
Chris@0
|
55 }
|
Chris@0
|
56
|
Chris@1
|
57 string check(string soname, string descriptor)
|
Chris@0
|
58 {
|
Chris@0
|
59 void *handle = DLOPEN(soname, RTLD_NOW | RTLD_LOCAL);
|
Chris@0
|
60 if (!handle) {
|
Chris@0
|
61 return "Unable to open plugin library: " + error();
|
Chris@0
|
62 }
|
Chris@0
|
63
|
Chris@0
|
64 void *fn = DLSYM(handle, descriptor);
|
Chris@0
|
65 if (!fn) {
|
Chris@0
|
66 return "Failed to find plugin descriptor " + descriptor +
|
Chris@0
|
67 " in library: " + error();
|
Chris@0
|
68 }
|
Chris@0
|
69
|
Chris@0
|
70 return "";
|
Chris@0
|
71 }
|
Chris@0
|
72
|
Chris@0
|
73 int main(int argc, char **argv)
|
Chris@0
|
74 {
|
Chris@0
|
75 bool allGood = true;
|
Chris@0
|
76 string soname;
|
Chris@0
|
77
|
Chris@1
|
78 if (argc != 2) {
|
Chris@1
|
79 cerr << "\nUsage:\n " << argv[0] << " descriptorname\n"
|
Chris@1
|
80 "\nwhere descriptorname is the name of a plugin descriptor function to be sought\n"
|
Chris@1
|
81 "in each library (e.g. vampGetPluginDescriptor for Vamp plugins). The list of\n"
|
Chris@1
|
82 "candidate plugin library filenames is read from stdin.\n" << endl;
|
Chris@1
|
83 return 2;
|
Chris@1
|
84 }
|
Chris@1
|
85
|
Chris@1
|
86 string descriptor = argv[1];
|
Chris@1
|
87
|
Chris@0
|
88 while (getline(cin, soname)) {
|
Chris@1
|
89 string report = check(soname, descriptor);
|
Chris@0
|
90 if (report != "") {
|
Chris@0
|
91 cout << "FAILURE|" << soname << "|" << report << endl;
|
Chris@0
|
92 allGood = false;
|
Chris@0
|
93 } else {
|
Chris@0
|
94 cout << "SUCCESS|" << soname << "|" << endl;
|
Chris@0
|
95 }
|
Chris@0
|
96 }
|
Chris@0
|
97
|
Chris@0
|
98 return allGood ? 0 : 1;
|
Chris@0
|
99 }
|