annotate vamp-server/server.cpp @ 102:cd438188e3f9

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