diff vamp-support/LoaderRequests.h @ 127:5b113c87b6e6

Add and implement the "from" param for list request. The simple-server implementation is not yet correct.
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 02 Nov 2016 14:27:42 +0000
parents 247d8d533a9c
children 3dcf0394971d
line wrap: on
line diff
--- a/vamp-support/LoaderRequests.h	Fri Oct 28 14:31:58 2016 +0100
+++ b/vamp-support/LoaderRequests.h	Wed Nov 02 14:27:42 2016 +0000
@@ -51,12 +51,18 @@
 {
 public:
     ListResponse
-    listPluginData() {
+    listPluginData(ListRequest req) {
 
 	auto loader = Vamp::HostExt::PluginLoader::getInstance();
-	auto keys = loader->listPlugins();
+        
+        std::vector<std::string> keys;
+        if (req.from.empty()) {
+            keys = loader->listPlugins();
+        } else {
+            keys = loader->listPluginsIn(req.from);
+        }
+
 	ListResponse response;
-
 	for (std::string key: keys) {
 	    Vamp::Plugin *p = loader->loadPlugin(key, 44100, 0);
 	    if (!p) continue;