Mercurial > hg > piper-cpp
comparison json/VampJson.h @ 73:7bfc07576830
Ensure id is passed through properly in convert and in server
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 10 Oct 2016 15:03:47 +0100 |
parents | 16acd7d24b1a |
children | d45cfa25aaad |
comparison
equal
deleted
inserted
replaced
72:16acd7d24b1a | 73:7bfc07576830 |
---|---|
70 * undefined, and any returned object may be incomplete or | 70 * undefined, and any returned object may be incomplete or |
71 * invalid. Callers should check for an empty error string (indicating | 71 * invalid. Callers should check for an empty error string (indicating |
72 * success) before using the returned value. | 72 * success) before using the returned value. |
73 */ | 73 */ |
74 | 74 |
75 //!!! todo: convert pmapper to err style | |
76 | |
77 class VampJson | 75 class VampJson |
78 { | 76 { |
79 public: | 77 public: |
80 /** Serialisation format for arrays of floats (process input and | 78 /** Serialisation format for arrays of floats (process input and |
81 * feature values). Wherever such an array appears, it may | 79 * feature values). Wherever such an array appears, it may |
1046 } | 1044 } |
1047 | 1045 |
1048 public: | 1046 public: |
1049 | 1047 |
1050 static json11::Json | 1048 static json11::Json |
1051 fromRpcRequest_List() { | 1049 fromRpcRequest_List(const json11::Json &id) { |
1052 | 1050 |
1053 json11::Json::object jo; | 1051 json11::Json::object jo; |
1054 markRPC(jo); | 1052 markRPC(jo); |
1055 | 1053 |
1056 jo["method"] = "list"; | 1054 jo["method"] = "list"; |
1055 addId(jo, id); | |
1057 return json11::Json(jo); | 1056 return json11::Json(jo); |
1058 } | 1057 } |
1059 | 1058 |
1060 static json11::Json | 1059 static json11::Json |
1061 fromRpcResponse_List(const Vamp::HostExt::ListResponse &resp, | 1060 fromRpcResponse_List(const Vamp::HostExt::ListResponse &resp, |
1076 addId(jo, id); | 1075 addId(jo, id); |
1077 return json11::Json(jo); | 1076 return json11::Json(jo); |
1078 } | 1077 } |
1079 | 1078 |
1080 static json11::Json | 1079 static json11::Json |
1081 fromRpcRequest_Load(const Vamp::HostExt::LoadRequest &req) { | 1080 fromRpcRequest_Load(const Vamp::HostExt::LoadRequest &req, |
1081 const json11::Json &id) { | |
1082 | 1082 |
1083 json11::Json::object jo; | 1083 json11::Json::object jo; |
1084 markRPC(jo); | 1084 markRPC(jo); |
1085 | 1085 |
1086 jo["method"] = "load"; | 1086 jo["method"] = "load"; |
1087 jo["params"] = fromLoadRequest(req); | 1087 jo["params"] = fromLoadRequest(req); |
1088 addId(jo, id); | |
1088 return json11::Json(jo); | 1089 return json11::Json(jo); |
1089 } | 1090 } |
1090 | 1091 |
1091 static json11::Json | 1092 static json11::Json |
1092 fromRpcResponse_Load(const Vamp::HostExt::LoadResponse &resp, | 1093 fromRpcResponse_Load(const Vamp::HostExt::LoadResponse &resp, |
1108 } | 1109 } |
1109 } | 1110 } |
1110 | 1111 |
1111 static json11::Json | 1112 static json11::Json |
1112 fromRpcRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req, | 1113 fromRpcRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req, |
1113 const PluginHandleMapper &pmapper) { | 1114 const PluginHandleMapper &pmapper, |
1115 const json11::Json &id) { | |
1114 | 1116 |
1115 json11::Json::object jo; | 1117 json11::Json::object jo; |
1116 markRPC(jo); | 1118 markRPC(jo); |
1117 | 1119 |
1118 jo["method"] = "configure"; | 1120 jo["method"] = "configure"; |
1119 jo["params"] = fromConfigurationRequest(req, pmapper); | 1121 jo["params"] = fromConfigurationRequest(req, pmapper); |
1122 addId(jo, id); | |
1120 return json11::Json(jo); | 1123 return json11::Json(jo); |
1121 } | 1124 } |
1122 | 1125 |
1123 static json11::Json | 1126 static json11::Json |
1124 fromRpcResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp, | 1127 fromRpcResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp, |
1141 } | 1144 } |
1142 | 1145 |
1143 static json11::Json | 1146 static json11::Json |
1144 fromRpcRequest_Process(const Vamp::HostExt::ProcessRequest &req, | 1147 fromRpcRequest_Process(const Vamp::HostExt::ProcessRequest &req, |
1145 const PluginHandleMapper &pmapper, | 1148 const PluginHandleMapper &pmapper, |
1146 BufferSerialisation serialisation) { | 1149 BufferSerialisation serialisation, |
1150 const json11::Json &id) { | |
1147 | 1151 |
1148 json11::Json::object jo; | 1152 json11::Json::object jo; |
1149 markRPC(jo); | 1153 markRPC(jo); |
1150 | 1154 |
1151 jo["method"] = "process"; | 1155 jo["method"] = "process"; |
1152 jo["params"] = fromProcessRequest(req, pmapper, serialisation); | 1156 jo["params"] = fromProcessRequest(req, pmapper, serialisation); |
1157 addId(jo, id); | |
1153 return json11::Json(jo); | 1158 return json11::Json(jo); |
1154 } | 1159 } |
1155 | 1160 |
1156 static json11::Json | 1161 static json11::Json |
1157 fromRpcResponse_Process(const Vamp::HostExt::ProcessResponse &resp, | 1162 fromRpcResponse_Process(const Vamp::HostExt::ProcessResponse &resp, |
1173 return json11::Json(jo); | 1178 return json11::Json(jo); |
1174 } | 1179 } |
1175 | 1180 |
1176 static json11::Json | 1181 static json11::Json |
1177 fromRpcRequest_Finish(const Vamp::HostExt::FinishRequest &req, | 1182 fromRpcRequest_Finish(const Vamp::HostExt::FinishRequest &req, |
1178 const PluginHandleMapper &pmapper) { | 1183 const PluginHandleMapper &pmapper, |
1184 const json11::Json &id) { | |
1179 | 1185 |
1180 json11::Json::object jo; | 1186 json11::Json::object jo; |
1181 markRPC(jo); | 1187 markRPC(jo); |
1182 | 1188 |
1183 json11::Json::object fo; | 1189 json11::Json::object fo; |
1184 fo["handle"] = pmapper.pluginToHandle(req.plugin); | 1190 fo["handle"] = pmapper.pluginToHandle(req.plugin); |
1185 | 1191 |
1186 jo["method"] = "finish"; | 1192 jo["method"] = "finish"; |
1187 jo["params"] = fo; | 1193 jo["params"] = fo; |
1194 addId(jo, id); | |
1188 return json11::Json(jo); | 1195 return json11::Json(jo); |
1189 } | 1196 } |
1190 | 1197 |
1191 static json11::Json | 1198 static json11::Json |
1192 fromRpcResponse_Finish(const Vamp::HostExt::ProcessResponse &resp, | 1199 fromRpcResponse_Finish(const Vamp::HostExt::ProcessResponse &resp, |