c@75
|
1
|
c@75
|
2 #include "vamp-capnp/VampnProto.h"
|
c@75
|
3 #include "vamp-support/RequestOrResponse.h"
|
c@75
|
4 #include "vamp-support/CountingPluginHandleMapper.h"
|
c@97
|
5 #include "vamp-support/LoaderRequests.h"
|
c@75
|
6
|
c@75
|
7 #include <iostream>
|
c@75
|
8 #include <sstream>
|
c@75
|
9 #include <stdexcept>
|
c@75
|
10
|
c@91
|
11 #include <capnp/serialize.h>
|
c@91
|
12
|
c@75
|
13 #include <map>
|
c@75
|
14 #include <set>
|
c@75
|
15
|
c@103
|
16 #include <unistd.h> // getpid for logging
|
c@103
|
17
|
c@75
|
18 using namespace std;
|
c@97
|
19 using namespace piper_vamp;
|
c@75
|
20 using namespace Vamp;
|
c@75
|
21
|
c@103
|
22 static int pid = getpid();
|
c@103
|
23
|
c@75
|
24 void usage()
|
c@75
|
25 {
|
c@75
|
26 string myname = "piper-vamp-server";
|
c@75
|
27 cerr << "\n" << myname <<
|
c@75
|
28 ": Load and run Vamp plugins in response to messages from stdin\n\n"
|
c@75
|
29 " Usage: " << myname << "\n\n"
|
c@75
|
30 "Expects Piper request messages in Cap'n Proto packed format on stdin,\n"
|
c@75
|
31 "and writes Piper response messages in the same format to stdout.\n\n";
|
c@75
|
32
|
c@75
|
33 exit(2);
|
c@75
|
34 }
|
c@75
|
35
|
c@75
|
36 static CountingPluginHandleMapper mapper;
|
c@75
|
37
|
c@97
|
38 static RequestOrResponse::RpcId readId(const piper::RpcRequest::Reader &r)
|
c@75
|
39 {
|
c@75
|
40 int number;
|
c@75
|
41 string tag;
|
c@75
|
42 switch (r.getId().which()) {
|
c@97
|
43 case piper::RpcRequest::Id::Which::NUMBER:
|
c@75
|
44 number = r.getId().getNumber();
|
c@75
|
45 return { RequestOrResponse::RpcId::Number, number, "" };
|
c@97
|
46 case piper::RpcRequest::Id::Which::TAG:
|
c@75
|
47 tag = r.getId().getTag();
|
c@75
|
48 return { RequestOrResponse::RpcId::Tag, 0, tag };
|
c@97
|
49 case piper::RpcRequest::Id::Which::NONE:
|
c@75
|
50 return { RequestOrResponse::RpcId::Absent, 0, "" };
|
c@75
|
51 }
|
c@75
|
52 return {};
|
c@75
|
53 }
|
c@75
|
54
|
c@97
|
55 static void buildId(piper::RpcResponse::Builder &b, const RequestOrResponse::RpcId &id)
|
c@75
|
56 {
|
c@75
|
57 switch (id.type) {
|
c@75
|
58 case RequestOrResponse::RpcId::Number:
|
c@75
|
59 b.getId().setNumber(id.number);
|
c@75
|
60 break;
|
c@75
|
61 case RequestOrResponse::RpcId::Tag:
|
c@75
|
62 b.getId().setTag(id.tag);
|
c@75
|
63 break;
|
c@75
|
64 case RequestOrResponse::RpcId::Absent:
|
c@75
|
65 b.getId().setNone();
|
c@75
|
66 break;
|
c@75
|
67 }
|
c@75
|
68 }
|
c@75
|
69
|
c@75
|
70 RequestOrResponse
|
c@75
|
71 readRequestCapnp()
|
c@75
|
72 {
|
c@75
|
73 RequestOrResponse rr;
|
c@75
|
74 rr.direction = RequestOrResponse::Request;
|
c@75
|
75
|
c@75
|
76 static kj::FdInputStream stream(0); // stdin
|
c@75
|
77 static kj::BufferedInputStreamWrapper buffered(stream);
|
c@75
|
78
|
c@75
|
79 if (buffered.tryGetReadBuffer() == nullptr) {
|
c@75
|
80 rr.type = RRType::NotValid;
|
c@75
|
81 return rr;
|
c@75
|
82 }
|
c@75
|
83
|
c@97
|
84 capnp::InputStreamMessageReader message(buffered);
|
c@97
|
85 piper::RpcRequest::Reader reader = message.getRoot<piper::RpcRequest>();
|
c@75
|
86
|
c@75
|
87 rr.type = VampnProto::getRequestResponseType(reader);
|
c@75
|
88 rr.id = readId(reader);
|
c@75
|
89
|
c@75
|
90 switch (rr.type) {
|
c@75
|
91
|
c@75
|
92 case RRType::List:
|
c@75
|
93 VampnProto::readRpcRequest_List(reader); // type check only
|
c@75
|
94 break;
|
c@75
|
95 case RRType::Load:
|
c@75
|
96 VampnProto::readRpcRequest_Load(rr.loadRequest, reader);
|
c@75
|
97 break;
|
c@75
|
98 case RRType::Configure:
|
c@75
|
99 VampnProto::readRpcRequest_Configure(rr.configurationRequest,
|
c@75
|
100 reader, mapper);
|
c@75
|
101 break;
|
c@75
|
102 case RRType::Process:
|
c@75
|
103 VampnProto::readRpcRequest_Process(rr.processRequest, reader, mapper);
|
c@75
|
104 break;
|
c@75
|
105 case RRType::Finish:
|
c@75
|
106 VampnProto::readRpcRequest_Finish(rr.finishRequest, reader, mapper);
|
c@75
|
107 break;
|
c@75
|
108 case RRType::NotValid:
|
c@75
|
109 break;
|
c@75
|
110 }
|
c@75
|
111
|
c@75
|
112 return rr;
|
c@75
|
113 }
|
c@75
|
114
|
c@75
|
115 void
|
c@75
|
116 writeResponseCapnp(RequestOrResponse &rr)
|
c@75
|
117 {
|
c@97
|
118 capnp::MallocMessageBuilder message;
|
c@97
|
119 piper::RpcResponse::Builder builder = message.initRoot<piper::RpcResponse>();
|
c@75
|
120
|
c@75
|
121 buildId(builder, rr.id);
|
c@75
|
122
|
c@75
|
123 if (!rr.success) {
|
c@75
|
124
|
c@75
|
125 VampnProto::buildRpcResponse_Error(builder, rr.errorText, rr.type);
|
c@75
|
126
|
c@75
|
127 } else {
|
c@75
|
128
|
c@75
|
129 switch (rr.type) {
|
c@75
|
130
|
c@75
|
131 case RRType::List:
|
c@75
|
132 VampnProto::buildRpcResponse_List(builder, rr.listResponse);
|
c@75
|
133 break;
|
c@75
|
134 case RRType::Load:
|
c@75
|
135 VampnProto::buildRpcResponse_Load(builder, rr.loadResponse, mapper);
|
c@75
|
136 break;
|
c@75
|
137 case RRType::Configure:
|
c@75
|
138 VampnProto::buildRpcResponse_Configure(builder, rr.configurationResponse, mapper);
|
c@75
|
139 break;
|
c@75
|
140 case RRType::Process:
|
c@75
|
141 VampnProto::buildRpcResponse_Process(builder, rr.processResponse, mapper);
|
c@75
|
142 break;
|
c@75
|
143 case RRType::Finish:
|
c@75
|
144 VampnProto::buildRpcResponse_Finish(builder, rr.finishResponse, mapper);
|
c@75
|
145 break;
|
c@75
|
146 case RRType::NotValid:
|
c@75
|
147 break;
|
c@75
|
148 }
|
c@75
|
149 }
|
c@75
|
150
|
c@75
|
151 writeMessageToFd(1, message);
|
c@75
|
152 }
|
c@75
|
153
|
c@75
|
154 void
|
c@75
|
155 writeExceptionCapnp(const std::exception &e, RRType type)
|
c@75
|
156 {
|
c@97
|
157 capnp::MallocMessageBuilder message;
|
c@97
|
158 piper::RpcResponse::Builder builder = message.initRoot<piper::RpcResponse>();
|
c@75
|
159 VampnProto::buildRpcResponse_Exception(builder, e, type);
|
c@75
|
160
|
c@75
|
161 writeMessageToFd(1, message);
|
c@75
|
162 }
|
c@75
|
163
|
c@75
|
164 RequestOrResponse
|
c@75
|
165 handleRequest(const RequestOrResponse &request)
|
c@75
|
166 {
|
c@75
|
167 RequestOrResponse response;
|
c@75
|
168 response.direction = RequestOrResponse::Response;
|
c@75
|
169 response.type = request.type;
|
c@75
|
170
|
c@75
|
171 switch (request.type) {
|
c@75
|
172
|
c@75
|
173 case RRType::List:
|
c@97
|
174 response.listResponse = LoaderRequests().listPluginData();
|
c@75
|
175 response.success = true;
|
c@75
|
176 break;
|
c@75
|
177
|
c@75
|
178 case RRType::Load:
|
c@97
|
179 response.loadResponse = LoaderRequests().loadPlugin(request.loadRequest);
|
c@75
|
180 if (response.loadResponse.plugin != nullptr) {
|
c@75
|
181 mapper.addPlugin(response.loadResponse.plugin);
|
c@103
|
182 cerr << "piper-vamp-server " << pid << ": loaded plugin, handle = " << mapper.pluginToHandle(response.loadResponse.plugin) << endl;
|
c@75
|
183 response.success = true;
|
c@75
|
184 }
|
c@75
|
185 break;
|
c@75
|
186
|
c@75
|
187 case RRType::Configure:
|
c@75
|
188 {
|
c@75
|
189 auto &creq = request.configurationRequest;
|
c@75
|
190 auto h = mapper.pluginToHandle(creq.plugin);
|
c@75
|
191 if (mapper.isConfigured(h)) {
|
c@75
|
192 throw runtime_error("plugin has already been configured");
|
c@75
|
193 }
|
c@75
|
194
|
c@97
|
195 response.configurationResponse = LoaderRequests().configurePlugin(creq);
|
c@75
|
196
|
c@75
|
197 if (!response.configurationResponse.outputs.empty()) {
|
c@75
|
198 mapper.markConfigured
|
c@75
|
199 (h, creq.configuration.channelCount, creq.configuration.blockSize);
|
c@75
|
200 response.success = true;
|
c@75
|
201 }
|
c@75
|
202 break;
|
c@75
|
203 }
|
c@75
|
204
|
c@75
|
205 case RRType::Process:
|
c@75
|
206 {
|
c@75
|
207 auto &preq = request.processRequest;
|
c@75
|
208 auto h = mapper.pluginToHandle(preq.plugin);
|
c@75
|
209 if (!mapper.isConfigured(h)) {
|
c@75
|
210 throw runtime_error("plugin has not been configured");
|
c@75
|
211 }
|
c@75
|
212
|
c@75
|
213 int channels = int(preq.inputBuffers.size());
|
c@75
|
214 if (channels != mapper.getChannelCount(h)) {
|
c@75
|
215 throw runtime_error("wrong number of channels supplied to process");
|
c@75
|
216 }
|
c@75
|
217
|
c@75
|
218 const float **fbuffers = new const float *[channels];
|
c@75
|
219 for (int i = 0; i < channels; ++i) {
|
c@75
|
220 if (int(preq.inputBuffers[i].size()) != mapper.getBlockSize(h)) {
|
c@75
|
221 delete[] fbuffers;
|
c@75
|
222 throw runtime_error("wrong block size supplied to process");
|
c@75
|
223 }
|
c@75
|
224 fbuffers[i] = preq.inputBuffers[i].data();
|
c@75
|
225 }
|
c@75
|
226
|
c@75
|
227 response.processResponse.plugin = preq.plugin;
|
c@75
|
228 response.processResponse.features =
|
c@75
|
229 preq.plugin->process(fbuffers, preq.timestamp);
|
c@75
|
230 response.success = true;
|
c@75
|
231
|
c@75
|
232 delete[] fbuffers;
|
c@75
|
233 break;
|
c@75
|
234 }
|
c@75
|
235
|
c@75
|
236 case RRType::Finish:
|
c@75
|
237 {
|
c@77
|
238 auto &freq = request.finishRequest;
|
c@77
|
239 response.finishResponse.plugin = freq.plugin;
|
c@77
|
240
|
c@77
|
241 auto h = mapper.pluginToHandle(freq.plugin);
|
c@77
|
242 // Finish can be called (to unload the plugin) even if the
|
c@77
|
243 // plugin has never been configured or used. But we want to
|
c@77
|
244 // make sure we call getRemainingFeatures only if we have
|
c@77
|
245 // actually configured the plugin.
|
c@77
|
246 if (mapper.isConfigured(h)) {
|
c@77
|
247 response.finishResponse.features = freq.plugin->getRemainingFeatures();
|
c@77
|
248 }
|
c@75
|
249
|
c@75
|
250 // We do not delete the plugin here -- we need it in the
|
c@77
|
251 // mapper when converting the features. It gets deleted in the
|
c@77
|
252 // calling function.
|
c@75
|
253 response.success = true;
|
c@75
|
254 break;
|
c@75
|
255 }
|
c@75
|
256
|
c@75
|
257 case RRType::NotValid:
|
c@75
|
258 break;
|
c@75
|
259 }
|
c@75
|
260
|
c@75
|
261 return response;
|
c@75
|
262 }
|
c@75
|
263
|
c@103
|
264 int main(int argc, char **)
|
c@75
|
265 {
|
c@75
|
266 if (argc != 1) {
|
c@75
|
267 usage();
|
c@75
|
268 }
|
c@75
|
269
|
c@75
|
270 while (true) {
|
c@75
|
271
|
c@75
|
272 RequestOrResponse request;
|
c@75
|
273
|
c@75
|
274 try {
|
c@75
|
275
|
c@75
|
276 request = readRequestCapnp();
|
c@75
|
277
|
c@103
|
278 cerr << "piper-vamp-server " << pid << ": request received, of type "
|
c@75
|
279 << int(request.type)
|
c@75
|
280 << endl;
|
c@75
|
281
|
c@75
|
282 // NotValid without an exception indicates EOF:
|
c@75
|
283 if (request.type == RRType::NotValid) {
|
c@103
|
284 cerr << "piper-vamp-server " << pid << ": eof reached, exiting" << endl;
|
c@75
|
285 break;
|
c@75
|
286 }
|
c@75
|
287
|
c@75
|
288 RequestOrResponse response = handleRequest(request);
|
c@75
|
289 response.id = request.id;
|
c@75
|
290
|
c@103
|
291 cerr << "piper-vamp-server " << pid << ": request handled, writing response"
|
c@75
|
292 << endl;
|
c@75
|
293
|
c@75
|
294 writeResponseCapnp(response);
|
c@75
|
295
|
c@103
|
296 cerr << "piper-vamp-server " << pid << ": response written" << endl;
|
c@75
|
297
|
c@75
|
298 if (request.type == RRType::Finish) {
|
c@75
|
299 auto h = mapper.pluginToHandle(request.finishRequest.plugin);
|
c@103
|
300 cerr << "piper-vamp-server " << pid << ": deleting the plugin with handle " << h << endl;
|
c@75
|
301 mapper.removePlugin(h);
|
c@75
|
302 delete request.finishRequest.plugin;
|
c@75
|
303 }
|
c@75
|
304
|
c@75
|
305 } catch (std::exception &e) {
|
c@75
|
306
|
c@103
|
307 cerr << "piper-vamp-server " << pid << ": error: " << e.what() << endl;
|
c@75
|
308
|
c@75
|
309 writeExceptionCapnp(e, request.type);
|
c@75
|
310
|
c@75
|
311 exit(1);
|
c@75
|
312 }
|
c@75
|
313 }
|
c@75
|
314
|
c@75
|
315 exit(0);
|
c@75
|
316 }
|