X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fghci%2FGhciTags.hs;h=b53a56f967db5136b618bbd48e39ddfe6a1a1849;hb=8ffd91b6102f4ad3111cabdf6bdb1998f257887f;hp=9959991fab9297cb1a28b68bfef89ca6abd562aa;hpb=cea34a8aab0d8d47f48ed8797ac6ac4f3964346c;p=ghc-hetmet.git diff --git a/compiler/ghci/GhciTags.hs b/compiler/ghci/GhciTags.hs index 9959991..b53a56f 100644 --- a/compiler/ghci/GhciTags.hs +++ b/compiler/ghci/GhciTags.hs @@ -17,9 +17,10 @@ import Util -- into the GHC API instead import Name (nameOccName) import OccName (pprOccName) +import MonadUtils import Data.Maybe -import Control.Exception +import Panic import Data.List import Control.Monad import System.IO @@ -40,8 +41,7 @@ data TagsKind = ETags | CTags ghciCreateTagsFile :: TagsKind -> FilePath -> GHCi () ghciCreateTagsFile kind file = do - session <- getSession - io $ createTagsFile session kind file + createTagsFile kind file -- ToDo: -- - remove restriction that all modules must be interpreted @@ -51,22 +51,22 @@ ghciCreateTagsFile kind file = do -- - extract createTagsFile so it can be used from the command-line -- (probably need to fix first problem before this is useful). -- -createTagsFile :: Session -> TagsKind -> FilePath -> IO () -createTagsFile session tagskind tagFile = do - graph <- GHC.getModuleGraph session +createTagsFile :: TagsKind -> FilePath -> GHCi () +createTagsFile tagskind tagFile = do + graph <- GHC.getModuleGraph let ms = map GHC.ms_mod graph tagModule m = do - is_interpreted <- GHC.moduleIsInterpreted session m + is_interpreted <- GHC.moduleIsInterpreted m -- should we just skip these? when (not is_interpreted) $ - throwDyn (CmdLineError ("module '" + ghcError (CmdLineError ("module '" ++ GHC.moduleNameString (GHC.moduleName m) ++ "' is not interpreted")) - mbModInfo <- GHC.getModuleInfo session m + mbModInfo <- GHC.getModuleInfo m unqual <- case mbModInfo of Just minf -> do - mb_print_unqual <- GHC.mkPrintUnqualifiedForModule session minf + mb_print_unqual <- GHC.mkPrintUnqualifiedForModule minf return (fromMaybe GHC.alwaysQualify mb_print_unqual) Nothing -> return GHC.alwaysQualify @@ -75,9 +75,9 @@ createTagsFile session tagskind tagFile = do _ -> return [] mtags <- mapM tagModule ms - either_res <- collateAndWriteTags tagskind tagFile $ concat mtags + either_res <- liftIO $ collateAndWriteTags tagskind tagFile $ concat mtags case either_res of - Left e -> hPutStrLn stderr $ ioeGetErrorString e + Left e -> liftIO $ hPutStrLn stderr $ ioeGetErrorString e Right _ -> return () listTags :: PrintUnqualified -> GHC.ModuleInfo -> [TagInfo] @@ -113,7 +113,7 @@ collateAndWriteTags ETags file tagInfos = do -- etags style, Emacs/XEmacs tagGroups <- mapM tagFileGroup groups IO.try (writeFile file $ concat tagGroups) where - tagFileGroup [] = throwDyn (CmdLineError "empty tag file group??") + tagFileGroup [] = ghcError (CmdLineError "empty tag file group??") tagFileGroup group@((_,fileName,_,_):_) = do file <- readFile fileName -- need to get additional info from sources.. let byLine (_,_,l1,_) (_,_,l2,_) = l1 <= l2