2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 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
|
|
|
|
|
2020-06-07 15:19:09 +02:00
|
|
|
#include <time.h>
|
2020-06-14 23:15:12 +02:00
|
|
|
// #include <sysinfoapi.h>
|
2021-02-01 14:50:41 +01:00
|
|
|
|
2020-01-01 12:01:03 +01:00
|
|
|
struct C.tm {
|
|
|
|
tm_year int
|
|
|
|
tm_mon int
|
|
|
|
tm_mday int
|
|
|
|
tm_hour int
|
|
|
|
tm_min int
|
|
|
|
tm_sec int
|
|
|
|
}
|
|
|
|
|
2020-12-06 15:19:39 +01:00
|
|
|
struct C._FILETIME {
|
2021-06-18 11:44:18 +02:00
|
|
|
dwLowDateTime u32
|
|
|
|
dwHighDateTime u32
|
2020-12-06 15:19:39 +01:00
|
|
|
}
|
2020-06-07 15:19:09 +02:00
|
|
|
|
|
|
|
struct SystemTime {
|
2020-12-06 15:19:39 +01:00
|
|
|
year u16
|
|
|
|
month u16
|
|
|
|
day_of_week u16
|
|
|
|
day u16
|
|
|
|
hour u16
|
|
|
|
minute u16
|
|
|
|
second u16
|
|
|
|
millisecond u16
|
2020-06-07 15:19:09 +02:00
|
|
|
}
|
|
|
|
|
2021-03-05 15:41:11 +01:00
|
|
|
fn C.GetSystemTimeAsFileTime(lpSystemTimeAsFileTime &C._FILETIME)
|
2020-12-06 15:19:39 +01:00
|
|
|
|
2021-03-05 15:41:11 +01:00
|
|
|
fn C.FileTimeToSystemTime(lpFileTime &C._FILETIME, lpSystemTime &SystemTime)
|
2020-12-06 15:19:39 +01:00
|
|
|
|
2021-03-05 15:41:11 +01:00
|
|
|
fn C.SystemTimeToTzSpecificLocalTime(lpTimeZoneInformation &C.TIME_ZONE_INFORMATION, lpUniversalTime &SystemTime, lpLocalTime &SystemTime)
|
2020-12-06 15:19:39 +01:00
|
|
|
|
|
|
|
fn C.localtime_s(t &C.time_t, tm &C.tm)
|
2020-04-24 07:33:25 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
// start_time is needed on Darwin and Windows because of potential overflows
|
2020-12-06 15:19:39 +01:00
|
|
|
start_time = init_win_time_start()
|
|
|
|
freq_time = init_win_time_freq()
|
|
|
|
start_local_time = local_as_unix_time()
|
2020-04-24 07:33:25 +02:00
|
|
|
)
|
|
|
|
|
2020-06-07 15:19:09 +02:00
|
|
|
// in most systems, these are __quad_t, which is an i64
|
|
|
|
struct C.timespec {
|
|
|
|
tv_sec i64
|
|
|
|
tv_nsec i64
|
|
|
|
}
|
|
|
|
|
2021-02-19 10:23:13 +01:00
|
|
|
fn C._mkgmtime(&C.tm) C.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
|
|
|
}
|
|
|
|
|
2021-01-13 15:30:54 +01:00
|
|
|
// sys_mono_now returns a *monotonically increasing time*, NOT a time adjusted for daylight savings, location etc.
|
2020-05-18 22:54:08 +02:00
|
|
|
pub fn sys_mono_now() u64 {
|
2020-04-26 19:36:38 +02:00
|
|
|
tm := u64(0)
|
|
|
|
C.QueryPerformanceCounter(&tm) // XP or later never fail
|
2021-01-25 10:26:20 +01:00
|
|
|
return (tm - time.start_time) * 1000000000 / time.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
|
|
|
}
|
2020-06-07 15:19:09 +02:00
|
|
|
|
|
|
|
// local_as_unix_time returns the current local time as unix time
|
|
|
|
fn local_as_unix_time() int {
|
|
|
|
t := C.time(0)
|
|
|
|
tm := C.localtime(&t)
|
|
|
|
return make_unix_time(tm)
|
|
|
|
}
|
|
|
|
|
2021-01-13 15:35:52 +01:00
|
|
|
// local - return the time `t`, converted to the currently active local timezone
|
2020-12-26 02:10:47 +01:00
|
|
|
pub fn (t Time) local() Time {
|
2020-06-10 11:14:55 +02:00
|
|
|
st_utc := SystemTime{
|
|
|
|
year: u16(t.year)
|
|
|
|
month: u16(t.month)
|
|
|
|
day: u16(t.day)
|
|
|
|
hour: u16(t.hour)
|
|
|
|
minute: u16(t.minute)
|
|
|
|
second: u16(t.second)
|
|
|
|
}
|
|
|
|
st_local := SystemTime{}
|
|
|
|
C.SystemTimeToTzSpecificLocalTime(voidptr(0), &st_utc, &st_local)
|
2020-12-06 15:19:39 +01:00
|
|
|
t_local := Time{
|
|
|
|
year: st_local.year
|
|
|
|
month: st_local.month
|
|
|
|
day: st_local.day
|
|
|
|
hour: st_local.hour
|
|
|
|
minute: st_local.minute
|
|
|
|
second: st_local.second // These are the same
|
2021-03-27 16:34:34 +01:00
|
|
|
microsecond: st_local.millisecond * 1000
|
|
|
|
unix: u64(st_local.unix_time())
|
2020-06-10 11:14:55 +02:00
|
|
|
}
|
|
|
|
return t_local
|
|
|
|
}
|
|
|
|
|
2020-06-07 15:19:09 +02:00
|
|
|
// win_now calculates current time using winapi to get higher resolution on windows
|
2020-06-10 11:14:55 +02:00
|
|
|
// GetSystemTimeAsFileTime is used and converted to local time. It can resolve time
|
|
|
|
// down to millisecond. Other more precice methods can be implemented in the future
|
2020-06-07 15:19:09 +02:00
|
|
|
fn win_now() Time {
|
|
|
|
ft_utc := C._FILETIME{}
|
|
|
|
C.GetSystemTimeAsFileTime(&ft_utc)
|
|
|
|
st_utc := SystemTime{}
|
|
|
|
C.FileTimeToSystemTime(&ft_utc, &st_utc)
|
|
|
|
st_local := SystemTime{}
|
|
|
|
C.SystemTimeToTzSpecificLocalTime(voidptr(0), &st_utc, &st_local)
|
2020-12-06 15:19:39 +01:00
|
|
|
t := Time{
|
2020-06-07 15:19:09 +02:00
|
|
|
year: st_local.year
|
|
|
|
month: st_local.month
|
|
|
|
day: st_local.day
|
|
|
|
hour: st_local.hour
|
|
|
|
minute: st_local.minute
|
|
|
|
second: st_local.second
|
2020-12-06 15:19:39 +01:00
|
|
|
microsecond: st_local.millisecond * 1000
|
2020-06-07 15:19:09 +02:00
|
|
|
unix: u64(st_local.unix_time())
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2020-06-10 11:14:55 +02:00
|
|
|
// win_utc calculates current time using winapi to get higher resolution on windows
|
|
|
|
// GetSystemTimeAsFileTime is used. It can resolve time down to millisecond
|
|
|
|
// other more precice methods can be implemented in the future
|
|
|
|
fn win_utc() Time {
|
|
|
|
ft_utc := C._FILETIME{}
|
|
|
|
C.GetSystemTimeAsFileTime(&ft_utc)
|
|
|
|
st_utc := SystemTime{}
|
|
|
|
C.FileTimeToSystemTime(&ft_utc, &st_utc)
|
2020-12-06 15:19:39 +01:00
|
|
|
t := Time{
|
2020-06-10 11:14:55 +02:00
|
|
|
year: st_utc.year
|
|
|
|
month: st_utc.month
|
|
|
|
day: st_utc.day
|
|
|
|
hour: st_utc.hour
|
|
|
|
minute: st_utc.minute
|
|
|
|
second: st_utc.second
|
2020-12-06 15:19:39 +01:00
|
|
|
microsecond: st_utc.millisecond * 1000
|
2020-06-10 11:14:55 +02:00
|
|
|
unix: u64(st_utc.unix_time())
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2020-06-07 15:19:09 +02:00
|
|
|
// unix_time returns Unix time.
|
|
|
|
pub fn (st SystemTime) unix_time() int {
|
|
|
|
tt := C.tm{
|
|
|
|
tm_sec: st.second
|
|
|
|
tm_min: st.minute
|
|
|
|
tm_hour: st.hour
|
|
|
|
tm_mday: st.day
|
|
|
|
tm_mon: st.month - 1
|
|
|
|
tm_year: st.year - 1900
|
|
|
|
}
|
|
|
|
return make_unix_time(tt)
|
|
|
|
}
|
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn darwin_now() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn linux_now() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn solaris_now() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
2021-01-13 15:35:52 +01:00
|
|
|
// dummy to compile with all compilers
|
2020-06-10 11:14:55 +02:00
|
|
|
pub fn darwin_utc() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn linux_utc() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub fn solaris_utc() Time {
|
|
|
|
return Time{}
|
|
|
|
}
|
|
|
|
|
2020-06-07 15:19:09 +02:00
|
|
|
// dummy to compile with all compilers
|
|
|
|
pub struct C.timeval {
|
|
|
|
tv_sec u64
|
|
|
|
tv_usec u64
|
|
|
|
}
|
2021-02-21 16:05:03 +01:00
|
|
|
|
2021-02-27 18:53:27 +01:00
|
|
|
// sleep makes the calling thread sleep for a given duration (in nanoseconds).
|
|
|
|
pub fn sleep(duration Duration) {
|
|
|
|
C.Sleep(int(duration / millisecond))
|
|
|
|
}
|
2021-06-22 11:17:44 +02:00
|
|
|
|
|
|
|
// some Windows system functions (e.g. `C.WaitForSingleObject()`) accept an `u32`
|
|
|
|
// value as *timeout in milliseconds* with the special value `u32(-1)` meaning "infinite"
|
|
|
|
pub fn (d Duration) sys_milliseconds() u32 {
|
|
|
|
if d >= u32(-1) * millisecond { // treat 4294967295000000 .. C.INT64_MAX as "infinite"
|
|
|
|
return u32(-1)
|
|
|
|
} else if d <= 0 {
|
|
|
|
return 0 // treat negative timeouts as 0 - consistent with Unix behaviour
|
|
|
|
} else {
|
|
|
|
return u32(d / millisecond)
|
|
|
|
}
|
|
|
|
}
|