2016-06-19 23:01:49 +03:00
|
|
|
/**
|
|
|
|
Lightweight profiler library for c++
|
|
|
|
Copyright(C) 2016 Sergey Yagovtsev
|
|
|
|
|
|
|
|
This program is free software : you can redistribute it and / or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program.If not, see <http://www.gnu.org/licenses/>.
|
2016-08-07 21:40:23 +03:00
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef PROFILER_READER____H
|
|
|
|
#define PROFILER_READER____H
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include "profiler/profiler.h"
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace profiler {
|
|
|
|
|
|
|
|
typedef uint32_t calls_number_t;
|
|
|
|
|
|
|
|
struct BlockStatistics final
|
|
|
|
{
|
|
|
|
::profiler::timestamp_t total_duration; ///< Summary duration of all block calls
|
|
|
|
::profiler::timestamp_t min_duration; ///< Cached block->duration() value. TODO: Remove this if memory consumption will be too high
|
|
|
|
::profiler::timestamp_t max_duration; ///< Cached block->duration() value. TODO: Remove this if memory consumption will be too high
|
|
|
|
unsigned int min_duration_block; ///< Will be used in GUI to jump to the block with min duration
|
|
|
|
unsigned int max_duration_block; ///< Will be used in GUI to jump to the block with max duration
|
|
|
|
::profiler::calls_number_t calls_number; ///< Block calls number
|
|
|
|
|
|
|
|
// TODO: It is better to replace SerilizedBlock* with BlocksTree*, but this requires to store pointers in children list.
|
|
|
|
|
|
|
|
BlockStatistics()
|
|
|
|
: total_duration(0)
|
|
|
|
, min_duration(0)
|
|
|
|
, max_duration(0)
|
|
|
|
, min_duration_block(0)
|
|
|
|
, max_duration_block(0)
|
|
|
|
, calls_number(1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BlockStatistics(::profiler::timestamp_t _duration, unsigned int _block_index)
|
|
|
|
: total_duration(_duration)
|
|
|
|
, min_duration(_duration)
|
|
|
|
, max_duration(_duration)
|
|
|
|
, min_duration_block(_block_index)
|
|
|
|
, max_duration_block(_block_index)
|
|
|
|
, calls_number(1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ::profiler::timestamp_t average_duration() const
|
|
|
|
{
|
|
|
|
return total_duration / calls_number;
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // END of struct BlockStatistics.
|
|
|
|
|
|
|
|
inline void release(BlockStatistics*& _stats)
|
|
|
|
{
|
|
|
|
if (!_stats)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--_stats->calls_number == 0)
|
|
|
|
{
|
|
|
|
delete _stats;
|
|
|
|
}
|
|
|
|
|
|
|
|
_stats = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
class BlocksTree
|
2016-06-19 23:01:49 +03:00
|
|
|
{
|
2016-08-03 23:00:04 +03:00
|
|
|
typedef BlocksTree This;
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
public:
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
typedef ::std::list<BlocksTree> children_t;
|
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
children_t children; ///< List of children blocks. May be empty.
|
2016-08-07 21:40:23 +03:00
|
|
|
::profiler::SerializedBlock* node; ///< Pointer to serilized data (type, name, begin, end etc.)
|
2016-08-07 19:38:31 +03:00
|
|
|
::profiler::BlockStatistics* per_parent_stats; ///< Pointer to statistics for this block within the parent (may be nullptr for top-level blocks)
|
|
|
|
::profiler::BlockStatistics* per_frame_stats; ///< Pointer to statistics for this block within the frame (may be nullptr for top-level blocks)
|
|
|
|
::profiler::BlockStatistics* per_thread_stats; ///< Pointer to statistics for this block within the bounds of all frames per current thread
|
2016-08-03 23:00:04 +03:00
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
unsigned int block_index; ///< Index of this block
|
|
|
|
unsigned int total_children_number; ///< Number of all children including number of grandchildren (and so on)
|
|
|
|
unsigned short depth; ///< Maximum number of sublevels (maximum children depth)
|
2016-08-03 23:00:04 +03:00
|
|
|
|
|
|
|
BlocksTree()
|
2016-08-04 22:38:45 +03:00
|
|
|
: node(nullptr)
|
2016-08-07 19:38:31 +03:00
|
|
|
, per_parent_stats(nullptr)
|
|
|
|
, per_frame_stats(nullptr)
|
|
|
|
, per_thread_stats(nullptr)
|
2016-08-04 22:38:45 +03:00
|
|
|
, block_index(0)
|
2016-08-03 23:00:04 +03:00
|
|
|
, total_children_number(0)
|
|
|
|
, depth(0)
|
2016-06-19 23:01:49 +03:00
|
|
|
{
|
2016-08-03 23:00:04 +03:00
|
|
|
|
2016-06-19 23:01:49 +03:00
|
|
|
}
|
2016-06-26 00:56:24 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
BlocksTree(This&& that) : BlocksTree()
|
|
|
|
{
|
|
|
|
makeMove(::std::forward<This&&>(that));
|
|
|
|
}
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
This& operator = (This&& that)
|
2016-06-19 23:01:49 +03:00
|
|
|
{
|
2016-08-03 23:00:04 +03:00
|
|
|
makeMove(::std::forward<This&&>(that));
|
|
|
|
return *this;
|
2016-06-19 23:01:49 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
~BlocksTree()
|
|
|
|
{
|
|
|
|
if (node)
|
|
|
|
{
|
|
|
|
delete node;
|
|
|
|
}
|
2016-06-25 17:24:29 +03:00
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
release(per_thread_stats);
|
|
|
|
release(per_parent_stats);
|
|
|
|
release(per_frame_stats);
|
2016-08-03 23:00:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator < (const This& other) const
|
2016-06-25 17:30:39 +03:00
|
|
|
{
|
2016-08-03 23:00:04 +03:00
|
|
|
if (!node || !other.node)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return node->block()->getBegin() < other.node->block()->getBegin();
|
2016-06-25 17:30:39 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
BlocksTree(const This&) = delete;
|
|
|
|
This& operator = (const This&) = delete;
|
|
|
|
|
|
|
|
void makeMove(This&& that)
|
2016-06-26 00:56:24 +03:00
|
|
|
{
|
2016-08-03 23:00:04 +03:00
|
|
|
if (node && node != that.node)
|
|
|
|
{
|
|
|
|
delete node;
|
|
|
|
}
|
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
if (per_thread_stats != that.per_thread_stats)
|
2016-08-03 23:00:04 +03:00
|
|
|
{
|
2016-08-07 19:38:31 +03:00
|
|
|
release(per_thread_stats);
|
2016-08-03 23:00:04 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 19:38:31 +03:00
|
|
|
if (per_parent_stats != that.per_parent_stats)
|
2016-08-03 23:00:04 +03:00
|
|
|
{
|
2016-08-07 19:38:31 +03:00
|
|
|
release(per_parent_stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (per_frame_stats != that.per_frame_stats)
|
|
|
|
{
|
|
|
|
release(per_frame_stats);
|
2016-08-03 23:00:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
children = ::std::move(that.children);
|
|
|
|
node = that.node;
|
2016-08-07 19:38:31 +03:00
|
|
|
per_parent_stats = that.per_parent_stats;
|
|
|
|
per_frame_stats = that.per_frame_stats;
|
|
|
|
per_thread_stats = that.per_thread_stats;
|
2016-08-03 23:00:04 +03:00
|
|
|
|
2016-08-04 22:38:45 +03:00
|
|
|
block_index = that.block_index;
|
2016-08-03 23:00:04 +03:00
|
|
|
total_children_number = that.total_children_number;
|
|
|
|
depth = that.depth;
|
|
|
|
|
|
|
|
that.node = nullptr;
|
2016-08-07 19:38:31 +03:00
|
|
|
that.per_parent_stats = nullptr;
|
|
|
|
that.per_frame_stats = nullptr;
|
|
|
|
that.per_thread_stats = nullptr;
|
2016-06-26 00:56:24 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
}; // END of class BlocksTree.
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-08-04 22:38:45 +03:00
|
|
|
class BlocksTreeRoot final
|
2016-08-03 23:00:04 +03:00
|
|
|
{
|
|
|
|
typedef BlocksTreeRoot This;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
BlocksTree tree;
|
|
|
|
const char* thread_name;
|
|
|
|
::profiler::thread_id_t thread_id;
|
|
|
|
|
|
|
|
BlocksTreeRoot() : thread_name(""), thread_id(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BlocksTreeRoot(This&& that) : tree(::std::move(that.tree)), thread_name(that.thread_name), thread_id(that.thread_id)
|
2016-06-26 00:56:24 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
This& operator = (This&& that)
|
|
|
|
{
|
|
|
|
tree = ::std::move(that.tree);
|
|
|
|
thread_name = that.thread_name;
|
|
|
|
return *this;
|
|
|
|
}
|
2016-07-27 21:50:11 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
bool operator < (const This& other) const
|
|
|
|
{
|
|
|
|
return tree < other.tree;
|
|
|
|
}
|
2016-07-27 21:50:11 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
private:
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
BlocksTreeRoot(const This&) = delete;
|
|
|
|
This& operator = (const This&) = delete;
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
}; // END of class BlocksTreeRoot.
|
2016-06-19 23:01:49 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
typedef ::std::map<::profiler::thread_id_t, ::profiler::BlocksTreeRoot> thread_blocks_tree_t;
|
2016-06-19 23:46:42 +03:00
|
|
|
|
2016-08-03 23:00:04 +03:00
|
|
|
} // END of namespace profiler.
|
2016-06-19 23:46:42 +03:00
|
|
|
|
|
|
|
extern "C"{
|
2016-08-03 23:00:04 +03:00
|
|
|
unsigned int PROFILER_API fillTreesFromFile(const char* filename, ::profiler::thread_blocks_tree_t& threaded_trees, bool gather_statistics = false);
|
2016-06-19 23:46:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-19 23:01:49 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif // PROFILER_READER____H
|