2008-01-10 14:49:12 -05:00
|
|
|
USING: alien alien.c-types arrays calendar.backend
|
2008-03-19 20:15:32 -04:00
|
|
|
kernel structs math unix.time namespaces ;
|
2008-03-01 08:11:44 -05:00
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: calendar.unix
|
|
|
|
|
|
|
|
TUPLE: unix-calendar ;
|
|
|
|
|
2008-01-10 14:49:12 -05:00
|
|
|
T{ unix-calendar } calendar-backend set-global
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-03-19 20:15:32 -04:00
|
|
|
: get-time ( -- alien )
|
2007-09-20 18:09:08 -04:00
|
|
|
f time <uint> localtime ;
|
|
|
|
|
2008-03-19 20:15:32 -04:00
|
|
|
: timezone-name ( -- string )
|
2007-09-20 18:09:08 -04:00
|
|
|
get-time tm-zone ;
|
|
|
|
|
2008-03-19 20:15:32 -04:00
|
|
|
M: unix-calendar gmt-offset ( -- hours minutes seconds )
|
|
|
|
get-time tm-gmtoff 3600 /mod 60 /mod ;
|