2011-09-15 20:57:02 +00:00
|
|
|
{- git-annex command infrastructure
|
2010-11-02 23:04:24 +00:00
|
|
|
-
|
2011-09-19 05:37:04 +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.
|
|
|
|
-}
|
|
|
|
|
2011-10-30 03:48:46 +00:00
|
|
|
module Command (
|
|
|
|
command,
|
2011-11-16 04:49:09 +00:00
|
|
|
noRepo,
|
2012-02-14 16:40:40 +00:00
|
|
|
oneShot,
|
2012-01-06 02:48:59 +00:00
|
|
|
withOptions,
|
2011-10-30 03:48:46 +00:00
|
|
|
next,
|
|
|
|
stop,
|
2011-12-09 16:23:45 +00:00
|
|
|
stopUnless,
|
2011-10-30 03:48:46 +00:00
|
|
|
prepCommand,
|
|
|
|
doCommand,
|
2011-11-11 03:35:08 +00:00
|
|
|
whenAnnexed,
|
2011-12-07 20:53:53 +00:00
|
|
|
ifAnnexed,
|
2011-10-30 03:48:46 +00:00
|
|
|
notBareRepo,
|
|
|
|
isBareRepo,
|
2012-02-14 03:42:44 +00:00
|
|
|
numCopies,
|
2011-11-11 05:52:58 +00:00
|
|
|
autoCopies,
|
|
|
|
module ReExported
|
2011-10-30 03:48:46 +00:00
|
|
|
) where
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2010-11-04 17:28:49 +00:00
|
|
|
import qualified Backend
|
|
|
|
import qualified Annex
|
2011-06-30 17:16:57 +00:00
|
|
|
import qualified Git
|
2012-01-10 17:11:16 +00:00
|
|
|
import qualified Remote
|
2011-11-11 05:52:58 +00:00
|
|
|
import Types.Command as ReExported
|
2012-01-06 02:48:59 +00:00
|
|
|
import Types.Option as ReExported
|
2011-11-11 05:52:58 +00:00
|
|
|
import Seek as ReExported
|
|
|
|
import Checks as ReExported
|
2012-01-06 02:48:59 +00:00
|
|
|
import Usage as ReExported
|
2011-10-15 20:21:08 +00:00
|
|
|
import Logs.Trust
|
2011-09-15 17:30:04 +00:00
|
|
|
import Config
|
2012-02-14 03:42:44 +00:00
|
|
|
import Annex.CheckAttr
|
2010-11-02 23:04:24 +00:00
|
|
|
|
2011-11-16 04:49:09 +00:00
|
|
|
{- Generates a normal command -}
|
2011-10-30 03:48:46 +00:00
|
|
|
command :: String -> String -> [CommandSeek] -> String -> Command
|
2012-02-14 16:40:40 +00:00
|
|
|
command = Command [] Nothing commonChecks False
|
|
|
|
|
|
|
|
{- Makes a command run in oneshot mode. -}
|
|
|
|
oneShot :: Command -> Command
|
|
|
|
oneShot c = c { cmdoneshot = True }
|
2011-11-16 04:49:09 +00:00
|
|
|
|
|
|
|
{- Adds a fallback action to a command, that will be run if it's used
|
|
|
|
- outside a git repository. -}
|
|
|
|
noRepo :: IO () -> Command -> Command
|
|
|
|
noRepo a c = c { cmdnorepo = Just a }
|
2010-11-04 17:28:49 +00:00
|
|
|
|
2012-01-06 02:48:59 +00:00
|
|
|
{- Adds options to a command. -}
|
|
|
|
withOptions :: [Option] -> Command -> Command
|
|
|
|
withOptions o c = c { cmdoptions = o }
|
|
|
|
|
2011-05-15 06:02:46 +00:00
|
|
|
{- For start and perform stages to indicate what step to run next. -}
|
|
|
|
next :: a -> Annex (Maybe a)
|
|
|
|
next a = return $ Just a
|
|
|
|
|
|
|
|
{- Or to indicate nothing needs to be done. -}
|
|
|
|
stop :: Annex (Maybe a)
|
|
|
|
stop = return Nothing
|
|
|
|
|
2011-12-09 16:23:45 +00:00
|
|
|
{- Stops unless a condition is met. -}
|
|
|
|
stopUnless :: Annex Bool -> Annex (Maybe a) -> Annex (Maybe a)
|
2012-03-14 21:43:34 +00:00
|
|
|
stopUnless c a = ifM c ( a , stop )
|
2011-12-09 16:23:45 +00:00
|
|
|
|
2011-10-31 00:04:15 +00:00
|
|
|
{- Prepares to run a command via the check and seek stages, returning a
|
|
|
|
- list of actions to perform to run the command. -}
|
|
|
|
prepCommand :: Command -> [String] -> Annex [CommandCleanup]
|
|
|
|
prepCommand Command { cmdseek = seek, cmdcheck = c } params = do
|
2011-11-11 05:52:58 +00:00
|
|
|
mapM_ runCheck c
|
2011-10-31 00:04:15 +00:00
|
|
|
map doCommand . concat <$> mapM (\s -> s params) seek
|
2010-11-04 17:28:49 +00:00
|
|
|
|
2010-12-30 18:19:16 +00:00
|
|
|
{- Runs a command through the start, perform and cleanup stages -}
|
|
|
|
doCommand :: CommandStart -> CommandCleanup
|
2011-05-15 16:25:58 +00:00
|
|
|
doCommand = start
|
|
|
|
where
|
2011-10-31 00:04:15 +00:00
|
|
|
start = stage $ maybe skip perform
|
2011-07-05 18:58:33 +00:00
|
|
|
perform = stage $ maybe failure cleanup
|
2011-10-31 00:04:15 +00:00
|
|
|
cleanup = stage $ status
|
2011-09-19 05:37:04 +00:00
|
|
|
stage = (=<<)
|
2011-10-31 00:04:15 +00:00
|
|
|
skip = return True
|
2011-09-19 05:37:04 +00:00
|
|
|
failure = showEndFail >> return False
|
2011-10-31 00:04:15 +00:00
|
|
|
status r = showEndResult r >> return r
|
2010-11-04 17:28:49 +00:00
|
|
|
|
2011-11-11 03:35:08 +00:00
|
|
|
{- Modifies an action to only act on files that are already annexed,
|
|
|
|
- and passes the key and backend on to it. -}
|
2011-12-31 08:11:39 +00:00
|
|
|
whenAnnexed :: (FilePath -> (Key, Backend) -> Annex (Maybe a)) -> FilePath -> Annex (Maybe a)
|
2011-12-07 20:53:53 +00:00
|
|
|
whenAnnexed a file = ifAnnexed file (a file) (return Nothing)
|
2011-11-11 03:35:08 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
ifAnnexed :: FilePath -> ((Key, Backend) -> Annex a) -> Annex a -> Annex a
|
2011-12-07 20:53:53 +00:00
|
|
|
ifAnnexed file yes no = maybe no yes =<< Backend.lookupFile file
|
2011-10-29 21:49:37 +00:00
|
|
|
|
|
|
|
notBareRepo :: Annex a -> Annex a
|
|
|
|
notBareRepo a = do
|
2011-10-29 22:47:53 +00:00
|
|
|
whenM isBareRepo $
|
2011-10-29 21:49:37 +00:00
|
|
|
error "You cannot run this subcommand in a bare repository."
|
|
|
|
a
|
|
|
|
|
2011-10-30 03:48:46 +00:00
|
|
|
isBareRepo :: Annex Bool
|
2011-11-08 19:34:10 +00:00
|
|
|
isBareRepo = fromRepo Git.repoIsLocalBare
|
2011-01-26 04:17:38 +00:00
|
|
|
|
2012-02-14 03:42:44 +00:00
|
|
|
numCopies :: FilePath -> Annex (Maybe Int)
|
|
|
|
numCopies file = readish <$> checkAttr "annex.numcopies" file
|
|
|
|
|
2011-09-15 17:30:04 +00:00
|
|
|
{- Used for commands that have an auto mode that checks the number of known
|
|
|
|
- copies of a key.
|
|
|
|
-
|
|
|
|
- In auto mode, first checks that the number of known
|
|
|
|
- copies of the key is > or < than the numcopies setting, before running
|
|
|
|
- the action. -}
|
2012-02-14 03:42:44 +00:00
|
|
|
autoCopies :: FilePath -> Key -> (Int -> Int -> Bool) -> (Maybe Int -> CommandStart) -> CommandStart
|
|
|
|
autoCopies file key vs a = do
|
|
|
|
numcopiesattr <- numCopies file
|
|
|
|
Annex.getState Annex.auto >>= auto numcopiesattr
|
2011-11-19 19:27:10 +00:00
|
|
|
where
|
2012-02-14 03:42:44 +00:00
|
|
|
auto numcopiesattr False = a numcopiesattr
|
|
|
|
auto numcopiesattr True = do
|
2011-09-15 17:30:04 +00:00
|
|
|
needed <- getNumCopies numcopiesattr
|
2012-01-10 17:11:16 +00:00
|
|
|
(_, have) <- trustPartition UnTrusted =<< Remote.keyLocations key
|
2012-02-14 03:42:44 +00:00
|
|
|
if length have `vs` needed then a numcopiesattr else stop
|