annotate checker.cpp @ 0:a3c75a438ff7

Initial commit with basic program
author Chris Cannam
date Wed, 06 Apr 2016 16:10:11 +0100
parents
children
rev   line source
Chris@0 1
Chris@0 2 /**
Chris@0 3 * Vamp Plugin Load Checker
Chris@0 4 *
Chris@0 5 * This program reads a list of Vamp plugin library paths from stdin,
Chris@0 6 * one per line. For each path read, it attempts to load that library
Chris@0 7 * and retrieve its descriptor function, printing a line to stdout
Chris@0 8 * reporting whether this was successful or not and then flushing
Chris@0 9 * stdout. The output line format is described below. The program
Chris@0 10 * exits with code 0 if all libraries were loaded successfully and
Chris@0 11 * non-zero otherwise.
Chris@0 12 *
Chris@0 13 * Note that library paths must be ready to pass to dlopen() or
Chris@0 14 * equivalent; this usually means they should be absolute paths.
Chris@0 15 *
Chris@0 16 * Output line for successful load of library libname.so:
Chris@0 17 * SUCCESS|/path/to/libname.so|
Chris@0 18 *
Chris@0 19 * Output line for failed load of library libname.so:
Chris@0 20 * FAILURE|/path/to/libname.so|Reason for failure if available
Chris@0 21 *
Chris@0 22 * Note that sometimes plugins will crash completely on load, bringing
Chris@0 23 * down this program with them. If the program exits before all listed
Chris@0 24 * plugins have been checked, this means that the plugin following the
Chris@0 25 * last reported one has crashed. Typically the caller may want to run
Chris@0 26 * it again, omitting that plugin.
Chris@0 27 */
Chris@0 28
Chris@0 29 #ifdef _WIN32
Chris@0 30 #include <windows.h>
Chris@0 31 #include <process.h>
Chris@0 32 #define DLOPEN(a,b) LoadLibrary((a).toStdWString().c_str())
Chris@0 33 #define DLSYM(a,b) GetProcAddress((HINSTANCE)(a),(b))
Chris@0 34 #define DLCLOSE(a) (!FreeLibrary((HINSTANCE)(a)))
Chris@0 35 #define DLERROR() ""
Chris@0 36 #else
Chris@0 37 #include <dlfcn.h>
Chris@0 38 #define DLOPEN(a,b) dlopen((a).c_str(),(b))
Chris@0 39 #define DLSYM(a,b) dlsym((a),(b).c_str())
Chris@0 40 #define DLCLOSE(a) dlclose((a))
Chris@0 41 #define DLERROR() dlerror()
Chris@0 42 #endif
Chris@0 43
Chris@0 44 #include <string>
Chris@0 45 #include <iostream>
Chris@0 46
Chris@0 47 using namespace std;
Chris@0 48
Chris@0 49 string error()
Chris@0 50 {
Chris@0 51 string e = dlerror();
Chris@0 52 if (e == "") return "(unknown error)";
Chris@0 53 else return e;
Chris@0 54 }
Chris@0 55
Chris@0 56 string check(string soname)
Chris@0 57 {
Chris@0 58 void *handle = DLOPEN(soname, RTLD_NOW | RTLD_LOCAL);
Chris@0 59 if (!handle) {
Chris@0 60 return "Unable to open plugin library: " + error();
Chris@0 61 }
Chris@0 62
Chris@0 63 string descriptor = "vampGetPluginDescriptor"; //!!! todo: make an arg
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@0 78 while (getline(cin, soname)) {
Chris@0 79 string report = check(soname);
Chris@0 80 if (report != "") {
Chris@0 81 cout << "FAILURE|" << soname << "|" << report << endl;
Chris@0 82 allGood = false;
Chris@0 83 } else {
Chris@0 84 cout << "SUCCESS|" << soname << "|" << endl;
Chris@0 85 }
Chris@0 86 }
Chris@0 87
Chris@0 88 return allGood ? 0 : 1;
Chris@0 89 }