comparison json/VampJson.h @ 47:fa2edfabf829

Backed out changeset cc333241cc8c
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 12 Sep 2016 15:17:48 +0100
parents 6fe9f5010505
children f3f7561233d6
comparison
equal deleted inserted replaced
46:6fe9f5010505 47:fa2edfabf829
46 #include <vamp-hostsdk/Plugin.h> 46 #include <vamp-hostsdk/Plugin.h>
47 #include <vamp-hostsdk/PluginLoader.h> 47 #include <vamp-hostsdk/PluginLoader.h>
48 48
49 #include "bits/PluginHandleMapper.h" 49 #include "bits/PluginHandleMapper.h"
50 #include "bits/RequestResponseType.h" 50 #include "bits/RequestResponseType.h"
51
52 #include <chrono>
53 51
54 namespace vampipe { 52 namespace vampipe {
55 53
56 /** 54 /**
57 * Convert the structures laid out in the Vamp SDK classes into JSON 55 * Convert the structures laid out in the Vamp SDK classes into JSON
317 return pd; 315 return pd;
318 } 316 }
319 317
320 static std::string 318 static std::string
321 fromFloatBuffer(const float *buffer, size_t nfloats) { 319 fromFloatBuffer(const float *buffer, size_t nfloats) {
322 static std::chrono::nanoseconds total;
323 auto t0 = std::chrono::high_resolution_clock::now();
324 // must use char pointers, otherwise the converter will only 320 // must use char pointers, otherwise the converter will only
325 // encode every 4th byte (as it will count up in float* steps) 321 // encode every 4th byte (as it will count up in float* steps)
326 const char *start = reinterpret_cast<const char *>(buffer); 322 const char *start = reinterpret_cast<const char *>(buffer);
327 const char *end = reinterpret_cast<const char *>(buffer + nfloats); 323 const char *end = reinterpret_cast<const char *>(buffer + nfloats);
328 std::string encoded; 324 std::string encoded;
329 encoded.reserve(16 * nfloats / 3);
330 bn::encode_b64(start, end, back_inserter(encoded)); 325 bn::encode_b64(start, end, back_inserter(encoded));
331 auto t1 = std::chrono::high_resolution_clock::now();
332 total += std::chrono::duration_cast<std::chrono::nanoseconds>(t1 - t0);
333 // std::cout << "encode: " << total.count()/1000000 << std::endl;
334 return encoded; 326 return encoded;
335 } 327 }
336 328
337 static std::vector<float> 329 static std::vector<float>
338 toFloatBuffer(std::string encoded) { 330 toFloatBuffer(std::string encoded) {
339 static std::chrono::nanoseconds total;
340 auto t0 = std::chrono::high_resolution_clock::now();
341 std::string decoded; 331 std::string decoded;
342 decoded.reserve(3 * encoded.size() / 4);
343 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded)); 332 bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded));
344 const float *buffer = reinterpret_cast<const float *>(decoded.c_str()); 333 const float *buffer = reinterpret_cast<const float *>(decoded.c_str());
345 size_t n = decoded.size() / sizeof(float); 334 size_t n = decoded.size() / sizeof(float);
346 std::vector<float> result(buffer, buffer + n); 335 return std::vector<float>(buffer, buffer + n);
347 auto t1 = std::chrono::high_resolution_clock::now();
348 total += std::chrono::duration_cast<std::chrono::nanoseconds>(t1 - t0);
349 // std::cout << "decode: " << total.count()/1000000 << std::endl;
350 return result;
351 } 336 }
352 337
353 static json11::Json 338 static json11::Json
354 fromFeature(const Vamp::Plugin::Feature &f, 339 fromFeature(const Vamp::Plugin::Feature &f,
355 BufferSerialisation serialisation) { 340 BufferSerialisation serialisation) {
881 static Vamp::HostExt::ProcessRequest 866 static Vamp::HostExt::ProcessRequest
882 toProcessRequest(json11::Json j, 867 toProcessRequest(json11::Json j,
883 const PluginHandleMapper &mapper, 868 const PluginHandleMapper &mapper,
884 BufferSerialisation &serialisation) { 869 BufferSerialisation &serialisation) {
885 870
886 static std::chrono::nanoseconds total;
887 auto t0 = std::chrono::high_resolution_clock::now();
888
889 std::string err; 871 std::string err;
890 872
891 if (!j.has_shape({ 873 if (!j.has_shape({
892 { "pluginHandle", json11::Json::NUMBER }, 874 { "pluginHandle", json11::Json::NUMBER },
893 { "processInput", json11::Json::OBJECT } }, err)) { 875 { "processInput", json11::Json::OBJECT } }, err)) {
925 } else { 907 } else {
926 throw Failure("expected values or b64values in inputBuffers object"); 908 throw Failure("expected values or b64values in inputBuffers object");
927 } 909 }
928 } 910 }
929 911
930 auto t1 = std::chrono::high_resolution_clock::now();
931 total += std::chrono::duration_cast<std::chrono::nanoseconds>(t1 - t0);
932 // std::cout << "parse: " << total.count()/1000000 << std::endl;
933
934 return r; 912 return r;
935 } 913 }
936 914
937 static json11::Json 915 static json11::Json
938 fromVampRequest_List() { 916 fromVampRequest_List() {