diff options
author | Mattes D <github@xoft.cz> | 2015-11-11 10:32:42 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-12-01 10:35:07 +0100 |
commit | b8fbba5eb92cda32b13d65f3704adf778da82f38 (patch) | |
tree | 0c6e8f47ae152e5ffade6f0a7457505101764753 /src/Stopwatch.h | |
parent | Merge pull request #2696 from Gargaj/breeding (diff) | |
download | cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.gz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.bz2 cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.lz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.xz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.zst cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Stopwatch.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/Stopwatch.h b/src/Stopwatch.h new file mode 100644 index 000000000..72fbf4f68 --- /dev/null +++ b/src/Stopwatch.h @@ -0,0 +1,43 @@ + +// Stopwatch.h + +// Implements the cStopwatch class that measures and logs time between its creation and destruction + + + + + + +#pragma once + +#include <chrono> + + + + + +class cStopwatch +{ +public: + cStopwatch(const AString & a_Name): + m_Name(a_Name), + m_StartTime(std::chrono::high_resolution_clock::now()) + { + } + + ~cStopwatch() + { + #ifdef _DEBUG + auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - m_StartTime).count(); + LOGD("Stopwatch: %s took %.03f sec", m_Name.c_str(), static_cast<double>(duration) / 1000); + #endif // _DEBUG + } + +protected: + AString m_Name; + std::chrono::high_resolution_clock::time_point m_StartTime; +}; + + + + |