Mercurial > hg > piper-cpp
comparison json/VampJson.h @ 55:38780f15ac8d
Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 19 Sep 2016 13:35:56 +0100 |
parents | e90fd30990eb |
children | 815e94fedc1c |
comparison
equal
deleted
inserted
replaced
54:524a6d5ee813 | 55:38780f15ac8d |
---|---|
802 cr.configuration = toPluginConfiguration(j["configuration"]); | 802 cr.configuration = toPluginConfiguration(j["configuration"]); |
803 return cr; | 803 return cr; |
804 } | 804 } |
805 | 805 |
806 static json11::Json | 806 static json11::Json |
807 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr) { | 807 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr, |
808 | 808 const PluginHandleMapper &pmapper) { |
809 json11::Json::object jo; | 809 |
810 json11::Json::object jo; | |
811 | |
812 jo["pluginHandle"] = pmapper.pluginToHandle(cr.plugin); | |
810 | 813 |
811 json11::Json::array outs; | 814 json11::Json::array outs; |
812 for (auto &d: cr.outputs) { | 815 for (auto &d: cr.outputs) { |
813 outs.push_back(fromOutputDescriptor(d)); | 816 outs.push_back(fromOutputDescriptor(d)); |
814 } | 817 } |
816 | 819 |
817 return json11::Json(jo); | 820 return json11::Json(jo); |
818 } | 821 } |
819 | 822 |
820 static Vamp::HostExt::ConfigurationResponse | 823 static Vamp::HostExt::ConfigurationResponse |
821 toConfigurationResponse(json11::Json j) { | 824 toConfigurationResponse(json11::Json j, |
825 const PluginHandleMapper &pmapper) { | |
822 | 826 |
823 Vamp::HostExt::ConfigurationResponse cr; | 827 Vamp::HostExt::ConfigurationResponse cr; |
824 | 828 |
829 cr.plugin = pmapper.handleToPlugin(j["pluginHandle"].int_value()); | |
830 | |
825 if (!j["outputList"].is_array()) { | 831 if (!j["outputList"].is_array()) { |
826 throw Failure("array expected for output list"); | 832 throw Failure("array expected for output list"); |
827 } | 833 } |
828 | 834 |
829 for (const auto &o: j["outputList"].array_items()) { | 835 for (const auto &o: j["outputList"].array_items()) { |
969 jo["content"] = fromConfigurationRequest(req, pmapper); | 975 jo["content"] = fromConfigurationRequest(req, pmapper); |
970 return json11::Json(jo); | 976 return json11::Json(jo); |
971 } | 977 } |
972 | 978 |
973 static json11::Json | 979 static json11::Json |
974 fromVampResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp) { | 980 fromVampResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp, |
981 const PluginHandleMapper &pmapper) { | |
975 | 982 |
976 json11::Json::object jo; | 983 json11::Json::object jo; |
977 jo["type"] = "configure"; | 984 jo["type"] = "configure"; |
978 jo["success"] = (!resp.outputs.empty()); | 985 jo["success"] = (!resp.outputs.empty()); |
979 jo["errorText"] = ""; | 986 jo["errorText"] = ""; |
980 jo["content"] = fromConfigurationResponse(resp); | 987 jo["content"] = fromConfigurationResponse(resp, pmapper); |
981 return json11::Json(jo); | 988 return json11::Json(jo); |
982 } | 989 } |
983 | 990 |
984 static json11::Json | 991 static json11::Json |
985 fromVampRequest_Process(const Vamp::HostExt::ProcessRequest &req, | 992 fromVampRequest_Process(const Vamp::HostExt::ProcessRequest &req, |
1009 jo["content"] = po; | 1016 jo["content"] = po; |
1010 return json11::Json(jo); | 1017 return json11::Json(jo); |
1011 } | 1018 } |
1012 | 1019 |
1013 static json11::Json | 1020 static json11::Json |
1014 fromVampRequest_Finish(Vamp::Plugin *p, | 1021 fromVampRequest_Finish(const Vamp::HostExt::FinishRequest &req, |
1015 const PluginHandleMapper &pmapper) { | 1022 const PluginHandleMapper &pmapper) { |
1016 | 1023 |
1017 json11::Json::object jo; | 1024 json11::Json::object jo; |
1018 jo["type"] = "finish"; | 1025 jo["type"] = "finish"; |
1019 json11::Json::object fo; | 1026 json11::Json::object fo; |
1020 fo["pluginHandle"] = pmapper.pluginToHandle(p); | 1027 fo["pluginHandle"] = pmapper.pluginToHandle(req.plugin); |
1021 jo["content"] = fo; | 1028 jo["content"] = fo; |
1022 return json11::Json(jo); | 1029 return json11::Json(jo); |
1023 } | 1030 } |
1024 | 1031 |
1025 static json11::Json | 1032 static json11::Json |
1147 checkTypeField(j, "configure"); | 1154 checkTypeField(j, "configure"); |
1148 return toConfigurationRequest(j["content"], pmapper); | 1155 return toConfigurationRequest(j["content"], pmapper); |
1149 } | 1156 } |
1150 | 1157 |
1151 static Vamp::HostExt::ConfigurationResponse | 1158 static Vamp::HostExt::ConfigurationResponse |
1152 toVampResponse_Configure(json11::Json j) { | 1159 toVampResponse_Configure(json11::Json j, const PluginHandleMapper &pmapper) { |
1153 | 1160 |
1154 Vamp::HostExt::ConfigurationResponse resp; | 1161 Vamp::HostExt::ConfigurationResponse resp; |
1155 if (successful(j)) { | 1162 if (successful(j)) { |
1156 resp = toConfigurationResponse(j["content"]); | 1163 resp = toConfigurationResponse(j["content"], pmapper); |
1157 } | 1164 } |
1158 return resp; | 1165 return resp; |
1159 } | 1166 } |
1160 | 1167 |
1161 static Vamp::HostExt::ProcessRequest | 1168 static Vamp::HostExt::ProcessRequest |
1181 serialisation); | 1188 serialisation); |
1182 } | 1189 } |
1183 return resp; | 1190 return resp; |
1184 } | 1191 } |
1185 | 1192 |
1186 static Vamp::Plugin * | 1193 static Vamp::HostExt::FinishRequest |
1187 toVampRequest_Finish(json11::Json j, const PluginHandleMapper &pmapper) { | 1194 toVampRequest_Finish(json11::Json j, const PluginHandleMapper &pmapper) { |
1188 | 1195 |
1189 checkTypeField(j, "finish"); | 1196 checkTypeField(j, "finish"); |
1190 return pmapper.handleToPlugin(j["content"]["pluginHandle"].int_value()); | 1197 Vamp::HostExt::FinishRequest req; |
1198 req.plugin = pmapper.handleToPlugin | |
1199 (j["content"]["pluginHandle"].int_value()); | |
1200 return req; | |
1191 } | 1201 } |
1192 | 1202 |
1193 static Vamp::HostExt::ProcessResponse | 1203 static Vamp::HostExt::ProcessResponse |
1194 toVampResponse_Finish(json11::Json j, | 1204 toVampResponse_Finish(json11::Json j, |
1195 const PluginHandleMapper &pmapper, | 1205 const PluginHandleMapper &pmapper, |