]> git.cworth.org Git - apitrace/blob - common/os_time.hpp
Merge branch 'master' into d2d
[apitrace] / common / os_time.hpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 /*
27  * Simple OS time measurement abstraction.
28  */
29
30 #ifndef _OS_TIME_HPP_
31 #define _OS_TIME_HPP_
32
33
34 #if defined(_WIN32)
35 #include <windows.h>
36 #elif defined(__linux__)
37 #include <time.h>
38 #else
39 #include <sys/time.h>
40 #endif
41
42
43 namespace os {
44
45     // OS dependent time frequency
46 #if defined(_WIN32)
47     // runtime variable on Windows
48     extern long long timeFrequency;
49 #elif defined(__linux__)
50     // nanoseconds
51     static const long long timeFrequency = 1000000000;
52 #else
53     // microseconds on
54     static const long long timeFrequency = 1000000;
55 #endif
56
57     // Time from an unknown base in a unit determined by timeFrequency
58     inline long long
59     getTime(void) {
60 #if defined(_WIN32)
61         if (!timeFrequency) {
62             LARGE_INTEGER frequency;
63             QueryPerformanceFrequency(&frequency);
64             timeFrequency = frequency.QuadPart;
65         }
66         LARGE_INTEGER counter;
67         QueryPerformanceCounter(&counter);
68         return counter.QuadPart;
69 #elif defined(__linux__)
70         struct timespec tp;
71         if (clock_gettime(CLOCK_REALTIME, &tp) == -1) {
72             return 0;
73         }
74         return tp.tv_sec * 1000000000LL + tp.tv_nsec;
75 #else
76         struct timeval tv;
77         gettimeofday(&tv, NULL);
78         return tv.tv_sec * 1000000LL + tv.tv_usec;
79 #endif
80     }
81
82
83 } /* namespace os */
84
85 #endif /* _OS_TIME_HPP_ */