71 lines
2.0 KiB
Haskell
71 lines
2.0 KiB
Haskell
module ErrMsg (
|
|
LogReader
|
|
, setLogger
|
|
, handleErrMsg
|
|
) where
|
|
|
|
import Bag
|
|
import Control.Applicative
|
|
import Data.IORef
|
|
import Data.Maybe
|
|
import DynFlags
|
|
import ErrUtils
|
|
import GHC
|
|
import qualified Gap
|
|
import HscTypes
|
|
import Outputable
|
|
import System.FilePath (normalise)
|
|
|
|
----------------------------------------------------------------
|
|
|
|
type LogReader = IO [String]
|
|
|
|
----------------------------------------------------------------
|
|
|
|
setLogger :: Bool -> DynFlags -> IO (DynFlags, LogReader)
|
|
setLogger False df = return (newdf, undefined)
|
|
where
|
|
newdf = Gap.setLogAction df $ \_ _ _ _ _ -> return ()
|
|
setLogger True df = do
|
|
ref <- newIORef [] :: IO (IORef [String])
|
|
let newdf = Gap.setLogAction df $ appendLog ref
|
|
return (newdf, reverse <$> readIORef ref)
|
|
where
|
|
appendLog ref _ sev src stl msg = modifyIORef ref (\ls -> ppMsg src sev msg stl : ls)
|
|
|
|
----------------------------------------------------------------
|
|
|
|
handleErrMsg :: SourceError -> Ghc [String]
|
|
handleErrMsg = return . errBagToStrList . srcErrorMessages
|
|
|
|
errBagToStrList :: Bag ErrMsg -> [String]
|
|
errBagToStrList = map ppErrMsg . reverse . bagToList
|
|
|
|
----------------------------------------------------------------
|
|
|
|
ppErrMsg :: ErrMsg -> String
|
|
ppErrMsg err = ppMsg spn SevError msg defaultUserStyle ++ ext
|
|
where
|
|
spn = head (errMsgSpans err)
|
|
msg = errMsgShortDoc err
|
|
ext = showMsg (errMsgExtraInfo err) defaultUserStyle
|
|
|
|
ppMsg :: SrcSpan -> Severity-> SDoc -> PprStyle -> String
|
|
ppMsg spn sev msg stl = fromMaybe def $ do
|
|
(line,col,_,_) <- Gap.getSrcSpan spn
|
|
file <- normalise <$> Gap.getSrcFile spn
|
|
let severityCaption = Gap.showSeverityCaption sev
|
|
return $ file ++ ":" ++ show line ++ ":"
|
|
++ show col ++ ":" ++ severityCaption ++ cts ++ "\0"
|
|
where
|
|
def = "ghc-mod:0:0:Probably mutual module import occurred\0"
|
|
cts = showMsg msg stl
|
|
|
|
----------------------------------------------------------------
|
|
|
|
showMsg :: SDoc -> PprStyle -> String
|
|
showMsg d stl = map toNull $ Gap.renderMsg d stl
|
|
where
|
|
toNull '\n' = '\0'
|
|
toNull x = x
|