aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Win32/Timer.c
blob: 03d4d7f0e572c218f3ef2b1f0e2837cbf01242d3 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#include <BH/Timer.h>

#include <stdlib.h>
#include <windows.h>


#define TYPE_TICKS   0x0000
#define TYPE_COUNTER 0x0001


struct BH_Timer
{
    int type;
    LARGE_INTEGER frequency;
    int64_t sec;
    int64_t nsec;
};


static int checkAvailableTimer(LARGE_INTEGER *frequency)
{
    LARGE_INTEGER dummy;

    if (QueryPerformanceFrequency(frequency))
    {
        if (QueryPerformanceCounter(&dummy))
        {
            return TYPE_COUNTER;
        }
    }

    return TYPE_TICKS;
}


static void getTimer(int type,
                     LARGE_INTEGER *frequency,
                     int64_t *sec,
                     int64_t *nsec)
{
    LARGE_INTEGER newCount;
    int64_t newTicks;

    switch (type)
    {
    case TYPE_COUNTER:
        QueryPerformanceCounter(&newCount);
        *sec = newCount.QuadPart / frequency->QuadPart;
        *nsec = (newCount.QuadPart - *sec * frequency->QuadPart) * 1000000000 / frequency->QuadPart;
        break;

    default:
    case TYPE_TICKS:
        newTicks = GetTickCount64();
        *sec = newTicks / 1000;
        *nsec = (newTicks - *sec * 1000) * 1000000;
        break;
    }
}


BH_Timer *BH_TimerNew(void)
{
    BH_Timer *result;

    result = malloc(sizeof(*result));
    if (result)
    {
        result->type = checkAvailableTimer(&result->frequency);
        BH_TimerStart(result);
    }

    return result;
}


void BH_TimerFree(BH_Timer *timer)
{
    free(timer);
}


int BH_TimerIsMonotonic(BH_Timer *timer)
{
    return timer->type == TYPE_COUNTER;
}


void BH_TimerStart(BH_Timer *timer)
{
    getTimer(timer->type, &timer->frequency, &timer->sec, &timer->nsec);
}


int64_t BH_TimerRestart(BH_Timer *timer)
{
    int64_t oldSec, oldNsec;

    oldSec = timer->sec; oldNsec = timer->nsec;

    getTimer(timer->type, &timer->frequency, &timer->sec, &timer->nsec);
    oldSec = timer->sec - oldSec;
    oldNsec = timer->nsec - oldNsec;

    return (oldSec * 1000) + (oldNsec / 1000000);
}


int64_t BH_TimerMilliseconds(BH_Timer *timer)
{
    int64_t newSec, newNsec;

    getTimer(timer->type, &timer->frequency, &newSec, &newNsec);
    newSec -= timer->sec;
    newNsec -= timer->nsec;

    return (newSec * 1000) + (newNsec / 1000000);
}


int64_t BH_TimerNanoseconds(BH_Timer *timer)
{
    int64_t newSec, newNsec;

    getTimer(timer->type, &timer->frequency, &newSec, &newNsec);
    newSec -= timer->sec;
    newNsec -= timer->nsec;

    return (newSec * 1000000000) + newNsec;
}