0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00
Victor Zarubkin 30d9e7645f (Graphics view) Disabled border lines painting because of vertical lines painting bug;
* (Graphics view) Changed height of blocks. Variable thread-block height;
* (Tree widget) Disabled sorting by name to save order of threads displayed on graphics view;
* (Profiler reader) Changed type of value returned by fillTreesFromFile().
2016-06-27 23:22:12 +03:00

91 lines
2.0 KiB
C++

#include "profiler/profiler.h"
#include "profiler/reader.h"
#include <fstream>
#include <list>
#include <iostream>
#include <map>
#include <stack>
#include <vector>
#include <iterator>
#include <algorithm>
#include <ctime>
#include <chrono>
#include <iostream>
#include <string>
class TreePrinter
{
struct Info{
std::string name;
std::string info;
};
std::vector<Info> m_rows;
public:
TreePrinter(){
}
void addNewRow(int level)
{
}
void printTree()
{
for (auto& row : m_rows){
std::cout << row.name << " " << row.info << std::endl;
}
}
};
void printTree(TreePrinter& printer, const BlocksTree& tree, int level = 0, profiler::timestamp_t parent_dur = 0, profiler::timestamp_t root_dur = 0)
{
if (tree.node){
auto duration = tree.node->block()->duration();
float duration_ms = duration / 1e6f;
float percent = parent_dur ? float(duration) / float(parent_dur)*100.0f : 100.0f;
float rpercent = root_dur ? float(duration) / float(root_dur)*100.0f : 100.0f;
std::cout << std::string(level, '\t') << tree.node->getBlockName()
<< std::string(5 - level, '\t')
/*<< std::string(level, ' ')*/ << percent << "%| "
<< rpercent << "%| "
<< duration_ms << " ms"
<< std::endl;
if (root_dur == 0){
root_dur = tree.node->block()->duration();
}
}
else{
root_dur = 0;
}
for (const auto& i : tree.children){
printTree(printer, i, level + 1, tree.node ? tree.node->block()->duration() : 0, root_dur);
}
}
int main()
{
thread_blocks_tree_t threaded_trees;
auto start = std::chrono::system_clock::now();
auto blocks_counter = fillTreesFromFile("test.prof", threaded_trees, true);
auto end = std::chrono::system_clock::now();
std::cout << "Blocks count: " << blocks_counter << std::endl;
std::cout << "dT = " << std::chrono::duration_cast<std::chrono::microseconds>(end - start).count() << " usec" << std::endl;
for (const auto & i : threaded_trees){
TreePrinter p;
std::cout << std::string(20, '=') << " thread "<< i.first << " "<< std::string(20, '=') << std::endl;
printTree(p, i.second,-1);
}
return 0;
}