1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: fix iso8601 parser and utc time

This commit is contained in:
Tomas Hellström
2020-06-10 11:14:55 +02:00
committed by GitHub
parent 8f9f426479
commit 2dc547a45c
10 changed files with 255 additions and 88 deletions

View File

@@ -12,14 +12,25 @@ struct C.tm {
tm_mday int
tm_mon int
tm_year int
tm_wday int
tm_yday int
tm_isdst int
}
fn C.timegm(&tm) time_t
fn C.localtime_r(t &C.time_t, tm &C.tm )
fn make_unix_time(t C.tm) int {
return int(C.timegm(&t))
}
fn to_local_time(t Time) Time {
loc_tm := C.tm{}
C.localtime_r(&t.unix, &loc_tm)
return convert_ctime(loc_tm, t.microsecond)
}
type time_t voidptr
// in most systems, these are __quad_t, which is an i64
@@ -50,14 +61,20 @@ fn vpc_now() u64 {
return u64(ts.tv_sec) * 1_000_000_000 + u64(ts.tv_nsec)
}
// dummy to compile with all compilers
pub fn win_now() Time {
return Time{}
}
// dummy to compile with all compilers
pub fn win_utc() Time {
return Time{}
}
// dummy to compile with all compilers
pub struct C.timeval {
tv_sec u64
tv_usec u64
}
}