2013-06-10 17:10:30 +00:00
|
|
|
{- file copying
|
2010-11-18 17:48:28 +00:00
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2010-2014 Joey Hess <id@joeyh.name>
|
2010-11-18 17:48:28 +00:00
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2010-11-18 17:48:28 +00:00
|
|
|
-}
|
|
|
|
|
2013-06-10 17:10:30 +00:00
|
|
|
module Utility.CopyFile (
|
|
|
|
copyFileExternal,
|
2014-08-27 00:06:43 +00:00
|
|
|
createLinkOrCopy,
|
|
|
|
CopyMetaData(..)
|
2013-06-10 17:10:30 +00:00
|
|
|
) where
|
2010-11-18 17:48:28 +00:00
|
|
|
|
2012-04-14 16:33:32 +00:00
|
|
|
import Common
|
2017-12-14 16:46:57 +00:00
|
|
|
import qualified BuildInfo
|
2010-11-18 17:48:28 +00:00
|
|
|
|
2015-04-18 18:13:07 +00:00
|
|
|
data CopyMetaData
|
|
|
|
-- Copy timestamps when possible, but no other metadata, and
|
|
|
|
-- when copying a symlink, makes a copy of its content.
|
|
|
|
= CopyTimeStamps
|
|
|
|
-- Copy all metadata when possible.
|
|
|
|
| CopyAllMetaData
|
2014-08-27 00:06:43 +00:00
|
|
|
deriving (Eq)
|
|
|
|
|
2010-11-18 17:48:28 +00:00
|
|
|
{- The cp command is used, because I hate reinventing the wheel,
|
|
|
|
- and because this allows easy access to features like cp --reflink. -}
|
2014-08-27 00:06:43 +00:00
|
|
|
copyFileExternal :: CopyMetaData -> FilePath -> FilePath -> IO Bool
|
|
|
|
copyFileExternal meta src dest = do
|
2011-05-17 07:10:13 +00:00
|
|
|
whenM (doesFileExist dest) $
|
2011-01-05 02:17:18 +00:00
|
|
|
removeFile dest
|
2012-05-15 18:18:51 +00:00
|
|
|
boolSystem "cp" $ params ++ [File src, File dest]
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
params = map snd $ filter fst
|
2017-12-14 16:46:57 +00:00
|
|
|
[ (BuildInfo.cp_reflink_auto, Param "--reflink=auto")
|
|
|
|
, (allmeta && BuildInfo.cp_a, Param "-a")
|
|
|
|
, (allmeta && BuildInfo.cp_p && not BuildInfo.cp_a
|
2014-08-27 00:06:43 +00:00
|
|
|
, Param "-p")
|
2017-12-14 16:46:57 +00:00
|
|
|
, (not allmeta && BuildInfo.cp_preserve_timestamps
|
2014-08-27 00:06:43 +00:00
|
|
|
, Param "--preserve=timestamps")
|
2012-12-13 04:24:19 +00:00
|
|
|
]
|
2014-08-27 00:06:43 +00:00
|
|
|
allmeta = meta == CopyAllMetaData
|
2013-06-10 17:10:30 +00:00
|
|
|
|
|
|
|
{- Create a hard link if the filesystem allows it, and fall back to copying
|
|
|
|
- the file. -}
|
|
|
|
createLinkOrCopy :: FilePath -> FilePath -> IO Bool
|
|
|
|
createLinkOrCopy src dest = go `catchIO` const fallback
|
|
|
|
where
|
2014-10-09 18:53:13 +00:00
|
|
|
go = do
|
2013-06-10 17:10:30 +00:00
|
|
|
createLink src dest
|
|
|
|
return True
|
2014-10-09 18:53:13 +00:00
|
|
|
fallback = copyFileExternal CopyAllMetaData src dest
|