git-annex/Annex.hs

117 lines
3.1 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
-}
2010-10-11 21:52:46 +00:00
module Annex (
State,
startAnnex,
annexFile,
unannexFile
) where
2010-10-10 19:04:07 +00:00
import System.Posix.Files
import System.Directory
2010-10-12 17:02:41 +00:00
import System.Cmd.Utils
import System.IO
2010-10-10 19:04:07 +00:00
import GitRepo
import Utility
import Locations
import Backend
2010-10-10 22:25:31 +00:00
import BackendList
import LocationLog
2010-10-10 22:25:31 +00:00
2010-10-11 21:19:55 +00:00
-- git-annex's runtime state
data State = State {
repo :: GitRepo,
2010-10-12 03:22:38 +00:00
backends :: [Backend]
2010-10-11 21:19:55 +00:00
}
{- An annexed file's content is stored somewhere under .git/annex/ -}
2010-10-12 03:22:38 +00:00
annexDir :: GitRepo -> Key -> FilePath
annexDir repo key = gitDir repo ++ "/annex/" ++ key
2010-10-11 21:19:55 +00:00
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
2010-10-12 06:40:09 +00:00
r <- gitRepoFromCwd
2010-10-10 23:00:08 +00:00
gitPrep r
2010-10-12 03:22:38 +00:00
return State {
repo = r,
2010-10-12 03:22:38 +00:00
backends = parseBackendList $ gitConfig r "annex.backends" ""
}
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
2010-10-12 03:22:38 +00:00
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-12 03:22:38 +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-12 03:22:38 +00:00
let 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
2010-10-12 03:22:38 +00:00
alreadyannexed <- lookupBackend (backends state) (repo state) file
2010-10-10 23:53:31 +00:00
case (alreadyannexed) of
Nothing -> error $ "not annexed " ++ file
Just _ -> do
2010-10-12 03:22:38 +00:00
mkey <- dropFile (backends state) (repo state) file
2010-10-10 23:53:31 +00:00
case (mkey) of
Nothing -> return ()
Just key -> do
2010-10-12 03:22:38 +00:00
let src = annexDir (repo state) key
2010-10-10 23:53:31 +00:00
removeFile file
renameFile src file
return ()
{- Sets up a git repo for git-annex. May be called repeatedly. -}
gitPrep :: GitRepo -> IO ()
gitPrep repo = do
2010-10-12 17:02:41 +00:00
-- Make sure that the repo has an annex.uuid setting.
if ("" == gitConfig repo "annex.uuid" "")
then do
uuid <- genUUID
gitRun repo ["config", "annex.uuid", uuid]
else return ()
-- configure git to use union merge driver on state files
let attrLine = stateLoc ++ "/*.log merge=union"
2010-10-12 04:53:42 +00:00
let 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 ()
2010-10-12 17:02:41 +00:00
{- Generates a UUID. There is a library for this, but it's not packaged,
- so use the command line tool. -}
genUUID :: IO String
genUUID = do
pOpen ReadFromPipe "uuid" ["-m"] $ \h -> hGetLine h