src/Nix/Options/Parser.hs: m upd alignment

This commit is contained in:
Anton-Latukha 2020-08-25 21:34:21 +03:00 committed by Anton Latukha
parent 38215317b9
commit 2dc211314e
1 changed files with 117 additions and 96 deletions

View File

@ -28,146 +28,167 @@ argPair = option $ str >>= \s -> case Text.findIndex (== '=') s of
nixOptions :: UTCTime -> Parser Options
nixOptions current =
Options
<$> (fromMaybe Informational <$> optional
<$> (fromMaybe Informational <$>
optional
(option
(do
a <- str
if all isDigit a
then pure $ decodeVerbosity (read a)
else fail "Argument to -v/--verbose must be a number"
)
(short 'v' <> long "verbose" <> help "Verbose output")
( short 'v'
<> long "verbose"
<> help "Verbose output"
)
)
)
<*> switch
( long "trace"
<> help
"Enable tracing code (even more can be seen if built with --flags=tracing)"
)
( long "trace"
<> help "Enable tracing code (even more can be seen if built with --flags=tracing)"
)
<*> switch
(long "thunks" <> help
"Enable reporting of thunk tracing as well as regular evaluation"
)
( long "thunks"
<> help "Enable reporting of thunk tracing as well as regular evaluation"
)
<*> switch
( long "values"
<> help "Enable reporting of value provenance in error messages"
)
( long "values"
<> help "Enable reporting of value provenance in error messages"
)
<*> switch
( long "scopes"
<> help "Enable reporting of scopes in evaluation traces"
)
( long "scopes"
<> help "Enable reporting of scopes in evaluation traces"
)
<*> optional
(strOption
( long "reduce"
<> help
"When done evaluating, output the evaluated part of the expression to FILE"
)
(strOption
( long "reduce"
<> help "When done evaluating, output the evaluated part of the expression to FILE"
)
)
<*> switch
(long "reduce-sets" <> help
"Reduce set members that aren't used; breaks if hasAttr is used"
)
( long "reduce-sets"
<> help "Reduce set members that aren't used; breaks if hasAttr is used"
)
<*> switch
(long "reduce-lists" <> help
"Reduce list members that aren't used; breaks if elemAt is used"
)
( long "reduce-lists"
<> help "Reduce list members that aren't used; breaks if elemAt is used"
)
<*> switch
( long "parse"
<> help "Whether to parse the file (also the default right now)"
)
( long "parse"
<> help "Whether to parse the file (also the default right now)"
)
<*> switch
( long "parse-only"
<> help "Whether to parse only, no pretty printing or checking"
)
<*> switch (long "find" <> help "If selected, find paths within attr trees")
( long "parse-only"
<> help "Whether to parse only, no pretty printing or checking"
)
<*> switch
( long "find"
<> help "If selected, find paths within attr trees"
)
<*> optional
(strOption
( long "find-file"
<> help "Look up the given files in Nix's search path"
)
(strOption
( long "find-file"
<> help "Look up the given files in Nix's search path"
)
)
<*> switch
( long "strict"
<> help
"When used with --eval, recursively evaluate list elements and attributes"
)
<*> switch (long "eval" <> help "Whether to evaluate, or just pretty-print")
( long "strict"
<> help "When used with --eval, recursively evaluate list elements and attributes"
)
<*> switch
( long "json"
<> help "Print the resulting value as an JSON representation"
)
( long "eval"
<> help "Whether to evaluate, or just pretty-print"
)
<*> switch
( long "xml"
<> help "Print the resulting value as an XML representation"
)
( long "json"
<> help "Print the resulting value as an JSON representation"
)
<*> switch
( long "xml"
<> help "Print the resulting value as an XML representation"
)
<*> optional
(strOption
( short 'A'
<> long "attr"
<> help
"Select an attribute from the top-level Nix expression being evaluated"
)
(strOption
( short 'A'
<> long "attr"
<> help "Select an attribute from the top-level Nix expression being evaluated"
)
)
<*> many
(strOption
(short 'I' <> long "include" <> help
"Add a path to the Nix expression search path"
)
(strOption
( short 'I'
<> long "include"
<> help "Add a path to the Nix expression search path"
)
)
<*> switch
( long "check"
<> help "Whether to check for syntax errors after parsing"
)
( long "check"
<> help "Whether to check for syntax errors after parsing"
)
<*> optional
(strOption
( long "read"
<> help "Read in an expression tree from a binary cache"
)
(strOption
( long "read"
<> help "Read in an expression tree from a binary cache"
)
)
<*> switch
( long "cache"
<> help "Write out the parsed expression tree to a binary cache"
)
( long "cache"
<> help "Write out the parsed expression tree to a binary cache"
)
<*> switch
( long "repl"
<> help "After performing any indicated actions, enter the REPL"
)
( long "repl"
<> help "After performing any indicated actions, enter the REPL"
)
<*> switch
( long "ignore-errors"
<> help "Continue parsing files, even if there are errors"
)
( long "ignore-errors"
<> help "Continue parsing files, even if there are errors"
)
<*> optional
(strOption
(short 'E' <> long "expr" <> help "Expression to parse or evaluate")
)
(strOption
( short 'E'
<> long "expr"
<> help "Expression to parse or evaluate")
)
<*> many
(argPair
(long "arg" <> help "Argument to pass to an evaluated lambda")
)
(argPair
( long "arg"
<> help "Argument to pass to an evaluated lambda")
)
<*> many
(argPair
( long "argstr"
<> help "Argument string to pass to an evaluated lambda"
)
(argPair
( long "argstr"
<> help "Argument string to pass to an evaluated lambda"
)
)
<*> optional
(strOption
(short 'f' <> long "file" <> help
"Parse all of the files given in FILE; - means stdin"
)
(strOption
( short 'f'
<> long "file"
<> help "Parse all of the files given in FILE; - means stdin"
)
)
<*> option
(parseTimeOrError True defaultTimeLocale "%Y/%m/%d %H:%M:%S" <$> str)
(long "now" <> value current <> help
"Set current time for testing purposes"
(parseTimeOrError True defaultTimeLocale "%Y/%m/%d %H:%M:%S" <$> str)
( long "now"
<> value current
<> help "Set current time for testing purposes"
)
<*> many
(strArgument
( metavar "FILE"
<> help "Path of file to parse"
)
<*> many (strArgument (metavar "FILE" <> help "Path of file to parse"))
)
versionOpt :: Parser (a -> a)
versionOpt = infoOption
(showVersion version)
( long "version"
<> help "Show release version"
)
(showVersion version)
( long "version"
<> help "Show release version"
)
nixOptionsInfo :: UTCTime -> ParserInfo Options
nixOptionsInfo current = info (helper <*> versionOpt <*> nixOptions current)