annotate json/json-test.cpp @ 5:6e8607ebad03

Promote the more successful experiments (todo: get them to build again)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 13 May 2016 13:48:59 +0100
parents
children
rev   line source
c@5 1
c@5 2 #include "VampJson.h"
c@5 3
c@5 4 using std::cerr;
c@5 5 using std::endl;
c@5 6
c@5 7 int main(int, char **)
c@5 8 {
c@5 9 Vamp::PluginBase::ParameterDescriptor d;
c@5 10 d.identifier = "threshold";
c@5 11 d.name = "Energy rise threshold";
c@5 12 d.description = "Energy rise within a frequency bin necessary to count toward broadband total";
c@5 13 d.unit = "dB";
c@5 14 d.minValue = 0;
c@5 15 d.maxValue = 20.5;
c@5 16 d.defaultValue = 3;
c@5 17 d.isQuantized = false;
c@5 18 cerr << VampJson::fromParameterDescriptor(d).dump() << endl;
c@5 19
c@5 20 Vamp::Plugin::OutputDescriptor od;
c@5 21 od.identifier = "powerspectrum";
c@5 22 od.name = "Power Spectrum";
c@5 23 od.description = "Power values of the frequency spectrum bins calculated from the input signal";
c@5 24 od.unit = "";
c@5 25 od.hasFixedBinCount = true;
c@5 26 od.binCount = 513;
c@5 27 od.hasKnownExtents = false;
c@5 28 od.isQuantized = false;
c@5 29 od.sampleType = Vamp::Plugin::OutputDescriptor::OneSamplePerStep;
c@5 30 cerr << VampJson::fromOutputDescriptor(od).dump() << endl;
c@5 31
c@5 32 cerr << VampJson::fromFeature(Vamp::Plugin::Feature()).dump() << endl;
c@5 33
c@5 34 Vamp::Plugin::Feature f;
c@5 35 f.hasTimestamp = true;
c@5 36 f.timestamp = Vamp::RealTime::fromSeconds(3.14159);
c@5 37 f.hasDuration = false;
c@5 38 f.values = { 1, 2, 3.000001, 4, 5, 6, 6.5, 7 };
c@5 39 f.label = "A feature";
c@5 40 cerr << VampJson::fromFeature(f).dump() << endl;
c@5 41
c@5 42 Vamp::Plugin::FeatureSet fs;
c@5 43 fs[0].push_back(f);
c@5 44 std::string fs_str = VampJson::fromFeatureSet(fs).dump();
c@5 45 cerr << fs_str << endl;
c@5 46
c@5 47 std::string err;
c@5 48
c@5 49 try {
c@5 50 Vamp::Plugin::ParameterDescriptor d1 =
c@5 51 VampJson::toParameterDescriptor
c@5 52 (json11::Json::parse
c@5 53 (VampJson::fromParameterDescriptor(d).dump(), err));
c@5 54 if (err != "") {
c@5 55 cerr << "error returned from parser: " << err << endl;
c@5 56 }
c@5 57 cerr << "\nsuccessfully converted parameter descriptor back from json: serialising it again, we get:" << endl;
c@5 58 cerr << VampJson::fromParameterDescriptor(d1).dump() << endl;
c@5 59 } catch (std::runtime_error &e) {
c@5 60 cerr << "caught exception: " << e.what() << endl;
c@5 61 }
c@5 62
c@5 63 try {
c@5 64 Vamp::Plugin::OutputDescriptor od1 =
c@5 65 VampJson::toOutputDescriptor
c@5 66 (json11::Json::parse
c@5 67 (VampJson::fromOutputDescriptor(od).dump(), err));
c@5 68 if (err != "") {
c@5 69 cerr << "error returned from parser: " << err << endl;
c@5 70 }
c@5 71 cerr << "\nsuccessfully converted output descriptor back from json: serialising it again, we get:" << endl;
c@5 72 cerr << VampJson::fromOutputDescriptor(od1).dump() << endl;
c@5 73 } catch (std::runtime_error &e) {
c@5 74 cerr << "caught exception: " << e.what() << endl;
c@5 75 }
c@5 76
c@5 77 try {
c@5 78 Vamp::Plugin::FeatureSet fs1 =
c@5 79 VampJson::toFeatureSet
c@5 80 (json11::Json::parse(fs_str, err));
c@5 81 if (err != "") {
c@5 82 cerr << "error returned from parser: " << err << endl;
c@5 83 }
c@5 84 cerr << "\nsuccessfully converted feature set back from json: serialising it again, we get:" << endl;
c@5 85 cerr << VampJson::fromFeatureSet(fs1).dump() << endl;
c@5 86 } catch (std::runtime_error &e) {
c@5 87 cerr << "caught exception: " << e.what() << endl;
c@5 88 }
c@5 89
c@5 90 return 0;
c@5 91 }
c@5 92
c@5 93
c@5 94