aboutsummaryrefslogtreecommitdiff
path: root/CmdLine.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-01-05 22:48:59 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-01-05 23:11:07 -0400
commitad43f0362688a601ba43f462e80f5a91bf398c02 (patch)
tree550788062a775eb6b2c2c087052993aa10435875 /CmdLine.hs
parent47be4383b714320c9e3f49cc23315101fad5735b (diff)
per-command options
Finally commands can define their own options. Moved --format and --print0 to be options only of find.
Diffstat (limited to 'CmdLine.hs')
-rw-r--r--CmdLine.hs41
1 files changed, 15 insertions, 26 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index fb2792cf4..6ac0b423f 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -29,7 +29,7 @@ type Flags = [Annex ()]
{- Runs the passed command line. -}
dispatch :: Params -> [Command] -> [Option] -> String -> IO Git.Repo -> IO ()
-dispatch args cmds options header getgitrepo = do
+dispatch args cmds commonoptions header getgitrepo = do
setupConsole
r <- E.try getgitrepo :: IO (Either E.SomeException Git.Repo)
case r of
@@ -41,37 +41,26 @@ dispatch args cmds options header getgitrepo = do
prepCommand cmd params
tryRun state' cmd $ [startup] ++ actions ++ [shutdown]
where
- (flags, cmd, params) = parseCmd args cmds options header
+ (flags, cmd, params) = parseCmd args cmds commonoptions header
{- Parses command line, and returns actions to run to configure flags,
- the Command being run, and the remaining parameters for the command. -}
parseCmd :: Params -> [Command] -> [Option] -> String -> (Flags, Command, Params)
-parseCmd argv cmds options header = check $ getOpt Permute options argv
+parseCmd argv cmds commonoptions header
+ | name == Nothing = err "missing command"
+ | null matches = err $ "unknown command " ++ fromJust name
+ | otherwise = check $ getOpt Permute (commonoptions ++ cmdoptions cmd) args
where
- check (_, [], []) = err "missing command"
- check (flags, name:rest, [])
- | null matches = err $ "unknown command " ++ name
- | otherwise = (flags, Prelude.head matches, rest)
- where
- matches = filter (\c -> name == cmdname c) cmds
+ (name, args) = findname argv []
+ findname [] c = (Nothing, reverse c)
+ findname (a:as) c
+ | "-" `isPrefixOf` a = findname as (a:c)
+ | otherwise = (Just a, reverse c ++ as)
+ matches = filter (\c -> name == Just (cmdname c)) cmds
+ cmd = Prelude.head matches
+ check (flags, rest, []) = (flags, cmd, rest)
check (_, _, errs) = err $ concat errs
- err msg = error $ msg ++ "\n\n" ++ usage header cmds options
-
-{- Usage message with lists of commands and options. -}
-usage :: String -> [Command] -> [Option] -> String
-usage header cmds options = usageInfo top options ++ commands
- where
- top = header ++ "\n\nOptions:"
- commands = "\nCommands:\n" ++ cmddescs
- cmddescs = unlines $ map (indent . showcmd) cmds
- showcmd c =
- cmdname c ++
- pad (longest cmdname + 1) (cmdname c) ++
- cmdparamdesc c ++
- pad (longest cmdparamdesc + 2) (cmdparamdesc c) ++
- cmddesc c
- pad n s = replicate (n - length s) ' '
- longest f = foldl max 0 $ map (length . f) cmds
+ err msg = error $ msg ++ "\n\n" ++ usage header cmds commonoptions
{- Runs a list of Annex actions. Catches IO errors and continues
- (but explicitly thrown errors terminate the whole command).