From 149528e88c081e71fc7ec78e0c301eb2e487adfc Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Thu, 5 Sep 2019 12:02:04 +0100 Subject: IVGCVSW-3691 Basic refactoring in view of upcoming work in the profiler Change-Id: Iea4550b864fc2adb04a3a2411a7ead06b1f60ab9 Signed-off-by: Matteo Martincigh --- src/profiling/SendCounterPacket.hpp | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/profiling/SendCounterPacket.hpp') diff --git a/src/profiling/SendCounterPacket.hpp b/src/profiling/SendCounterPacket.hpp index 0fc3055dfd..3238b351a3 100644 --- a/src/profiling/SendCounterPacket.hpp +++ b/src/profiling/SendCounterPacket.hpp @@ -20,11 +20,14 @@ class SendCounterPacket : public ISendCounterPacket public: using IndexValuePairsVector = std::vector>; - SendCounterPacket(IBufferWrapper& buffer) : m_Buffer(buffer), m_ReadyToRead(false) {}; + SendCounterPacket(IBufferWrapper& buffer) + : m_Buffer(buffer), + m_ReadyToRead(false) + {} void SendStreamMetaDataPacket() override; - void SendCounterDirectoryPacket(const Category& category, const std::vector& counters) override; + void SendCounterDirectoryPacket(const CounterDirectory& counterDirectory) override; void SendPeriodicCounterCapturePacket(uint64_t timestamp, const IndexValuePairsVector& values) override; @@ -37,6 +40,16 @@ public: static const unsigned int MAX_METADATA_PACKET_LENGTH = 4096; private: + template + void CancelOperationAndThrow(const std::string& errorMessage) + { + // Cancel the operation + m_Buffer.Commit(0); + + // Throw a runtime exception with the given error message + throw ExceptionType(errorMessage); + } + IBufferWrapper& m_Buffer; bool m_ReadyToRead; }; -- cgit v1.2.1