git-fmt-0.2.0.0: src/Git/Fmt/Options/Applicative/Parser.hs
{-|
Module : Git.Fmt.Options.Applicative.Parser
Description : Optparse utilities for the git-fmt command.
Copyright : (c) Henry J. Wylde, 2015
License : BSD3
Maintainer : public@hjwylde.com
Optparse utilities for the git-fmt command.
-}
module Git.Fmt.Options.Applicative.Parser (
-- * Optparse for GitFmt
gitFmtPrefs, gitFmtInfo, gitFmt,
) where
import Data.Version (showVersion)
import Options.Applicative
import Options.Applicative.Types (readerAsk)
import Git.Fmt
import Git.Fmt.Version as This
-- | The default preferences.
-- Limits the help output to 100 columns.
gitFmtPrefs :: ParserPrefs
gitFmtPrefs = prefs $ columns 100
-- | An optparse parser of a git-fmt command.
gitFmtInfo :: ParserInfo Options
gitFmtInfo = info (infoOptions <*> gitFmt) fullDesc
where
infoOptions = helper <*> version <*> numericVersion
version = infoOption ("Version " ++ showVersion This.version) $ mconcat [
long "version", short 'V', hidden,
help "Show this binary's version"
]
numericVersion = infoOption (showVersion This.version) $ mconcat [
long "numeric-version", hidden,
help "Show this binary's version (without the prefix)"
]
-- | An options parser.
gitFmt :: Parser Options
gitFmt = Options
<$> (
flag' Quiet (mconcat [
long "quiet", short 'q', hidden,
help "Be quiet"
])
<|> flag Default Verbose (mconcat [
long "verbose", short 'v', hidden,
help "Be verbose"
])
)
<*> switch (mconcat [
long "null", short '0',
help "Input files are delimited by a null terminator instead of white space"
])
<*> modeOption (mconcat [
long "mode", short 'm', metavar "MODE",
value Normal, showDefaultWith $ const "normal",
help "Specify the mode as either `normal' or `dry-run'"
])
<*> many (strArgument $ mconcat [
metavar "-- PATHS..."
])
where
modeOption = option $ readerAsk >>= \opt -> case opt of
"normal" -> return Normal
"dry-run" -> return DryRun
_ -> readerError $ "unrecognised mode `" ++ opt ++ "'"