Files
ghc-mod/Language/Haskell/GhcMod/Debug.hs

42 lines
1.5 KiB
Haskell
Raw Normal View History

2014-04-21 11:31:15 +09:00
module Language.Haskell.GhcMod.Debug (debugInfo, rootInfo) where
2013-03-04 11:21:41 +09:00
2014-03-27 15:23:27 +09:00
import Control.Applicative ((<$>))
2013-03-04 11:21:41 +09:00
import Data.List (intercalate)
import Data.Maybe (isJust, fromJust)
2014-05-12 00:40:00 +02:00
import Language.Haskell.GhcMod.Convert
import Language.Haskell.GhcMod.Monad
2013-05-17 10:00:01 +09:00
import Language.Haskell.GhcMod.Types
import Language.Haskell.GhcMod.Internal
2013-03-04 11:21:41 +09:00
----------------------------------------------------------------
2013-05-20 14:28:56 +09:00
-- | Obtaining debug information.
debugInfo :: IOish m => GhcModT m String
debugInfo = cradle >>= \c -> convert' =<< do
2013-09-19 15:58:50 +09:00
CompilerOptions gopts incDir pkgs <-
if isJust $ cradleCabalFile c then
2014-07-17 17:16:44 +09:00
fromCabalFile c ||> simpleCompilerOption
2013-03-04 11:21:41 +09:00
else
simpleCompilerOption
2013-03-04 11:21:41 +09:00
return [
"Root directory: " ++ cradleRootDir c
, "Current directory: " ++ cradleCurrentDir c
, "Cabal file: " ++ show (cradleCabalFile c)
2013-03-05 16:57:18 +09:00
, "GHC options: " ++ unwords gopts
, "Include directories: " ++ unwords incDir
, "Dependent packages: " ++ intercalate ", " (map showPkg pkgs)
, "System libraries: " ++ ghcLibDir
2013-03-04 11:21:41 +09:00
]
where
simpleCompilerOption = options >>= \op ->
2014-08-13 18:40:01 +02:00
return $ CompilerOptions (ghcUserOptions op) [] []
2014-08-12 18:11:32 +02:00
fromCabalFile c = options >>= \opts -> do
pkgDesc <- parseCabalFile c $ fromJust $ cradleCabalFile c
getCompilerOptions (ghcUserOptions opts) c pkgDesc
2014-03-20 16:21:48 +09:00
----------------------------------------------------------------
-- | Obtaining root information.
rootInfo :: IOish m => GhcModT m String
rootInfo = convert' =<< cradleRootDir <$> cradle