module Options.Applicative.Help.Core (
cmdDesc,
briefDesc,
missingDesc,
fullDesc,
globalDesc,
ParserHelp(..),
errorHelp,
headerHelp,
suggestionsHelp,
usageHelp,
bodyHelp,
footerHelp,
globalsHelp,
parserHelp,
parserUsage,
parserGlobals
) where
import Control.Applicative
import Control.Monad (guard)
import Data.Function (on)
import Data.List (sort, intersperse, groupBy)
import Data.Foldable (any, foldl')
import Data.Maybe (maybeToList, catMaybes, fromMaybe)
import Data.Monoid (mempty)
import Data.Semigroup (Semigroup (..))
import Prelude hiding (any)
import Options.Applicative.Common
import Options.Applicative.Types
import Options.Applicative.Help.Pretty
import Options.Applicative.Help.Chunk
data OptDescStyle
= OptDescStyle
{ descSep :: Doc,
descHidden :: Bool,
descGlobal :: Bool
}
safelast :: [a] -> Maybe a
safelast = foldl' (const Just) Nothing
optDesc :: ParserPrefs -> OptDescStyle -> ArgumentReachability -> Option a -> (Chunk Doc, Parenthetic)
optDesc pprefs style _reachability opt =
let names =
sort . optionNames . optMain $ opt
meta =
stringChunk $ optMetaVar opt
descs =
map (string . showOption) names
descriptions =
listToChunk (intersperse (descSep style) descs)
desc
| prefHelpLongEquals pprefs && not (isEmpty meta) && any isLongName (safelast names) =
descriptions <> stringChunk "=" <> meta
| otherwise =
descriptions <<+>> meta
show_opt
| descGlobal style && not (propShowGlobal (optProps opt)) =
False
| optVisibility opt == Hidden =
descHidden style
| otherwise =
optVisibility opt == Visible
wrapping
| null names =
NeverRequired
| length names == 1 =
MaybeRequired
| otherwise =
AlwaysRequired
rendered
| not show_opt =
mempty
| otherwise =
desc
modified =
maybe id fmap (optDescMod opt) rendered
in (modified, wrapping)
cmdDesc :: Parser a -> [(Maybe String, Chunk Doc)]
cmdDesc = mapParser desc
where
desc _ opt =
case optMain opt of
CmdReader gn cmds p ->
(,) gn $
tabulate
[ (string cmd, align (extractChunk d))
| cmd <- reverse cmds,
d <- maybeToList . fmap infoProgDesc $ p cmd
]
_ -> mempty
briefDesc :: ParserPrefs -> Parser a -> Chunk Doc
briefDesc = briefDesc' True
missingDesc :: ParserPrefs -> Parser a -> Chunk Doc
missingDesc = briefDesc' False
briefDesc' :: Bool -> ParserPrefs -> Parser a -> Chunk Doc
briefDesc' showOptional pprefs =
wrapOver NoDefault MaybeRequired
. foldTree pprefs style
. mfilterOptional
. treeMapParser (optDesc pprefs style)
where
mfilterOptional
| showOptional =
id
| otherwise =
filterOptional
style = OptDescStyle
{ descSep = string "|",
descHidden = False,
descGlobal = False
}
wrapOver :: AltNodeType -> Parenthetic -> (Chunk Doc, Parenthetic) -> Chunk Doc
wrapOver altnode mustWrapBeyond (chunk, wrapping)
| altnode == MarkDefault =
fmap brackets chunk
| wrapping > mustWrapBeyond =
fmap parens chunk
| otherwise =
chunk
foldTree :: ParserPrefs -> OptDescStyle -> OptTree (Chunk Doc, Parenthetic) -> (Chunk Doc, Parenthetic)
foldTree _ _ (Leaf x) =
x
foldTree prefs s (MultNode xs) =
let go =
(<</>>) . wrapOver NoDefault MaybeRequired . foldTree prefs s
x =
foldr go mempty xs
wrapLevel =
mult_wrap xs
in (x, wrapLevel)
where
mult_wrap [_] = NeverRequired
mult_wrap _ = MaybeRequired
foldTree prefs s (AltNode b xs) =
(\x -> (x, NeverRequired))
. fmap groupOrNestLine
. wrapOver b MaybeRequired
. alt_node
. filter (not . isEmpty . fst)
. map (foldTree prefs s)
$ xs
where
alt_node :: [(Chunk Doc, Parenthetic)] -> (Chunk Doc, Parenthetic)
alt_node [n] = n
alt_node ns =
(\y -> (y, AlwaysRequired))
. foldr (chunked altSep . wrapOver NoDefault MaybeRequired) mempty
$ ns
foldTree prefs s (BindNode x) =
let rendered =
wrapOver NoDefault NeverRequired (foldTree prefs s x)
withPrefix =
rendered <> stringChunk (prefMultiSuffix prefs)
in (withPrefix, NeverRequired)
fullDesc :: ParserPrefs -> Parser a -> Chunk Doc
fullDesc = optionsDesc False
globalDesc :: ParserPrefs -> Parser a -> Chunk Doc
globalDesc = optionsDesc True
optionsDesc :: Bool -> ParserPrefs -> Parser a -> Chunk Doc
optionsDesc global pprefs = tabulate . catMaybes . mapParser doc
where
doc info opt = do
guard . not . isEmpty $ n
guard . not . isEmpty $ h
return (extractChunk n, align . extractChunk $ h <</>> hdef)
where
n = fst $ optDesc pprefs style info opt
h = optHelp opt
hdef = Chunk . fmap show_def . optShowDefault $ opt
show_def s = parens (string "default:" <+> string s)
style = OptDescStyle
{ descSep = string ",",
descHidden = True,
descGlobal = global
}
errorHelp :: Chunk Doc -> ParserHelp
errorHelp chunk = mempty { helpError = chunk }
headerHelp :: Chunk Doc -> ParserHelp
headerHelp chunk = mempty { helpHeader = chunk }
suggestionsHelp :: Chunk Doc -> ParserHelp
suggestionsHelp chunk = mempty { helpSuggestions = chunk }
globalsHelp :: Chunk Doc -> ParserHelp
globalsHelp chunk = mempty { helpGlobals = chunk }
usageHelp :: Chunk Doc -> ParserHelp
usageHelp chunk = mempty { helpUsage = chunk }
bodyHelp :: Chunk Doc -> ParserHelp
bodyHelp chunk = mempty { helpBody = chunk }
footerHelp :: Chunk Doc -> ParserHelp
footerHelp chunk = mempty { helpFooter = chunk }
parserHelp :: ParserPrefs -> Parser a -> ParserHelp
parserHelp pprefs p =
bodyHelp . vsepChunks $
with_title "Available options:" (fullDesc pprefs p)
: (group_title <$> cs)
where
def = "Available commands:"
cs = groupBy ((==) `on` fst) $ cmdDesc p
group_title a@((n, _) : _) =
with_title (fromMaybe def n) $
vcatChunks (snd <$> a)
group_title _ = mempty
with_title :: String -> Chunk Doc -> Chunk Doc
with_title title = fmap (string title .$.)
parserGlobals :: ParserPrefs -> Parser a -> ParserHelp
parserGlobals pprefs p =
globalsHelp $
(.$.) <$> stringChunk "Global options:"
<*> globalDesc pprefs p
parserUsage :: ParserPrefs -> Parser a -> String -> Doc
parserUsage pprefs p progn =
hsep
[ string "Usage:",
string progn,
align (extractChunk (briefDesc pprefs p))
]
data Parenthetic
= NeverRequired
| MaybeRequired
| AlwaysRequired
deriving (Eq, Ord, Show)