aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/src/IBufferManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/client/src/IBufferManager.hpp')
-rw-r--r--profiling/client/src/IBufferManager.hpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/profiling/client/src/IBufferManager.hpp b/profiling/client/src/IBufferManager.hpp
new file mode 100644
index 0000000000..6aec43f643
--- /dev/null
+++ b/profiling/client/src/IBufferManager.hpp
@@ -0,0 +1,43 @@
+//
+// Copyright © 2019 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include "IConsumer.hpp"
+#include "IPacketBuffer.hpp"
+
+#include <memory>
+
+#define MAX_METADATA_PACKET_LENGTH 4096
+
+namespace arm
+{
+
+namespace pipe
+{
+
+class IBufferManager
+{
+public:
+ virtual ~IBufferManager() {}
+
+ virtual IPacketBufferPtr Reserve(unsigned int requestedSize, unsigned int& reservedSize) = 0;
+
+ virtual void Commit(IPacketBufferPtr& packetBuffer, unsigned int size, bool notifyConsumer = true) = 0;
+
+ virtual void Release(IPacketBufferPtr& packetBuffer) = 0;
+
+ virtual IPacketBufferPtr GetReadableBuffer() = 0;
+
+ virtual void MarkRead(IPacketBufferPtr& packetBuffer) = 0;
+
+ virtual void SetConsumer(IConsumer* consumer) = 0;
+
+ virtual void FlushReadList() = 0;
+};
+
+} // namespace pipe
+
+} // namespace arm