console-program-0.4.0.2: Interpret the command line and settings in a config file as commands and options

Safe HaskellSafe
LanguageHaskell98

System.Console.Command

Description

A Command provides a mode of operation of your program. This allows a single program to provide many different pieces of functionality. The first argument to the program (or the first few, if it has subcommands) determines which command should be executed. (darcs and cabal are examples of programs with this behaviour.)

An Action represents an IO action, together with information about applicable options and non-option arguments.

Synopsis

Documentation

type Commands m = Tree (Command m) Source

Commands m is a tree of commands (with action in the monad m). It represents the whole set of possible commands of a program.

data Tree a :: * -> *

Multi-way trees, also known as rose trees.

Constructors

Node a (Forest a) 

Instances

data Command m Source

A Command m is an action (in the monad m), together with some descriptive information.

Constructors

Command 

Fields

name :: String

This determines which command is executed.

description :: String

For usage info.

action :: Action m

The actual action performed by this command.

shorten :: Bool

Prefer shortened subcommands over non-option arguments.

command :: String -> String -> Action m -> Command m Source

Create a new command having a given name and action.

data Action m Source

An Action m is an action (in the monad m), which may take arguments ("non-options") and options from the command line.

io :: MonadIO m => m () -> Action m Source

A simple action, taking no argument, and having no options.

withNonOption :: MonadIO m => Type x -> (x -> Action m) -> Action m Source

Create an action that takes an argument (non-option).

The type of argument is specified by the first parameter; such values can be obtained from the module System.Console.Argument.

withOption :: MonadIO m => Option a -> (a -> Action m) -> Action m Source

Create an action that takes an option.

The first parameter is a description of the option; such a value can be constructed using option.

ignoreOption :: Option a -> Action m -> Action m Source

Create an action that allows, but ignores, the given option.

This is especially useful if this option is given in the configuration file, but is meant for other commands; then this action will not give an error message about an unrecognised option.