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