22 lines
		
	
	
		
			614 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			614 B
		
	
	
	
		
			Factor
		
	
	
! 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 ;
 | 
						|
 | 
						|
M: bsd new-file-info ( -- class ) bsd-file-info new ;
 | 
						|
 | 
						|
M: bsd stat>file-info ( stat -- file-info )
 | 
						|
    [ call-next-method ] keep
 | 
						|
    {
 | 
						|
        [ stat-st_flags >>flags ]
 | 
						|
        [ stat-st_gen >>gen ]
 | 
						|
        [
 | 
						|
            stat-st_birthtimespec timespec>unix-time
 | 
						|
            >>birth-time
 | 
						|
        ]
 | 
						|
    } cleave ;
 |