 | Cabal-1.3.4: A framework for packaging Haskell software | Contents | Index |
|
Distribution.Simple.Command | Portability | portable | Stability | alpha | Maintainer | Duncan Coutts <duncan@haskell.org> |
|
|
|
|
|
Description |
Explanation: Data types and parser for the standard command-line
setup.
|
|
Synopsis |
|
|
|
|
Command interface
|
|
data CommandUI flags |
Constructors | CommandUI | | commandName :: String | The name of the command as it would be entered on the command line.
For example "build".
| commandSynopsis :: String | A short, one line description of the command to use in help texts.
| commandUsage :: (String -> String) | The useage line summary for this command
| commandDescription :: (Maybe (String -> String)) | Additional explanation of the command to use in help texts.
| commandDefaultFlags :: flags | Initial / empty flags
| commandOptions :: (ShowOrParseArgs -> [Option flags]) | All the GetOpt options for this command
|
|
|
|
|
commandShowOptions :: CommandUI flags -> flags -> [String] |
Show flags in the standard long option command line format
|
|
Constructing commands
|
|
data ShowOrParseArgs |
|
|
makeCommand |
|
|
data Option a |
|
option :: [Char] -> [String] -> String -> c -> d -> (c -> d -> ArgDescr a) -> Option a |
|
data ArgDescr a |
|
noArg :: Monoid a => a -> (a -> Bool) -> (b -> a) -> (a -> b -> b) -> ArgDescr b |
|
reqArg :: Monoid a => String -> (String -> a) -> (a -> [String]) -> (b -> a) -> (a -> b -> b) -> ArgDescr b |
|
optArg :: Monoid a => String -> (Maybe String -> a) -> (a -> [Maybe String]) -> (b -> a) -> (a -> b -> b) -> ArgDescr b |
|
Associating actions with commands
|
|
data Command action |
|
commandAddAction :: CommandUI flags -> (flags -> [String] -> action) -> Command action |
|
Running commands
|
|
data CommandParse flags |
Constructors | | Instances | |
|
|
commandsRun :: CommandUI a -> [Command action] -> [String] -> CommandParse (a, CommandParse action) |
|
Produced by Haddock version 0.9 |