diff json/VampJson.h @ 13:1d13354ddc44

Build & read config request/response etc
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 17 May 2016 16:18:24 +0100
parents 828930f9a65d
children 913fc1d3710a
line wrap: on
line diff
--- a/json/VampJson.h	Tue May 17 13:52:51 2016 +0100
+++ b/json/VampJson.h	Tue May 17 16:18:24 2016 +0100
@@ -701,21 +701,52 @@
     }
 
     static json11::Json
+    fromConfigurationRequest(const Vamp::HostExt::ConfigurationRequest &cr,
+                             PluginHandleMapper &mapper) {
+
+        json11::Json::object jo;
+
+        jo["pluginHandle"] = mapper.pluginToHandle(cr.plugin);
+        jo["configuration"] = fromPluginConfiguration(cr.configuration);
+        
+        return json11::Json(jo);
+    }
+
+    static Vamp::HostExt::ConfigurationRequest
+    toConfigurationRequest(json11::Json j,
+                           PluginHandleMapper &mapper) {
+
+        std::string err;
+
+        if (!j.has_shape({
+                    { "pluginHandle", json11::Json::NUMBER },
+                    { "configuration", json11::Json::OBJECT } }, err)) {
+            throw Failure("malformed configuration request: " + err);
+        }
+
+        Vamp::HostExt::ConfigurationRequest cr;
+        cr.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value());
+        cr.configuration = toPluginConfiguration(j["configuration"]);
+        return cr;
+    }
+
+    static json11::Json
     fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr) {
 
-        json11::Json::object jout;
+        json11::Json::object jo;
         
         json11::Json::array outs;
         for (auto &d: cr.outputs) {
             outs.push_back(fromOutputDescriptor(d));
         }
-        jout["outputList"] = outs;
+        jo["outputList"] = outs;
         
-        return json11::Json(jout);
+        return json11::Json(jo);
     }
 
-    static Vamp::HostExt::ConfigurationResponse toConfigurationResponse(json11::Json j) {
-
+    static Vamp::HostExt::ConfigurationResponse
+    toConfigurationResponse(json11::Json j) {
+        
         Vamp::HostExt::ConfigurationResponse cr;
 
         if (!j["outputList"].is_array()) {