-
Notifications
You must be signed in to change notification settings - Fork 60
/
cyTimer.h
237 lines (198 loc) · 7.4 KB
/
cyTimer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// cyCodeBase by Cem Yuksel
// [www.cemyuksel.com]
//-------------------------------------------------------------------------------
//! \file cyTimer.h
//! \author Cem Yuksel
//!
//! \brief Timer classes to measure performance
//!
//! This file includes timer classes to measure performance in windows systems.
//! Timer class uses Windows specific calls to measure the time,
//! therefore this file can only be used in windows platforms.
//!
//-------------------------------------------------------------------------------
//
// Copyright (c) 2016, Cem Yuksel <[email protected]>
// All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
//-------------------------------------------------------------------------------
#ifndef _CY_TIMER_H_INCLUDED_
#define _CY_TIMER_H_INCLUDED_
//-------------------------------------------------------------------------------
#include <chrono>
#include "cyCore.h"
#ifdef _WIN32
# include <windows.h>
#endif
//-------------------------------------------------------------------------------
namespace cy {
//-------------------------------------------------------------------------------
//! Simple stopwatch class.
//!
//! Use this class to measure the time between Start and Stop calls.
class Timer
{
public:
//! Starts the timer
void Start() {
startTime = std::chrono::high_resolution_clock::now();
}
//! Returns the time passed since Start call in seconds.
//! Note that this method does not actually stop the timer,
//! it only returns the time passed since Start call.
//! Therefore, you can call this method as many times as you like
//! once you call Start method once.
double Stop() const {
std::chrono::time_point<std::chrono::high_resolution_clock> endTime = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> dif = endTime - startTime;
return dif.count();
}
protected:
std::chrono::time_point<std::chrono::high_resolution_clock> startTime; //!< Keeps the starting time
};
//-------------------------------------------------------------------------------
//! A stopwatch class that measures the CPU time of the current process.
class TimerCPU
{
#ifdef _WIN32
typedef double clock_data;
#else
typedef clock_t clock_data;
#endif
public:
//! Starts the timer
void Start()
{
#ifdef _WIN32
processHandle = GetCurrentProcess();
#endif
startTime = GetTime();
}
//! Returns the time passed since Start call in seconds.
//! Note that this method does not actually stop the timer,
//! it only returns the time passed since Start call.
//! Therefore, you can call this method as many times as you like
//! once you call Start method once.
double Stop() const
{
clock_data diff = GetTime() - startTime;
#ifdef _WIN32
return diff;
#else
return double(diff)/CLOCKS_PER_SEC;
#endif
}
protected:
clock_data GetTime() const
{
#ifdef _WIN32
FILETIME a,b,c,d;
return ( GetProcessTimes(processHandle,&a,&b,&c,&d) != 0 ) ? (double)(d.dwLowDateTime | ((unsigned long long)d.dwHighDateTime << 32)) * 0.0000001 : 0.0;
#else
return clock();
#endif
}
clock_data startTime; //!< Keeps the starting time
#ifdef _WIN32
HANDLE processHandle;
#endif
};
//-------------------------------------------------------------------------------
//! Stopwatch class with statistics.
//!
//! Use this class to measure the time between Start and Stop calls.
//! Unlike Timer class, this class also provides statistical information.
class TimerStats
{
public:
TimerStats() { Clear(); }
//!@name Timer Methods
//! Starts the timer
void Start() {
timer.Start();
}
//! Stops the timer and records the current measurement.
//! Returns the time passed since Start call in seconds.
double Stop() {
double t = timer.Stop();
unsigned char p = pos & 0x7F;
totalTime += t - times[ p ];
times[ p ] = t;
if ( minTime > t ) minTime = t;
if ( maxTime < t ) maxTime = t;
// Increment pos such that the first bit shows if times array is full.
p++;
pos = ( p & 0x7F ) + ( ( pos | p ) & 0x80 );
return t;
}
//!@name Statistics Methods
//! Clears all the time records
void Clear() {
for ( int i=0; i<128; i++ ) times[i] = 0;
minTime = 1.0e30;
maxTime = 0;
totalTime = 0;
pos = 0;
}
//! Returns the last measured time.
//! If no time is measured before, returns zero.
double GetLastTime() const { return times[ (pos-1) & 0x7F ]; }
//! Returns the minimum measured time
double GetMin() const { return minTime; }
//! Returns the maximum measured time
double GetMax() const { return maxTime; }
//! Returns the average of all recorded times (max previous 128 records)
double GetAverage() const { return totalTime / (double) GetRecordCount(); }
//! Returns the variance of the time records.
//! Note that this method goes over all time records,
//! so it may take a little time to compute the variance.
double GetVariance() const {
unsigned char count = GetRecordCount();
double avrg = totalTime / (double) count;
double var = 0;
for ( int i=0; i<count; i++ ) var += (times[i]-avrg) * (times[i]-avrg);
return var / (double) count;
}
//! Returns the standard deviation of the time records.
//! Note that this method goes over all time records,
//! so it may take a little time to compute the standard deviation.
double GetStdev() const { return Sqrt( GetVariance() ); }
//!@name Access time records
//! Returns the number of time records.
unsigned char GetRecordCount() const { return ( pos & 0x80 ) ? 128 : pos; }
//! Returns the array of time records.
double const * GetRecords() const { return times; }
protected:
//! \internal
Timer timer; // The timer
double times[128]; // List of measured times
double minTime; // Minimum time recorded
double maxTime; // Maximum time recorded
double totalTime; // Total of recorded times
unsigned char pos; // Position of the next time record
};
//-------------------------------------------------------------------------------
} // namespace cy
//-------------------------------------------------------------------------------
typedef cy::Timer cyTimer; //!< Simple stopwatch class
typedef cy::TimerStats cyTimerStats; //!< Stopwatch class with statistics
//-------------------------------------------------------------------------------
#endif