2020-01-23 21:04:46 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2020-01-01 12:01:03 +01:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module time
|
|
|
|
|
|
|
|
struct C.tm {
|
|
|
|
tm_year int
|
|
|
|
tm_mon int
|
|
|
|
tm_mday int
|
|
|
|
tm_hour int
|
|
|
|
tm_min int
|
|
|
|
tm_sec int
|
|
|
|
}
|
|
|
|
|
2020-04-24 07:33:25 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
// start_time is needed on Darwin and Windows because of potential overflows
|
|
|
|
start_time = init_win_time_start()
|
|
|
|
freq_time = init_win_time_freq()
|
|
|
|
)
|
|
|
|
|
2020-03-28 10:19:38 +01:00
|
|
|
fn C._mkgmtime(&C.tm) time_t
|
2020-01-01 12:01:03 +01:00
|
|
|
|
2020-04-26 19:36:38 +02:00
|
|
|
fn C.QueryPerformanceCounter(&u64) C.BOOL
|
2020-04-24 07:33:25 +02:00
|
|
|
|
2020-04-26 19:36:38 +02:00
|
|
|
fn C.QueryPerformanceFrequency(&u64) C.BOOL
|
2020-04-24 07:33:25 +02:00
|
|
|
|
2020-03-28 10:19:38 +01:00
|
|
|
fn make_unix_time(t C.tm) int {
|
2020-02-07 23:11:15 +01:00
|
|
|
return int(C._mkgmtime(&t))
|
2020-02-04 12:17:04 +01:00
|
|
|
}
|
2020-04-24 07:33:25 +02:00
|
|
|
|
|
|
|
fn init_win_time_freq() u64 {
|
2020-04-26 19:36:38 +02:00
|
|
|
f := u64(0)
|
|
|
|
C.QueryPerformanceFrequency(&f)
|
|
|
|
return f
|
2020-04-24 07:33:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn init_win_time_start() u64 {
|
2020-04-26 19:36:38 +02:00
|
|
|
s := u64(0)
|
|
|
|
C.QueryPerformanceCounter(&s)
|
|
|
|
return s
|
2020-04-24 07:33:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn sys_mono_now() u64 {
|
2020-04-26 19:36:38 +02:00
|
|
|
tm := u64(0)
|
|
|
|
C.QueryPerformanceCounter(&tm) // XP or later never fail
|
|
|
|
return (tm - start_time) * 1_000_000_000 / freq_time
|
2020-04-24 07:33:25 +02:00
|
|
|
}
|
|
|
|
|
2020-04-26 19:36:38 +02:00
|
|
|
// NB: vpc_now is used by `v -profile` .
|
|
|
|
// It should NOT call *any other v function*, just C functions and casts.
|
|
|
|
[inline]
|
|
|
|
fn vpc_now() u64 {
|
|
|
|
tm := u64(0)
|
|
|
|
C.QueryPerformanceCounter(&tm)
|
|
|
|
return tm
|
2020-04-24 07:33:25 +02:00
|
|
|
}
|