summaryrefslogtreecommitdiff
path: root/zen/perf.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2017-01-08 18:21:23 +0100
committerDaniel Wilhelm <shieldwed@outlook.com>2017-01-08 18:21:23 +0100
commitfe660cdff59aa3a939479ed60172e5c0803552b2 (patch)
tree045cf295b79de10f75ed6362c5836db25c9fc63a /zen/perf.h
parent8.6 (diff)
downloadFreeFileSync-fe660cdff59aa3a939479ed60172e5c0803552b2.tar.gz
FreeFileSync-fe660cdff59aa3a939479ed60172e5c0803552b2.tar.bz2
FreeFileSync-fe660cdff59aa3a939479ed60172e5c0803552b2.zip
8.7
Diffstat (limited to 'zen/perf.h')
-rw-r--r--zen/perf.h63
1 files changed, 24 insertions, 39 deletions
diff --git a/zen/perf.h b/zen/perf.h
index e3827fd1..6cd874b8 100644
--- a/zen/perf.h
+++ b/zen/perf.h
@@ -7,12 +7,13 @@
#ifndef PERF_H_83947184145342652456
#define PERF_H_83947184145342652456
+#include <chrono>
#include "deprecate.h"
-#include "tick_count.h"
#include "scope_guard.h"
#ifdef ZEN_WIN
#include <sstream>
+ #include "win.h"
#else
#include <iostream>
#endif
@@ -28,54 +29,47 @@ namespace zen
class PerfTimer
{
public:
- class TimerError {};
+ ZEN_DEPRECATE PerfTimer() {}
- ZEN_DEPRECATE
- PerfTimer() : startTime(getTicksNow()) //throw TimerError
- {
- //std::clock() - "counts CPU time in Linux GCC and wall time in VC++" - WTF!???
- if (ticksPerSec_ == 0)
- throw TimerError();
- }
-
- ~PerfTimer() { if (!resultShown) try { showResult(); } catch (TimerError&) { assert(false); } }
+ ~PerfTimer() { if (!resultShown_) showResult(); }
void pause()
{
- if (!paused)
+ if (!paused_)
{
- paused = true;
- elapsedUntilPause += dist(startTime, getTicksNow());
+ paused_ = true;
+ elapsedUntilPause_ += std::chrono::steady_clock::now() - startTime_; //ignore potential ::QueryPerformanceCounter() wrap-around!
}
}
void resume()
{
- if (paused)
+ if (paused_)
{
- paused = false;
- startTime = getTicksNow();
+ paused_ = false;
+ startTime_ = std::chrono::steady_clock::now();
}
}
void restart()
{
- startTime = getTicksNow();
- paused = false;
- elapsedUntilPause = 0;
+ paused_ = false;
+ startTime_ = std::chrono::steady_clock::now();
+ elapsedUntilPause_ = std::chrono::nanoseconds::zero();
}
int64_t timeMs() const
{
- int64_t ticksTotal = elapsedUntilPause;
- if (!paused)
- ticksTotal += dist(startTime, getTicksNow());
- return 1000 * ticksTotal / ticksPerSec_;
+ auto elapsedTotal = elapsedUntilPause_;
+ if (!paused_)
+ elapsedTotal += std::chrono::steady_clock::now() - startTime_;
+
+ return std::chrono::duration_cast<std::chrono::milliseconds>(elapsedTotal).count();
}
void showResult()
{
- const bool wasRunning = !paused;
+ const bool wasRunning = !paused_;
if (wasRunning) pause(); //don't include call to MessageBox()!
ZEN_ON_SCOPE_EXIT(if (wasRunning) resume());
@@ -86,23 +80,14 @@ public:
#else
std::clog << "Perf: duration: " << timeMs() << " ms\n";
#endif
- resultShown = true;
+ resultShown_ = true;
}
private:
- TickVal getTicksNow() const
- {
- const TickVal now = getTicks();
- if (!now.isValid())
- throw TimerError();
- return now;
- }
-
- const std::int64_t ticksPerSec_ = ticksPerSec(); //return 0 on error
- bool resultShown = false;
- TickVal startTime;
- bool paused = false;
- int64_t elapsedUntilPause = 0;
+ bool resultShown_ = false;
+ bool paused_ = false;
+ std::chrono::steady_clock::time_point startTime_ = std::chrono::steady_clock::now(); //uses ::QueryPerformanceCounter()
+ std::chrono::nanoseconds elapsedUntilPause_{}; //std::chrono::duration is uninitialized by default! WTF! When will this stupidity end???
};
}
bgstack15