2014-01-20 20:47:56 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
2014-01-20 20:47:56 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.NumCopies where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import qualified Annex
|
|
|
|
import Command
|
2015-04-30 18:02:56 +00:00
|
|
|
import Annex.NumCopies
|
2014-01-20 20:47:56 +00:00
|
|
|
import Types.Messages
|
|
|
|
|
2014-10-14 18:20:10 +00:00
|
|
|
cmd :: [Command]
|
|
|
|
cmd = [command "numcopies" paramNumber seek
|
2014-01-20 20:47:56 +00:00
|
|
|
SectionSetup "configure desired number of copies"]
|
|
|
|
|
|
|
|
seek :: CommandSeek
|
|
|
|
seek = withWords start
|
|
|
|
|
|
|
|
start :: [String] -> CommandStart
|
|
|
|
start [] = startGet
|
2014-10-09 19:35:19 +00:00
|
|
|
start [s] = case readish s of
|
|
|
|
Nothing -> error $ "Bad number: " ++ s
|
|
|
|
Just n
|
|
|
|
| n > 0 -> startSet n
|
|
|
|
| n == 0 -> ifM (Annex.getState Annex.force)
|
|
|
|
( startSet n
|
|
|
|
, error "Setting numcopies to 0 is very unsafe. You will lose data! If you really want to do that, specify --force."
|
|
|
|
)
|
|
|
|
| otherwise -> error "Number cannot be negative!"
|
2014-01-20 20:47:56 +00:00
|
|
|
start _ = error "Specify a single number."
|
|
|
|
|
|
|
|
startGet :: CommandStart
|
|
|
|
startGet = next $ next $ do
|
|
|
|
Annex.setOutput QuietOutput
|
|
|
|
v <- getGlobalNumCopies
|
|
|
|
case v of
|
2014-10-09 19:35:19 +00:00
|
|
|
Just n -> liftIO $ print $ fromNumCopies n
|
2014-01-20 20:47:56 +00:00
|
|
|
Nothing -> do
|
2014-10-09 19:35:19 +00:00
|
|
|
liftIO $ putStrLn "global numcopies is not set"
|
2014-01-21 21:08:49 +00:00
|
|
|
old <- deprecatedNumCopies
|
2014-01-20 20:47:56 +00:00
|
|
|
case old of
|
|
|
|
Nothing -> liftIO $ putStrLn "(default is 1)"
|
2014-01-21 21:08:49 +00:00
|
|
|
Just n -> liftIO $ putStrLn $ "(deprecated git config annex.numcopies is set to " ++ show (fromNumCopies n) ++ " locally)"
|
2014-01-20 20:47:56 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
startSet :: Int -> CommandStart
|
|
|
|
startSet n = do
|
|
|
|
showStart "numcopies" (show n)
|
|
|
|
next $ next $ do
|
2014-01-21 20:08:19 +00:00
|
|
|
setGlobalNumCopies $ NumCopies n
|
2014-01-20 20:47:56 +00:00
|
|
|
return True
|