2010-11-02 23:04:24 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2011-11-21 02:49:53 +00:00
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Move where
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2010-11-02 23:04:24 +00:00
|
|
|
import Command
|
2010-11-11 22:54:52 +00:00
|
|
|
import qualified Command.Drop
|
2010-11-02 23:04:24 +00:00
|
|
|
import qualified Annex
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Content
|
2011-03-27 21:24:20 +00:00
|
|
|
import qualified Remote
|
2011-10-15 21:47:03 +00:00
|
|
|
import Annex.UUID
|
2012-01-06 14:14:37 +00:00
|
|
|
import qualified Option
|
2011-03-16 01:34:13 +00:00
|
|
|
|
2011-10-29 19:19:05 +00:00
|
|
|
def :: [Command]
|
more command-specific options
Made --from and --to command-specific options.
Added generic storage for values of command-specific options,
which allows removing some of the special case fields in AnnexState.
(Also added generic storage for command-specific flags, although there are
not yet any.)
Note that this storage uses a Map, so repeatedly looking up the same value
is slightly more expensive than looking up an AnnexState field. But, the
value can be looked up once in the seek stage, transformed as necessary,
and passed in a closure to the start stage, and this avoids that overhead.
Still, I'm hesitant to use this for things like force or fast flags.
It's probably best to reserve it for flags that are only used by a few
commands, or options like --from and --to that it's important only be
allowed to be used with commands that implement them, to avoid user
confusion.
2012-01-06 07:06:25 +00:00
|
|
|
def = [withOptions options $ command "move" paramPaths seek
|
2010-12-30 19:06:26 +00:00
|
|
|
"move content of files to/from another repository"]
|
2010-11-02 23:04:24 +00:00
|
|
|
|
more command-specific options
Made --from and --to command-specific options.
Added generic storage for values of command-specific options,
which allows removing some of the special case fields in AnnexState.
(Also added generic storage for command-specific flags, although there are
not yet any.)
Note that this storage uses a Map, so repeatedly looking up the same value
is slightly more expensive than looking up an AnnexState field. But, the
value can be looked up once in the seek stage, transformed as necessary,
and passed in a closure to the start stage, and this avoids that overhead.
Still, I'm hesitant to use this for things like force or fast flags.
It's probably best to reserve it for flags that are only used by a few
commands, or options like --from and --to that it's important only be
allowed to be used with commands that implement them, to avoid user
confusion.
2012-01-06 07:06:25 +00:00
|
|
|
fromOption :: Option
|
2012-01-06 14:14:37 +00:00
|
|
|
fromOption = Option.field ['f'] "from" paramRemote "source remote"
|
more command-specific options
Made --from and --to command-specific options.
Added generic storage for values of command-specific options,
which allows removing some of the special case fields in AnnexState.
(Also added generic storage for command-specific flags, although there are
not yet any.)
Note that this storage uses a Map, so repeatedly looking up the same value
is slightly more expensive than looking up an AnnexState field. But, the
value can be looked up once in the seek stage, transformed as necessary,
and passed in a closure to the start stage, and this avoids that overhead.
Still, I'm hesitant to use this for things like force or fast flags.
It's probably best to reserve it for flags that are only used by a few
commands, or options like --from and --to that it's important only be
allowed to be used with commands that implement them, to avoid user
confusion.
2012-01-06 07:06:25 +00:00
|
|
|
|
|
|
|
toOption :: Option
|
2012-01-06 14:14:37 +00:00
|
|
|
toOption = Option.field ['t'] "to" paramRemote "destination remote"
|
more command-specific options
Made --from and --to command-specific options.
Added generic storage for values of command-specific options,
which allows removing some of the special case fields in AnnexState.
(Also added generic storage for command-specific flags, although there are
not yet any.)
Note that this storage uses a Map, so repeatedly looking up the same value
is slightly more expensive than looking up an AnnexState field. But, the
value can be looked up once in the seek stage, transformed as necessary,
and passed in a closure to the start stage, and this avoids that overhead.
Still, I'm hesitant to use this for things like force or fast flags.
It's probably best to reserve it for flags that are only used by a few
commands, or options like --from and --to that it's important only be
allowed to be used with commands that implement them, to avoid user
confusion.
2012-01-06 07:06:25 +00:00
|
|
|
|
|
|
|
options :: [Option]
|
|
|
|
options = [fromOption, toOption]
|
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
seek :: [CommandSeek]
|
2012-01-06 14:14:37 +00:00
|
|
|
seek = [withField toOption Remote.byName $ \to ->
|
|
|
|
withField fromOption Remote.byName $ \from ->
|
2012-01-06 08:02:35 +00:00
|
|
|
withFilesInGit $ whenAnnexed $ start to from True]
|
2010-11-11 22:54:52 +00:00
|
|
|
|
2012-01-06 08:02:35 +00:00
|
|
|
start :: Maybe Remote -> Maybe Remote -> Bool -> FilePath -> (Key, Backend) -> CommandStart
|
more command-specific options
Made --from and --to command-specific options.
Added generic storage for values of command-specific options,
which allows removing some of the special case fields in AnnexState.
(Also added generic storage for command-specific flags, although there are
not yet any.)
Note that this storage uses a Map, so repeatedly looking up the same value
is slightly more expensive than looking up an AnnexState field. But, the
value can be looked up once in the seek stage, transformed as necessary,
and passed in a closure to the start stage, and this avoids that overhead.
Still, I'm hesitant to use this for things like force or fast flags.
It's probably best to reserve it for flags that are only used by a few
commands, or options like --from and --to that it's important only be
allowed to be used with commands that implement them, to avoid user
confusion.
2012-01-06 07:06:25 +00:00
|
|
|
start to from move file (key, _) = do
|
2011-09-15 19:33:20 +00:00
|
|
|
noAuto
|
2011-01-26 04:17:38 +00:00
|
|
|
case (from, to) of
|
|
|
|
(Nothing, Nothing) -> error "specify either --from or --to"
|
2012-01-06 08:02:35 +00:00
|
|
|
(Nothing, Just dest) -> toStart dest move file key
|
|
|
|
(Just src, Nothing) -> fromStart src move file key
|
2010-11-02 23:04:24 +00:00
|
|
|
(_ , _) -> error "only one of --from or --to can be specified"
|
2011-09-15 19:33:20 +00:00
|
|
|
where
|
|
|
|
noAuto = when move $ whenM (Annex.getState Annex.auto) $ error
|
|
|
|
"--auto is not supported for move"
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-07-19 18:07:23 +00:00
|
|
|
showMoveAction :: Bool -> FilePath -> Annex ()
|
|
|
|
showMoveAction True file = showStart "move" file
|
|
|
|
showMoveAction False file = showStart "copy" file
|
2010-11-27 21:02:53 +00:00
|
|
|
|
2011-03-27 21:24:20 +00:00
|
|
|
{- Moves (or copies) the content of an annexed file to a remote.
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
2011-03-27 21:24:20 +00:00
|
|
|
- If the remote already has the content, it is still removed from
|
|
|
|
- the current repository.
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
|
|
|
- Note that unlike drop, this does not honor annex.numcopies.
|
|
|
|
- A file's content can be moved even if there are insufficient copies to
|
|
|
|
- allow it to be dropped.
|
|
|
|
-}
|
2011-12-31 08:11:39 +00:00
|
|
|
toStart :: Remote -> Bool -> FilePath -> Key -> CommandStart
|
2011-11-11 02:37:52 +00:00
|
|
|
toStart dest move file key = do
|
2011-10-11 18:43:45 +00:00
|
|
|
u <- getUUID
|
2010-11-02 23:04:24 +00:00
|
|
|
ishere <- inAnnex key
|
2011-03-27 21:24:20 +00:00
|
|
|
if not ishere || u == Remote.uuid dest
|
2011-05-15 06:02:46 +00:00
|
|
|
then stop -- not here, so nothing to do
|
2010-11-02 23:04:24 +00:00
|
|
|
else do
|
2011-07-19 18:07:23 +00:00
|
|
|
showMoveAction move file
|
2011-05-15 06:02:46 +00:00
|
|
|
next $ toPerform dest move key
|
2011-12-31 08:11:39 +00:00
|
|
|
toPerform :: Remote -> Bool -> Key -> CommandPerform
|
2011-11-09 20:54:18 +00:00
|
|
|
toPerform dest move key = moveLock move key $ do
|
2011-03-27 22:34:30 +00:00
|
|
|
-- Checking the remote is expensive, so not done in the start step.
|
|
|
|
-- In fast mode, location tracking is assumed to be correct,
|
|
|
|
-- and an explicit check is not done, when copying. When moving,
|
|
|
|
-- it has to be done, to avoid inaverdent data loss.
|
|
|
|
fast <- Annex.getState Annex.fast
|
2011-05-16 17:27:19 +00:00
|
|
|
let fastcheck = fast && not move && not (Remote.hasKeyCheap dest)
|
|
|
|
isthere <- if fastcheck
|
2011-04-01 16:34:06 +00:00
|
|
|
then do
|
2011-06-23 17:39:04 +00:00
|
|
|
remotes <- Remote.keyPossibilities key
|
2011-04-01 16:34:06 +00:00
|
|
|
return $ Right $ dest `elem` remotes
|
2011-03-27 22:34:30 +00:00
|
|
|
else Remote.hasKey dest key
|
2010-11-02 23:04:24 +00:00
|
|
|
case isthere of
|
|
|
|
Left err -> do
|
2011-11-11 05:52:58 +00:00
|
|
|
showNote err
|
2011-05-15 06:02:46 +00:00
|
|
|
stop
|
2010-11-02 23:04:24 +00:00
|
|
|
Right False -> do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction $ "to " ++ Remote.name dest
|
2011-03-27 21:24:20 +00:00
|
|
|
ok <- Remote.storeKey dest key
|
2010-11-22 21:51:55 +00:00
|
|
|
if ok
|
2011-11-09 20:54:18 +00:00
|
|
|
then finish
|
2011-05-16 17:27:19 +00:00
|
|
|
else do
|
|
|
|
when fastcheck $
|
|
|
|
warning "This could have failed because --fast is enabled."
|
|
|
|
stop
|
2011-11-09 20:54:18 +00:00
|
|
|
Right True -> finish
|
|
|
|
where
|
|
|
|
finish = do
|
2011-11-09 22:33:15 +00:00
|
|
|
Remote.logStatus dest key True
|
2011-11-09 20:54:18 +00:00
|
|
|
if move
|
|
|
|
then do
|
|
|
|
whenM (inAnnex key) $ removeAnnex key
|
|
|
|
next $ Command.Drop.cleanupLocal key
|
|
|
|
else next $ return True
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-03-27 21:24:20 +00:00
|
|
|
{- Moves (or copies) the content of an annexed file from a remote
|
|
|
|
- to the current repository.
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
|
|
|
- If the current repository already has the content, it is still removed
|
2011-03-27 21:24:20 +00:00
|
|
|
- from the remote.
|
2010-11-02 23:04:24 +00:00
|
|
|
-}
|
2011-12-31 08:11:39 +00:00
|
|
|
fromStart :: Remote -> Bool -> FilePath -> Key -> CommandStart
|
2011-11-11 02:37:52 +00:00
|
|
|
fromStart src move file key
|
2011-11-11 05:52:58 +00:00
|
|
|
| move = go
|
2011-12-09 17:32:09 +00:00
|
|
|
| otherwise = stopUnless (not <$> inAnnex key) go
|
2011-11-11 01:32:42 +00:00
|
|
|
where
|
2011-12-09 16:23:45 +00:00
|
|
|
go = stopUnless (fromOk src key) $ do
|
|
|
|
showMoveAction move file
|
|
|
|
next $ fromPerform src move key
|
2011-12-31 08:11:39 +00:00
|
|
|
fromOk :: Remote -> Key -> Annex Bool
|
2011-11-18 21:09:10 +00:00
|
|
|
fromOk src key = do
|
|
|
|
u <- getUUID
|
|
|
|
remotes <- Remote.keyPossibilities key
|
|
|
|
return $ u /= Remote.uuid src && any (== src) remotes
|
2011-12-31 08:11:39 +00:00
|
|
|
fromPerform :: Remote -> Bool -> Key -> CommandPerform
|
2011-11-09 20:54:18 +00:00
|
|
|
fromPerform src move key = moveLock move key $ do
|
2010-11-02 23:04:24 +00:00
|
|
|
ishere <- inAnnex key
|
2010-11-22 21:51:55 +00:00
|
|
|
if ishere
|
2011-11-09 20:54:18 +00:00
|
|
|
then handle move True
|
2010-11-02 23:04:24 +00:00
|
|
|
else do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction $ "from " ++ Remote.name src
|
2011-03-27 21:24:20 +00:00
|
|
|
ok <- getViaTmp key $ Remote.retrieveKeyFile src key
|
2011-11-09 20:54:18 +00:00
|
|
|
handle move ok
|
|
|
|
where
|
|
|
|
handle _ False = stop -- failed
|
|
|
|
handle False True = next $ return True -- copy complete
|
|
|
|
handle True True = do -- finish moving
|
|
|
|
ok <- Remote.removeKey src key
|
|
|
|
next $ Command.Drop.cleanupRemote key src ok
|
|
|
|
|
|
|
|
{- Locks a key in order for it to be moved.
|
|
|
|
- No lock is needed when a key is being copied. -}
|
|
|
|
moveLock :: Bool -> Key -> Annex a -> Annex a
|
2011-11-09 22:33:15 +00:00
|
|
|
moveLock True key a = lockContent key a
|
2011-11-09 20:54:18 +00:00
|
|
|
moveLock False _ a = a
|