git-annex/Touch.hsc

78 lines
2 KiB
Text
Raw Normal View History

{- More control over touching a file.
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
{-# LANGUAGE ForeignFunctionInterface #-}
module Touch (
TimeSpec(..),
2011-03-15 06:36:24 +00:00
nowTime,
omitTime,
touchBoth,
touch
) where
import Foreign
import Foreign.C
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
2011-03-16 16:06:32 +00:00
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE >= 200809L
#endif
data TimeSpec = TimeSpec CTime CLong
instance Storable TimeSpec where
-- use the larger alignment of the two types in the struct
alignment _ = max sec_alignment nsec_alignment
where
2011-03-15 06:36:24 +00:00
sec_alignment = alignment (undefined::CTime)
nsec_alignment = alignment (undefined::CLong)
sizeOf _ = #{size struct timespec}
peek ptr = do
sec <- #{peek struct timespec, tv_sec} ptr
nsec <- #{peek struct timespec, tv_nsec} ptr
return $ TimeSpec sec nsec
poke ptr (TimeSpec sec nsec) = do
#{poke struct timespec, tv_sec} ptr sec
#{poke struct timespec, tv_nsec} ptr nsec
{- special timespecs -}
2011-03-15 06:36:24 +00:00
omitTime :: TimeSpec
omitTime = TimeSpec 0 #const UTIME_OMIT
nowTime :: TimeSpec
nowTime = TimeSpec 0 #const UTIME_NOW
{- While its interface is beastly, utimensat is in recent
POSIX standards, unlike futimes. -}
foreign import ccall "utimensat"
c_utimensat :: CInt -> CString -> Ptr TimeSpec -> CInt -> IO CInt
2011-03-15 15:50:40 +00:00
{- Changes the access and/or modification times of an existing file.
Can follow symlinks, or not. Throws IO error on failure. -}
touchBoth :: FilePath -> TimeSpec -> TimeSpec -> Bool -> IO ()
touchBoth file atime mtime follow =
allocaArray 2 $ \ptr ->
withCString file $ \f -> do
pokeArray ptr [atime, mtime]
r <- c_utimensat at_fdcwd f ptr flags
2011-03-15 15:50:40 +00:00
if (r /= 0)
then throwErrno "touchBoth"
else return ()
where
at_fdcwd = #const AT_FDCWD
at_symlink_nofollow = #const AT_SYMLINK_NOFOLLOW
flags = if follow
then 0
else at_symlink_nofollow
2011-03-15 15:50:40 +00:00
touch :: FilePath -> TimeSpec -> Bool -> IO ()
2011-03-15 06:36:24 +00:00
touch file mtime follow = touchBoth file omitTime mtime follow