axmol/core/base/Profiling.cpp

168 lines
4.8 KiB
C++
Raw Normal View History

/****************************************************************************
Copyright (c) 2010 Stuart Carnie
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "base/Profiling.h"
using namespace std;
NS_AX_BEGIN
2014-03-26 14:54:50 +08:00
// Profiling Categories
/* set to false the categories that you don't want to profile */
2021-12-25 10:04:45 +08:00
bool kProfilerCategorySprite = false;
bool kProfilerCategoryBatchSprite = false;
2021-12-25 10:04:45 +08:00
bool kProfilerCategoryParticles = false;
static Profiler* g_sSharedProfiler = nullptr;
Profiler* Profiler::getInstance()
{
2021-12-25 10:04:45 +08:00
if (!g_sSharedProfiler)
{
2021-12-08 00:11:53 +08:00
g_sSharedProfiler = new Profiler();
g_sSharedProfiler->init();
}
return g_sSharedProfiler;
}
ProfilingTimer* Profiler::createAndAddTimerWithName(const char* timerName)
{
2021-12-25 10:04:45 +08:00
ProfilingTimer* t = new ProfilingTimer();
t->initWithName(timerName);
_activeTimers.insert(timerName, t);
t->release();
return t;
}
void Profiler::releaseTimer(const char* timerName)
{
_activeTimers.erase(timerName);
}
void Profiler::releaseAllTimers()
{
_activeTimers.clear();
}
bool Profiler::init()
{
return true;
}
2021-12-25 10:04:45 +08:00
Profiler::~Profiler() {}
void Profiler::displayTimers()
{
for (auto&& iter : _activeTimers)
{
ProfilingTimer* timer = iter.second;
log("%s", timer->getDescription().c_str());
}
}
// implementation of ProfilingTimer
ProfilingTimer::ProfilingTimer()
2021-12-25 10:04:45 +08:00
: _averageTime1(0), _averageTime2(0), minTime(100000000), maxTime(0), totalTime(0), numberOfCalls(0)
{}
bool ProfilingTimer::initWithName(const char* timerName)
{
_nameStr = timerName;
return true;
}
2021-12-25 10:04:45 +08:00
ProfilingTimer::~ProfilingTimer() {}
std::string ProfilingTimer::getDescription() const
{
static char s_description[512] = {0};
snprintf(s_description, sizeof(s_description), "%s ::\tavg1: %u,\tavg2: %u,\tmin: %u,\tmax: %u,\ttotal: %.2fs,\tnr calls: %d",
2021-12-25 10:04:45 +08:00
_nameStr.c_str(), _averageTime1, _averageTime2, minTime, maxTime, totalTime / 1000000., numberOfCalls);
return s_description;
}
void ProfilingTimer::reset()
{
numberOfCalls = 0;
_averageTime1 = 0;
_averageTime2 = 0;
2021-12-25 10:04:45 +08:00
totalTime = 0;
minTime = 100000000;
maxTime = 0;
_startTime = chrono::high_resolution_clock::now();
}
2021-12-25 10:04:45 +08:00
void ProfilingBeginTimingBlock(const char* timerName)
{
2021-12-25 10:04:45 +08:00
Profiler* p = Profiler::getInstance();
ProfilingTimer* timer = p->_activeTimers.at(timerName);
2021-12-25 10:04:45 +08:00
if (!timer)
{
timer = p->createAndAddTimerWithName(timerName);
}
timer->numberOfCalls++;
// should be the last instruction in order to be more reliable
timer->_startTime = chrono::high_resolution_clock::now();
}
2021-12-25 10:04:45 +08:00
void ProfilingEndTimingBlock(const char* timerName)
{
// should be the 1st instruction in order to be more reliable
auto now = chrono::high_resolution_clock::now();
2021-12-25 10:04:45 +08:00
Profiler* p = Profiler::getInstance();
ProfilingTimer* timer = p->_activeTimers.at(timerName);
2022-07-16 10:43:05 +08:00
AXASSERT(timer, "CCProfilingTimer not found");
2021-12-25 10:04:45 +08:00
int32_t duration =
static_cast<int32_t>(chrono::duration_cast<chrono::microseconds>(now - timer->_startTime).count());
timer->totalTime += duration;
timer->_averageTime1 = (timer->_averageTime1 + duration) / 2.0f;
timer->_averageTime2 = timer->totalTime / timer->numberOfCalls;
2021-12-25 10:04:45 +08:00
timer->maxTime = MAX(timer->maxTime, duration);
timer->minTime = MIN(timer->minTime, duration);
}
2021-12-25 10:04:45 +08:00
void ProfilingResetTimingBlock(const char* timerName)
{
2021-12-25 10:04:45 +08:00
Profiler* p = Profiler::getInstance();
ProfilingTimer* timer = p->_activeTimers.at(timerName);
2022-07-16 10:43:05 +08:00
AXASSERT(timer, "CCProfilingTimer not found");
timer->reset();
}
NS_AX_END