2015-11-11 04:32:42 -05:00
|
|
|
|
|
|
|
// Stopwatch.h
|
|
|
|
|
|
|
|
// Implements the cStopwatch class that measures and logs time between its creation and destruction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cStopwatch
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cStopwatch(const AString & a_Name):
|
|
|
|
m_Name(a_Name),
|
|
|
|
m_StartTime(std::chrono::high_resolution_clock::now())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~cStopwatch()
|
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - m_StartTime).count();
|
|
|
|
LOG("Stopwatch: %s took %.03f sec", m_Name, static_cast<double>(duration) / 1000);
|
2015-11-11 04:32:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
AString m_Name;
|
|
|
|
std::chrono::high_resolution_clock::time_point m_StartTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|