comparison utilities/json-cli.cpp @ 58:c38e12d4bbdd

Merge from branch outputid-string-in-featureset
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 19 Sep 2016 14:48:43 +0100
parents 815e94fedc1c
children 85ec33975434
comparison
equal deleted inserted replaced
48:ce6cb3308bd7 58:c38e12d4bbdd
1
2 //!!! This program was an early test -- it should still compile but
3 //!!! it's incomplete. Remove it and use the server program instead.
1 4
2 #include "VampJson.h" 5 #include "VampJson.h"
3 #include "bits/CountingPluginHandleMapper.h" 6 #include "bits/CountingPluginHandleMapper.h"
4 7
5 #include <iostream> 8 #include <iostream>
53 if (content != Json()) { 56 if (content != Json()) {
54 throw VampJson::Failure("no content expected for list request"); 57 throw VampJson::Failure("no content expected for list request");
55 } 58 }
56 59
57 auto loader = PluginLoader::getInstance(); 60 auto loader = PluginLoader::getInstance();
58 auto pluginData = loader->listPluginData(); 61 auto resp = loader->listPluginData();
59 62
60 Json::array j; 63 Json::array j;
61 for (const auto &pd: pluginData) { 64 for (const auto &pd: resp.pluginData) {
62 j.push_back(VampJson::fromPluginStaticData(pd)); 65 j.push_back(VampJson::fromPluginStaticData(pd));
63 } 66 }
64 return Json(j); 67 return Json(j);
65 } 68 }
66 69
103 106
104 mapper.markConfigured(handle, 0, 0); //!!! 107 mapper.markConfigured(handle, 0, 0); //!!!
105 108
106 cerr << "Configured and initialised plugin " << handle << endl; 109 cerr << "Configured and initialised plugin " << handle << endl;
107 110
108 return VampJson::fromConfigurationResponse(response); 111 return VampJson::fromConfigurationResponse(response, mapper);
109 } 112 }
110 113
111 Json 114 Json
112 handle(string input) 115 handle(string input)
113 { 116 {