annotate vamp-server/server.cpp @ 92:21f8af53eaf0

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