2014-03-25 02:14:16 +00:00
|
|
|
module Language.Haskell.GhcMod.Browse (
|
2014-05-10 13:10:34 +00:00
|
|
|
browse
|
2014-07-16 09:14:12 +00:00
|
|
|
) where
|
2010-03-11 10:03:17 +00:00
|
|
|
|
2014-03-27 05:38:06 +00:00
|
|
|
import Control.Applicative ((<$>))
|
2014-04-24 03:45:47 +00:00
|
|
|
import Control.Exception (SomeException(..))
|
2015-03-03 20:12:43 +00:00
|
|
|
import Data.Char
|
|
|
|
import Data.List
|
|
|
|
import Data.Maybe
|
|
|
|
import FastString
|
|
|
|
import GHC
|
2014-03-27 05:38:06 +00:00
|
|
|
import qualified GHC as G
|
2014-07-18 05:05:20 +00:00
|
|
|
import Language.Haskell.GhcMod.Convert
|
2014-07-16 09:14:12 +00:00
|
|
|
import Language.Haskell.GhcMod.Doc (showPage, styleUnqualified)
|
2015-01-16 14:47:56 +00:00
|
|
|
import Language.Haskell.GhcMod.Gap as Gap
|
2015-03-03 20:12:43 +00:00
|
|
|
import Language.Haskell.GhcMod.Monad
|
2013-05-17 01:00:01 +00:00
|
|
|
import Language.Haskell.GhcMod.Types
|
2014-03-27 05:38:06 +00:00
|
|
|
import Name (getOccString)
|
2015-03-03 20:12:43 +00:00
|
|
|
import Outputable
|
2014-03-27 05:38:06 +00:00
|
|
|
import TyCon (isAlgTyCon)
|
|
|
|
import Type (dropForAlls, splitFunTy_maybe, mkFunTy, isPredTy)
|
2015-03-03 20:12:43 +00:00
|
|
|
import Exception (ExceptionMonad, ghandle)
|
2010-03-11 10:03:17 +00:00
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2013-05-20 05:28:56 +00:00
|
|
|
-- | Getting functions, classes, etc from a module.
|
|
|
|
-- If 'detailed' is 'True', their types are also obtained.
|
2013-09-05 05:35:28 +00:00
|
|
|
-- If 'operators' is 'True', operators are also returned.
|
2015-03-03 20:12:43 +00:00
|
|
|
browse :: forall m. IOish m
|
2015-06-01 15:10:37 +00:00
|
|
|
=> String -- ^ A module name. (e.g. \"Data.List\", "base:Prelude")
|
2014-07-12 09:16:16 +00:00
|
|
|
-> GhcModT m String
|
2015-03-03 20:12:43 +00:00
|
|
|
browse pkgmdl = do
|
|
|
|
convert' . sort =<< go
|
2010-04-27 01:28:00 +00:00
|
|
|
where
|
2015-03-03 20:12:43 +00:00
|
|
|
-- TODO: Add API to Gm.Target to check if module is home module without
|
|
|
|
-- bringing up a GHC session as well then this can be made a lot cleaner
|
|
|
|
go = ghandle (\(SomeException _) -> return []) $ do
|
|
|
|
goPkgModule `G.gcatch` (\(SomeException _) -> goHomeModule)
|
|
|
|
|
|
|
|
goPkgModule = do
|
|
|
|
opt <- options
|
|
|
|
runGmPkgGhc $
|
|
|
|
processExports opt =<< tryModuleInfo =<< G.findModule mdlname mpkgid
|
|
|
|
|
2015-03-09 21:04:04 +00:00
|
|
|
goHomeModule = runGmlT [Right mdlname] $ do
|
2015-03-03 20:12:43 +00:00
|
|
|
opt <- options
|
|
|
|
processExports opt =<< tryModuleInfo =<< G.findModule mdlname Nothing
|
|
|
|
|
|
|
|
tryModuleInfo m = fromJust <$> G.getModuleInfo m
|
|
|
|
|
2015-06-01 14:54:50 +00:00
|
|
|
(mpkg, mdl) = splitPkgMdl pkgmdl
|
2014-04-24 02:26:30 +00:00
|
|
|
mdlname = G.mkModuleName mdl
|
|
|
|
mpkgid = mkFastString <$> mpkg
|
2015-03-03 20:12:43 +00:00
|
|
|
|
2014-04-24 02:26:30 +00:00
|
|
|
-- |
|
|
|
|
--
|
|
|
|
-- >>> splitPkgMdl "base:Prelude"
|
|
|
|
-- (Just "base","Prelude")
|
|
|
|
-- >>> splitPkgMdl "Prelude"
|
|
|
|
-- (Nothing,"Prelude")
|
|
|
|
splitPkgMdl :: String -> (Maybe String,String)
|
2015-06-01 14:54:50 +00:00
|
|
|
splitPkgMdl pkgmdl =
|
|
|
|
case break (==':') pkgmdl of
|
|
|
|
(mdl, "") -> (Nothing, mdl)
|
|
|
|
(pkg, _:mdl) -> (Just pkg, mdl)
|
2014-04-24 02:26:30 +00:00
|
|
|
|
2014-09-19 11:29:42 +00:00
|
|
|
-- Haskell 2010:
|
|
|
|
-- small -> ascSmall | uniSmall | _
|
|
|
|
-- ascSmall -> a | b | ... | z
|
|
|
|
-- uniSmall -> any Unicode lowercase letter
|
|
|
|
-- varid -> (small {small | large | digit | ' })
|
|
|
|
|
|
|
|
isNotOp :: String -> Bool
|
|
|
|
isNotOp (h:_) = isAlpha h || (h == '_')
|
|
|
|
isNotOp _ = error "isNotOp"
|
|
|
|
|
2015-03-03 20:12:43 +00:00
|
|
|
processExports :: (G.GhcMonad m, MonadIO m, ExceptionMonad m)
|
|
|
|
=> Options -> ModuleInfo -> m [String]
|
|
|
|
processExports opt minfo = do
|
2014-05-10 13:10:34 +00:00
|
|
|
let
|
2013-11-17 18:31:47 +00:00
|
|
|
removeOps
|
|
|
|
| operators opt = id
|
2014-09-19 11:29:42 +00:00
|
|
|
| otherwise = filter (isNotOp . getOccString)
|
2014-05-14 16:05:40 +00:00
|
|
|
mapM (showExport opt minfo) $ removeOps $ G.modInfoExports minfo
|
2013-02-23 08:51:55 +00:00
|
|
|
|
2015-03-03 20:12:43 +00:00
|
|
|
showExport :: forall m. (G.GhcMonad m, MonadIO m, ExceptionMonad m)
|
|
|
|
=> Options -> ModuleInfo -> Name -> m String
|
2013-11-17 18:31:47 +00:00
|
|
|
showExport opt minfo e = do
|
|
|
|
mtype' <- mtype
|
|
|
|
return $ concat $ catMaybes [mqualified, Just $ formatOp $ getOccString e, mtype']
|
2013-02-28 17:24:14 +00:00
|
|
|
where
|
2014-03-27 05:38:06 +00:00
|
|
|
mqualified = (G.moduleNameString (G.moduleName $ G.nameModule e) ++ ".") `justIf` qualified opt
|
2015-03-03 20:12:43 +00:00
|
|
|
mtype :: m (Maybe String)
|
2013-11-17 18:31:47 +00:00
|
|
|
mtype
|
|
|
|
| detailed opt = do
|
2014-03-27 05:38:06 +00:00
|
|
|
tyInfo <- G.modInfoLookupName minfo e
|
2013-02-28 17:24:14 +00:00
|
|
|
-- If nothing found, load dependent module and lookup global
|
2013-11-17 18:31:47 +00:00
|
|
|
tyResult <- maybe (inOtherModule e) (return . Just) tyInfo
|
2014-03-27 05:38:06 +00:00
|
|
|
dflag <- G.getSessionDynFlags
|
2013-11-17 18:31:47 +00:00
|
|
|
return $ do
|
|
|
|
typeName <- tyResult >>= showThing dflag
|
|
|
|
(" :: " ++ typeName) `justIf` detailed opt
|
|
|
|
| otherwise = return Nothing
|
2014-09-19 11:29:42 +00:00
|
|
|
formatOp nm
|
|
|
|
| null nm = error "formatOp"
|
|
|
|
| isNotOp nm = nm
|
|
|
|
| otherwise = "(" ++ nm ++ ")"
|
2015-03-03 20:12:43 +00:00
|
|
|
inOtherModule :: Name -> m (Maybe TyThing)
|
|
|
|
inOtherModule nm = do
|
|
|
|
G.getModuleInfo (G.nameModule nm) >> G.lookupGlobalName nm
|
2013-11-17 18:31:47 +00:00
|
|
|
justIf :: a -> Bool -> Maybe a
|
|
|
|
justIf x True = Just x
|
|
|
|
justIf _ False = Nothing
|
2013-02-23 08:51:55 +00:00
|
|
|
|
2013-03-12 13:15:23 +00:00
|
|
|
showThing :: DynFlags -> TyThing -> Maybe String
|
2014-02-06 12:34:40 +00:00
|
|
|
showThing dflag tything = showThing' dflag (fromTyThing tything)
|
|
|
|
|
|
|
|
showThing' :: DynFlags -> GapThing -> Maybe String
|
2014-02-06 13:09:00 +00:00
|
|
|
showThing' dflag (GtA a) = Just $ formatType dflag a
|
2014-02-06 12:34:40 +00:00
|
|
|
showThing' _ (GtT t) = unwords . toList <$> tyType t
|
2013-02-28 17:24:14 +00:00
|
|
|
where
|
2014-03-27 05:38:06 +00:00
|
|
|
toList t' = t' : getOccString t : map getOccString (G.tyConTyVars t)
|
2014-02-06 12:34:40 +00:00
|
|
|
showThing' _ _ = Nothing
|
2013-03-01 01:16:31 +00:00
|
|
|
|
2014-02-06 13:09:00 +00:00
|
|
|
formatType :: DynFlags -> Type -> String
|
|
|
|
formatType dflag a = showOutputable dflag (removeForAlls a)
|
2013-03-01 13:11:02 +00:00
|
|
|
|
2013-03-01 01:16:31 +00:00
|
|
|
tyType :: TyCon -> Maybe String
|
|
|
|
tyType typ
|
|
|
|
| isAlgTyCon typ
|
2014-03-27 05:38:06 +00:00
|
|
|
&& not (G.isNewTyCon typ)
|
|
|
|
&& not (G.isClassTyCon typ) = Just "data"
|
|
|
|
| G.isNewTyCon typ = Just "newtype"
|
|
|
|
| G.isClassTyCon typ = Just "class"
|
2015-01-16 14:47:56 +00:00
|
|
|
| Gap.isSynTyCon typ = Just "type"
|
2014-03-27 05:38:06 +00:00
|
|
|
| otherwise = Nothing
|
2013-02-23 08:51:55 +00:00
|
|
|
|
2013-02-28 17:24:14 +00:00
|
|
|
removeForAlls :: Type -> Type
|
2013-03-01 01:16:31 +00:00
|
|
|
removeForAlls ty = removeForAlls' ty' tty'
|
2013-02-28 17:24:14 +00:00
|
|
|
where
|
2013-03-01 01:16:31 +00:00
|
|
|
ty' = dropForAlls ty
|
|
|
|
tty' = splitFunTy_maybe ty'
|
|
|
|
|
|
|
|
removeForAlls' :: Type -> Maybe (Type, Type) -> Type
|
|
|
|
removeForAlls' ty Nothing = ty
|
|
|
|
removeForAlls' ty (Just (pre, ftype))
|
|
|
|
| isPredTy pre = mkFunTy pre (dropForAlls ftype)
|
|
|
|
| otherwise = ty
|
2013-02-23 08:51:55 +00:00
|
|
|
|
2013-03-12 13:15:23 +00:00
|
|
|
showOutputable :: Outputable a => DynFlags -> a -> String
|
2014-04-03 00:49:23 +00:00
|
|
|
showOutputable dflag = unwords . lines . showPage dflag styleUnqualified . ppr
|