Skip to content

Catch GHC errors in listing module names #1367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 14, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ghcide/src/Development/IDE/Plugin/Completions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ produceCompletions = do
case (global, inScope) of
((_, Just globalEnv), (_, Just inScopeEnv)) -> do
let uri = fromNormalizedUri $ normalizedFilePathToUri file
cdata <- liftIO $ cacheDataProducer uri env (ms_mod ms) globalEnv inScopeEnv imps parsedDeps
cdata <- liftIO $ cacheDataProducer uri sess (ms_mod ms) globalEnv inScopeEnv imps parsedDeps
return ([], Just cdata)
(_diag, _) ->
return ([], Nothing)
Expand Down
11 changes: 6 additions & 5 deletions ghcide/src/Development/IDE/Plugin/Completions/Logic.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import HscTypes
import Name
import RdrName
import Type
import Packages
#if MIN_GHC_API_VERSION(8,10,0)
import Predicate (isDictTy)
import Pair
Expand Down Expand Up @@ -59,6 +58,7 @@ import Data.Functor
import Ide.PluginUtils (mkLspCommand)
import Ide.Types (CommandId (..), PluginId, WithSnippets (..))
import Control.Monad
import Development.IDE.Types.HscEnvEq

-- From haskell-ide-engine/hie-plugin-api/Haskell/Ide/Engine/Context.hs

Expand Down Expand Up @@ -294,9 +294,10 @@ mkPragmaCompl label insertText =
Nothing Nothing Nothing Nothing Nothing


cacheDataProducer :: Uri -> HscEnv -> Module -> GlobalRdrEnv-> GlobalRdrEnv -> [LImportDecl GhcPs] -> [ParsedModule] -> IO CachedCompletions
cacheDataProducer uri packageState curMod globalEnv inScopeEnv limports deps = do
let dflags = hsc_dflags packageState
cacheDataProducer :: Uri -> HscEnvEq -> Module -> GlobalRdrEnv-> GlobalRdrEnv -> [LImportDecl GhcPs] -> [ParsedModule] -> IO CachedCompletions
cacheDataProducer uri env curMod globalEnv inScopeEnv limports deps = do
let
packageState = hscEnv env
curModName = moduleName curMod

importMap = Map.fromList [ (getLoc imp, imp) | imp <- limports ]
Expand All @@ -310,7 +311,7 @@ cacheDataProducer uri packageState curMod globalEnv inScopeEnv limports deps = d
importDeclerations = map unLoc limports

-- The list of all importable Modules from all packages
moduleNames = map showModName (listVisibleModuleNames dflags)
moduleNames = map showModName (envVisibleModuleNames env)

-- The given namespaces for the imported modules (ie. full name, or alias if used)
allModNamesAsNS = map (showModName . asNamespace) importDeclerations
Expand Down
26 changes: 21 additions & 5 deletions ghcide/src/Development/IDE/Types/HscEnvEq.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module Development.IDE.Types.HscEnvEq
newHscEnvEqWithImportPaths,
envImportPaths,
envPackageExports,
envVisibleModuleNames,
deps
) where

Expand All @@ -16,7 +17,7 @@ import Development.Shake.Classes
import Module (InstalledUnitId)
import System.Directory (canonicalizePath)
import Development.IDE.GHC.Compat
import GhcPlugins(HscEnv (hsc_dflags), PackageState (explicitPackages), InstalledPackageInfo (exposedModules), Module(..), packageConfigId)
import GhcPlugins(HscEnv (hsc_dflags), PackageState (explicitPackages), InstalledPackageInfo (exposedModules), Module(..), packageConfigId, listVisibleModuleNames)
import System.FilePath
import Development.IDE.GHC.Util (lookupPackageConfig)
import Control.Monad.IO.Class
Expand All @@ -27,7 +28,10 @@ import OpenTelemetry.Eventlog (withSpan)
import Control.Monad.Extra (mapMaybeM, join, eitherM)
import Control.Concurrent.Extra (newVar, modifyVar)
import Control.Concurrent.Async (Async, async, waitCatch)
import Control.Exception (throwIO, mask)
import Control.Exception (throwIO, mask, evaluate)
import Development.IDE.GHC.Error (catchSrcErrors)
import Control.DeepSeq (force)
import Data.Either (fromRight)

-- | An 'HscEnv' with equality. Two values are considered equal
-- if they are created with the same call to 'newHscEnvEq'.
Expand All @@ -42,6 +46,7 @@ data HscEnvEq = HscEnvEq
-- ^ If Just, import dirs originally configured in this env
-- If Nothing, the env import dirs are unaltered
, envPackageExports :: IO ExportsMap
, envVisibleModuleNames :: [ModuleName]
}

-- | Wrap an 'HscEnv' into an 'HscEnvEq'.
Expand All @@ -58,12 +63,15 @@ newHscEnvEq cradlePath hscEnv0 deps = do

newHscEnvEqWithImportPaths :: Maybe [String] -> HscEnv -> [(InstalledUnitId, DynFlags)] -> IO HscEnvEq
newHscEnvEqWithImportPaths envImportPaths hscEnv deps = do

let dflags = hsc_dflags hscEnv

envUnique <- newUnique

-- it's very important to delay the package exports computation
envPackageExports <- onceAsync $ withSpan "Package Exports" $ \_sp -> do
-- compute the package imports
let pkgst = pkgState (hsc_dflags hscEnv)
let pkgst = pkgState dflags
depends = explicitPackages pkgst
targets =
[ (pkg, mn)
Expand All @@ -82,6 +90,14 @@ newHscEnvEqWithImportPaths envImportPaths hscEnv deps = do
Maybes.Succeeded mi -> Just mi
modIfaces <- mapMaybeM doOne targets
return $ createExportsMap modIfaces

envVisibleModuleNames <-
fromRight []
<$> catchSrcErrors
dflags
"listVisibleModuleNames"
(evaluate . force $ listVisibleModuleNames dflags)

return HscEnvEq{..}

-- | Wrap an 'HscEnv' into an 'HscEnvEq'.
Expand All @@ -108,9 +124,9 @@ instance Eq HscEnvEq where
a == b = envUnique a == envUnique b

instance NFData HscEnvEq where
rnf (HscEnvEq a b c d _) =
rnf (HscEnvEq a b c d _ f) =
-- deliberately skip the package exports map
rnf (hashUnique a) `seq` b `seq` c `seq` rnf d
rnf (hashUnique a) `seq` b `seq` c `seq` d `seq` rnf f

instance Hashable HscEnvEq where
hashWithSalt s = hashWithSalt s . envUnique
Expand Down