0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-30 02:16:55 +08:00
easy_profiler/src/profile_manager.cpp

208 lines
4.6 KiB
C++
Raw Normal View History

2016-02-16 23:21:12 +03:00
#include "profile_manager.h"
2016-02-18 19:27:17 +03:00
#include <thread>
2016-02-20 19:21:14 +03:00
#include <string.h>
2016-02-24 00:08:13 +03:00
#include <fstream>
2016-02-16 23:21:12 +03:00
using namespace profiler;
extern "C"{
void PROFILER_API endBlock()
{
ProfileManager::instance().endBlock();
}
2016-02-18 00:45:13 +03:00
void PROFILER_API setEnabled(bool isEnable)
{
ProfileManager::instance().setEnabled(isEnable);
}
void PROFILER_API beginBlock(Block* _block)
2016-02-18 00:45:13 +03:00
{
ProfileManager::instance().beginBlock(_block);
2016-02-18 00:45:13 +03:00
}
2016-07-04 22:53:02 +03:00
unsigned int PROFILER_API dumpBlocksToFile(const char* filename)
{
return ProfileManager::instance().dumpBlocksToFile(filename);
}
2016-07-31 22:12:11 +03:00
void PROFILER_API setThreadName(const char* name)
{
return ProfileManager::instance().setThreadName(name);
}
2016-02-16 23:21:12 +03:00
}
SerializedBlock::SerializedBlock(const Block* block)
: m_size(sizeof(BaseBlockData))
, m_data(nullptr)
{
uint16_t name_len = static_cast<uint16_t>(strlen(block->getName()) + 1);
m_size += name_len;
m_data = new char[m_size];
memcpy(m_data, block, sizeof(BaseBlockData));
strncpy(m_data + sizeof(BaseBlockData), block->getName(), name_len);
2016-02-24 06:31:05 +03:00
}
SerializedBlock::SerializedBlock(uint16_t _size, char* _data)
: m_size(_size)
, m_data(_data)
2016-02-24 06:31:05 +03:00
{
}
2016-08-07 21:40:23 +03:00
SerializedBlock::~SerializedBlock()
{
if (m_data != nullptr)
delete[] m_data;
}
2016-08-07 21:40:23 +03:00
SerializedBlock::SerializedBlock(const SerializedBlock& other)
: m_size(other.m_size)
, m_data(new char[other.m_size])
2016-06-17 16:31:09 +03:00
{
memcpy(m_data, other.m_data, m_size);
2016-06-17 16:31:09 +03:00
}
2016-08-07 21:40:23 +03:00
SerializedBlock::SerializedBlock(SerializedBlock&& that)
: m_size(that.m_size)
, m_data(that.m_data)
2016-02-24 06:31:05 +03:00
{
that.m_size = 0;
that.m_data = nullptr;
2016-02-24 06:31:05 +03:00
}
2016-08-07 21:40:23 +03:00
const BaseBlockData * SerializedBlock::block() const
2016-02-24 06:31:05 +03:00
{
return reinterpret_cast<const BaseBlockData*>(m_data);
2016-02-24 06:31:05 +03:00
}
2016-08-07 21:40:23 +03:00
const char* SerializedBlock::getBlockName() const
2016-02-24 06:31:05 +03:00
{
return m_data + sizeof(BaseBlockData);
2016-02-24 06:31:05 +03:00
}
2016-02-16 23:21:12 +03:00
//////////////////////////////////////////////////////////////////////////
BlockSourceInfo::BlockSourceInfo(const char* _filename, int _linenumber) : m_id(ProfileManager::instance().addSource(_filename, _linenumber))
{
}
SourceBlock::SourceBlock(const char* _filename, int _line) : m_filename(_filename), m_line(_line)
{
}
//////////////////////////////////////////////////////////////////////////
2016-02-16 23:21:12 +03:00
ProfileManager::ProfileManager()
{
}
ProfileManager::~ProfileManager()
{
2016-07-04 22:53:02 +03:00
//dumpBlocksToFile("test.prof");
}
ProfileManager& ProfileManager::instance()
2016-02-16 23:21:12 +03:00
{
///C++11 makes possible to create Singleton without any warry about thread-safeness
///http://preshing.com/20130930/double-checked-locking-is-fixed-in-cpp11/
static ProfileManager m_profileManager;
return m_profileManager;
2016-02-16 23:21:12 +03:00
}
2016-02-18 19:27:17 +03:00
void ProfileManager::beginBlock(Block* _block)
2016-02-18 00:45:13 +03:00
{
2016-02-18 19:27:17 +03:00
if (!m_isEnabled)
return;
2016-06-17 16:31:09 +03:00
if (BLOCK_TYPE_BLOCK == _block->getType()){
guard_lock_t lock(m_spin);
m_openedBracketsMap[_block->getThreadId()].push(_block);
}
else{
_internalInsertBlock(_block);
}
2016-02-18 00:45:13 +03:00
}
2016-02-16 23:21:12 +03:00
void ProfileManager::endBlock()
{
2016-02-24 00:08:13 +03:00
2016-02-18 19:27:17 +03:00
if (!m_isEnabled)
return;
2016-06-20 23:21:54 +03:00
uint32_t threadId = getCurrentThreadId();
2016-06-20 23:10:14 +03:00
2016-02-18 19:27:17 +03:00
guard_lock_t lock(m_spin);
auto& stackOfOpenedBlocks = m_openedBracketsMap[threadId];
if (stackOfOpenedBlocks.empty())
return;
Block* lastBlock = stackOfOpenedBlocks.top();
if (lastBlock && !lastBlock->isFinished()){
lastBlock->finish();
}
_internalInsertBlock(lastBlock);
2016-02-18 19:27:17 +03:00
stackOfOpenedBlocks.pop();
2016-02-16 23:21:12 +03:00
}
void ProfileManager::setEnabled(bool isEnable)
{
m_isEnabled = isEnable;
2016-02-16 23:25:12 +03:00
}
void ProfileManager::_internalInsertBlock(profiler::Block* _block)
{
guard_lock_t lock(m_storedSpin);
2016-08-07 21:40:23 +03:00
m_blocks.emplace_back(new SerializedBlock(_block));
2016-02-20 19:21:14 +03:00
}
2016-07-04 22:53:02 +03:00
unsigned int ProfileManager::dumpBlocksToFile(const char* filename)
{
std::ofstream of(filename, std::fstream::binary);
for (auto* b : m_blocks){
uint16_t sz = b->size();
of.write((const char*)&sz, sizeof(uint16_t));
of.write(b->data(), b->size());
delete b;
}
unsigned int size = (unsigned int)m_blocks.size();
m_blocks.clear();
return size;
}
2016-07-31 22:12:11 +03:00
void ProfileManager::setThreadName(const char* name)
{
auto current_thread_id = getCurrentThreadId();
guard_lock_t lock(m_storedSpin);
auto find_it = m_namedThreades.find(current_thread_id);
if (find_it != m_namedThreades.end())
return;
2016-07-31 22:12:11 +03:00
profiler::Block block(name, current_thread_id, 0, profiler::BLOCK_TYPE_THREAD_SIGN);
2016-08-07 21:40:23 +03:00
m_blocks.emplace_back(new SerializedBlock(&block));
m_namedThreades.insert(current_thread_id);
2016-07-31 22:12:11 +03:00
}
//////////////////////////////////////////////////////////////////////////
unsigned int ProfileManager::addSource(const char* _filename, int _line)
{
guard_lock_t lock(m_storedSpin);
const auto id = static_cast<unsigned int>(m_sources.size());
m_sources.emplace_back(_filename, _line);
return id;
}
//////////////////////////////////////////////////////////////////////////