archive-sig-0.2.1.2: src/Archive/Compression.hs
module Archive.Compression ( Decompressor
, Compressor
, unpackFileToDirAndDecompress
, packFromFilesAndCompress
, packFromDirAndCompress
, packSrcDirAndCompress
) where
import Archive
import qualified Data.ByteString.Lazy as BSL
import Data.List (isSuffixOf)
import System.Directory.Recursive
type Decompressor = BSL.ByteString -> BSL.ByteString
type Compressor = BSL.ByteString -> BSL.ByteString
-- | @since 0.2.0.0
unpackFileToDirAndDecompress :: Decompressor -- ^ Decompression to use
-> FilePath -- ^ Filepath pointing to archive
-> FilePath -- ^ Directory
-> IO ()
unpackFileToDirAndDecompress f tar dir = unpackToDir dir =<< (f <$> BSL.readFile tar)
-- | @since 0.2.0.0
packFromDirAndCompress :: Compressor
-> FilePath -- ^ Directory to pack up
-> FilePath -- ^ Destination tarball
-> IO ()
packFromDirAndCompress f dir tar = packFromFilesAndCompress f tar =<< getDirRecursive dir
-- | Pack up source files, ignoring version control directories and common
-- artifact directories
--
-- @since 0.2.1.0
packSrcDirAndCompress :: Compressor -> FilePath -> FilePath -> IO ()
packSrcDirAndCompress f dir tar = packFromFilesAndCompress f tar =<< getDirFiltered (pure.srcFilter) dir
srcFilter :: FilePath -> Bool
srcFilter fp | ".git" `isSuffixOf` fp = False
| "_darcs" `isSuffixOf` fp = False
| ".hg" `isSuffixOf` fp = False
| ".pijul" `isSuffixOf` fp = False
| "dist" `isSuffixOf` fp = False
| "dist-newstyle" `isSuffixOf` fp = False
| ".stack-work" `isSuffixOf` fp = False
| "target" `isSuffixOf` fp = False
| ".atspkg" `isSuffixOf` fp = False
| ".shake" `isSuffixOf` fp = False
| ".vagrant" `isSuffixOf` fp = False
| "tags" `isSuffixOf` fp = False
| "hspec-failures" `isSuffixOf` fp = False
| otherwise = True
-- | @since 0.2.0.0
packFromFilesAndCompress :: Compressor -> FilePath -> [FilePath] -> IO ()
packFromFilesAndCompress f tar fps = BSL.writeFile tar =<< (f <$> packFiles fps)