git-annex/Annex.hs

162 lines
4.6 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 (
startAnnex,
annexFile,
2010-10-12 19:44:54 +00:00
unannexFile,
annexGetFile,
annexWantFile,
annexDropFile,
annexPushRepo,
annexPullRepo
2010-10-11 21:52:46 +00:00
) where
2010-10-10 19:04:07 +00:00
import System.Posix.Files
import System.Directory
2010-10-12 21:26:34 +00:00
import Data.String.Utils
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
2010-10-12 17:10:07 +00:00
import UUID
import LocationLog
2010-10-12 19:52:18 +00:00
import Types
2010-10-11 21:19:55 +00:00
2010-10-12 21:56:29 +00:00
{- Checks if a given key is currently present in the annexLocation -}
inAnnex :: State -> Key -> IO Bool
inAnnex state key = doesFileExist $ annexLocation state key
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-12 17:12:47 +00:00
r' <- prepUUID r
gitPrep r'
2010-10-12 03:22:38 +00:00
return State {
2010-10-12 17:12:47 +00:00
repo = r',
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
alreadyannexed <- lookupBackend 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
stored <- storeFile state file
2010-10-10 19:21:17 +00:00
case (stored) of
Nothing -> error $ "no backend could store: " ++ file
2010-10-13 00:04:36 +00:00
Just (key, backend) -> setup key backend
2010-10-10 19:04:07 +00:00
where
2010-10-13 00:04:36 +00:00
setup key backend = do
2010-10-12 21:56:29 +00:00
let dest = annexLocation state key
2010-10-10 19:04:07 +00:00
createDirectoryIfMissing True (parentDir dest)
renameFile file dest
createSymbolicLink dest file
2010-10-13 00:04:36 +00:00
gitRun (repo state) ["add", file, bfile]
gitRun (repo state) ["commit", "-m",
("git-annex annexed " ++ file), file, bfile]
logStatus state key ValuePresent
where bfile = backendFile state backend 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 state file
2010-10-10 23:53:31 +00:00
case (alreadyannexed) of
Nothing -> error $ "not annexed " ++ file
Just _ -> do
mkey <- dropFile state file
2010-10-10 23:53:31 +00:00
case (mkey) of
Nothing -> return ()
2010-10-13 00:04:36 +00:00
Just (key, backend) -> do
2010-10-12 21:56:29 +00:00
let src = annexLocation state key
2010-10-10 23:53:31 +00:00
removeFile file
2010-10-13 00:04:36 +00:00
gitRun (repo state) ["rm", file, bfile]
gitRun (repo state) ["commit", "-m",
("git-annex unannexed " ++ file),
file, bfile]
2010-10-10 23:53:31 +00:00
renameFile src file
2010-10-13 00:04:36 +00:00
logStatus state key ValueMissing
2010-10-10 23:53:31 +00:00
return ()
2010-10-13 00:04:36 +00:00
where bfile = backendFile state backend file
2010-10-12 19:44:54 +00:00
{- Transfers the file from a remote. -}
annexGetFile :: State -> FilePath -> IO ()
annexGetFile state file = do
alreadyannexed <- lookupBackend state file
2010-10-12 19:44:54 +00:00
case (alreadyannexed) of
Nothing -> error $ "not annexed " ++ file
2010-10-12 20:52:01 +00:00
Just backend -> do
key <- lookupKey state backend file
2010-10-12 21:56:29 +00:00
inannex <- inAnnex state key
if (inannex)
2010-10-12 20:52:01 +00:00
then return ()
2010-10-12 21:56:29 +00:00
else do
let dest = annexLocation state key
createDirectoryIfMissing True (parentDir dest)
success <- retrieveFile state file dest
if (success)
2010-10-13 00:04:36 +00:00
then do
logStatus state key ValuePresent
return ()
2010-10-12 21:56:29 +00:00
else error $ "failed to get " ++ file
2010-10-12 19:44:54 +00:00
{- Indicates a file is wanted. -}
annexWantFile :: State -> FilePath -> IO ()
annexWantFile state file = do error "not implemented" -- TODO
2010-10-12 19:48:00 +00:00
{- Indicates a file is not wanted. -}
2010-10-12 19:44:54 +00:00
annexDropFile :: State -> FilePath -> IO ()
annexDropFile state file = do error "not implemented" -- TODO
{- Pushes all files to a remote repository. -}
annexPushRepo :: State -> String -> IO ()
annexPushRepo state reponame = do error "not implemented" -- TODO
{- Pulls all files from a remote repository. -}
annexPullRepo :: State -> String -> IO ()
annexPullRepo state reponame = do error "not implemented" -- TODO
{- 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
exists <- doesFileExist attributes
if (not exists)
then do
writeFile attributes $ attrLine ++ "\n"
2010-10-13 00:04:36 +00:00
commit
else do
content <- readFile attributes
if (all (/= attrLine) (lines content))
then do
appendFile attributes $ attrLine ++ "\n"
2010-10-13 00:04:36 +00:00
commit
else return ()
2010-10-13 00:04:36 +00:00
where
attrLine = stateLoc ++ "/*.log merge=union"
attributes = gitAttributes repo
commit = do
gitRun repo ["add", attributes]
gitRun repo ["commit", "-m", "git-annex setup",
attributes]
{- Updates the LocationLog when a key's presence changes. -}
logStatus state key status = do
f <- logChange (repo state) key (getUUID (repo state)) status
gitRun (repo state) ["add", f]
gitRun (repo state) ["commit", "-m", "git-annex log update", f]