dib-0.7.2: src/Dib/Builders/Copy.hs
-- Copyright (c) 2010-2018 Brett Lajzer
-- See LICENSE for license information.
-- | A trivial builder that copies a directory tree from one location to another.
module Dib.Builders.Copy (
makeCopyTarget
) where
import Dib.Gatherers
import Dib.Types
import qualified Data.Text as T
import qualified System.Console.ANSI as ANSI
import qualified System.Directory as D
import System.FilePath as P
copyFunc :: SrcTransform -> IO StageResult
copyFunc (OneToOne source target) = do
let unpackedTarget = T.unpack target
let unpackedSource = T.unpack source
D.createDirectoryIfMissing True $ takeDirectory unpackedTarget
ANSI.setSGR [ANSI.SetColor ANSI.Foreground ANSI.Vivid ANSI.White]
putStr "Copying: "
ANSI.setSGR [ANSI.Reset]
putStrLn $ unpackedSource ++ " -> " ++ unpackedTarget
D.copyFile unpackedSource unpackedTarget
return $ Right (OneToOne target "")
copyFunc _ = return $ Left "Unexpected SrcTransform"
remapFile :: String -> String -> SrcTransform -> SrcTransform
remapFile src dest (OneToOne source _) = OneToOne source $ T.pack $ dest </> makeRelative src (T.unpack source)
remapFile _ _ _ = error "Unhandled SrcTransform"
-- | The 'makeCopyTarget' function makes a target that copies a directory tree.
-- It takes a name, a source directory, destination directory, and gather filter.
makeCopyTarget :: T.Text -> T.Text -> T.Text -> FilterFunc -> [T.Text] -> Target
makeCopyTarget name src dest filterFunc extraDeps =
let stage = Stage "copy" (map $ remapFile (T.unpack src) (T.unpack dest)) return extraDeps copyFunc
in Target name (const 0) [] [stage] [makeFileTreeGatherer src filterFunc]