2014-04-21 02:31:15 +00:00
|
|
|
module Language.Haskell.GhcMod.Debug (debugInfo, rootInfo) where
|
2013-03-04 02:21:41 +00:00
|
|
|
|
2015-03-03 20:12:43 +00:00
|
|
|
import Control.Arrow (first)
|
2014-03-27 06:23:27 +00:00
|
|
|
import Control.Applicative ((<$>))
|
2015-03-03 20:12:43 +00:00
|
|
|
import qualified Data.Map as Map
|
|
|
|
import qualified Data.Set as Set
|
|
|
|
import Text.PrettyPrint
|
2014-05-11 22:40:00 +00:00
|
|
|
import Language.Haskell.GhcMod.Convert
|
2014-07-11 01:10:37 +00:00
|
|
|
import Language.Haskell.GhcMod.Monad
|
2013-05-17 01:00:01 +00:00
|
|
|
import Language.Haskell.GhcMod.Types
|
2014-07-12 01:30:06 +00:00
|
|
|
import Language.Haskell.GhcMod.Internal
|
2015-03-03 20:12:43 +00:00
|
|
|
import Language.Haskell.GhcMod.CabalHelper
|
|
|
|
import Language.Haskell.GhcMod.Target
|
|
|
|
import Language.Haskell.GhcMod.Pretty
|
2013-03-04 02:21:41 +00:00
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2013-05-20 05:28:56 +00:00
|
|
|
-- | Obtaining debug information.
|
2014-07-12 09:16:16 +00:00
|
|
|
debugInfo :: IOish m => GhcModT m String
|
2015-03-03 20:12:43 +00:00
|
|
|
debugInfo = do
|
|
|
|
Options {..} <- options
|
|
|
|
Cradle {..} <- cradle
|
2014-03-20 07:21:48 +00:00
|
|
|
|
2015-03-03 20:12:43 +00:00
|
|
|
cabal <-
|
|
|
|
case cradleCabalFile of
|
|
|
|
Just _ -> cabalDebug
|
|
|
|
Nothing -> return []
|
|
|
|
|
|
|
|
return $ unlines $
|
|
|
|
[ "Root directory: " ++ cradleRootDir
|
|
|
|
, "Current directory: " ++ cradleCurrentDir
|
|
|
|
, "GHC System libraries: " ++ ghcLibDir
|
|
|
|
, "GHC user options: " ++ render (fsep $ map text ghcUserOptions)
|
|
|
|
] ++ cabal
|
|
|
|
|
|
|
|
cabalDebug :: IOish m => GhcModT m [String]
|
|
|
|
cabalDebug = do
|
|
|
|
Cradle {..} <- cradle
|
|
|
|
mcs <- resolveGmComponents Nothing =<< getComponents
|
|
|
|
let entrypoints = Map.map gmcEntrypoints mcs
|
|
|
|
graphs = Map.map gmcHomeModuleGraph mcs
|
|
|
|
opts = Map.map gmcGhcOpts mcs
|
|
|
|
srcOpts = Map.map gmcGhcSrcOpts mcs
|
|
|
|
|
|
|
|
return $
|
|
|
|
[ "Cabal file: " ++ show cradleCabalFile
|
|
|
|
, "Cabal entrypoints:\n" ++ render (nest 4 $
|
|
|
|
mapDoc gmComponentNameDoc smpDoc entrypoints)
|
|
|
|
, "Cabal components:\n" ++ render (nest 4 $
|
|
|
|
mapDoc gmComponentNameDoc graphDoc graphs)
|
|
|
|
, "GHC Cabal options:\n" ++ render (nest 4 $
|
|
|
|
mapDoc gmComponentNameDoc (fsep . map text) opts)
|
|
|
|
, "GHC search path options:\n" ++ render (nest 4 $
|
|
|
|
mapDoc gmComponentNameDoc (fsep . map text) srcOpts)
|
|
|
|
]
|
|
|
|
|
|
|
|
graphDoc :: GmModuleGraph -> Doc
|
|
|
|
graphDoc GmModuleGraph{..} =
|
|
|
|
mapDoc mpDoc' smpDoc' gmgGraph
|
|
|
|
where
|
|
|
|
smpDoc' smp = vcat $ map mpDoc' $ Set.toList smp
|
|
|
|
mpDoc' = text . moduleNameString . mpModule
|
|
|
|
|
|
|
|
smpDoc :: Set.Set ModulePath -> Doc
|
|
|
|
smpDoc smp = vcat $ map mpDoc $ Set.toList smp
|
|
|
|
|
|
|
|
mpDoc :: ModulePath -> Doc
|
|
|
|
mpDoc (ModulePath mn fn) = text (moduleNameString mn) <+> parens (text fn)
|
|
|
|
|
|
|
|
|
|
|
|
mapDoc :: (k -> Doc) -> (a -> Doc) -> Map.Map k a -> Doc
|
|
|
|
mapDoc kd ad m = vcat $
|
|
|
|
map (uncurry ($+$)) $ map (first kd) $ Map.toList $ Map.map (nest 4 . ad) m
|
2014-03-20 07:21:48 +00:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
-- | Obtaining root information.
|
2014-07-12 09:16:16 +00:00
|
|
|
rootInfo :: IOish m => GhcModT m String
|
2014-07-11 01:10:37 +00:00
|
|
|
rootInfo = convert' =<< cradleRootDir <$> cradle
|