mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
143 lines
3.4 KiB
V
143 lines
3.4 KiB
V
// Copyright (c) 2019-2023 Alexander Medvednikov. All rights reserved.
|
|
// Use of this source code is governed by an MIT license
|
|
// that can be found in the LICENSE file.
|
|
module time
|
|
|
|
#include <time.h>
|
|
|
|
// C.timeval represents a C time value.
|
|
pub struct C.timeval {
|
|
tv_sec u64
|
|
tv_usec u64
|
|
}
|
|
|
|
fn C.localtime(t &C.time_t) &C.tm
|
|
fn C.localtime_r(t &C.time_t, tm &C.tm)
|
|
|
|
fn C.time(t &C.time_t) C.time_t
|
|
|
|
fn C.gmtime(t &C.time_t) &C.tm
|
|
fn C.gmtime_r(t &C.time_t, res &C.tm) &C.tm
|
|
fn C.strftime(buf &char, maxsize usize, const_format &char, const_tm &C.tm) usize
|
|
|
|
// now returns the current local time.
|
|
pub fn now() Time {
|
|
$if macos {
|
|
return darwin_now()
|
|
}
|
|
$if windows {
|
|
return win_now()
|
|
}
|
|
$if solaris {
|
|
return solaris_now()
|
|
}
|
|
return linux_now()
|
|
/*
|
|
// defaults to most common feature, the microsecond precision is not available
|
|
// in this API call
|
|
t := C.time(0)
|
|
now := C.localtime(&t)
|
|
return convert_ctime(*now, 0)
|
|
*/
|
|
}
|
|
|
|
// utc returns the current UTC time.
|
|
pub fn utc() Time {
|
|
$if macos {
|
|
return darwin_utc()
|
|
}
|
|
$if windows {
|
|
return win_utc()
|
|
}
|
|
$if solaris {
|
|
return solaris_utc()
|
|
}
|
|
return linux_utc()
|
|
}
|
|
|
|
// new_time returns a time struct with the calculated Unix time.
|
|
pub fn new_time(t Time) Time {
|
|
if t.unix != 0 {
|
|
return t
|
|
}
|
|
tt := C.tm{
|
|
tm_sec: t.second
|
|
tm_min: t.minute
|
|
tm_hour: t.hour
|
|
tm_mday: t.day
|
|
tm_mon: t.month - 1
|
|
tm_year: t.year - 1900
|
|
}
|
|
utime := make_unix_time(tt)
|
|
return Time{
|
|
...t
|
|
unix: utime
|
|
}
|
|
}
|
|
|
|
// ticks returns the number of milliseconds since the UNIX epoch.
|
|
// On Windows ticks returns the number of milliseconds elapsed since system start.
|
|
pub fn ticks() i64 {
|
|
$if windows {
|
|
return C.GetTickCount()
|
|
} $else {
|
|
ts := C.timeval{}
|
|
C.gettimeofday(&ts, 0)
|
|
return i64(ts.tv_sec * u64(1000) + (ts.tv_usec / u64(1_000)))
|
|
}
|
|
// t := i64(C.mach_absolute_time())
|
|
// # Nanoseconds elapsedNano = AbsoluteToNanoseconds( *(AbsoluteTime *) &t );
|
|
// # return (double)(* (uint64_t *) &elapsedNano) / 1000000;
|
|
}
|
|
|
|
// str returns the time in the same format as `parse` expects ("YYYY-MM-DD HH:mm:ss").
|
|
pub fn (t Time) str() string {
|
|
// TODO Define common default format for
|
|
// `str` and `parse` and use it in both ways
|
|
return t.format_ss()
|
|
}
|
|
|
|
// convert_ctime converts a C time to V time.
|
|
fn convert_ctime(t C.tm, nanosecond int) Time {
|
|
return Time{
|
|
year: t.tm_year + 1900
|
|
month: t.tm_mon + 1
|
|
day: t.tm_mday
|
|
hour: t.tm_hour
|
|
minute: t.tm_min
|
|
second: t.tm_sec
|
|
nanosecond: nanosecond
|
|
unix: make_unix_time(t)
|
|
// for the actual code base when we
|
|
// call convert_ctime, it is always
|
|
// when we manage the local time.
|
|
is_local: true
|
|
}
|
|
}
|
|
|
|
// strftime returns the formatted time using `strftime(3)`
|
|
pub fn (t Time) strftime(fmt string) string {
|
|
mut tm := &C.tm{}
|
|
$if windows {
|
|
tm = C.gmtime(voidptr(&t.unix))
|
|
} $else {
|
|
C.gmtime_r(voidptr(&t.unix), tm)
|
|
}
|
|
mut buf := [1024]char{}
|
|
fmt_c := unsafe { &char(fmt.str) }
|
|
C.strftime(&buf[0], usize(sizeof(buf)), fmt_c, tm)
|
|
return unsafe { cstring_to_vstring(&char(&buf[0])) }
|
|
}
|
|
|
|
// some *nix system functions (e.g. `C.poll()`, C.epoll_wait()) accept an `int`
|
|
// value as *timeout in milliseconds* with the special value `-1` meaning "infinite"
|
|
pub fn (d Duration) sys_milliseconds() int {
|
|
if d > 2147483647 * millisecond { // treat 2147483647000001 .. C.INT64_MAX as "infinite"
|
|
return -1
|
|
} else if d <= 0 {
|
|
return 0 // treat negative timeouts as 0 - consistent with Unix behaviour
|
|
} else {
|
|
return int(d / millisecond)
|
|
}
|
|
}
|