factor/basis/windows/time/time.factor

36 lines
1.2 KiB
Factor
Raw Normal View History

2008-03-04 23:32:12 -05:00
! Copyright (C) 2007 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
2012-07-16 18:46:52 -04:00
USING: accessors alien alien.c-types calendar calendar.private
classes.struct kernel math math.bitwise namespaces
windows.errors windows.handles windows.kernel32 windows.types ;
2008-03-04 23:32:12 -05:00
IN: windows.time
: >64bit ( lo hi -- n )
32 shift bitor ; inline
2008-03-04 23:32:12 -05:00
2010-01-14 18:20:30 -05:00
: windows-1601 ( -- timestamp ) 1601 <year-gmt> ;
2008-03-04 23:32:12 -05:00
: FILETIME>windows-time ( FILETIME -- n )
[ dwLowDateTime>> ] [ dwHighDateTime>> ] bi >64bit ;
2008-03-04 23:32:12 -05:00
: windows-time>timestamp ( n -- timestamp )
[ windows-1601 ] dip 10,000,000 /i +second ;
2008-03-04 23:32:12 -05:00
: windows-time ( -- n )
FILETIME <struct> [ GetSystemTimeAsFileTime ] keep
2008-03-04 23:32:12 -05:00
FILETIME>windows-time ;
: timestamp>windows-time ( timestamp -- n )
#! 64bit number representing # of nanoseconds since Jan 1, 1601 (UTC)
>gmt windows-1601 (time-) 10,000,000 * >integer ;
2008-03-04 23:32:12 -05:00
: windows-time>FILETIME ( n -- FILETIME )
[ FILETIME <struct> ] dip
[ 32 bits >>dwLowDateTime ] [ -32 shift >>dwHighDateTime ] bi ;
2008-03-04 23:32:12 -05:00
: timestamp>FILETIME ( timestamp -- FILETIME/f )
dup [ >gmt timestamp>windows-time windows-time>FILETIME ] when ;
2008-03-04 23:32:12 -05:00
: FILETIME>timestamp ( FILETIME -- timestamp/f )
FILETIME>windows-time windows-time>timestamp ;