File: timer.h

package info (click to toggle)
libcds 2.3.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,632 kB
  • sloc: cpp: 135,002; ansic: 7,234; perl: 243; sh: 237; makefile: 6
file content (91 lines) | stat: -rw-r--r-- 2,696 bytes parent folder | download | duplicates (3)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright (c) 2006-2018 Maxim Khizhinsky
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

#ifndef CDSLIB_OS_AIX_TIMER_H
#define CDSLIB_OS_AIX_TIMER_H

// Source: http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/libs/basetrf2/read_real_time.htm

#ifndef CDSLIB_OS_TIMER_H
#   error "<cds/os/timer.h> must be included"
#endif

#include <sys/time.h>
#include <sys/systemcfg.h>

//@cond none
namespace cds { namespace OS {
    inline namespace Aix {

        // High resolution timer
        class Timer {
            timebasestruct_t    m_tmStart;

        protected:
            static unsigned long long nano( native_timer_type const& nStart, native_timer_type const& nEnd )
            {
                return (((unsigned long long) (nEnd.tb_high - nStart.tb_high)) << 32) + (nEnd.tb_low - nStart.tb_low);
            }

        public:
            typedef timebasestruct_t    native_timer_type;
            typedef long long            native_duration_type;

            Timer() : m_tmStart( current()) {}

            static native_timer_type    current()
            {
                native_timer_type tm;
                current( &tm );
                return tm;
            }
            static void current( native_timer_type& tmr )
            {
                read_real_time( &tmr, sizeof(tmr));
                time_base_to_time( &tmr, sizeof(tmr ));
            }

            double reset()
            {
                native_timer_type tt;
                current( tt );
                double ret = nano( m_tmStart, tt ) / 1.0E9;
                m_tmStart = tt;
                return ret;
            }

            double duration( native_duration_type dur )
            {
                return double( dur ) / 1.0E9;
            }

            double duration()
            {
                return duration( native_duration());
            }

            native_duration_type    native_duration()
            {
                return native_duration( m_tmStart, current());
            }

            static native_duration_type    native_duration( native_timer_type const & nStart, native_timer_type const & nEnd )
            {
                return nano( nStart, nEnd );
            }

            static unsigned long long random_seed()
            {
                native_timer_type tmr;
                read_real_time( &tmr, sizeof(tmr));
                return ( ((unsigned long long)(tmr.tb_hight)) << 32 ) + tmr.tb_low;
            }
        };
    }    // namespace Aix

}}   // namespace cds::OS
//@endcond

#endif // #ifndef CDSLIB_OS_AIX_TIMER_H