summaryrefslogtreecommitdiff
path: root/Commands.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-14 14:49:19 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-14 14:49:19 -0400
commita0c013605699a4b1509ba1b04b4522ac43f033c6 (patch)
tree0c9f49d5e4c29f53cc92b8656fc981d240e02d24 /Commands.hs
parent90cdc61c7c8d08590e054018c54c542c463be7e9 (diff)
cooler command-line handling
Diffstat (limited to 'Commands.hs')
-rw-r--r--Commands.hs44
1 files changed, 15 insertions, 29 deletions
diff --git a/Commands.hs b/Commands.hs
index b631664d6..05ea65880 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -1,9 +1,7 @@
{- git-annex command line -}
module Commands (
- argvToMode,
- dispatch,
- Mode
+ argvToActions
) where
import System.Console.GetOpt
@@ -23,43 +21,31 @@ import LocationLog
import Types
import Core
-data Mode = Default | Add | Push | Pull | Want | Get | Drop | Unannex
- deriving Show
-
-options :: [OptDescr Mode]
+options :: [OptDescr (String -> Annex ())]
options =
- [ Option ['a'] ["add"] (NoArg Add) "add files to annex"
- , Option ['p'] ["push"] (NoArg Push) "push annex to repos"
- , Option ['P'] ["pull"] (NoArg Pull) "pull annex from repos"
- , Option ['w'] ["want"] (NoArg Want) "request file contents"
- , Option ['g'] ["get"] (NoArg Get) "transfer file contents"
- , Option ['d'] ["drop"] (NoArg Drop) "indicate file contents not needed"
- , Option ['u'] ["unannex"] (NoArg Unannex) "undo --add"
+ [ Option ['a'] ["add"] (NoArg addCmd) "add files to annex"
+ , Option ['p'] ["push"] (NoArg pushCmd) "push annex to repos"
+ , Option ['P'] ["pull"] (NoArg pullCmd) "pull annex from repos"
+ , Option ['w'] ["want"] (NoArg wantCmd) "request file contents"
+ , Option ['g'] ["get"] (NoArg getCmd) "transfer file contents"
+ , Option ['d'] ["drop"] (NoArg dropCmd) "indicate file contents not needed"
+ , Option ['u'] ["unannex"] (NoArg unannexCmd) "undo --add"
]
-argvToMode argv = do
+{- Parses command line and returns a list of actons to be run in the Annex
+ - monad. -}
+argvToActions :: [String] -> IO [Annex ()]
+argvToActions argv = do
case getOpt Permute options argv of
- ([],files,[]) -> return (Default, files)
+ ([],files,[]) -> return $ map defaultCmd files
-- one mode is normal case
- (m:[],files,[]) -> return (m, files)
+ (m:[],files,[]) -> return $ map m files
-- multiple modes is an error
(ms,files,[]) -> ioError (userError ("only one mode should be specified\n" ++ usageInfo header options))
-- error case
(_,files,errs) -> ioError (userError (concat errs ++ usageInfo header options))
where header = "Usage: git-annex [mode] file"
-dispatch :: Mode -> FilePath -> Annex ()
-dispatch mode item = do
- case (mode) of
- Default -> defaultCmd item
- Add -> addCmd item
- Push -> pushCmd item
- Pull -> pullCmd item
- Want -> wantCmd item
- Get -> getCmd item
- Drop -> dropCmd item
- Unannex -> unannexCmd item
-
{- Default mode is to annex a file if it is not already, and otherwise
- get its content. -}
defaultCmd :: FilePath -> Annex ()