2011-03-16 05:23:20 +00:00
|
|
|
{- git-annex v0 -> v1 upgrade support
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2010 Joey Hess <id@joeyh.name>
|
2011-03-16 05:23:20 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-03-16 05:23:20 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Upgrade.V0 where
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Content
|
2011-03-16 05:23:20 +00:00
|
|
|
import qualified Upgrade.V1
|
|
|
|
|
|
|
|
upgrade :: Annex Bool
|
|
|
|
upgrade = do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction "v0 to v1"
|
2011-03-16 05:23:20 +00:00
|
|
|
|
|
|
|
-- do the reorganisation of the key files
|
2019-12-18 20:45:03 +00:00
|
|
|
olddir <- fromRawFilePath <$> fromRepo gitAnnexDir
|
2011-03-16 05:23:20 +00:00
|
|
|
keys <- getKeysPresent0 olddir
|
2020-10-29 18:20:57 +00:00
|
|
|
forM_ keys $ \k ->
|
2020-11-16 18:09:55 +00:00
|
|
|
moveAnnex k (AssociatedFile Nothing)
|
|
|
|
(toRawFilePath $ olddir </> keyFile0 k)
|
2011-03-16 05:23:20 +00:00
|
|
|
|
|
|
|
-- update the symlinks to the key files
|
2011-03-16 06:35:48 +00:00
|
|
|
-- No longer needed here; V1.upgrade does the same thing
|
2011-03-16 05:23:20 +00:00
|
|
|
|
|
|
|
-- Few people had v0 repos, so go the long way around from 0 -> 1 -> 2
|
|
|
|
Upgrade.V1.upgrade
|
|
|
|
|
|
|
|
-- these stayed unchanged between v0 and v1
|
|
|
|
keyFile0 :: Key -> FilePath
|
|
|
|
keyFile0 = Upgrade.V1.keyFile1
|
|
|
|
fileKey0 :: FilePath -> Key
|
|
|
|
fileKey0 = Upgrade.V1.fileKey1
|
2020-07-10 18:17:35 +00:00
|
|
|
lookupKey0 :: FilePath -> Annex (Maybe (Key, Backend))
|
|
|
|
lookupKey0 = Upgrade.V1.lookupKey1
|
2011-03-16 05:23:20 +00:00
|
|
|
|
|
|
|
getKeysPresent0 :: FilePath -> Annex [Key]
|
2012-03-16 05:59:07 +00:00
|
|
|
getKeysPresent0 dir = ifM (liftIO $ doesDirectoryExist dir)
|
|
|
|
( liftIO $ map fileKey0
|
|
|
|
<$> (filterM present =<< getDirectoryContents dir)
|
|
|
|
, return []
|
|
|
|
)
|
2012-11-11 04:51:07 +00:00
|
|
|
where
|
|
|
|
present d = do
|
|
|
|
result <- tryIO $
|
|
|
|
getFileStatus $ dir ++ "/" ++ takeFileName d
|
|
|
|
case result of
|
|
|
|
Right s -> return $ isRegularFile s
|
|
|
|
Left _ -> return False
|