summaryrefslogtreecommitdiffstats
path: root/src/Stopwatch.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
committerMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
commit3fb356648453169758a9f5649f0ed4c5925d911f (patch)
tree57c90ff51aaeac4b1c2e05538a9f486da0a19f28 /src/Stopwatch.h
parentMerge pull request #2696 from Gargaj/breeding (diff)
parentChanged Nether defaults to use PieceStructures. (diff)
downloadcuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.gz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.bz2
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.lz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.xz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.zst
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.zip
Diffstat (limited to 'src/Stopwatch.h')
-rw-r--r--src/Stopwatch.h43
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;
+};
+
+
+
+