Updated copyright
[libcds.git] / cds / os / aix / 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-2017
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_AIX_TIMER_H
32 #define CDSLIB_OS_AIX_TIMER_H
33
34 // Source: http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/libs/basetrf2/read_real_time.htm
35
36 #ifndef CDSLIB_OS_TIMER_H
37 #   error "<cds/os/timer.h> must be included"
38 #endif
39
40 #include <sys/time.h>
41 #include <sys/systemcfg.h>
42
43 //@cond none
44 namespace cds { namespace OS {
45     CDS_CXX11_INLINE_NAMESPACE namespace Aix {
46
47         // High resolution timer
48         class Timer {
49             timebasestruct_t    m_tmStart;
50
51         protected:
52             static unsigned long long nano( native_timer_type const& nStart, native_timer_type const& nEnd )
53             {
54                 return (((unsigned long long) (nEnd.tb_high - nStart.tb_high)) << 32) + (nEnd.tb_low - nStart.tb_low);
55             }
56
57         public:
58             typedef timebasestruct_t    native_timer_type;
59             typedef long long            native_duration_type;
60
61             Timer() : m_tmStart( current()) {}
62
63             static native_timer_type    current()
64             {
65                 native_timer_type tm;
66                 current( &tm );
67                 return tm;
68             }
69             static void current( native_timer_type& tmr )
70             {
71                 read_real_time( &tmr, sizeof(tmr));
72                 time_base_to_time( &tmr, sizeof(tmr ));
73             }
74
75             double reset()
76             {
77                 native_timer_type tt;
78                 current( tt );
79                 double ret = nano( m_tmStart, tt ) / 1.0E9;
80                 m_tmStart = tt;
81                 return ret;
82             }
83
84             double duration( native_duration_type dur )
85             {
86                 return double( dur ) / 1.0E9;
87             }
88
89             double duration()
90             {
91                 return duration( native_duration());
92             }
93
94             native_duration_type    native_duration()
95             {
96                 return native_duration( m_tmStart, current());
97             }
98
99             static native_duration_type    native_duration( native_timer_type const & nStart, native_timer_type const & nEnd )
100             {
101                 return nano( nStart, nEnd );
102             }
103
104             static unsigned long long random_seed()
105             {
106                 native_timer_type tmr;
107                 read_real_time( &tmr, sizeof(tmr));
108                 return ( ((unsigned long long)(tmr.tb_hight)) << 32 ) + tmr.tb_low;
109             }
110         };
111     }    // namespace Aix
112
113 #ifndef CDS_CXX11_INLINE_NAMESPACE_SUPPORT
114     typedef Aix::Timer    Timer;
115 #endif
116
117 }}   // namespace cds::OS
118 //@endcond
119
120 #endif // #ifndef CDSLIB_OS_AIX_TIMER_H