blob: cb860a950b38f6dbc1ba23495420db50ba508f69 [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "TimelineDirectoryCaptureCommandHandler.hpp"
#include <iostream>
#include <string>
namespace armnn
{
namespace gatordmock
{
void TimelineDirectoryCaptureCommandHandler::ParseData(const armnn::profiling::Packet& packet)
{
uint32_t offset = 0;
if (packet.GetLength() < 8)
{
return;
}
const unsigned char* data = packet.GetData();
uint32_t numberOfDeclarations = profiling::ReadUint32(data, offset);
offset += uint32_t_size;
for (uint32_t declaration = 0; declaration < numberOfDeclarations; ++declaration)
{
m_SwTraceMessages.push_back(profiling::ReadSwTraceMessage(data, offset));
}
}
void TimelineDirectoryCaptureCommandHandler::Print()
{
std::string header;
header.append(profiling::CentreAlignFormatting("decl_id", 12));
header.append(" | ");
header.append(profiling::CentreAlignFormatting("decl_name", 20));
header.append(" | ");
header.append(profiling::CentreAlignFormatting("ui_name", 20));
header.append(" | ");
header.append(profiling::CentreAlignFormatting("arg_types", 16));
header.append(" | ");
header.append(profiling::CentreAlignFormatting("arg_names", 80));
header.append("\n");
std::cout << "\n" << "\n";
std::cout << profiling::CentreAlignFormatting("SW DIRECTORY", static_cast<int>(header.size()));
std::cout << "\n";
std::cout << std::string(header.size(), '=') << "\n";
std::cout<< header;
for (auto swTraceMessage : m_SwTraceMessages)
{
std::string body;
body.append(profiling::CentreAlignFormatting(std::to_string(swTraceMessage.id), 12));
body.append(" | ");
body.append(profiling::CentreAlignFormatting(swTraceMessage.name, 20));
body.append(" | ");
body.append(profiling::CentreAlignFormatting(swTraceMessage.uiName, 20));
body.append(" | ");
std::string argTypes;
for(auto argType: swTraceMessage.argTypes)
{
argTypes += argType;
argTypes += " ";
}
body.append(profiling::CentreAlignFormatting(argTypes, 16));
body.append(" | ");
std::string argNames;
for(auto argName: swTraceMessage.argNames)
{
argNames += argName + " ";
}
body.append(profiling::CentreAlignFormatting(argNames, 80));
body.append("\n");
std::cout << std::string(body.size(), '-') << "\n";
std::cout<< body;
}
}
void TimelineDirectoryCaptureCommandHandler::operator()(const profiling::Packet& packet)
{
ParseData(packet);
if(!m_QuietOperation)
{
Print();
}
}
} //namespace gatordmock
} //namespace armnn