aboutsummaryrefslogtreecommitdiff
path: root/deps/inja/third_party/include/hayai/hayai_clock.hpp
blob: c6d4e419b99d9eac633a658cdb8a6413b8b758ac (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
//
// System-specific implementation of the clock functions.
//
// Copyright (C) 2011 Nick Bruun <nick@bruun.co>
// Copyright (C) 2013 Vlad Lazarenko <vlad@lazarenko.me>
// Copyright (C) 2014 Nicolas Pauss <nicolas.pauss@gmail.com>
//
// Implementation notes:
//
// On Windows, QueryPerformanceCounter() is used. It gets
// real-time clock with up to nanosecond precision.
//
// On Apple (OS X, iOS), mach_absolute_time() is used. It gets
// CPU/bus dependent real-time clock with up to nanosecond precision.
//
// On Unix, gethrtime() is used with HP-UX and Solaris. Otherwise,
// clock_gettime() is used to access monotonic real-time clock
// with up to nanosecond precision. On kernels 2.6.28 and newer, the ticks
// are also raw and are not subject to NTP and/or adjtime(3) adjustments.
//
// Other POSIX compliant platforms resort to using gettimeofday(). It is
// subject to clock adjustments, does not allow for higher than microsecond
// resolution and is also declared obsolete by POSIX.1-2008.
//
// Note on C++11:
//
// Starting with C++11, we could use std::chrono. However, the details of
// what clock is really being used is implementation-specific. For example,
// Visual Studio 2012 defines "high_resolution_clock" as system clock with
// ~1 millisecond precision that is not acceptable for performance
// measurements. Therefore, we are much better off having full control of what
// mechanism we use to obtain the system clock.
//
// Note on durations: it is assumed that end times passed to the clock methods
// are all after the start time. Wrap-around of clocks is not tested, as
// nanosecond precision of unsigned 64-bit integers would require an uptime of
// almost 585 years for this to happen. Let's call ourselves safe on that one.
//
#ifndef __HAYAI_CLOCK
#define __HAYAI_CLOCK

#include "hayai_compatibility.hpp"


// POSIX
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
#include <unistd.h>
#endif

// Win32
#if defined(_WIN32)
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <windows.h>

// Apple
#elif defined(__APPLE__) && defined(__MACH__)
#include <mach/mach_time.h>

// Unix
#elif defined(__unix__) || defined(__unix) || defined(unix)

// gethrtime
#   if (defined(__hpux) || defined(hpux)) || ((defined(__sun__) || defined(__sun) || defined(sun)) && (defined(__SVR4) || defined(__svr4__)))
#   include <sys/time.h>

// clock_gettime
#   elif defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
#   include <time.h>

// gettimeofday
#   else
#   include <sys/time.h>

#   endif
#else
#error "Unable to define high resolution timer for an unknown OS."
#endif

#include <stdexcept>
#include <stdint.h>


namespace hayai
{
// Win32
#if defined(_WIN32)
    class Clock
    {
    public:
        /// Time point.

        /// Opaque representation of a point in time.
        typedef LARGE_INTEGER TimePoint;


        /// Get the current time as a time point.

        /// @returns the current time point.
        static TimePoint Now()
        {
            TimePoint result;
            QueryPerformanceCounter(&result);
            return result;
        }


        /// Get the duration between two time points.

        /// @param startTime Start time point.
        /// @param endTime End time point.
        /// @returns the number of nanoseconds elapsed between the two time
        /// points.
        static uint64_t Duration(const TimePoint& startTime,
                                 const TimePoint& endTime)
        {
            const static double performanceFrequencyNs =
                PerformanceFrequencyNs();

            return static_cast<uint64_t>(
                (endTime.QuadPart - startTime.QuadPart)
                * performanceFrequencyNs
            );
        }


        /// Clock implementation description.

        /// @returns a description of the clock implementation used.
        static const char* Description()
        {
            return "QueryPerformanceCounter";
        }
    private:
        static double PerformanceFrequencyNs()
        {
            TimePoint result;
            QueryPerformanceFrequency(&result);
            return 1e9 / static_cast<double>(result.QuadPart);
        }
    };

// Mach kernel.
#elif defined(__APPLE__) && defined(__MACH__)
    class Clock
    {
    public:
        /// Time point.

        /// Opaque representation of a point in time.
        typedef uint64_t TimePoint;


        /// Get the current time as a time point.

        /// @returns the current time point.
        static TimePoint Now() __hayai_noexcept
        {
            return mach_absolute_time();
        }


        /// Get the duration between two time points.

        /// @param startTime Start time point.
        /// @param endTime End time point.
        /// @returns the number of nanoseconds elapsed between the two time
        /// points.
        static uint64_t Duration(const TimePoint& startTime,
                                 const TimePoint& endTime) __hayai_noexcept
        {
            mach_timebase_info_data_t time_info;
            mach_timebase_info(&time_info);

            return (endTime - startTime) * time_info.numer / time_info.denom;
        }


        /// Clock implementation description.

        /// @returns a description of the clock implementation used.
        static const char* Description()
        {
            return "mach_absolute_time";
        }
    };

// Unix
#elif defined(__unix__) || defined(__unix) || defined(unix)

// gethrtime
#   if (defined(__hpux) || defined(hpux)) || ((defined(__sun__) || defined(__sun) || defined(sun)) && (defined(__SVR4) || defined(__svr4__)))
    class Clock
    {
    public:
        /// Time point.

        /// Opaque representation of a point in time.
        typedef hrtime_t TimePoint;


        /// Get the current time as a time point.

        /// @returns the current time point.
        static TimePoint Now() __hayai_noexcept
        {
            return gethrtime();
        }


        /// Get the duration between two time points.

        /// @param startTime Start time point.
        /// @param endTime End time point.
        /// @returns the number of nanoseconds elapsed between the two time
        /// points.
        static uint64_t Duration(const TimePoint& startTime,
                                 const TimePoint& endTime) __hayai_noexcept
        {
            return static_cast<uint64_t>(endTime - startTime);
        }


        /// Clock implementation description.

        /// @returns a description of the clock implementation used.
        static const char* Description()
        {
            return "gethrtime";
        }
    };


// clock_gettime
#   elif defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
    class Clock
    {
    public:
        /// Time point.

        /// Opaque representation of a point in time.
        typedef struct timespec TimePoint;


        /// Get the current time as a time point.

        /// @returns the current time point.
        static TimePoint Now() __hayai_noexcept
        {
            TimePoint result;
#       if   defined(CLOCK_MONOTONIC_RAW)
            clock_gettime(CLOCK_MONOTONIC_RAW, &result);
#       elif defined(CLOCK_MONOTONIC)
            clock_gettime(CLOCK_MONOTONIC, &result);
#       elif defined(CLOCK_REALTIME)
            clock_gettime(CLOCK_REALTIME, &result);
#       else
            clock_gettime((clocId_t)-1, &result);
#       endif
            return result;
        }


        /// Get the duration between two time points.

        /// @param startTime Start time point.
        /// @param endTime End time point.
        /// @returns the number of nanoseconds elapsed between the two time
        /// points.
        static uint64_t Duration(const TimePoint& startTime,
                                 const TimePoint& endTime) __hayai_noexcept
        {
            TimePoint timeDiff;

            timeDiff.tv_sec = endTime.tv_sec - startTime.tv_sec;
            if (endTime.tv_nsec < startTime.tv_nsec)
            {
                timeDiff.tv_nsec = endTime.tv_nsec + 1000000000LL -
                    startTime.tv_nsec;
                timeDiff.tv_sec--;
            }
            else
                timeDiff.tv_nsec = endTime.tv_nsec - startTime.tv_nsec;

            return static_cast<uint64_t>(timeDiff.tv_sec * 1000000000LL +
                                         timeDiff.tv_nsec);
        }


        /// Clock implementation description.

        /// @returns a description of the clock implementation used.
        static const char* Description()
        {
#       if   defined(CLOCK_MONOTONIC_RAW)
            return "clock_gettime(CLOCK_MONOTONIC_RAW)";
#       elif defined(CLOCK_MONOTONIC)
            return "clock_gettime(CLOCK_MONOTONIC)";
#       elif defined(CLOCK_REALTIME)
            return "clock_gettime(CLOCK_REALTIME)";
#       else
            return "clock_gettime(-1)";
#       endif
        }
    };

// gettimeofday
#   else
    class Clock
    {
    public:
        /// Time point.

        /// Opaque representation of a point in time.
        typedef struct timeval TimePoint;


        /// Get the current time as a time point.

        /// @returns the current time point.
        static TimePoint Now() __hayai_noexcept
        {
            TimePoint result;
            gettimeofday(&result, NULL);
            return result;
        }


        /// Get the duration between two time points.

        /// @param startTime Start time point.
        /// @param endTime End time point.
        /// @returns the number of nanoseconds elapsed between the two time
        /// points.
        static uint64_t Duration(const TimePoint& startTime,
                                 const TimePoint& endTime) __hayai_noexcept
        {
            TimePoint timeDiff;

            timeDiff.tv_sec = endTime.tv_sec - startTime.tv_sec;
            if (endTime.tv_usec < startTime.tv_usec)
            {
                timeDiff.tv_usec = endTime.tv_usec + 1000000L -
                    startTime.tv_usec;
                timeDiff.tv_sec--;
            }
            else
                timeDiff.tv_usec = endTime.tv_usec - startTime.tv_usec;

            return static_cast<uint64_t>(timeDiff.tv_sec * 1000000000LL +
                                         timeDiff.tv_usec * 1000);
        }


        /// Clock implementation description.

        /// @returns a description of the clock implementation used.
        static const char* Description()
        {
            return "gettimeofday";
        }
    };
#   endif
#endif
}
#endif