2013-06-10 17:10:30 +00:00
|
|
|
{- file copying
|
2010-11-18 17:48:28 +00:00
|
|
|
-
|
2019-07-17 18:19:00 +00:00
|
|
|
- Copyright 2010-2019 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,
|
2019-07-17 18:19:00 +00:00
|
|
|
copyCoW,
|
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)
|
|
|
|
|
2019-07-17 18:19:00 +00:00
|
|
|
copyMetaDataParams :: CopyMetaData -> [CommandParam]
|
|
|
|
copyMetaDataParams meta = map snd $ filter fst
|
|
|
|
[ (allmeta && BuildInfo.cp_a, Param "-a")
|
|
|
|
, (allmeta && BuildInfo.cp_p && not BuildInfo.cp_a
|
|
|
|
, Param "-p")
|
|
|
|
, (not allmeta && BuildInfo.cp_preserve_timestamps
|
|
|
|
, Param "--preserve=timestamps")
|
|
|
|
]
|
|
|
|
where
|
|
|
|
allmeta = meta == CopyAllMetaData
|
|
|
|
|
2010-11-18 17:48:28 +00:00
|
|
|
{- The cp command is used, because I hate reinventing the wheel,
|
2019-09-01 16:33:19 +00:00
|
|
|
- and because this allows easy access to features like cp --reflink
|
|
|
|
- and preserving metadata. -}
|
2014-08-27 00:06:43 +00:00
|
|
|
copyFileExternal :: CopyMetaData -> FilePath -> FilePath -> IO Bool
|
|
|
|
copyFileExternal meta src dest = do
|
2019-07-17 18:22:21 +00:00
|
|
|
-- Delete any existing dest file because an unwritable file
|
|
|
|
-- would prevent cp from working.
|
|
|
|
void $ tryIO $ 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
|
2019-07-17 18:19:00 +00:00
|
|
|
params
|
|
|
|
| BuildInfo.cp_reflink_supported =
|
|
|
|
Param "--reflink=auto" : copyMetaDataParams meta
|
|
|
|
| otherwise = copyMetaDataParams meta
|
|
|
|
|
|
|
|
{- When a filesystem supports CoW (and cp does), uses it to make
|
|
|
|
- an efficient copy of a file. Otherwise, returns False. -}
|
|
|
|
copyCoW :: CopyMetaData -> FilePath -> FilePath -> IO Bool
|
|
|
|
copyCoW meta src dest
|
|
|
|
| BuildInfo.cp_reflink_supported = do
|
2019-07-17 18:22:21 +00:00
|
|
|
void $ tryIO $ removeFile dest
|
2019-07-17 18:19:00 +00:00
|
|
|
-- When CoW is not supported, cp will complain to stderr,
|
|
|
|
-- so have to discard its stderr.
|
2020-06-04 19:36:34 +00:00
|
|
|
ok <- catchBoolIO $ withNullHandle $ \nullh ->
|
|
|
|
let p = (proc "cp" $ toCommand $ params ++ [File src, File dest])
|
|
|
|
{ std_out = UseHandle nullh
|
|
|
|
, std_err = UseHandle nullh
|
|
|
|
}
|
|
|
|
in withCreateProcess p $ \_ _ _ -> checkSuccessProcess
|
2019-07-17 18:19:00 +00:00
|
|
|
-- When CoW is not supported, cp creates the destination
|
|
|
|
-- file but leaves it empty.
|
|
|
|
unless ok $
|
|
|
|
void $ tryIO $ removeFile dest
|
|
|
|
return ok
|
|
|
|
| otherwise = return False
|
|
|
|
where
|
|
|
|
params = Param "--reflink=always" : copyMetaDataParams meta
|
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
|