From 3e9bc19ad523361e6b18057849e30c0c48183915 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Wed, 23 Mar 2022 23:01:26 +0000 Subject: IVGCVSW-6706 Create the libpipeClient library Change-Id: I2368aade38ad3808fab55d8a86cd659d4e95d91e Signed-off-by: Jim Flynn --- .../ProfilingConnectionDumpToFileDecorator.hpp | 62 ---------------------- 1 file changed, 62 deletions(-) delete mode 100644 src/profiling/ProfilingConnectionDumpToFileDecorator.hpp (limited to 'src/profiling/ProfilingConnectionDumpToFileDecorator.hpp') diff --git a/src/profiling/ProfilingConnectionDumpToFileDecorator.hpp b/src/profiling/ProfilingConnectionDumpToFileDecorator.hpp deleted file mode 100644 index 8f4812e9dd..0000000000 --- a/src/profiling/ProfilingConnectionDumpToFileDecorator.hpp +++ /dev/null @@ -1,62 +0,0 @@ -// -// Copyright © 2019 Arm Ltd and Contributors. All rights reserved. -// SPDX-License-Identifier: MIT -// - -#pragma once - -#include "IProfilingConnection.hpp" -#include "ProfilingUtils.hpp" - -#include - -#include -#include -#include -#include - -namespace arm -{ - -namespace pipe -{ - -class ProfilingConnectionDumpToFileDecorator : public IProfilingConnection -{ -public: - - ProfilingConnectionDumpToFileDecorator(std::unique_ptr connection, - const ProfilingOptions& options, - bool ignoreFailures = false); - - ~ProfilingConnectionDumpToFileDecorator(); - - bool IsOpen() const override; - - void Close() override; - - bool WritePacket(const unsigned char* buffer, uint32_t length) override; - - arm::pipe::Packet ReadPacket(uint32_t timeout) override; - -private: - bool OpenIncomingDumpFile(); - - bool OpenOutgoingDumpFile(); - - void DumpIncomingToFile(const arm::pipe::Packet& packet); - - bool DumpOutgoingToFile(const unsigned char* buffer, uint32_t length); - - void Fail(const std::string& errorMessage); - - std::unique_ptr m_Connection; - ProfilingOptions m_Options; - std::ofstream m_IncomingDumpFileStream; - std::ofstream m_OutgoingDumpFileStream; - bool m_IgnoreFileErrors; -}; - -} // namespace pipe - -} // namespace arm -- cgit v1.2.1