module Darcs.Compat (stdoutIsAPipe, mkStdoutTemp, canonFilename,
maybeRelink, atomicCreate, sloppyAtomicCreate) where
import Prelude hiding ( catch )
import Darcs.Utils ( withCurrentDirectory )
#ifdef WIN32
import Darcs.Utils ( showHexLen )
import Data.Bits ( (.&.) )
import System.Random ( randomIO )
#else
import Foreign.C.String ( peekCString )
#endif
import Control.Monad ( unless )
import Foreign.C.Types ( CInt )
import Foreign.C.String ( CString, withCString )
import Foreign.C.Error ( throwErrno, eEXIST, getErrno )
import System.Directory ( getCurrentDirectory )
import System.IO ( hFlush, stdout, stderr, hSetBuffering,
BufferMode(NoBuffering) )
import System.IO.Error ( mkIOError, alreadyExistsErrorType )
import System.Posix.Files ( stdFileMode )
import System.Posix.IO ( openFd, closeFd, stdOutput, stdError,
dupTo, defaultFileFlags, exclusive,
OpenMode(WriteOnly) )
import System.Posix.Types ( Fd(..) )
import Darcs.SignalHandler ( stdoutIsAPipe )
canonFilename :: FilePath -> IO FilePath
canonFilename f@(_:':':_) = return f
canonFilename f@('/':_) = return f
canonFilename ('.':'/':f) = do cd <- getCurrentDirectory
return $ cd ++ "/" ++ f
canonFilename f = case reverse $ dropWhile (/='/') $ reverse f of
"" -> fmap (++('/':f)) getCurrentDirectory
rd -> withCurrentDirectory rd $
do fd <- getCurrentDirectory
return $ fd ++ "/" ++ simplefilename
where
simplefilename = reverse $ takeWhile (/='/') $ reverse f
#ifdef WIN32
mkstempCore :: FilePath -> IO (Fd, String)
mkstempCore fp
= do r <- randomIO
let fp' = fp ++ (showHexLen 6 (r .&. 0xFFFFFF :: Int))
fd <- openFd fp' WriteOnly (Just stdFileMode) flags
return (fd, fp')
where flags = defaultFileFlags { exclusive = True }
#else
mkstempCore :: String -> IO (Fd, String)
mkstempCore str = withCString (str++"XXXXXX") $
\cstr -> do fd <- c_mkstemp cstr
if fd < 0
then throwErrno $ "Failed to create temporary file "++str
else do str' <- peekCString cstr
fname <- canonFilename str'
return (Fd fd, fname)
foreign import ccall unsafe "static stdlib.h mkstemp"
c_mkstemp :: CString -> IO CInt
#endif
mkStdoutTemp :: String -> IO String
mkStdoutTemp str = do (fd, fn) <- mkstempCore str
hFlush stdout
hFlush stderr
dupTo fd stdOutput
dupTo fd stdError
hFlush stdout
hFlush stderr
hSetBuffering stdout NoBuffering
hSetBuffering stderr NoBuffering
return fn
foreign import ccall unsafe "maybe_relink.h maybe_relink" maybe_relink
:: CString -> CString -> CInt -> IO CInt
maybeRelink :: String -> String -> IO Bool
maybeRelink src dst =
withCString src $ \csrc ->
withCString dst $ \cdst ->
do rc <- maybe_relink csrc cdst 1
(case rc of
0 -> return True
1 -> return True
1 -> throwErrno ("Relinking " ++ dst)
2 -> return False
3 -> do putStrLn ("Relinking: race condition avoided on file " ++
dst)
return False
_ -> fail ("Unexpected situation when relinking " ++ dst))
sloppyAtomicCreate :: FilePath -> IO ()
sloppyAtomicCreate fp
= do fd <- openFd fp WriteOnly (Just stdFileMode) flags
closeFd fd
where flags = defaultFileFlags { exclusive = True }
atomicCreate :: FilePath -> IO ()
atomicCreate fp = withCString fp $ \cstr -> do
rc <- c_atomic_create cstr
unless (rc >= 0) $
do errno <- getErrno
pwd <- getCurrentDirectory
if errno == eEXIST
then ioError $ mkIOError alreadyExistsErrorType
("atomicCreate in "++pwd)
Nothing (Just fp)
else throwErrno $ "atomicCreate "++fp++" in "++pwd
foreign import ccall unsafe "atomic_create.h atomic_create" c_atomic_create
:: CString -> IO CInt