comparison utilities/json-cli.cpp @ 12:828930f9a65d

Configuration request/response structs
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 17 May 2016 13:52:51 +0100
parents aa61cb5c5754
children 913fc1d3710a
comparison
equal deleted inserted replaced
11:aa61cb5c5754 12:828930f9a65d
71 } 71 }
72 72
73 return response; 73 return response;
74 } 74 }
75 75
76 Vamp::Plugin::OutputList 76 Vamp::HostExt::ConfigurationResponse
77 configurePlugin(Vamp::Plugin *plugin, json11::Json j) { 77 configurePlugin(Vamp::Plugin *plugin, json11::Json j) {
78 78
79 auto config = VampJson::toPluginConfiguration(j); 79 auto config = VampJson::toPluginConfiguration(j);
80 auto loader = Vamp::HostExt::PluginLoader::getInstance(); 80 auto loader = Vamp::HostExt::PluginLoader::getInstance();
81 auto outputs = loader->configurePlugin(plugin, config); 81 auto outputs = loader->configurePlugin(plugin, config);
82 82
83 if (outputs.empty()) { 83 if (outputs.empty()) {
84 throw VampJson::Failure("plugin initialisation failed (invalid channelCount, stepSize, blockSize?)"); 84 throw VampJson::Failure("plugin initialisation failed (invalid channelCount, stepSize, blockSize?)");
85 } 85 }
86 86
87 return outputs; 87 Vamp::HostExt::ConfigurationResponse response;
88 response.outputs = outputs;
89 return response;
88 } 90 }
89 91
90 Json 92 Json
91 handle_list(Json content) 93 handle_list(Json content)
92 { 94 {
137 139
138 Plugin *plugin = mapper.handleToPlugin(handle); 140 Plugin *plugin = mapper.handleToPlugin(handle);
139 141
140 Json config = j["configuration"]; 142 Json config = j["configuration"];
141 143
142 configurePlugin(plugin, config); 144 auto response = configurePlugin(plugin, config);
143 145
144 mapper.markInitialised(handle); 146 mapper.markInitialised(handle);
145 147
146 cerr << "Configured and initialised plugin " << handle << endl; 148 cerr << "Configured and initialised plugin " << handle << endl;
147 149
148 //!!! to VampJson: 150 return VampJson::fromConfigurationResponse(response);
149 Json::object jout;
150 Json::array outs;
151 Vamp::Plugin::OutputList vouts = plugin->getOutputDescriptors();
152 for (auto &o: vouts) {
153 outs.push_back(VampJson::fromOutputDescriptor(o));
154 }
155 jout["outputList"] = outs;
156 return Json(jout);
157 } 151 }
158 152
159 Json 153 Json
160 handle(string input) 154 handle(string input)
161 { 155 {