blob: 453c0013e0fc44ee710c6c9a3de6baf74b4c46e3 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "IBufferWrapper.hpp"
#include "ISendCounterPacket.hpp"
#include "CounterDirectory.hpp"
namespace armnn
{
namespace profiling
{
class SendCounterPacket : public ISendCounterPacket
{
public:
using IndexValuePairsVector = std::vector<std::pair<uint16_t, uint32_t>>;
SendCounterPacket(IBufferWrapper& buffer) : m_Buffer(buffer), m_ReadyToRead(false) {};
void SendStreamMetaDataPacket() override;
void SendCounterDirectoryPacket(const Category& category, const std::vector<Counter>& counters) override;
void SendPeriodicCounterCapturePacket(uint64_t timestamp, const IndexValuePairsVector& values) override;
void SendPeriodicCounterSelectionPacket(uint32_t capturePeriod,
const std::vector<uint16_t>& selectedCounterIds) override;
void SetReadyToRead() override;
private:
IBufferWrapper& m_Buffer;
bool m_ReadyToRead;
};
} // namespace profiling
} // namespace armnn