2011-03-16 01:23:20 -04:00
|
|
|
{- git-annex v0 -> v1 upgrade support
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2010 Joey Hess <id@joeyh.name>
|
2011-03-16 01:23:20 -04:00
|
|
|
-
|
2019-03-13 15:48:14 -04:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-03-16 01:23:20 -04:00
|
|
|
-}
|
|
|
|
|
2023-04-10 17:03:41 -04:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
|
2011-03-16 01:23:20 -04:00
|
|
|
module Upgrade.V0 where
|
|
|
|
|
2016-01-20 16:36:33 -04:00
|
|
|
import Annex.Common
|
2022-01-19 13:06:31 -04:00
|
|
|
import Types.Upgrade
|
2011-10-04 00:40:47 -04:00
|
|
|
import Annex.Content
|
2011-03-16 01:23:20 -04:00
|
|
|
import qualified Upgrade.V1
|
2023-03-01 15:55:58 -04:00
|
|
|
import qualified Utility.RawFilePath as R
|
|
|
|
|
|
|
|
import System.PosixCompat.Files (isRegularFile)
|
2011-03-16 01:23:20 -04:00
|
|
|
|
2022-01-19 13:06:31 -04:00
|
|
|
upgrade :: Annex UpgradeResult
|
2011-03-16 01:23:20 -04:00
|
|
|
upgrade = do
|
2011-07-19 14:07:23 -04:00
|
|
|
showAction "v0 to v1"
|
2011-03-16 01:23:20 -04:00
|
|
|
|
|
|
|
-- do the reorganisation of the key files
|
2019-12-18 16:45:03 -04:00
|
|
|
olddir <- fromRawFilePath <$> fromRepo gitAnnexDir
|
2011-03-16 01:23:20 -04:00
|
|
|
keys <- getKeysPresent0 olddir
|
2020-10-29 14:20:57 -04:00
|
|
|
forM_ keys $ \k ->
|
2020-11-16 14:09:55 -04:00
|
|
|
moveAnnex k (AssociatedFile Nothing)
|
|
|
|
(toRawFilePath $ olddir </> keyFile0 k)
|
2011-03-16 01:23:20 -04:00
|
|
|
|
|
|
|
-- update the symlinks to the key files
|
2011-03-16 02:35:48 -04:00
|
|
|
-- No longer needed here; V1.upgrade does the same thing
|
2011-03-16 01:23:20 -04: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 14:17:35 -04:00
|
|
|
lookupKey0 :: FilePath -> Annex (Maybe (Key, Backend))
|
|
|
|
lookupKey0 = Upgrade.V1.lookupKey1
|
2011-03-16 01:23:20 -04:00
|
|
|
|
|
|
|
getKeysPresent0 :: FilePath -> Annex [Key]
|
2012-03-16 01:59:07 -04:00
|
|
|
getKeysPresent0 dir = ifM (liftIO $ doesDirectoryExist dir)
|
|
|
|
( liftIO $ map fileKey0
|
|
|
|
<$> (filterM present =<< getDirectoryContents dir)
|
|
|
|
, return []
|
|
|
|
)
|
2012-11-11 00:51:07 -04:00
|
|
|
where
|
|
|
|
present d = do
|
|
|
|
result <- tryIO $
|
2023-03-01 15:55:58 -04:00
|
|
|
R.getFileStatus $ toRawFilePath $
|
|
|
|
dir ++ "/" ++ takeFileName d
|
2012-11-11 00:51:07 -04:00
|
|
|
case result of
|
|
|
|
Right s -> return $ isRegularFile s
|
|
|
|
Left _ -> return False
|