2013-06-10 17:10:30 +00:00
|
|
|
{- file copying
|
2010-11-18 17:48:28 +00:00
|
|
|
-
|
2013-06-10 17:10:30 +00:00
|
|
|
- Copyright 2010-2013 Joey Hess <joey@kitenet.net>
|
2010-11-18 17:48:28 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-06-10 17:10:30 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Utility.CopyFile (
|
|
|
|
copyFileExternal,
|
|
|
|
createLinkOrCopy
|
|
|
|
) where
|
2010-11-18 17:48:28 +00:00
|
|
|
|
2012-04-14 16:33:32 +00:00
|
|
|
import Common
|
2011-08-20 20:11:42 +00:00
|
|
|
import qualified Build.SysConfig as SysConfig
|
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. -}
|
2011-10-04 02:24:57 +00:00
|
|
|
copyFileExternal :: FilePath -> FilePath -> IO Bool
|
|
|
|
copyFileExternal 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
|
2013-06-14 15:54:44 +00:00
|
|
|
#ifndef __ANDROID__
|
2012-12-13 04:24:19 +00:00
|
|
|
params = map snd $ filter fst
|
|
|
|
[ (SysConfig.cp_reflink_auto, Param "--reflink=auto")
|
|
|
|
, (SysConfig.cp_a, Param "-a")
|
|
|
|
, (SysConfig.cp_p && not SysConfig.cp_a, Param "-p")
|
|
|
|
]
|
2013-06-14 15:54:44 +00:00
|
|
|
#else
|
|
|
|
params = []
|
|
|
|
#endif
|
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
|
2013-08-02 16:27:32 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-06-10 17:10:30 +00:00
|
|
|
createLinkOrCopy src dest = go `catchIO` const fallback
|
|
|
|
where
|
|
|
|
go = do
|
|
|
|
createLink src dest
|
|
|
|
return True
|
|
|
|
fallback = copyFileExternal src dest
|
|
|
|
#else
|
|
|
|
createLinkOrCopy = copyFileExternal
|
|
|
|
#endif
|