aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ProfilingConnectionDumpToFileDecorator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/ProfilingConnectionDumpToFileDecorator.hpp')
-rw-r--r--src/profiling/ProfilingConnectionDumpToFileDecorator.hpp62
1 files changed, 0 insertions, 62 deletions
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 <client/include/ProfilingOptions.hpp>
-
-#include <fstream>
-#include <memory>
-#include <string>
-#include <vector>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-class ProfilingConnectionDumpToFileDecorator : public IProfilingConnection
-{
-public:
-
- ProfilingConnectionDumpToFileDecorator(std::unique_ptr<IProfilingConnection> 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<IProfilingConnection> m_Connection;
- ProfilingOptions m_Options;
- std::ofstream m_IncomingDumpFileStream;
- std::ofstream m_OutgoingDumpFileStream;
- bool m_IgnoreFileErrors;
-};
-
-} // namespace pipe
-
-} // namespace arm