2010-11-02 23:04:24 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.SetKey where
|
|
|
|
|
|
|
|
import Control.Monad.State (liftIO)
|
|
|
|
import Control.Monad (when)
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import qualified Annex
|
|
|
|
import Utility
|
|
|
|
import qualified Backend
|
|
|
|
import LocationLog
|
|
|
|
import Types
|
|
|
|
import Core
|
2010-11-08 19:15:21 +00:00
|
|
|
import Messages
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2010-11-11 22:54:52 +00:00
|
|
|
seek :: [SubCmdSeek]
|
|
|
|
seek = [withTempFile start]
|
|
|
|
|
2010-11-02 23:04:24 +00:00
|
|
|
{- Sets cached content for a key. -}
|
|
|
|
start :: SubCmdStartString
|
2010-11-08 23:26:37 +00:00
|
|
|
start file = do
|
2010-11-02 23:04:24 +00:00
|
|
|
keyname <- Annex.flagGet "key"
|
|
|
|
when (null keyname) $ error "please specify the key with --key"
|
|
|
|
backends <- Backend.list
|
2010-11-22 21:51:55 +00:00
|
|
|
let key = genKey (head backends) keyname
|
2010-11-08 23:26:37 +00:00
|
|
|
showStart "setkey" file
|
|
|
|
return $ Just $ perform file key
|
2010-11-02 23:04:24 +00:00
|
|
|
perform :: FilePath -> Key -> SubCmdPerform
|
2010-11-08 23:26:37 +00:00
|
|
|
perform file key = do
|
|
|
|
-- the file might be on a different filesystem, so mv is used
|
|
|
|
-- rather than simply calling moveToObjectDir key file
|
2010-11-27 21:07:22 +00:00
|
|
|
ok <- getViaTmp key $ \dest -> do
|
|
|
|
if dest /= file
|
|
|
|
then liftIO $ boolSystem "mv" [file, dest]
|
|
|
|
else return True
|
2010-11-08 23:26:37 +00:00
|
|
|
if ok
|
|
|
|
then return $ Just $ cleanup key
|
|
|
|
else error "mv failed!"
|
|
|
|
|
2010-11-02 23:04:24 +00:00
|
|
|
cleanup :: Key -> SubCmdCleanup
|
|
|
|
cleanup key = do
|
|
|
|
logStatus key ValuePresent
|
|
|
|
return True
|
|
|
|
|