summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat/timer.hpp
blob: 9523c8c97bb993352ed0426933988546a053cd1f (plain)
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
/* Copyright (c) 2014-2015, Stanislaw Halik <sthalik@misaki.pl>

 * Permission to use, copy, modify, and/or distribute this
 * software for any purpose with or without fee is hereby granted,
 * provided that the above copyright notice and this permission
 * notice appear in all copies.
 */

#pragma once
#include <ctime>

#include "export.hpp"

#if defined (_WIN32)
#   include <windows.h>
#	ifndef CLOCK_MONOTONIC
#   	define CLOCK_MONOTONIC -1
#	endif
static inline void opentrack_clock_gettime(int, struct timespec* ts)
{
    static LARGE_INTEGER freq;

    if (!freq.QuadPart)
        (void) QueryPerformanceFrequency(&freq);

    LARGE_INTEGER d;

    (void) QueryPerformanceCounter(&d);

    using t = long long;
    const long long part = t(d.QuadPart / ((long double)freq.QuadPart) * 1000000000.L);
    using t_s = decltype(ts->tv_sec);
    using t_ns = decltype(ts->tv_nsec);

    ts->tv_sec = t_s(part / 1000000000LL);
    ts->tv_nsec = t_ns(part % 1000000000LL);
}
#	define clock_gettime opentrack_clock_gettime
#else
#   if defined(__MACH__)
#       define CLOCK_MONOTONIC 0
#       include <inttypes.h>
#       include <mach/mach_time.h>
static inline void clock_gettime(int, struct timespec* ts)
{
    static mach_timebase_info_data_t    sTimebaseInfo;
    uint64_t state, nsec;
    if ( sTimebaseInfo.denom == 0 ) {
        (void) mach_timebase_info(&sTimebaseInfo);
    }
    state = mach_absolute_time();
    nsec = state * sTimebaseInfo.numer / sTimebaseInfo.denom;
    ts->tv_sec = nsec / 1000000000L;
    ts->tv_nsec = nsec % 1000000000L;
}
#   endif
#endif
class Timer
{
private:
    struct timespec state;
    long long conv(const struct timespec& cur) const
    {
        return (cur.tv_sec - state.tv_sec) * 1000000000LL + (cur.tv_nsec - state.tv_nsec);
    }
public:
    Timer() {
        start();
    }
    void start() {
        clock_gettime(CLOCK_MONOTONIC, &state);
    }
    long long elapsed() const {
        struct timespec cur;
        clock_gettime(CLOCK_MONOTONIC, &cur);
        return conv(cur);
    }
    long elapsed_ms() const {
        return long(elapsed() / 1000000LL);
    }
    double elapsed_seconds() const
    {
        return elapsed() * 1e-9;
    }
};