# HG changeset patch # User Chris Cannam # Date 1476445598 -3600 # Node ID bbb99f94e225473c35377bcd1874a63f659c32b8 # Parent b2ec891c22b9512447005967ea3c075f1b40be88 Serialisation, comments diff -r b2ec891c22b9 -r bbb99f94e225 vamp-client/CapnpRRClient.h --- a/vamp-client/CapnpRRClient.h Fri Oct 14 12:46:16 2016 +0100 +++ b/vamp-client/CapnpRRClient.h Fri Oct 14 12:46:38 2016 +0100 @@ -15,6 +15,14 @@ namespace piper_vamp { namespace client { +/** + * Client for a request-response Piper server, i.e. using the + * RpcRequest/RpcResponse structures with a single process call rather + * than having individual RPC methods, with a synchronous transport + * such as a subprocess pipe arrangement. Only one request can be + * handled at a time. This class is thread-safe if and only if it is + * constructed with a thread-safe SynchronousTransport implementation. + */ class CapnpRRClient : public PluginClient, public Loader { diff -r b2ec891c22b9 -r bbb99f94e225 vamp-client/ProcessQtTransport.h --- a/vamp-client/ProcessQtTransport.h Fri Oct 14 12:46:16 2016 +0100 +++ b/vamp-client/ProcessQtTransport.h Fri Oct 14 12:46:38 2016 +0100 @@ -6,12 +6,21 @@ #include #include +#include #include namespace piper_vamp { namespace client { +/** + * A SynchronousTransport implementation that spawns a sub-process + * using Qt's QProcess abstraction and talks to it via stdin/stdout + * channels. Calls are completely serialized; the protocol only + * supports one call in process at a time, and therefore the transport + * only allows one at a time. This class is thread-safe because it + * serializes explicitly using a mutex. + */ class ProcessQtTransport : public SynchronousTransport { public: @@ -55,6 +64,8 @@ std::vector call(const char *ptr, size_t size) override { + QMutexLocker locker(&m_mutex); + if (!m_completenessChecker) { throw std::logic_error("No completeness checker set on transport"); } @@ -88,6 +99,7 @@ private: MessageCompletenessChecker *m_completenessChecker; //!!! I don't own this (currently) QProcess *m_process; // I own this + QMutex m_mutex; }; }