Removed redundant spaces
[libcds.git] / cds / os / osx / 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_OSX_TIMER_H
32 #define CDSLIB_OS_OSX_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 #include <sys/time.h>
40 #include <mach/clock.h>
41 #include <mach/mach.h>
42
43 // From http://stackoverflow.com/questions/11680461/monotonic-clock-on-osx
44
45 //@cond none
46 namespace cds { namespace OS {
47     CDS_CXX11_INLINE_NAMESPACE namespace OS_X {
48
49         // High resolution timer
50         class Timer {
51         public:
52             typedef mach_timespec_t native_timer_type;
53             typedef long long       native_duration_type;
54
55         private:
56             native_timer_type    m_tmStart;
57             clock_serv_t         m_Service;
58
59         public:
60
61             Timer()
62             {
63                 host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &m_Service);
64                 current( m_tmStart );
65             }
66             ~Timer()
67             {
68                 mach_port_deallocate(mach_task_self(), m_Service);
69             }
70
71             void current( native_timer_type& tmr )
72             {
73                 clock_get_time(m_Service, &tmr);
74             }
75
76             native_timer_type    current()
77             {
78                 native_timer_type    tmr;
79                 current(tmr);
80                 return tmr;
81             }
82
83             double reset()
84             {
85                 native_timer_type ts;
86                 current( ts );
87                 double dblRet = ( ts.tv_sec - m_tmStart.tv_sec ) + ( ts.tv_nsec - m_tmStart.tv_nsec ) / 1.0E9;
88                 m_tmStart = ts;
89                 return dblRet;
90             }
91
92             double duration( native_duration_type dur )
93             {
94                 return double( dur ) / 1.0E9;
95             }
96
97             double duration()
98             {
99                 return duration( native_duration());
100             }
101
102             native_duration_type    native_duration()
103             {
104                 native_timer_type ts;
105                 current( ts );
106                 return native_duration( m_tmStart, ts );
107             }
108
109             static native_duration_type    native_duration( const native_timer_type& nStart, const native_timer_type& nEnd )
110             {
111                 return native_duration_type( nEnd.tv_sec - nStart.tv_sec ) * 1000000000 + ( nEnd.tv_nsec - nStart.tv_nsec);
112             }
113
114             static unsigned long long random_seed()
115             {
116                 native_timer_type tmr;
117                 Timer tm;
118                 tm.current( tmr );
119                 return ( ((unsigned long long)(tmr.tv_sec)) << 32 ) + tmr.tv_nsec;
120             }
121         };
122     }    // namespace OS_X
123
124 #ifndef CDS_CXX11_INLINE_NAMESPACE_SUPPORT
125     typedef OS_X::Timer    Timer;
126 #endif
127
128 }}    // namespace cds::OS
129 //@endcond
130
131 #endif // #ifndef CDSLIB_OS_LINUX_TIMER_H