libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
StopWatch.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/time/Clock.hxx>
5
6namespace cosmos {
7
9template <ClockType CLOCK>
10class StopWatch {
11public: // types
12
14
15public: // functions
16
18 explicit StopWatch(const InitialMark do_mark = InitialMark{}) {
19 if (do_mark)
20 mark();
21 }
22
24 void mark() {
25 m_clock.now(m_mark);
26 }
27
29 size_t elapsedMs() const {
30 return (m_clock.now() - m_mark).toMilliseconds();
31 }
32
33 std::chrono::milliseconds elapsed() const {
34 return static_cast<std::chrono::milliseconds>(m_clock.now() - m_mark);
35 }
36
39 return m_mark;
40 }
41
42protected: // data
43
44 TimeSpec<CLOCK> m_mark;
45 Clock<CLOCK> m_clock;
46};
47
48using AtomicRealTimeStopWatch = StopWatch<ClockType::ATOMIC_REALTIME>;
49using CoarseMonotonicStopWatch = StopWatch<ClockType::MONOTONIC_COARSE>;
50using CoarseRealTimeStopWatch = StopWatch<ClockType::REALTIME_COARSE>;
51using MonotonicStopWatch = StopWatch<ClockType::MONOTONIC>;
52using ProcessStopWatch = StopWatch<ClockType::PROCESS_CPUTIME>;
53using RawMonotonicStopWatch = StopWatch<ClockType::MONOTONIC_RAW>;
54using RealTimeStopWatch = StopWatch<ClockType::REALTIME>;
55using ThreadStopWatch = StopWatch<ClockType::THREAD_CPUTIME>;
56
57} // end ns
C++ wrapper around the POSIX clocks and related functions.
Definition Clock.hxx:16
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
A type to measure elapsed time based on a given clock type.
Definition StopWatch.hxx:10
size_t elapsedMs() const
Returns the elapsed milliseconds since the active mark.
Definition StopWatch.hxx:29
StopWatch(const InitialMark do_mark=InitialMark{})
Construct and optionally set an initial mark().
Definition StopWatch.hxx:18
void mark()
Set a new stop mark to compare against.
Definition StopWatch.hxx:24
TimeSpec< CLOCK > currentMark() const
Returns the currently set mark (undefined if mark() was never called!).
Definition StopWatch.hxx:38
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57