module Darcs.Lock ( withLock, withLockCanFail,
withTemp, withOpenTemp, withStdoutTemp,
withTempDir, withPermDir, withDelayedDir, withNamedTemp,
writeToFile, appendToFile,
writeBinFile, writeLocaleFile, writeDocBinFile,
appendBinFile, appendDocBinFile,
readBinFile, readLocaleFile, readDocBinFile,
writeAtomicFilePS,
gzWriteAtomicFilePS, gzWriteAtomicFilePSs, gzWriteDocFile,
rmRecursive, removeFileMayNotExist,
canonFilename, maybeRelink,
worldReadableTemp, tempdirLoc,
editText,
environmentHelpTmpdir, environmentHelpKeepTmpdir
) where
import Prelude hiding ( catch )
import Data.List ( inits )
import Data.Maybe ( isJust, listToMaybe )
import System.Exit ( exitWith, ExitCode(..) )
import System.IO ( openBinaryFile, openBinaryTempFile,
hClose, hPutStr, Handle,
IOMode(WriteMode, AppendMode), hFlush, stdout )
import System.IO.Error ( isDoesNotExistError, isAlreadyExistsError )
import Control.Exception.Extensible
( bracket, throwIO, catch, try, SomeException )
import System.Directory ( removeFile, removeDirectory,
doesFileExist, doesDirectoryExist,
getDirectoryContents, createDirectory,
getTemporaryDirectory,
)
import System.FilePath.Posix ( splitDirectories )
import Workaround ( renameFile )
import Darcs.Utils ( withCurrentDirectory, maybeGetEnv, firstJustIO, runEditor )
import Control.Monad ( unless, when )
import Darcs.URL ( isRelative )
import Darcs.Utils ( catchall, addToErrorLoc )
import Darcs.RepoPath ( AbsolutePath, FilePathLike, toFilePath,
getCurrentDirectory, setCurrentDirectory )
import ByteStringUtils ( gzWriteFilePSs, decodeLocale, encodeLocale )
import qualified Data.ByteString as B (null, readFile, writeFile, hPut, ByteString)
import qualified Data.ByteString.Char8 as BC (unpack)
import Darcs.SignalHandler ( withSignalsBlocked )
import Printer ( Doc, hPutDoc, packedString, empty, renderPSs )
import Darcs.Global ( atexit, darcsdir )
import Darcs.Compat ( mkStdoutTemp, canonFilename, maybeRelink,
atomicCreate, sloppyAtomicCreate )
import System.Posix.Files ( getSymbolicLinkStatus, isDirectory,
fileMode, getFileStatus, setFileMode )
import System.Posix ( sleep )
#include "impossible.h"
withLock :: String -> IO a -> IO a
releaseLock :: String -> IO ()
withLock s job = bracket (getlock s 30) releaseLock (\_ -> job)
withLockCanFail :: String -> IO a -> IO (Either () a)
withLockCanFail s job =
bracket (takeLock s)
(\l -> if l then releaseLock s else return ())
(\l -> if l then job >>= (return.Right)
else return $ Left ())
getlock :: String -> Int -> IO String
getlock l 0 = do putStrLn $ "Couldn't get lock "++l
exitWith $ ExitFailure 1
getlock lbad tl = do l <- canonFilename lbad
gotit <- takeLock l
if gotit then return l
else do putStrLn $ "Waiting for lock "++l
hFlush stdout
done <- sleep 2
if done == 0
then getlock l (tl 1)
else getlock l 0
removeFileMayNotExist :: FilePathLike p => p -> IO ()
removeFileMayNotExist f = catchNonExistence (removeFile $ toFilePath f) ()
catchNonExistence :: IO a -> a -> IO a
catchNonExistence job nonexistval =
catch job $
\e -> if isDoesNotExistError e then return nonexistval
else ioError e
releaseLock s = removeFileMayNotExist s
takeLock :: FilePathLike p => p -> IO Bool
takeLock fp =
do atomicCreate $ toFilePath fp
return True
`catch` \e -> if isAlreadyExistsError e
then return False
else do pwd <- getCurrentDirectory
throwIO $ addToErrorLoc e
("takeLock "++toFilePath fp++" in "++toFilePath pwd)
takeFile :: FilePath -> IO Bool
takeFile fp =
do sloppyAtomicCreate fp
return True
`catch` \e -> if isAlreadyExistsError e
then return False
else do pwd <- getCurrentDirectory
throwIO $ addToErrorLoc e
("takeFile "++fp++" in "++toFilePath pwd)
withTemp :: (String -> IO a) -> IO a
withTemp = bracket get_empty_file removeFileMayNotExist
where get_empty_file = do (f,h) <- openBinaryTempFile "." "darcs"
hClose h
return f
withOpenTemp :: ((Handle, String) -> IO a) -> IO a
withOpenTemp = bracket get_empty_file cleanup
where cleanup (h,f) = do try (hClose h) :: IO (Either SomeException ())
removeFileMayNotExist f
get_empty_file = invert `fmap` openBinaryTempFile "." "darcs"
invert (a,b) = (b,a)
withStdoutTemp :: (String -> IO a) -> IO a
withStdoutTemp = bracket (mkStdoutTemp "stdout_") removeFileMayNotExist
tempdirLoc :: IO FilePath
tempdirLoc = firstJustIO [ readBinFile (darcsdir++"/prefs/tmpdir") >>= return . Just . head.words >>= chkdir,
maybeGetEnv "DARCS_TMPDIR" >>= chkdir,
getTemporaryDirectory >>= chkdir . Just,
getCurrentDirectorySansDarcs,
return $ Just "."
]
>>= return . fromJust
where chkdir Nothing = return Nothing
chkdir (Just d) = doesDirectoryExist d >>= return . \e -> if e then Just (d++"/") else Nothing
environmentHelpTmpdir :: ([String], [String])
environmentHelpTmpdir = (["DARCS_TMPDIR", "TMPDIR"], [
"Darcs often creates temporary directories. For example, the `darcs",
"diff' command creates two for the working trees to be diffed. By",
"default temporary directories are created in /tmp, or if that doesn't",
"exist, in _darcs (within the current repo). This can be overridden by",
"specifying some other directory in the file _darcs/prefs/tmpdir or the",
"environment variable $DARCS_TMPDIR or $TMPDIR."])
getCurrentDirectorySansDarcs :: IO (Maybe FilePath)
getCurrentDirectorySansDarcs = do
c <- getCurrentDirectory
return $ listToMaybe $ drop 5 $ reverse $ takeWhile no_darcs $ inits $ toFilePath c
where no_darcs x = not $ darcsdir `elem` splitDirectories x
data WithDirKind = Perm | Temp | Delayed
withDir :: WithDirKind -> String -> (AbsolutePath -> IO a) -> IO a
withDir _ "" _ = bug "withDir called with empty directory name"
withDir kind abs_or_relative_name job = do
absolute_name <- if isRelative abs_or_relative_name
then fmap (++ abs_or_relative_name) tempdirLoc
else return abs_or_relative_name
formerdir <- getCurrentDirectory
bracket (create_directory absolute_name 0)
(\dir -> do setCurrentDirectory formerdir
k <- keep_tmpdir
unless k $ do case kind of
Perm -> return ()
Temp -> rmRecursive (toFilePath dir)
Delayed -> atexit $ rmRecursive (toFilePath dir))
job
where newname name 0 = name
newname name n = name ++ "-" ++ show n
create_directory :: FilePath -> Int -> IO AbsolutePath
create_directory name n
= do createDirectory $ newname name n
setCurrentDirectory $ newname name n
getCurrentDirectory
`catch` (\e -> if isAlreadyExistsError e
then create_directory name (n+1)
else throwIO e)
keep_tmpdir = isJust `fmap` maybeGetEnv "DARCS_KEEP_TMPDIR"
environmentHelpKeepTmpdir :: ([String], [String])
environmentHelpKeepTmpdir = (["DARCS_KEEP_TMPDIR"],[
"If the environment variable DARCS_KEEP_TMPDIR is defined, darcs will",
"not remove the temporary directories it creates. This is intended",
"primarily for debugging Darcs itself, but it can also be useful, for",
"example, to determine why your test preference (see `darcs setpref')",
"is failing when you run `darcs record', but working when run manually."])
withPermDir :: String -> (AbsolutePath -> IO a) -> IO a
withPermDir = withDir Perm
withTempDir :: String -> (AbsolutePath -> IO a) -> IO a
withTempDir = withDir Temp
withDelayedDir :: String -> (AbsolutePath -> IO a) -> IO a
withDelayedDir = withDir Delayed
doesDirectoryReallyExist :: FilePath -> IO Bool
doesDirectoryReallyExist f =
catchNonExistence (isDirectory `fmap` getSymbolicLinkStatus f) False
rmRecursive :: FilePath -> IO ()
rmRecursive d =
do isd <- doesDirectoryReallyExist d
if not isd
then removeFile d
else when isd $ do conts <- actual_dir_contents
withCurrentDirectory d $
mapM_ rmRecursive conts
removeDirectory d
where actual_dir_contents =
do c <- getDirectoryContents d
return $ filter (/=".") $ filter (/="..") c
worldReadableTemp :: String -> IO String
worldReadableTemp f = wrt 0
where wrt :: Int -> IO String
wrt 100 = fail $ "Failure creating temp named "++f
wrt n = let f_new = f++"-"++show n
in do ok <- takeFile f_new
if ok then return f_new
else wrt (n+1)
withNamedTemp :: String -> (String -> IO a) -> IO a
withNamedTemp n = bracket get_empty_file removeFileMayNotExist
where get_empty_file = worldReadableTemp n
editText :: String -> B.ByteString -> IO B.ByteString
editText desc txt = withNamedTemp desc $ \f -> do
B.writeFile f txt
runEditor f
B.readFile f
readBinFile :: FilePathLike p => p -> IO String
readBinFile = fmap BC.unpack . B.readFile . toFilePath
readLocaleFile :: FilePathLike p => p -> IO String
readLocaleFile f = decodeLocale `fmap` B.readFile (toFilePath f)
readDocBinFile :: FilePathLike p => p -> IO Doc
readDocBinFile fp = do ps <- B.readFile $ toFilePath fp
return $ if B.null ps then empty else packedString ps
appendBinFile :: FilePathLike p => p -> String -> IO ()
appendBinFile f s = appendToFile f $ \h -> hPutStr h s
appendDocBinFile :: FilePathLike p => p -> Doc -> IO ()
appendDocBinFile f d = appendToFile f $ \h -> hPutDoc h d
writeBinFile :: FilePathLike p => p -> String -> IO ()
writeBinFile f s = writeToFile f $ \h -> hPutStr h s
writeLocaleFile :: FilePathLike p => p -> String -> IO ()
writeLocaleFile f s = writeToFile f $ \h -> B.hPut h (encodeLocale s)
writeDocBinFile :: FilePathLike p => p -> Doc -> IO ()
writeDocBinFile f d = writeToFile f $ \h -> hPutDoc h d
writeAtomicFilePS :: FilePathLike p => p -> B.ByteString -> IO ()
writeAtomicFilePS f ps = writeToFile f $ \h -> B.hPut h ps
gzWriteAtomicFilePS :: FilePathLike p => p -> B.ByteString -> IO ()
gzWriteAtomicFilePS f ps = gzWriteAtomicFilePSs f [ps]
gzWriteAtomicFilePSs :: FilePathLike p => p -> [B.ByteString] -> IO ()
gzWriteAtomicFilePSs f pss =
withSignalsBlocked $ withNamedTemp (toFilePath f) $ \newf -> do
gzWriteFilePSs newf pss
already_exists <- doesFileExist $ toFilePath f
when already_exists $ do mode <- fileMode `fmap` getFileStatus (toFilePath f)
setFileMode newf mode
`catchall` return ()
renameFile newf (toFilePath f)
gzWriteDocFile :: FilePathLike p => p -> Doc -> IO ()
gzWriteDocFile f d = gzWriteAtomicFilePSs f $ renderPSs d
writeToFile :: FilePathLike p => p -> (Handle -> IO ()) -> IO ()
writeToFile f job =
withSignalsBlocked $ withNamedTemp (toFilePath f) $ \newf -> do
bracket (openBinaryFile newf WriteMode) hClose job
already_exists <- doesFileExist (toFilePath f)
when already_exists $ do mode <- fileMode `fmap` getFileStatus (toFilePath f)
setFileMode newf mode
`catchall` return ()
renameFile newf (toFilePath f)
appendToFile :: FilePathLike p => p -> (Handle -> IO ()) -> IO ()
appendToFile f job = withSignalsBlocked $
bracket (openBinaryFile (toFilePath f) AppendMode) hClose job