annotate vamp-client/client.cpp @ 95:b6ac26b72b59

Implement list, use request-response classes in loader
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 14:31:10 +0100
parents a660dca988f8
children 215c9fb6b7a4
rev   line source
c@78 1
c@94 2 #include "ProcessQtTransport.h"
c@94 3 #include "CapnpClient.h"
c@83 4
c@83 5 #include <stdexcept>
c@83 6
c@83 7 using std::cerr;
c@83 8 using std::endl;
c@83 9
c@84 10 int main(int, char **)
c@84 11 {
c@94 12 piper::vampclient::ProcessQtTransport transport("../bin/piper-vamp-server");
c@94 13 piper::vampclient::CapnpClient client(&transport);
c@94 14
c@95 15 Vamp::HostExt::ListResponse lr = client.listPluginData();
c@95 16 cerr << "Plugins available:" << endl;
c@95 17 int i = 1;
c@95 18 for (const auto &p: lr.available) {
c@95 19 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl;
c@95 20 }
c@95 21
c@95 22 Vamp::HostExt::LoadRequest req;
c@95 23 req.pluginKey = "vamp-example-plugins:zerocrossing";
c@95 24 req.inputSampleRate = 16;
c@95 25 Vamp::HostExt::LoadResponse resp = client.loadPlugin(req);
c@95 26 Vamp::Plugin *plugin = resp.plugin;
c@95 27
c@84 28 if (!plugin->initialise(1, 4, 4)) {
c@84 29 cerr << "initialisation failed" << endl;
c@84 30 } else {
c@84 31 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
c@84 32 float *bd = buf.data();
c@84 33 Vamp::Plugin::FeatureSet features = plugin->process
c@84 34 (&bd, Vamp::RealTime::zeroTime);
c@84 35 cerr << "results for output 0:" << endl;
c@84 36 auto fl(features[0]);
c@84 37 for (const auto &f: fl) {
c@84 38 cerr << f.values[0] << endl;
c@84 39 }
c@84 40 }
c@88 41
c@87 42 (void)plugin->getRemainingFeatures();
c@89 43
c@89 44 cerr << "calling reset..." << endl;
c@89 45 plugin->reset();
c@89 46 cerr << "...round 2!" << endl;
c@89 47
c@89 48 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
c@89 49 float *bd = buf.data();
c@89 50 Vamp::Plugin::FeatureSet features = plugin->process
c@89 51 (&bd, Vamp::RealTime::zeroTime);
c@89 52 cerr << "results for output 0:" << endl;
c@89 53 auto fl(features[0]);
c@89 54 for (const auto &f: fl) {
c@89 55 cerr << f.values[0] << endl;
c@89 56 }
c@89 57
c@89 58 (void)plugin->getRemainingFeatures();
c@89 59
c@88 60 delete plugin;
c@87 61 //!!! -- and also implement reset(), which will need to reconstruct internally
c@84 62 }
c@84 63