summaryrefslogtreecommitdiffstats
path: root/src/OSSupport
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2021-05-04 17:11:56 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2021-05-04 17:11:56 +0200
commit34bf5c0d9db195edf8b576d1273876966cf650b2 (patch)
treeb9682f8226fef09d3625089ba06235f93ce5c976 /src/OSSupport
parentAdd player statistics to API (#5193) (diff)
downloadcuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar.gz
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar.bz2
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar.lz
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar.xz
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.tar.zst
cuberite-34bf5c0d9db195edf8b576d1273876966cf650b2.zip
Diffstat (limited to 'src/OSSupport')
-rw-r--r--src/OSSupport/CMakeLists.txt1
-rw-r--r--src/OSSupport/Stopwatch.h38
2 files changed, 39 insertions, 0 deletions
diff --git a/src/OSSupport/CMakeLists.txt b/src/OSSupport/CMakeLists.txt
index 742bdcccf..3761913e1 100644
--- a/src/OSSupport/CMakeLists.txt
+++ b/src/OSSupport/CMakeLists.txt
@@ -36,6 +36,7 @@ target_sources(
SleepResolutionBooster.h
StackTrace.h
StartAsService.h
+ Stopwatch.h
TCPLinkImpl.h
UDPEndpointImpl.h
WinStackWalker.h
diff --git a/src/OSSupport/Stopwatch.h b/src/OSSupport/Stopwatch.h
new file mode 100644
index 000000000..7676b3856
--- /dev/null
+++ b/src/OSSupport/Stopwatch.h
@@ -0,0 +1,38 @@
+
+// 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()
+ {
+ 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);
+ }
+
+protected:
+ AString m_Name;
+ std::chrono::high_resolution_clock::time_point m_StartTime;
+};
+
+
+
+