comparison vamp-client/client.cpp @ 82:fa2c0358c2b6

Plan
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 11 Oct 2016 16:52:48 +0100
parents c6b6051b1b1a
children 154e94ea84d4
comparison
equal deleted inserted replaced
81:c6b6051b1b1a 82:fa2c0358c2b6
2 #include "stub.h" 2 #include "stub.h"
3 3
4 #include "vamp-capnp/VampnProto.h" 4 #include "vamp-capnp/VampnProto.h"
5 5
6 #include "vamp-support/AssignedPluginHandleMapper.h" 6 #include "vamp-support/AssignedPluginHandleMapper.h"
7
8 // First cut plan: this is to be client-qt.cpp, using a QProcess, so
9 // we're using pipes and the server is completely synchronous,
10 // handling only one call at once. Our PiperClient will fire off a
11 // QProcess and refer to its io device. Each request message is
12 // serialised into memory using capnp::MallocMessageBuilder and
13 // shunted into the process pipe; we then wait for some bytes to come
14 // back and use capnp::expectedSizeInWordsFromPrefix to work out when
15 // a whole message is available, reading only that amount from the
16 // device and using FlatArrayMessageReader to convert to a response
17 // message. If the response message's id does not match the request
18 // message's, then the server has gone wrong (it should never be
19 // servicing more than one request at a time).
20
21 // Next level: Capnp RPC, but I want to get the first level to work
22 // first.
7 23
8 namespace piper { //!!! probably something different 24 namespace piper { //!!! probably something different
9 25
10 class PiperClient : public PiperClientBase 26 class PiperClient : public PiperClientBase
11 { 27 {