2011-01-08 19:54:14 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2011-01-08 20:09:17 +00:00
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
2011-01-08 19:54:14 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Migrate where
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-01-08 19:54:14 +00:00
|
|
|
import Command
|
2012-06-05 23:51:03 +00:00
|
|
|
import Backend
|
2011-07-05 22:31:46 +00:00
|
|
|
import qualified Types.Key
|
2012-12-20 19:43:14 +00:00
|
|
|
import qualified Types.Backend
|
2012-06-20 20:07:14 +00:00
|
|
|
import Types.KeySource
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Content
|
2012-02-17 02:36:56 +00:00
|
|
|
import qualified Command.ReKey
|
2012-09-14 04:18:18 +00:00
|
|
|
import qualified Command.Fsck
|
2011-01-08 19:54:14 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
2012-12-29 18:28:19 +00:00
|
|
|
def = [notDirect $
|
2013-03-24 22:28:21 +00:00
|
|
|
command "migrate" paramPaths seek
|
|
|
|
SectionUtility "switch data to different backend"]
|
2011-01-08 19:54:14 +00:00
|
|
|
|
|
|
|
seek :: [CommandSeek]
|
2012-02-14 03:42:44 +00:00
|
|
|
seek = [withFilesInGit $ whenAnnexed start]
|
2011-01-08 19:54:14 +00:00
|
|
|
|
2012-02-14 03:42:44 +00:00
|
|
|
start :: FilePath -> (Key, Backend) -> CommandStart
|
|
|
|
start file (key, oldbackend) = do
|
2011-01-08 19:54:14 +00:00
|
|
|
exists <- inAnnex key
|
2012-06-05 23:51:03 +00:00
|
|
|
newbackend <- choosebackend =<< chooseBackend file
|
2012-12-20 19:43:14 +00:00
|
|
|
if (newbackend /= oldbackend || upgradableKey oldbackend key) && exists
|
2011-01-08 19:54:14 +00:00
|
|
|
then do
|
|
|
|
showStart "migrate" file
|
2012-09-14 04:18:18 +00:00
|
|
|
next $ perform file key oldbackend newbackend
|
2011-05-15 06:02:46 +00:00
|
|
|
else stop
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
|
|
|
choosebackend Nothing = Prelude.head <$> orderedList
|
|
|
|
choosebackend (Just backend) = return backend
|
2011-01-08 19:54:14 +00:00
|
|
|
|
2012-12-20 19:43:14 +00:00
|
|
|
{- Checks if a key is upgradable to a newer representation.
|
|
|
|
-
|
|
|
|
- Reasons for migration:
|
|
|
|
- - Ideally, all keys have file size metadata. Old keys may not.
|
|
|
|
- - Something has changed in the backend, such as a bug fix.
|
|
|
|
-}
|
|
|
|
upgradableKey :: Backend -> Key -> Bool
|
|
|
|
upgradableKey backend key = isNothing (Types.Key.keySize key) || backendupgradable
|
|
|
|
where
|
|
|
|
backendupgradable = maybe False (\a -> a key)
|
|
|
|
(Types.Backend.canUpgradeKey backend)
|
2011-07-05 22:31:46 +00:00
|
|
|
|
2011-11-19 19:16:38 +00:00
|
|
|
{- Store the old backend's key in the new backend
|
|
|
|
- The old backend's key is not dropped from it, because there may
|
2013-05-13 18:27:39 +00:00
|
|
|
- be other files still pointing at that key.
|
|
|
|
-
|
|
|
|
- To ensure that the data we have for the old key is valid, it's
|
|
|
|
- fscked here. First we generate the new key. This ensures that the
|
|
|
|
- data cannot get corrupted after the fsck but before the new key is
|
|
|
|
- generated.
|
|
|
|
-}
|
2012-09-14 04:18:18 +00:00
|
|
|
perform :: FilePath -> Key -> Backend -> Backend -> CommandPerform
|
2013-05-13 18:27:39 +00:00
|
|
|
perform file oldkey oldbackend newbackend = go =<< genkey
|
2012-11-12 05:05:04 +00:00
|
|
|
where
|
2013-05-13 18:27:39 +00:00
|
|
|
go Nothing = stop
|
|
|
|
go (Just newkey) = stopUnless checkcontent $ finish newkey
|
|
|
|
checkcontent = Command.Fsck.checkBackend oldbackend oldkey $ Just file
|
|
|
|
finish newkey = stopUnless (Command.ReKey.linkKey oldkey newkey) $
|
2012-11-12 05:05:04 +00:00
|
|
|
next $ Command.ReKey.cleanup file oldkey newkey
|
|
|
|
genkey = do
|
2013-04-04 19:46:33 +00:00
|
|
|
content <- calcRepo $ gitAnnexLocation oldkey
|
2013-02-14 20:54:36 +00:00
|
|
|
let source = KeySource
|
|
|
|
{ keyFilename = file
|
|
|
|
, contentLocation = content
|
|
|
|
, inodeCache = Nothing
|
|
|
|
}
|
2012-11-12 05:05:04 +00:00
|
|
|
liftM fst <$> genKey source (Just newbackend)
|