git-annex/Annex.hs

85 lines
2.4 KiB
Haskell
Raw Normal View History

2010-10-10 23:00:08 +00:00
{- git-annex toplevel code
2010-10-10 19:04:07 +00:00
-}
module Annex where
import System.Posix.Files
import System.Directory
import GitRepo
import Utility
import Locations
2010-10-10 22:05:37 +00:00
import Types
import Backend
2010-10-10 22:25:31 +00:00
import BackendList
2010-10-10 23:00:08 +00:00
{- On startup, examine the git repo, prepare it, and record state for
- later. -}
2010-10-10 22:25:31 +00:00
startAnnex :: IO State
startAnnex = do
r <- currentRepo
2010-10-10 23:00:08 +00:00
gitPrep r
-- TODO query git repo for configuration
2010-10-10 22:25:31 +00:00
return State { repo = r, backends = supportedBackends }
2010-10-10 19:04:07 +00:00
{- Annexes a file, storing it in a backend, and then moving it into
2010-10-10 19:21:17 +00:00
- the annex directory and setting up the symlink pointing to its content. -}
2010-10-10 22:25:31 +00:00
annexFile :: State -> FilePath -> IO ()
annexFile state file = do
alreadyannexed <- lookupBackend (backends state) (repo state) file
2010-10-10 19:04:07 +00:00
case (alreadyannexed) of
Just _ -> error $ "already annexed: " ++ file
2010-10-10 19:04:07 +00:00
Nothing -> do
checkLegal file
2010-10-10 22:25:31 +00:00
stored <- storeFile (backends state) (repo state) file
2010-10-10 19:21:17 +00:00
case (stored) of
Nothing -> error $ "no backend could store: " ++ file
2010-10-10 19:21:17 +00:00
Just key -> symlink key
2010-10-10 19:04:07 +00:00
where
2010-10-10 19:21:17 +00:00
symlink key = do
2010-10-10 22:25:31 +00:00
dest <- annexDir (repo state) key
2010-10-10 19:04:07 +00:00
createDirectoryIfMissing True (parentDir dest)
renameFile file dest
createSymbolicLink dest file
2010-10-10 22:25:31 +00:00
gitAdd (repo state) file
2010-10-10 23:00:08 +00:00
checkLegal file = do
2010-10-10 23:53:31 +00:00
s <- getSymbolicLinkStatus file
if ((isSymbolicLink s) || (not $ isRegularFile s))
then error $ "not a regular file: " ++ file
else return ()
{- Inverse of annexFile. -}
unannexFile :: State -> FilePath -> IO ()
unannexFile state file = do
alreadyannexed <- lookupBackend (backends state) (repo state) file
case (alreadyannexed) of
Nothing -> error $ "not annexed " ++ file
Just _ -> do
mkey <- dropFile (backends state) (repo state) file
case (mkey) of
Nothing -> return ()
Just key -> do
src <- annexDir (repo state) key
removeFile file
renameFile src file
return ()
{- Sets up a git repo for git-annex. May be called repeatedly. -}
gitPrep :: GitRepo -> IO ()
gitPrep repo = do
-- configure git to use union merge driver on state files
let attrLine = stateLoc ++ "/* merge=union"
attributes <- gitAttributes repo
exists <- doesFileExist attributes
if (not exists)
then do
writeFile attributes $ attrLine ++ "\n"
gitAdd repo attributes
else do
content <- readFile attributes
if (all (/= attrLine) (lines content))
then do
appendFile attributes $ attrLine ++ "\n"
gitAdd repo attributes
else return ()