2011-06-23 06:30:20 +00:00
|
|
|
{- git-annex v2 -> v3 upgrade support
|
2011-06-22 20:02:43 +00:00
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-06-22 21:51:48 +00:00
|
|
|
module Upgrade.V2 where
|
2011-06-22 20:02:43 +00:00
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-06-30 17:16:57 +00:00
|
|
|
import qualified Git
|
2011-10-04 04:40:47 +00:00
|
|
|
import qualified Annex.Branch
|
2011-10-15 20:21:08 +00:00
|
|
|
import Logs.Location
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Content
|
2011-10-16 04:31:25 +00:00
|
|
|
import Utility.TempFile
|
2011-06-22 21:51:48 +00:00
|
|
|
|
2011-06-24 05:13:33 +00:00
|
|
|
olddir :: Git.Repo -> FilePath
|
|
|
|
olddir g
|
|
|
|
| Git.repoIsLocalBare g = ""
|
|
|
|
| otherwise = ".git-annex"
|
2011-06-23 06:30:20 +00:00
|
|
|
|
2011-06-23 03:37:46 +00:00
|
|
|
{- .git-annex/ moved to a git-annex branch.
|
|
|
|
-
|
|
|
|
- Strategy:
|
|
|
|
-
|
|
|
|
- * Create the git-annex branch.
|
|
|
|
- * Find each location log file in .git-annex/, and inject its content
|
|
|
|
- into the git-annex branch, unioning with any content already in
|
|
|
|
- there. (in passing, this deals with the semi transition that left
|
|
|
|
- some location logs hashed two different ways; both are found and
|
|
|
|
- merged).
|
|
|
|
- * Also inject remote.log, trust.log, and uuid.log.
|
|
|
|
- * git rm -rf .git-annex
|
|
|
|
- * Remove stuff that used to be needed in .gitattributes.
|
|
|
|
- * Commit changes.
|
|
|
|
-}
|
2011-06-22 21:51:48 +00:00
|
|
|
upgrade :: Annex Bool
|
|
|
|
upgrade = do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction "v2 to v3"
|
2011-11-08 19:34:10 +00:00
|
|
|
bare <- fromRepo Git.repoIsLocalBare
|
|
|
|
old <- fromRepo olddir
|
2011-06-24 05:15:12 +00:00
|
|
|
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Branch.create
|
2011-07-19 18:07:23 +00:00
|
|
|
showProgress
|
|
|
|
|
2011-11-08 19:34:10 +00:00
|
|
|
e <- liftIO $ doesDirectoryExist old
|
2011-06-24 16:09:04 +00:00
|
|
|
when e $ do
|
2011-11-08 19:34:10 +00:00
|
|
|
mapM_ (\(k, f) -> inject f $ logFile k) =<< locationLogs
|
|
|
|
mapM_ (\f -> inject f f) =<< logFiles old
|
2011-06-23 18:49:21 +00:00
|
|
|
|
2011-06-24 06:33:44 +00:00
|
|
|
saveState
|
2011-07-19 18:07:23 +00:00
|
|
|
showProgress
|
2011-07-05 19:06:20 +00:00
|
|
|
|
2011-11-08 19:34:10 +00:00
|
|
|
when e $ do
|
|
|
|
inRepo $ Git.run "rm" [Param "-r", Param "-f", Param "-q", File old]
|
2011-12-09 05:57:13 +00:00
|
|
|
unless bare $ inRepo gitAttributesUnWrite
|
2011-07-19 18:07:23 +00:00
|
|
|
showProgress
|
2011-07-05 19:06:20 +00:00
|
|
|
|
2011-07-15 07:12:05 +00:00
|
|
|
unless bare push
|
2011-06-23 18:49:21 +00:00
|
|
|
|
2011-06-23 06:30:20 +00:00
|
|
|
return True
|
|
|
|
|
2011-11-08 19:34:10 +00:00
|
|
|
locationLogs :: Annex [(Key, FilePath)]
|
|
|
|
locationLogs = do
|
|
|
|
dir <- fromRepo gitStateDir
|
|
|
|
liftIO $ do
|
|
|
|
levela <- dirContents dir
|
|
|
|
levelb <- mapM tryDirContents levela
|
|
|
|
files <- mapM tryDirContents (concat levelb)
|
|
|
|
return $ mapMaybe islogfile (concat files)
|
2011-06-23 06:30:20 +00:00
|
|
|
where
|
2011-11-11 00:24:24 +00:00
|
|
|
tryDirContents d = catchDefaultIO (dirContents d) []
|
2011-07-15 07:12:05 +00:00
|
|
|
islogfile f = maybe Nothing (\k -> Just (k, f)) $
|
2011-06-23 06:30:20 +00:00
|
|
|
logFileKey $ takeFileName f
|
|
|
|
|
|
|
|
inject :: FilePath -> FilePath -> Annex ()
|
|
|
|
inject source dest = do
|
2011-11-08 19:34:10 +00:00
|
|
|
old <- fromRepo olddir
|
|
|
|
new <- liftIO (readFile $ old </> source)
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Branch.change dest $ \prev ->
|
2011-10-03 19:41:25 +00:00
|
|
|
unlines $ nub $ lines prev ++ lines new
|
2011-06-23 06:30:20 +00:00
|
|
|
|
|
|
|
logFiles :: FilePath -> Annex [FilePath]
|
|
|
|
logFiles dir = return . filter (".log" `isSuffixOf`)
|
|
|
|
=<< liftIO (getDirectoryContents dir)
|
2011-06-22 20:02:43 +00:00
|
|
|
|
2011-06-24 15:59:34 +00:00
|
|
|
push :: Annex ()
|
|
|
|
push = do
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
origin_master <- Annex.Branch.refExists $ Git.Ref "origin/master"
|
2011-10-04 04:40:47 +00:00
|
|
|
origin_gitannex <- Annex.Branch.hasOrigin
|
2011-06-24 15:59:34 +00:00
|
|
|
case (origin_master, origin_gitannex) of
|
|
|
|
(_, True) -> do
|
|
|
|
-- Merge in the origin's git-annex branch,
|
|
|
|
-- so that pushing the git-annex branch
|
|
|
|
-- will immediately work. Not pushed here,
|
|
|
|
-- because it's less obnoxious to let the user
|
|
|
|
-- push.
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Branch.update
|
2011-06-24 15:59:34 +00:00
|
|
|
(True, False) -> do
|
|
|
|
-- push git-annex to origin, so that
|
|
|
|
-- "git push" will from then on
|
|
|
|
-- automatically push it
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Branch.update -- just in case
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction "pushing new git-annex branch to origin"
|
|
|
|
showOutput
|
improve type signatures with a Ref newtype
In git, a Ref can be a Sha, or a Branch, or a Tag. I added type aliases for
those. Note that this does not prevent mixing up of eg, refs and branches
at the type level. Since git really doesn't care, except rare cases like
git update-ref, or git tag -d, that seems ok for now.
There's also a tree-ish, but let's just use Ref for it. A given Sha or Ref
may or may not be a tree-ish, depending on the object type, so there seems
no point in trying to represent it at the type level.
2011-11-16 06:23:34 +00:00
|
|
|
inRepo $ Git.run "push" [Param "origin", Param $ show Annex.Branch.name]
|
2011-06-24 15:59:34 +00:00
|
|
|
_ -> do
|
|
|
|
-- no origin exists, so just let the user
|
|
|
|
-- know about the new branch
|
2011-10-04 04:40:47 +00:00
|
|
|
Annex.Branch.update
|
2011-06-24 15:59:34 +00:00
|
|
|
showLongNote $
|
|
|
|
"git-annex branch created\n" ++
|
|
|
|
"Be sure to push this branch when pushing to remotes.\n"
|
|
|
|
|
2011-06-22 20:02:43 +00:00
|
|
|
{- Old .gitattributes contents, not needed anymore. -}
|
|
|
|
attrLines :: [String]
|
|
|
|
attrLines =
|
|
|
|
[ stateDir </> "*.log merge=union"
|
|
|
|
, stateDir </> "*/*/*.log merge=union"
|
|
|
|
]
|
|
|
|
|
|
|
|
gitAttributesUnWrite :: Git.Repo -> IO ()
|
|
|
|
gitAttributesUnWrite repo = do
|
|
|
|
let attributes = Git.attributes repo
|
|
|
|
whenM (doesFileExist attributes) $ do
|
|
|
|
c <- readFileStrict attributes
|
2011-06-30 04:42:09 +00:00
|
|
|
liftIO $ viaTmp writeFile attributes $ unlines $
|
2011-07-15 07:12:05 +00:00
|
|
|
filter (`notElem` attrLines) $ lines c
|
2011-11-08 19:34:10 +00:00
|
|
|
Git.run "add" [File attributes] repo
|
2011-06-23 12:48:13 +00:00
|
|
|
|
|
|
|
stateDir :: FilePath
|
2011-07-15 07:12:05 +00:00
|
|
|
stateDir = addTrailingPathSeparator ".git-annex"
|
2011-06-23 12:48:13 +00:00
|
|
|
gitStateDir :: Git.Repo -> FilePath
|
|
|
|
gitStateDir repo = addTrailingPathSeparator $ Git.workTree repo </> stateDir
|