-
Notifications
You must be signed in to change notification settings - Fork 2
/
raiitimer.h
50 lines (40 loc) · 1.65 KB
/
raiitimer.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
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
* You should have received a copy of GNU Lesser General Public License v2.1
* with this file. If not, please refer to: https://github.com/jniemann66/ReSampler
*/
#ifndef _RAIITIMER_H
#define _RAIITIMER_H 1
#include <iostream>
#include <iomanip>
#include <chrono>
// class RaiiTimer : starts a high-resolution timer upon construction and prints elapsed time to stdout upon destruction
// For convenience, a reference time value (in ms) for comparison may be provided using the parameter msComparison.
namespace SndSpec {
class RaiiTimer {
public:
explicit RaiiTimer(double msComparison = 0.0) : msComparison(msComparison) {
beginTimer = std::chrono::high_resolution_clock::now();
}
~RaiiTimer() {
endTimer = std::chrono::high_resolution_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::microseconds>(endTimer - beginTimer).count();
std::cout << " Time=" << std::setprecision(5) << 0.001 * duration << " ms";
if(msComparison != 0.0) {
double relativeSpeed = msComparison / duration;
auto ss = std::cout.precision();
std::cout << " [" << std::setprecision(1) << relativeSpeed << "x]" << std::setprecision(
static_cast<int>(ss));
}
std::cout << "\n" << std::endl;
}
private:
std::chrono::time_point<std::chrono::high_resolution_clock> beginTimer;
std::chrono::time_point<std::chrono::high_resolution_clock> endTimer;
double msComparison;
};
} // namespace SndSpec
#endif // _RAIITIMER_H