Mercurial > hg > piper-cpp
comparison vamp-client/qt/test.cpp @ 150:bf8e3e7dd7de
Move some things around, and add overall test script
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 17:45:54 +0000 |
parents | |
children | 61034472c304 |
comparison
equal
deleted
inserted
replaced
149:70bf40743d6a | 150:bf8e3e7dd7de |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
2 /* | |
3 Piper C++ | |
4 | |
5 An API for audio analysis and feature extraction plugins. | |
6 | |
7 Centre for Digital Music, Queen Mary, University of London. | |
8 Copyright 2006-2016 Chris Cannam and QMUL. | |
9 | |
10 Permission is hereby granted, free of charge, to any person | |
11 obtaining a copy of this software and associated documentation | |
12 files (the "Software"), to deal in the Software without | |
13 restriction, including without limitation the rights to use, copy, | |
14 modify, merge, publish, distribute, sublicense, and/or sell copies | |
15 of the Software, and to permit persons to whom the Software is | |
16 furnished to do so, subject to the following conditions: | |
17 | |
18 The above copyright notice and this permission notice shall be | |
19 included in all copies or substantial portions of the Software. | |
20 | |
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR | |
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | |
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | |
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
28 | |
29 Except as contained in this notice, the names of the Centre for | |
30 Digital Music; Queen Mary, University of London; and Chris Cannam | |
31 shall not be used in advertising or otherwise to promote the sale, | |
32 use or other dealings in this Software without prior written | |
33 authorization. | |
34 */ | |
35 | |
36 #include "ProcessQtTransport.h" | |
37 #include "CapnpRRClient.h" | |
38 #include "AutoPlugin.h" | |
39 | |
40 #include <stdexcept> | |
41 | |
42 using std::cerr; | |
43 using std::endl; | |
44 using std::exception; | |
45 using std::vector; | |
46 | |
47 int main(int argc, char **argv) | |
48 { | |
49 if (argc != 2) { | |
50 cerr << "Usage: " << argv[0] << " <server-executable-path>" << endl; | |
51 return 2; | |
52 } | |
53 | |
54 try { | |
55 piper_vamp::client::ProcessQtTransport transport(argv[1], "capnp", nullptr); | |
56 if (!transport.isOK()) { | |
57 cerr << "ERROR: Transport failed to start" << endl; | |
58 return 1; | |
59 } | |
60 | |
61 piper_vamp::client::CapnpRRClient client(&transport, nullptr); | |
62 | |
63 piper_vamp::ListResponse lr = client.listPluginData({}); | |
64 cerr << "Plugins available:" << endl; | |
65 int i = 1; | |
66 for (const auto &p: lr.available) { | |
67 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl; | |
68 } | |
69 | |
70 piper_vamp::LoadRequest req; | |
71 req.pluginKey = "vamp-example-plugins:zerocrossing"; | |
72 req.inputSampleRate = 16; | |
73 piper_vamp::LoadResponse resp = client.loadPlugin(req); | |
74 Vamp::Plugin *plugin = resp.plugin; | |
75 | |
76 if (!plugin->initialise(1, 4, 4)) { | |
77 cerr << "initialisation failed" << endl; | |
78 } else { | |
79 vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; | |
80 float *bd = buf.data(); | |
81 Vamp::Plugin::FeatureSet features = plugin->process | |
82 (&bd, Vamp::RealTime::zeroTime); | |
83 cerr << "results for output 0:" << endl; | |
84 auto fl(features[0]); | |
85 for (const auto &f: fl) { | |
86 cerr << f.values[0] << endl; | |
87 } | |
88 } | |
89 | |
90 (void)plugin->getRemainingFeatures(); | |
91 | |
92 cerr << "calling reset..." << endl; | |
93 plugin->reset(); | |
94 cerr << "...round 2!" << endl; | |
95 | |
96 vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; | |
97 float *bd = buf.data(); | |
98 Vamp::Plugin::FeatureSet features = plugin->process | |
99 (&bd, Vamp::RealTime::zeroTime); | |
100 cerr << "results for output 0:" << endl; | |
101 auto fl(features[0]); | |
102 for (const auto &f: fl) { | |
103 cerr << f.values[0] << endl; | |
104 } | |
105 | |
106 (void)plugin->getRemainingFeatures(); | |
107 | |
108 delete plugin; | |
109 | |
110 // Let's try a crazy AutoPlugin | |
111 | |
112 piper_vamp::client::AutoPlugin ap | |
113 (argv[1], "vamp-example-plugins:zerocrossing", 16, 0, nullptr); | |
114 | |
115 if (!ap.isOK()) { | |
116 cerr << "AutoPlugin creation failed" << endl; | |
117 } else { | |
118 if (!ap.initialise(1, 4, 4)) { | |
119 cerr << "initialisation failed" << endl; | |
120 } else { | |
121 vector<float> buf = { 1.0, -1.0, 1.0, -1.0 }; | |
122 float *bd = buf.data(); | |
123 Vamp::Plugin::FeatureSet features = ap.process | |
124 (&bd, Vamp::RealTime::zeroTime); | |
125 cerr << "results for output 0:" << endl; | |
126 auto fl(features[0]); | |
127 for (const auto &f: fl) { | |
128 cerr << f.values[0] << endl; | |
129 } | |
130 } | |
131 } | |
132 } catch (const exception &e) { | |
133 cerr << "ERROR: Exception caught: " << e.what() << endl; | |
134 return 1; | |
135 } | |
136 | |
137 return 0; | |
138 } | |
139 |