comparison json/VampJson.h @ 35:54676b4e224e

Since JSON is no longer the "fast" protocol format, might as well use the non-b64 encoding by default now
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 25 May 2016 14:18:36 +0100
parents 2d97883d20df
children 183be3bc9d7b
comparison
equal deleted inserted replaced
34:ba58fe5ee2dd 35:54676b4e224e
306 size_t n = decoded.size() / sizeof(float); 306 size_t n = decoded.size() / sizeof(float);
307 return std::vector<float>(buffer, buffer + n); 307 return std::vector<float>(buffer, buffer + n);
308 } 308 }
309 309
310 static json11::Json 310 static json11::Json
311 fromFeature(const Vamp::Plugin::Feature &f) { 311 fromFeature(const Vamp::Plugin::Feature &f, bool asText) {
312 312
313 json11::Json::object jo; 313 json11::Json::object jo;
314 if (f.values.size() > 0) { 314 if (f.values.size() > 0) {
315 jo["b64values"] = fromFloatBuffer(f.values.data(), f.values.size()); 315 if (asText) {
316 jo["values"] = json11::Json::array(f.values.begin(),
317 f.values.end());
318 } else {
319 jo["b64values"] = fromFloatBuffer(f.values.data(),
320 f.values.size());
321 }
316 } 322 }
317 if (f.label != "") { 323 if (f.label != "") {
318 jo["label"] = f.label; 324 jo["label"] = f.label;
319 } 325 }
320 if (f.hasTimestamp) { 326 if (f.hasTimestamp) {
351 f.label = j["label"].string_value(); 357 f.label = j["label"].string_value();
352 return f; 358 return f;
353 } 359 }
354 360
355 static json11::Json 361 static json11::Json
356 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs) { 362 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs, bool asText) {
357 363
358 json11::Json::object jo; 364 json11::Json::object jo;
359 for (const auto &fsi : fs) { 365 for (const auto &fsi : fs) {
360 std::vector<json11::Json> fj; 366 std::vector<json11::Json> fj;
361 for (const Vamp::Plugin::Feature &f: fsi.second) { 367 for (const Vamp::Plugin::Feature &f: fsi.second) {
362 fj.push_back(fromFeature(f)); 368 fj.push_back(fromFeature(f, asText));
363 } 369 }
364 std::stringstream sstr; 370 std::stringstream sstr;
365 sstr << fsi.first; 371 sstr << fsi.first;
366 std::string n = sstr.str(); 372 std::string n = sstr.str();
367 jo[n] = fj; 373 jo[n] = fj;
944 950
945 json11::Json::object jo; 951 json11::Json::object jo;
946 jo["type"] = "process"; 952 jo["type"] = "process";
947 jo["success"] = true; 953 jo["success"] = true;
948 jo["errorText"] = ""; 954 jo["errorText"] = "";
949 jo["content"] = fromFeatureSet(resp.features); 955 jo["content"] = fromFeatureSet(resp.features, true);
950 return json11::Json(jo); 956 return json11::Json(jo);
951 } 957 }
952 958
953 static json11::Json 959 static json11::Json
954 fromVampRequest_Finish(Vamp::Plugin *p, 960 fromVampRequest_Finish(Vamp::Plugin *p,
967 973
968 json11::Json::object jo; 974 json11::Json::object jo;
969 jo["type"] = "finish"; 975 jo["type"] = "finish";
970 jo["success"] = true; 976 jo["success"] = true;
971 jo["errorText"] = ""; 977 jo["errorText"] = "";
972 jo["content"] = fromFeatureSet(resp.features); 978 jo["content"] = fromFeatureSet(resp.features, true);
973 return json11::Json(jo); 979 return json11::Json(jo);
974 } 980 }
975 981
976 private: // go private briefly for a couple of helper functions 982 private: // go private briefly for a couple of helper functions
977 983