ghc-mod/GhcMod/Exe/Info.hs

80 lines
2.5 KiB
Haskell
Raw Permalink Normal View History

module GhcMod.Exe.Info (
info
2014-04-21 05:04:58 +00:00
, types
2013-05-20 05:28:56 +00:00
) where
2010-11-12 07:27:50 +00:00
2014-01-08 03:03:32 +00:00
import Data.Function (on)
import Data.List (sortBy)
import System.FilePath
import Exception (ghandle, SomeException(..))
import GHC (GhcMonad, SrcSpan)
2015-08-03 01:09:56 +00:00
import Prelude
2014-03-27 06:56:14 +00:00
import qualified GHC as G
import qualified GhcMod.Gap as Gap
import GhcMod.Convert
import GhcMod.Doc
import GhcMod.DynFlags
import GhcMod.Gap
import GhcMod.Logging
import GhcMod.Monad
import GhcMod.SrcUtils
import GhcMod.Types
import GhcMod.Utils (mkRevRedirMapFunc)
import GhcMod.FileMapping (fileModSummaryWithMapping)
2012-02-14 07:09:53 +00:00
----------------------------------------------------------------
2011-08-24 06:58:12 +00:00
2013-05-20 05:28:56 +00:00
-- | Obtaining information of a target expression. (GHCi's info:)
info :: IOish m
=> FilePath -- ^ A target file.
2013-09-05 05:35:28 +00:00
-> Expression -- ^ A Haskell expression.
-> GhcModT m String
info file expr =
2015-06-01 14:54:50 +00:00
ghandle handler $
runGmlT' [Left file] deferErrors $
withInteractiveContext $ do
convert' =<< body
2014-04-23 07:37:24 +00:00
where
handler (SomeException ex) = do
2016-12-15 18:16:37 +00:00
gmLog GmException "info" $ text "" $$ nest 4 (showToDoc ex)
2015-06-01 14:54:50 +00:00
convert' "Cannot show info"
2015-07-04 14:49:48 +00:00
body :: (GhcMonad m, GmState m, GmEnv m) => m String
body = do
2015-07-04 14:49:48 +00:00
m <- mkRevRedirMapFunc
sdoc <- Gap.infoThing m expr
2015-06-01 14:54:50 +00:00
st <- getStyle
dflag <- G.getSessionDynFlags
return $ showPage dflag st sdoc
2011-01-14 02:18:33 +00:00
2012-02-12 12:04:18 +00:00
----------------------------------------------------------------
2013-05-20 05:28:56 +00:00
-- | Obtaining type of a target expression. (GHCi's type:)
types :: IOish m
=> Bool -- ^ Include constraints into type signature
-> FilePath -- ^ A target file.
2014-04-21 05:04:58 +00:00
-> Int -- ^ Line number.
-> Int -- ^ Column number.
-> GhcModT m String
types withConstraints file lineNo colNo =
2015-06-01 14:54:50 +00:00
ghandle handler $
runGmlT' [Left file] deferErrors $
withInteractiveContext $ do
2015-06-01 14:54:50 +00:00
crdl <- cradle
2015-07-03 19:31:52 +00:00
modSum <- fileModSummaryWithMapping (cradleCurrentDir crdl </> file)
srcSpanTypes <- getSrcSpanType withConstraints modSum lineNo colNo
2015-06-01 14:54:50 +00:00
dflag <- G.getSessionDynFlags
st <- getStyle
convert' $ map (toTup dflag st) $ sortBy (cmp `on` fst) srcSpanTypes
where
2015-05-06 14:13:08 +00:00
handler (SomeException ex) = do
2016-12-15 18:16:37 +00:00
gmLog GmException "types" $ showToDoc ex
2015-05-06 14:13:08 +00:00
return []
2012-02-15 05:52:48 +00:00
getSrcSpanType :: (GhcMonad m) => Bool -> G.ModSummary -> Int -> Int -> m [(SrcSpan, G.Type)]
getSrcSpanType withConstraints modSum lineNo colNo =
G.parseModule modSum
>>= G.typecheckModule
>>= flip (collectSpansTypes withConstraints) (lineNo, colNo)