# HG changeset patch # User Chris Cannam # Date 1477573295 -3600 # Node ID 56e537a7bb9968aa918c4249705bcfa845ab2e2d # Parent 88ecaf8b163aa22766c65aaee8680dee4e564ed7 Error handling diff -r 88ecaf8b163a -r 56e537a7bb99 vamp-client/AutoPlugin.h --- a/vamp-client/AutoPlugin.h Thu Oct 27 13:42:07 2016 +0100 +++ b/vamp-client/AutoPlugin.h Thu Oct 27 14:01:35 2016 +0100 @@ -59,8 +59,13 @@ req.pluginKey = pluginKey; req.inputSampleRate = inputSampleRate; req.adapterFlags = adapterFlags; - LoadResponse resp = m_client.loadPlugin(req); - m_plugin = resp.plugin; + try { + LoadResponse resp = m_client.loadPlugin(req); + m_plugin = resp.plugin; + } catch (ServerCrashed c) { + std::cerr << c.what() << std::endl; + m_plugin = 0; + } } virtual ~AutoPlugin() { diff -r 88ecaf8b163a -r 56e537a7bb99 vamp-client/ProcessQtTransport.h --- a/vamp-client/ProcessQtTransport.h Thu Oct 27 13:42:07 2016 +0100 +++ b/vamp-client/ProcessQtTransport.h Thu Oct 27 14:01:35 2016 +0100 @@ -142,8 +142,7 @@ std::cerr << "Server failed during request with error code " << err << std::endl; } - //!!! + catch - throw std::runtime_error("Piper server exited unexpectedly"); + throw ServerCrashed(); } } else { size_t formerSize = buffer.size(); diff -r 88ecaf8b163a -r 56e537a7bb99 vamp-client/SynchronousTransport.h --- a/vamp-client/SynchronousTransport.h Thu Oct 27 13:42:07 2016 +0100 +++ b/vamp-client/SynchronousTransport.h Thu Oct 27 14:01:35 2016 +0100 @@ -38,6 +38,7 @@ #include #include +#include namespace piper_vamp { namespace client { @@ -50,6 +51,12 @@ virtual bool isComplete(const std::vector &message) const = 0; }; +class ServerCrashed : public std::runtime_error +{ +public: + ServerCrashed() : std::runtime_error("Piper server exited unexpectedly") {} +}; + class SynchronousTransport // interface { public: