ghc-mod/src/GHCMod/Options/Commands.hs

224 lines
7.7 KiB
Haskell
Raw Normal View History

2015-12-05 20:55:12 +00:00
module GHCMod.Options.Commands where
import Options.Applicative
import Options.Applicative.Types
import Language.Haskell.GhcMod.Types
2015-12-05 20:55:12 +00:00
import GHCMod.Options.DocUtils
import Language.Haskell.GhcMod.Read
2015-12-05 20:55:12 +00:00
type Symbol = String
type Expr = String
type Module = String
type Line = Int
type Col = Int
type Point = (Line, Col)
data GhcModCommands =
CmdLang
| CmdFlag
| CmdDebug
| CmdBoot
| CmdNukeCaches
| CmdRoot
| CmdLegacyInteractive
| CmdModules Bool
| CmdDumpSym FilePath
| CmdFind Symbol
| CmdDoc Module
| CmdLint LintOpts FilePath
| CmdBrowse BrowseOpts [Module]
| CmdDebugComponent [String]
| CmdCheck [FilePath]
| CmdExpand [FilePath]
| CmdInfo FilePath Symbol
| CmdType FilePath Point
| CmdSplit FilePath Point
| CmdSig FilePath Point
| CmdAuto FilePath Point
| CmdRefine FilePath Point Expr
commandsSpec :: Parser GhcModCommands
commandsSpec =
2015-12-06 16:22:21 +00:00
hsubparser
$ command "lang"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdLang)
$$ progDesc "List all known GHC language extensions"
2015-12-06 16:22:21 +00:00
<> command "flag"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdFlag)
$$ progDesc "List GHC -f<foo> flags"
2015-12-06 16:22:21 +00:00
<> command "debug"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdDebug)
$$ progDesc
"Print debugging information. Please include the output in any bug\
\ reports you submit"
2015-12-06 16:22:21 +00:00
<> command "debug-component"
2015-12-06 18:30:03 +00:00
$$ info debugComponentArgSpec
$$ progDesc "Debugging information related to cabal component resolution"
2015-12-06 16:22:21 +00:00
<> command "boot"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdBoot)
$$ progDesc "Internal command used by the emacs frontend"
-- <> command "nuke-caches"
-- $$ info (pure CmdNukeCaches) idm
2015-12-06 16:22:21 +00:00
<> command "root"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdRoot)
$$ progDesc
"Try to find the project directory. For Cabal projects this is the\
\ directory containing the cabal file, for projects that use a cabal\
\ sandbox but have no cabal file this is the directory containing the\
\ cabal.sandbox.config file and otherwise this is the current\
\ directory"
2015-12-06 16:22:21 +00:00
<> command "legacy-interactive"
2015-12-06 18:30:03 +00:00
$$ info (pure CmdLegacyInteractive)
$$ progDesc "ghc-modi compatibility mode"
2015-12-06 16:22:21 +00:00
<> command "list"
2015-12-06 18:30:03 +00:00
$$ info modulesArgSpec
$$ progDesc "List all visible modules"
2015-12-06 16:22:21 +00:00
<> command "modules"
2015-12-06 18:30:03 +00:00
$$ info modulesArgSpec
$$ progDesc "List all visible modules"
2015-12-06 16:22:21 +00:00
<> command "dumpsym"
2015-12-06 18:30:03 +00:00
$$ info dumpSymArgSpec idm
2015-12-06 16:22:21 +00:00
<> command "find"
2015-12-06 18:30:03 +00:00
$$ info findArgSpec
$$ progDesc "List all modules that define SYMBOL"
2015-12-06 16:22:21 +00:00
<> command "doc"
2015-12-06 18:30:03 +00:00
$$ info docArgSpec
$$ progDesc "Try finding the html documentation directory for the given MODULE"
2015-12-06 16:22:21 +00:00
<> command "lint"
2015-12-06 18:30:03 +00:00
$$ info lintArgSpec
$$ progDesc "Check files using `hlint'"
2015-12-06 16:22:21 +00:00
<> command "browse"
2015-12-06 18:30:03 +00:00
$$ info browseArgSpec
$$ progDesc "List symbols in a module"
2015-12-06 16:22:21 +00:00
<> command "check"
2015-12-06 18:30:03 +00:00
$$ info checkArgSpec
$$ progDesc
"Load the given files using GHC and report errors/warnings,\
\ but don't produce output files"
2015-12-06 16:22:21 +00:00
<> command "expand"
2015-12-06 18:30:03 +00:00
$$ info expandArgSpec
$$ progDesc "Like `check' but also pass `-ddump-splices' to GHC"
2015-12-06 16:22:21 +00:00
<> command "info"
2015-12-06 18:30:03 +00:00
$$ info infoArgSpec
$$ progDesc
"Look up an identifier in the context of FILE (like ghci's `:info')\
\ MODULE is completely ignored and only allowed for backwards\
\ compatibility"
2015-12-06 16:22:21 +00:00
<> command "type"
2015-12-06 18:30:03 +00:00
$$ info typeArgSpec
$$ progDesc "Get the type of the expression under (LINE,COL)"
2015-12-06 16:22:21 +00:00
<> command "split"
2015-12-06 18:30:03 +00:00
$$ info splitArgSpec
$$ progDesc
2015-12-06 16:22:21 +00:00
"Split a function case by examining a type's constructors"
2015-12-06 18:30:03 +00:00
<=> desc [
text "For example given the following code snippet:"
, code [
"f :: [a] -> a"
, "f x = _body"
2015-12-06 16:22:21 +00:00
]
2015-12-06 18:30:03 +00:00
, text "would be replaced by:"
, code [
"f :: [a] -> a"
, "f [] = _body"
, "f (x:xs) = _body"
2015-12-06 16:22:21 +00:00
]
2015-12-06 18:30:03 +00:00
, text "(See https://github.com/kazu-yamamoto/ghc-mod/pull/274)"
]
<> command "sig"
$$ info sigArgSpec
$$ progDesc "Generate initial code given a signature"
<=> desc [
text "For example when (LINE,COL) is on the signature in the following\
\ code snippet:"
, code ["func :: [a] -> Maybe b -> (a -> b) -> (a,b)"]
, text "ghc-mod would add the following on the next line:"
, code ["func x y z f = _func_body"]
, text "(See: https://github.com/kazu-yamamoto/ghc-mod/pull/274)"
]
2015-12-06 16:22:21 +00:00
<> command "auto"
2015-12-06 18:30:03 +00:00
$$ info autoArgSpec
$$ progDesc "Try to automatically fill the contents of a hole"
2015-12-06 16:22:21 +00:00
<> command "refine"
2015-12-06 18:30:03 +00:00
$$ info refineArgSpec
$$ progDesc "Refine the typed hole at (LINE,COL) given EXPR"
<=> desc [
text "For example if EXPR is `filter', which has type `(a -> Bool) -> [a]\
\ -> [a]' and (LINE,COL) is on the hole `_body' in the following\
\ code snippet:"
, code [
"filterNothing :: [Maybe a] -> [a]"
, "filterNothing xs = _body"
]
, text "ghc-mod changes the code to get a value of type `[a]', which\
\ results in:"
, code [ "filterNothing xs = filter _body_1 _body_2" ]
, text "(See also: https://github.com/kazu-yamamoto/ghc-mod/issues/311)"
]
2015-12-05 20:55:12 +00:00
strArg :: String -> Parser String
strArg = argument str . metavar
filesArgsSpec :: ([String] -> b) -> Parser b
filesArgsSpec x = x <$> some (strArg "FILES..")
locArgSpec :: (String -> (Int, Int) -> b) -> Parser b
2015-12-06 16:22:21 +00:00
locArgSpec x = x
<$> strArg "FILE"
<*> ( (,)
<$> argument int (metavar "LINE")
<*> argument int (metavar "COL")
)
2015-12-05 20:55:12 +00:00
modulesArgSpec, dumpSymArgSpec, docArgSpec, findArgSpec,
lintArgSpec, browseArgSpec, checkArgSpec, expandArgSpec,
infoArgSpec, typeArgSpec, autoArgSpec, splitArgSpec,
sigArgSpec, refineArgSpec, debugComponentArgSpec :: Parser GhcModCommands
2015-12-06 16:22:21 +00:00
modulesArgSpec = CmdModules
<$> switch
2015-12-06 18:30:03 +00:00
$$ long "detailed"
<=> short 'd'
<=> help "Print package modules belong to"
2015-12-05 20:55:12 +00:00
dumpSymArgSpec = CmdDumpSym <$> strArg "TMPDIR"
findArgSpec = CmdFind <$> strArg "SYMBOL"
docArgSpec = CmdDoc <$> strArg "MODULE"
2015-12-06 16:22:21 +00:00
lintArgSpec = CmdLint
<$> LintOpts <$$> many $$ strOption
2015-12-06 18:30:03 +00:00
$$ long "hlintOpt"
<=> short 'h'
<=> help "Option to be passed to hlint"
2015-12-06 16:22:21 +00:00
<*> strArg "FILE"
browseArgSpec = CmdBrowse
<$> (BrowseOpts
<$> switch
2015-12-06 18:30:03 +00:00
$$ long "operators"
<=> short 'o'
<=> help "Also print operators"
2015-12-06 16:22:21 +00:00
<*> switch
2015-12-06 18:30:03 +00:00
$$ long "detailed"
<=> short 'd'
<=> help "Print symbols with accompanying signature"
2015-12-06 16:22:21 +00:00
<*> switch
2015-12-06 18:30:03 +00:00
$$ long "qualified"
<=> short 'q'
<=> help "Qualify symbols"
2015-12-06 16:22:21 +00:00
)
<*> some (strArg "MODULE")
2015-12-05 20:55:12 +00:00
debugComponentArgSpec = filesArgsSpec CmdDebugComponent
checkArgSpec = filesArgsSpec CmdCheck
expandArgSpec = filesArgsSpec CmdExpand
2015-12-06 16:22:21 +00:00
infoArgSpec = CmdInfo
<$> strArg "FILE"
<*> strArg "SYMBOL"
2015-12-05 20:55:12 +00:00
typeArgSpec = locArgSpec CmdType
autoArgSpec = locArgSpec CmdAuto
splitArgSpec = locArgSpec CmdSplit
sigArgSpec = locArgSpec CmdSig
refineArgSpec = locArgSpec CmdRefine <*> strArg "SYMBOL"
2015-12-05 22:32:09 +00:00
int :: ReadM Int
int = do
v <- readerAsk
maybe (readerError $ "Not a number \"" ++ v ++ "\"") return $ readMaybe v