Removed redundant spaces
[libcds.git] / cds / os / posix / timer.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef CDSLIB_OS_POSIX_TIMER_H
32 #define CDSLIB_OS_POSIX_TIMER_H
33
34 #ifndef CDSLIB_OS_TIMER_H
35 #   error "<cds/os/timer.h> must be included"
36 #endif
37
38 #include <time.h>
39
40 //@cond none
41 namespace cds { namespace OS {
42     CDS_CXX11_INLINE_NAMESPACE namespace posix {
43
44         // High resolution timer
45         // From Linux as an example
46         class Timer {
47         public:
48             typedef struct timespec native_timer_type;
49             typedef long long       native_duration_type;
50
51         private:
52             native_timer_type    m_tmStart;
53
54         public:
55             Timer() { current( m_tmStart ) ; }
56
57             static void current( native_timer_type& tmr )
58             {
59                 // faster than gettimeofday() and posix
60                 clock_gettime( CLOCK_REALTIME, &tmr );
61             }
62
63             static native_timer_type    current()
64             {
65                 native_timer_type    tmr;
66                 current(tmr);
67                 return tmr;
68             }
69
70             double reset()
71             {
72                 native_timer_type ts;
73                 current( ts );
74                 double dblRet = ( ts.tv_sec - m_tmStart.tv_sec ) + ( ts.tv_nsec - m_tmStart.tv_nsec ) / 1.0E9;
75                 m_tmStart = ts;
76                 return dblRet;
77             }
78
79             double duration( native_duration_type dur )
80             {
81                 return double( dur ) / 1.0E9;
82             }
83
84             double duration()
85             {
86                 return duration( native_duration());
87             }
88
89             native_duration_type    native_duration()
90             {
91                 native_timer_type ts;
92                 current( ts );
93                 return native_duration( m_tmStart, ts );
94             }
95
96             static native_duration_type    native_duration( const native_timer_type& nStart, const native_timer_type& nEnd )
97             {
98                 return native_duration_type( nEnd.tv_sec - nStart.tv_sec ) * 1000000000 + ( nEnd.tv_nsec - nStart.tv_nsec);
99             }
100
101             static unsigned long long random_seed()
102             {
103                 native_timer_type tmr;
104                 current( tmr );
105                 return ( ((unsigned long long)(tmr.tv_sec)) << 32 ) + tmr.tv_nsec;
106             }
107         };
108     }    // namespace posix
109
110 #ifndef CDS_CXX11_INLINE_NAMESPACE_SUPPORT
111     using posix::Timer;
112 #endif
113
114 }}    // namespace cds::OS
115 //@endcond
116
117 #endif // #ifndef CDSLIB_OS_POSIX_TIMER_H