sl@0
|
1 |
// boost timer.hpp header file ---------------------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright Beman Dawes 1994-99. Distributed under the Boost
|
sl@0
|
4 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
5 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
6 |
|
sl@0
|
7 |
// See http://www.boost.org/libs/timer for documentation.
|
sl@0
|
8 |
|
sl@0
|
9 |
// Revision History
|
sl@0
|
10 |
// 01 Apr 01 Modified to use new <boost/limits.hpp> header. (JMaddock)
|
sl@0
|
11 |
// 12 Jan 01 Change to inline implementation to allow use without library
|
sl@0
|
12 |
// builds. See docs for more rationale. (Beman Dawes)
|
sl@0
|
13 |
// 25 Sep 99 elapsed_max() and elapsed_min() added (John Maddock)
|
sl@0
|
14 |
// 16 Jul 99 Second beta
|
sl@0
|
15 |
// 6 Jul 99 Initial boost version
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef BOOST_TIMER_HPP
|
sl@0
|
18 |
#define BOOST_TIMER_HPP
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <boost/config.hpp>
|
sl@0
|
21 |
#include <ctime>
|
sl@0
|
22 |
#include <boost/limits.hpp>
|
sl@0
|
23 |
|
sl@0
|
24 |
# ifdef BOOST_NO_STDC_NAMESPACE
|
sl@0
|
25 |
namespace std { using ::clock_t; using ::clock; }
|
sl@0
|
26 |
# endif
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
namespace boost {
|
sl@0
|
30 |
|
sl@0
|
31 |
// timer -------------------------------------------------------------------//
|
sl@0
|
32 |
|
sl@0
|
33 |
// A timer object measures elapsed time.
|
sl@0
|
34 |
|
sl@0
|
35 |
// It is recommended that implementations measure wall clock rather than CPU
|
sl@0
|
36 |
// time since the intended use is performance measurement on systems where
|
sl@0
|
37 |
// total elapsed time is more important than just process or CPU time.
|
sl@0
|
38 |
|
sl@0
|
39 |
// Warnings: The maximum measurable elapsed time may well be only 596.5+ hours
|
sl@0
|
40 |
// due to implementation limitations. The accuracy of timings depends on the
|
sl@0
|
41 |
// accuracy of timing information provided by the underlying platform, and
|
sl@0
|
42 |
// this varies a great deal from platform to platform.
|
sl@0
|
43 |
|
sl@0
|
44 |
class timer
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
timer() { _start_time = std::clock(); } // postcondition: elapsed()==0
|
sl@0
|
48 |
// timer( const timer& src ); // post: elapsed()==src.elapsed()
|
sl@0
|
49 |
// ~timer(){}
|
sl@0
|
50 |
// timer& operator=( const timer& src ); // post: elapsed()==src.elapsed()
|
sl@0
|
51 |
void restart() { _start_time = std::clock(); } // post: elapsed()==0
|
sl@0
|
52 |
double elapsed() const // return elapsed time in seconds
|
sl@0
|
53 |
{ return double(std::clock() - _start_time) / CLK_TCK; }
|
sl@0
|
54 |
|
sl@0
|
55 |
double elapsed_max() const // return estimated maximum value for elapsed()
|
sl@0
|
56 |
// Portability warning: elapsed_max() may return too high a value on systems
|
sl@0
|
57 |
// where std::clock_t overflows or resets at surprising values.
|
sl@0
|
58 |
{
|
sl@0
|
59 |
return (double((std::numeric_limits<std::clock_t>::max)())
|
sl@0
|
60 |
- double(_start_time)) / double(CLK_TCK);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
double elapsed_min() const // return minimum value for elapsed()
|
sl@0
|
64 |
{ return double(1)/double(CLK_TCK); }
|
sl@0
|
65 |
|
sl@0
|
66 |
private:
|
sl@0
|
67 |
std::clock_t _start_time;
|
sl@0
|
68 |
}; // timer
|
sl@0
|
69 |
|
sl@0
|
70 |
} // namespace boost
|
sl@0
|
71 |
|
sl@0
|
72 |
#endif // BOOST_TIMER_HPP
|