# HG changeset patch # User Chris Cannam # Date 1463751448 -3600 # Node ID dff96610ac058fcb9bb6abfe72fc704d28999238 # Parent 7ca64f74add24ad77eb6c9019731b7f0cec05075 A couple more conversions diff -r 7ca64f74add2 -r dff96610ac05 utilities/json-to-capnp.cpp --- a/utilities/json-to-capnp.cpp Fri May 20 11:08:53 2016 +0100 +++ b/utilities/json-to-capnp.cpp Fri May 20 14:37:28 2016 +0100 @@ -47,7 +47,7 @@ virtual Vamp::Plugin *handleToPlugin(int32_t h) { m_handle = h; - m_plugin = reinterpret_cast(1); + m_plugin = reinterpret_cast(h); return m_plugin; } @@ -69,14 +69,15 @@ throw VampJson::Failure("can't convert Basic block on its own"); } else if (type == "configurationrequest") { - auto req = message.initRoot(); PreservingPluginHandleMapper mapper; VampnProto::buildConfigurationRequest (req, VampJson::toConfigurationRequest(payload, mapper), mapper); } else if (type == "configurationresponse") { - throw VampJson::Failure("not implemented yet"); ///!!! + auto resp = message.initRoot(); + VampnProto::buildConfigurationResponse + (resp, VampJson::toConfigurationResponse(payload)); } else if (type == "feature") { auto f = message.initRoot(); @@ -94,10 +95,10 @@ (req, VampJson::toLoadRequest(payload)); } else if (type == "loadresponse") { - //!!! response types & configure call for plugin handles, but - //!!! we don't have any context in which a plugin handle can - //!!! be persistent here - throw VampJson::Failure("not implemented yet"); ///!!! + auto resp = message.initRoot(); + PreservingPluginHandleMapper mapper; + VampnProto::buildLoadResponse + (resp, VampJson::toLoadResponse(payload, mapper), mapper); } else if (type == "outputdescriptor") { auto od = message.initRoot();