2019-02-08 19:17:30 -05:00
|
|
|
! Copyright (C) 2008 Doug Coleman.
|
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
|
USING: kernel alien.syntax math io.files.unix system
|
|
|
|
|
unix.stat accessors combinators calendar.unix
|
|
|
|
|
io.files.info.unix ;
|
|
|
|
|
IN: io.files.info.unix.bsd
|
|
|
|
|
|
|
|
|
|
TUPLE: bsd-file-info < unix-file-info birth-time flags gen ;
|
|
|
|
|
|
2020-09-09 17:41:17 -04:00
|
|
|
M: bsd new-file-info bsd-file-info new ;
|
2019-02-08 19:17:30 -05:00
|
|
|
|
2020-09-09 17:41:17 -04:00
|
|
|
M: bsd stat>file-info
|
2019-02-08 19:17:30 -05:00
|
|
|
[ call-next-method ] keep
|
|
|
|
|
{
|
|
|
|
|
[ st_flags>> >>flags ]
|
|
|
|
|
[ st_gen>> >>gen ]
|
|
|
|
|
[ st_birthtimespec>> timespec>unix-time >>birth-time ]
|
|
|
|
|
} cleave ;
|