Mercurial > hg > vamp-plugin-load-checker
comparison README @ 28:7a20698b4c29
Add checker README; rename plugin-checker-helper binary (back) to vamp-plugin-load-checker -- I decided it was more useful to have a distinctive name for the installed binary than it was important to show that it was plugin-agnostic
author | Chris Cannam |
---|---|
date | Mon, 09 Jan 2017 10:14:59 +0000 |
parents | |
children | e791c1426131 |
comparison
equal
deleted
inserted
replaced
27:62a0cda8b099 | 28:7a20698b4c29 |
---|---|
1 | |
2 [Vamp] Plugin Load Checker | |
3 ========================== | |
4 | |
5 This is a very small command-line program (C++98, no particular | |
6 dependencies) for testing plugin libraries to see if they are | |
7 loadable. You run the program, pass it a list of library paths to | |
8 stdin, it tries to load them, and it reports to stdout whether each | |
9 load succeeded or not. | |
10 | |
11 The program was written for use with Vamp audio analysis plugins, but | |
12 it also works with other plugin formats. It has some hardcoded | |
13 knowledge of Vamp, LADSPA, and DSSI plugins but it can be used with | |
14 any plugins that involve loading DLLs and looking up descriptor | |
15 functions from them. | |
16 | |
17 It comes with a library (C++11, Qt) that searches for candidate plugin | |
18 files for some known formats in standard locations and runs the | |
19 checker program as a separate process to check whether they can be | |
20 loaded. This can be used to scan plugins and blacklist any that might | |
21 crash the host on load. | |
22 | |
23 | |
24 About the command-line program | |
25 ------------------------------ | |
26 | |
27 The program (vamp-plugin-load-checker) accepts the name of a | |
28 descriptor symbol as its only command-line argument. It then reads a | |
29 list of plugin library paths from stdin, one per line. For each path | |
30 read, it attempts to load that library and retrieve the named | |
31 descriptor symbol, printing a line to stdout reporting whether this | |
32 was successful or not and then flushing stdout. The output line format | |
33 is described below. The program exits with code 0 if all libraries | |
34 were loaded successfully and non-zero otherwise. | |
35 | |
36 Note that library paths must be ready to pass to dlopen() or | |
37 equivalent; this usually means they should be absolute paths. | |
38 | |
39 Output line for successful load of library libname.so: | |
40 SUCCESS|/path/to/libname.so| | |
41 | |
42 Output line for failed load of library libname.so: | |
43 FAILURE|/path/to/libname.so|Reason for failure if available | |
44 | |
45 Although this program was written for use with Vamp audio analysis | |
46 plugins, it also works with other plugin formats. The program has some | |
47 hardcoded knowledge of Vamp, LADSPA, and DSSI plugins, but it can be | |
48 used with any plugins that involve loading DLLs and looking up | |
49 descriptor functions from them. | |
50 | |
51 Sometimes plugins will crash completely on load, bringing down this | |
52 program with them. If the program exits before all listed plugins have | |
53 been checked, this means that the plugin following the last reported | |
54 one has crashed. Typically the caller may want to run it again, | |
55 omitting that plugin. | |
56 | |
57 This program (src/helper.cpp) is written in C++98 and has no | |
58 particular dependencies apart from the dynamic loader library. | |
59 | |
60 | |
61 About the library | |
62 ----------------- | |
63 | |
64 Two C++ classes are provided for use by a host application: | |
65 PluginCandidates and KnownPlugins. | |
66 | |
67 PluginCandidates knows how to invoke the checker program (if you | |
68 provide the path to it) and will do so for a set of plugin paths of | |
69 your request, returning success or failure reports to you. | |
70 | |
71 KnownPlugins knows about a limited set of plugin formats (currently | |
72 Vamp, LADSPA, DSSI) and will use PluginCandidates to test all plugins | |
73 found in those formats' standard installation directories. | |
74 | |
75 These are C++11 classes using the Qt toolkit. | |
76 | |
77 | |
78 How to compile | |
79 -------------- | |
80 | |
81 A Qt project (checker.pro) is provided, which compiles the program and | |
82 library: | |
83 | |
84 $ qmake checker.pro | |
85 $ make | |
86 | |
87 To compile only the command-line program, you should be able to use a | |
88 single C++ compiler invocation like: | |
89 | |
90 $ c++ -o vamp-plugin-load-checker src/helper.cpp -ldl | |
91 | |
92 I expect that most often the program and library will be compiled as | |
93 part of a larger host application. (They were written for use with | |
94 Sonic Visualiser.) | |
95 | |
96 | |
97 Copyright and licence | |
98 --------------------- | |
99 | |
100 Written by Chris Cannam at the Centre for Digital Music, Queen Mary | |
101 University of London. | |
102 | |
103 Copyright (c) 2016-2017 Queen Mary, University of London. | |
104 | |
105 Permission is hereby granted, free of charge, to any person | |
106 obtaining a copy of this software and associated documentation | |
107 files (the "Software"), to deal in the Software without | |
108 restriction, including without limitation the rights to use, copy, | |
109 modify, merge, publish, distribute, sublicense, and/or sell copies | |
110 of the Software, and to permit persons to whom the Software is | |
111 furnished to do so, subject to the following conditions: | |
112 | |
113 The above copyright notice and this permission notice shall be | |
114 included in all copies or substantial portions of the Software. | |
115 | |
116 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
117 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
118 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
119 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | |
120 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | |
121 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | |
122 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
123 | |
124 Except as contained in this notice, the names of the Centre for | |
125 Digital Music and Queen Mary, University of London shall not be | |
126 used in advertising or otherwise to promote the sale, use or other | |
127 dealings in this Software without prior written authorization. | |
128 |