stack-3.1.1: src/Stack/Options/BuildMonoidParser.hs
{-# LANGUAGE NoImplicitPrelude #-}
module Stack.Options.BuildMonoidParser
( buildOptsMonoidParser
, cabalVerboseParser
, cabalVerbosityOptsParser
, cabalVerbosityParser
) where
import Distribution.Parsec ( eitherParsec )
import Options.Applicative
( Parser, eitherReader, flag, help, long, metavar, option
, strOption
)
import Options.Applicative.Builder.Extra
( firstBoolFlagsFalse, firstBoolFlagsNoDefault
, firstBoolFlagsTrue, optionalFirst
)
import Stack.Build ( splitObjsWarning )
import Stack.Prelude
import Stack.Options.BenchParser ( benchOptsParser )
import Stack.Options.TestParser ( testOptsParser )
import Stack.Options.HaddockParser ( haddockOptsParser )
import Stack.Options.Utils ( GlobalOptsContext (..), hideMods )
import Stack.Types.BuildOptsMonoid
( BuildOptsMonoid (..), CabalVerbosity, readProgressBarFormat
, toFirstCabalVerbosity
)
import Stack.Types.ComponentUtils ( unqualCompFromString )
buildOptsMonoidParser :: GlobalOptsContext -> Parser BuildOptsMonoid
buildOptsMonoidParser hide0 = BuildOptsMonoid
<$> trace'
<*> profile
<*> noStrip
<*> libProfiling
<*> exeProfiling
<*> libStripping
<*> exeStripping
<*> haddock
<*> haddockOptsParser hideBool
<*> openHaddocks
<*> haddockDeps
<*> haddockExecutables
<*> haddockTests
<*> haddockBenchmarks
<*> haddockInternal
<*> haddockHyperlinkSource
<*> haddockForHackage
<*> copyBins
<*> copyCompilerTool
<*> preFetch
<*> keepGoing
<*> keepTmpFiles
<*> forceDirty
<*> tests
<*> testOptsParser hideBool
<*> benches
<*> benchOptsParser hideBool
<*> reconfigure
<*> cabalVerbose
<*> splitObjs
<*> skipComponents
<*> interleavedOutput
<*> progressBar
<*> ddumpDir
where
hideBool = hide0 /= BuildCmdGlobalOpts
hide = hideMods hideBool
hideExceptGhci =
hideMods (hide0 `notElem` [BuildCmdGlobalOpts, GhciCmdGlobalOpts])
-- These use 'Any' because they are not settable in stack.yaml, so
-- there is no need for options like --no-profile.
trace' = Any <$>
flag
False
True
( long "trace"
<> help
"Enable profiling in libraries, executables, etc. for all \
\expressions and generate a backtrace on exception."
<> hideExceptGhci
)
profile = Any <$>
flag
False
True
( long "profile"
<> help
"Enable profiling in libraries, executables, etc. for all \
\expressions and generate a profiling report in tests or \
\benchmarks."
<> hideExceptGhci
)
noStrip = Any <$>
flag
False
True
( long "no-strip"
<> help
"Disable DWARF debugging symbol stripping in libraries, \
\executables, etc. for all expressions, producing larger \
\executables but allowing the use of standard \
\debuggers/profiling tools/other utilities that use \
\debugging symbols."
<> hideExceptGhci
)
libProfiling = firstBoolFlagsFalse
"library-profiling"
"library profiling for TARGETs and all its dependencies."
hide
exeProfiling = firstBoolFlagsFalse
"executable-profiling"
"executable profiling for TARGETs and all its dependencies."
hide
libStripping = firstBoolFlagsTrue
"library-stripping"
"library stripping for TARGETs and all its dependencies."
hide
exeStripping = firstBoolFlagsTrue
"executable-stripping"
"executable stripping for TARGETs and all its dependencies."
hide
haddock = firstBoolFlagsFalse
"haddock"
"generating Haddock documentation for the package(s) in this \
\directory/configuration."
hide
openHaddocks = firstBoolFlagsFalse
"open"
"opening the local Haddock documentation in the browser."
hide
haddockDeps = firstBoolFlagsNoDefault
"haddock-deps"
"building Haddock documentation for dependencies. (default: if building \
\Haddock documentation, true; otherwise, false)"
hide
haddockExecutables = firstBoolFlagsFalse
"haddock-executables"
"also building Haddock documentation for all executables (like \
\'cabal haddock --executables')."
hide
haddockTests = firstBoolFlagsFalse
"haddock-tests"
"also building Haddock documentation for all test suites (like \
\'cabal haddock --tests')."
hide
haddockBenchmarks = firstBoolFlagsFalse
"haddock-benchmarks"
"also building Haddock documentation for all benchmarks (like \
\'cabal haddock --benchmarks')."
hide
haddockInternal = firstBoolFlagsFalse
"haddock-internal"
"building Haddock documentation for internal modules (like \
\'cabal haddock --internal')."
hide
haddockHyperlinkSource = firstBoolFlagsTrue
"haddock-hyperlink-source"
"building hyperlinked source for Haddock documentation (like \
\'haddock --hyperlinked-source')."
hide
haddockForHackage = firstBoolFlagsFalse
"haddock-for-hackage"
"building with flags to generate Haddock documentation suitable for upload \
\to Hackage."
hide
copyBins = firstBoolFlagsFalse
"copy-bins"
"copying binaries to local-bin (see 'stack path')."
hide
copyCompilerTool = firstBoolFlagsFalse
"copy-compiler-tool"
"copying binaries of targets to compiler-tools-bin (see 'stack path')."
hide
keepGoing = firstBoolFlagsNoDefault
"keep-going"
"continue running after a step fails. (default: for 'build', false; for \
\'test' or 'bench', true)"
hide
keepTmpFiles = firstBoolFlagsFalse
"keep-tmp-files"
"keep intermediate files and build directories."
hide
preFetch = firstBoolFlagsFalse
"prefetch"
"fetching packages necessary for the build immediately. Useful with \
\--dry-run."
hide
forceDirty = firstBoolFlagsFalse
"force-dirty"
"forcing the treatment of all project packages and local extra-deps as \
\having dirty files. Useful for cases where Stack can't detect a file \
\change."
hide
tests = firstBoolFlagsFalse
"test"
"testing the package(s) in this directory/configuration."
hideExceptGhci
benches = firstBoolFlagsFalse
"bench"
"benchmarking the package(s) in this directory/configuration."
hideExceptGhci
reconfigure = firstBoolFlagsFalse
"reconfigure"
"performing the configure step, even if unnecessary. Useful in some \
\corner cases with custom Setup.hs files."
hide
cabalVerbose = cabalVerbosityOptsParser hideBool
splitObjs = firstBoolFlagsFalse
"split-objs"
( "split-objs, to reduce output size (at the cost of build time). "
++ splitObjsWarning
)
hide
skipComponents = many (fmap unqualCompFromString (strOption
( long "skip"
<> help "Skip given component (can be specified multiple times)."
<> hide
)))
interleavedOutput = firstBoolFlagsTrue
"interleaved-output"
"printing concurrent GHC output to the console with a prefix for the \
\package name."
hide
progressBar = First <$> optional (option (eitherReader readProgressBarFormat)
( long "progress-bar"
<> metavar "FORMAT"
<> help "Progress bar format (accepts none, count-only, capped and full). \
\(default: capped)"
<> hide
))
ddumpDir = optionalFirst (strOption
( long "ddump-dir"
<> help "Specify output directory for ddump-files."
<> hide
))
-- | Parser for Cabal verbosity options
cabalVerbosityOptsParser :: Bool -> Parser (First CabalVerbosity)
cabalVerbosityOptsParser hide =
cabalVerbosityParser hide <|> cabalVerboseParser hide
-- | Parser for Cabal verbosity option
cabalVerbosityParser :: Bool -> Parser (First CabalVerbosity)
cabalVerbosityParser hide =
let pCabalVerbosity = option (eitherReader eitherParsec)
( long "cabal-verbosity"
<> metavar "VERBOSITY"
<> help "Cabal verbosity (accepts Cabal's numerical and extended \
\syntax)."
<> hideMods hide)
in First . Just <$> pCabalVerbosity
-- | Parser for the Cabal verbose flag, retained for backward compatibility
cabalVerboseParser :: Bool -> Parser (First CabalVerbosity)
cabalVerboseParser hide =
let pVerboseFlag = firstBoolFlagsFalse
"cabal-verbose"
"asking Cabal to be verbose in its output."
(hideMods hide)
in toFirstCabalVerbosity <$> pVerboseFlag