[project @ 2005-02-25 13:06:31 by simonpj]
[ghc-hetmet.git] / ghc / compiler / compMan / CompManager.lhs
1 %
2 % (c) The University of Glasgow, 2002
3 %
4 % The Compilation Manager
5 %
6 \begin{code}
7 module CompManager ( 
8     ModSummary,         -- Abstract
9     ModuleGraph,        -- All the modules from the home package
10
11     CmState,            -- Abstract
12
13     cmInit,        -- :: GhciMode -> IO CmState
14
15     cmDepAnal,     -- :: CmState -> [FilePath] -> IO ModuleGraph
16     cmDownsweep,   
17     cmTopSort,     -- :: Bool -> ModuleGraph -> [SCC ModSummary]
18     cyclicModuleErr,    -- :: [ModSummary] -> String    -- Used by DriverMkDepend
19
20     cmLoadModules, -- :: CmState -> ModuleGraph
21                    --    -> IO (CmState, Bool, [String])
22
23     cmUnload,      -- :: CmState -> IO CmState
24
25
26 #ifdef GHCI
27     cmModuleIsInterpreted, -- :: CmState -> String -> IO Bool
28
29     cmSetContext,  -- :: CmState -> [String] -> [String] -> IO CmState
30     cmGetContext,  -- :: CmState -> IO ([String],[String])
31
32     cmGetInfo,    -- :: CmState -> String -> IO (CmState, [(TyThing,Fixity)])
33     GetInfoResult,
34     cmBrowseModule, -- :: CmState -> IO [TyThing]
35     cmShowModule,
36
37     CmRunResult(..),
38     cmRunStmt,          -- :: CmState -> String -> IO (CmState, CmRunResult)
39
40     cmTypeOfExpr,       -- :: CmState -> String -> IO (CmState, Maybe String)
41     cmKindOfType,       -- :: CmState -> String -> IO (CmState, Maybe String)
42     cmTypeOfName,       -- :: CmState -> Name -> IO (Maybe String)
43
44     HValue,
45     cmCompileExpr,      -- :: CmState -> String -> IO (CmState, Maybe HValue)
46     cmGetModuleGraph,   -- :: CmState -> ModuleGraph
47     cmSetDFlags,
48     cmGetDFlags,
49
50     cmGetBindings,      -- :: CmState -> [TyThing]
51     cmGetPrintUnqual,   -- :: CmState -> PrintUnqualified
52 #endif
53   )
54 where
55
56 #include "HsVersions.h"
57
58 import Packages         ( isHomePackage )
59 import DriverPipeline   ( CompResult(..), preprocess, compile, link )
60 import HscMain          ( newHscEnv )
61 import DriverState      ( v_Output_file, v_NoHsMain, v_MainModIs )
62 import DriverPhases     ( HscSource(..), isHsBoot, hscSourceString, isHaskellSrcFilename )
63 import Finder           ( findModule, findLinkable, addHomeModuleToFinder,
64                           flushFinderCache, mkHomeModLocation, FindResult(..), cantFindError )
65 import HscTypes         ( ModSummary(..), HomeModInfo(..), ModIface(..), msHsFilePath,
66                           HscEnv(..), GhciMode(..), 
67                           InteractiveContext(..), emptyInteractiveContext, 
68                           HomePackageTable, emptyHomePackageTable, IsBootInterface,
69                           Linkable(..), isObjectLinkable )
70 import Module           ( Module, mkModule, delModuleEnv, delModuleEnvList, mkModuleEnv,
71                           lookupModuleEnv, moduleEnvElts, extendModuleEnv, filterModuleEnv,
72                           moduleUserString, addBootSuffixLocn, 
73                           ModLocation(..) )
74 import GetImports       ( getImports )
75 import Digraph          ( SCC(..), stronglyConnComp, flattenSCC, flattenSCCs )
76 import ErrUtils         ( showPass )
77 import SysTools         ( cleanTempFilesExcept )
78 import BasicTypes       ( SuccessFlag(..), succeeded )
79 import StringBuffer     ( hGetStringBuffer )
80 import Util
81 import Outputable
82 import Panic
83 import CmdLineOpts      ( DynFlags(..) )
84 import Maybes           ( expectJust, orElse, mapCatMaybes )
85 import FiniteMap
86
87 import DATA_IOREF       ( readIORef )
88
89 #ifdef GHCI
90 import Finder           ( findPackageModule )
91 import HscMain          ( hscGetInfo, GetInfoResult, hscStmt, hscTcExpr, hscKcType )
92 import HscTypes         ( TyThing(..), icPrintUnqual, showModMsg )
93 import TcRnDriver       ( mkExportEnv, getModuleContents )
94 import IfaceSyn         ( IfaceDecl )
95 import RdrName          ( GlobalRdrEnv, plusGlobalRdrEnv )
96 import Name             ( Name )
97 import NameEnv
98 import Id               ( idType )
99 import Type             ( tidyType, dropForAlls )
100 import VarEnv           ( emptyTidyEnv )
101 import Linker           ( HValue, unload, extendLinkEnv )
102 import GHC.Exts         ( unsafeCoerce# )
103 import Foreign
104 import Control.Exception as Exception ( Exception, try )
105 import CmdLineOpts      ( DynFlag(..), dopt_unset, dopt )
106 #endif
107
108 import EXCEPTION        ( throwDyn )
109
110 -- std
111 import Directory        ( getModificationTime, doesFileExist )
112 import IO
113 import Monad
114 import List             ( nub )
115 import Maybe
116 \end{code}
117
118
119 %************************************************************************
120 %*                                                                      *
121                 The module dependency graph
122                 ModSummary, ModGraph, NodeKey, NodeMap
123 %*                                                                      *
124 %************************************************************************
125
126 The nodes of the module graph are
127         EITHER a regular Haskell source module
128         OR     a hi-boot source module
129
130 A ModuleGraph contains all the nodes from the home package (only).  
131 There will be a node for each source module, plus a node for each hi-boot
132 module.
133
134 \begin{code}
135 type ModuleGraph = [ModSummary]  -- The module graph, 
136                                  -- NOT NECESSARILY IN TOPOLOGICAL ORDER
137
138 emptyMG :: ModuleGraph
139 emptyMG = []
140
141 --------------------
142 ms_allimps :: ModSummary -> [Module]
143 ms_allimps ms = ms_srcimps ms ++ ms_imps ms
144
145 --------------------
146 type NodeKey   = (Module, HscSource)      -- The nodes of the graph are 
147 type NodeMap a = FiniteMap NodeKey a      -- keyed by (mod, src_file_type) pairs
148
149 msKey :: ModSummary -> NodeKey
150 msKey (ModSummary { ms_mod = mod, ms_hsc_src = boot }) = (mod,boot)
151
152 emptyNodeMap :: NodeMap a
153 emptyNodeMap = emptyFM
154
155 mkNodeMap :: [ModSummary] -> NodeMap ModSummary
156 mkNodeMap summaries = listToFM [ (msKey s, s) | s <- summaries]
157         
158 nodeMapElts :: NodeMap a -> [a]
159 nodeMapElts = eltsFM
160 \end{code}
161
162
163 %************************************************************************
164 %*                                                                      *
165                 The compilation manager state
166 %*                                                                      *
167 %************************************************************************
168
169
170 \begin{code}
171 -- Persistent state for the entire system
172 data CmState
173    = CmState {
174         cm_hsc :: HscEnv,               -- Includes the home-package table
175         cm_mg  :: ModuleGraph,          -- The module graph
176         cm_ic  :: InteractiveContext    -- Command-line binding info
177      }
178
179 #ifdef GHCI
180 cmGetModuleGraph cmstate = cm_mg cmstate
181 cmGetBindings    cmstate = nameEnvElts (ic_type_env (cm_ic cmstate))
182 cmGetPrintUnqual cmstate = icPrintUnqual (cm_ic cmstate)
183 cmHPT            cmstate = hsc_HPT (cm_hsc cmstate)
184 #endif
185
186 cmInit :: GhciMode -> DynFlags -> IO CmState
187 cmInit ghci_mode dflags
188    = do { hsc_env <- newHscEnv ghci_mode dflags
189         ; return (CmState { cm_hsc = hsc_env,
190                             cm_mg  = emptyMG, 
191                             cm_ic  = emptyInteractiveContext })}
192
193 discardCMInfo :: CmState -> CmState
194 -- Forget the compilation manager's state, including the home package table
195 -- but retain the persistent info in HscEnv
196 discardCMInfo cm_state
197   = cm_state { cm_mg = emptyMG, cm_ic = emptyInteractiveContext,
198                cm_hsc = (cm_hsc cm_state) { hsc_HPT = emptyHomePackageTable } }
199
200 -------------------------------------------------------------------
201 --                      The unlinked image
202 -- 
203 -- The compilation manager keeps a list of compiled, but as-yet unlinked
204 -- binaries (byte code or object code).  Even when it links bytecode
205 -- it keeps the unlinked version so it can re-link it later without
206 -- recompiling.
207
208 type UnlinkedImage = [Linkable] -- the unlinked images (should be a set, really)
209
210 findModuleLinkable_maybe :: [Linkable] -> Module -> Maybe Linkable
211 findModuleLinkable_maybe lis mod
212    = case [LM time nm us | LM time nm us <- lis, nm == mod] of
213         []   -> Nothing
214         [li] -> Just li
215         many -> pprPanic "findModuleLinkable" (ppr mod)
216
217 delModuleLinkable :: [Linkable] -> Module -> [Linkable]
218 delModuleLinkable ls mod = [ l | l@(LM _ nm _) <- ls, nm /= mod ]
219 \end{code}
220
221
222 %************************************************************************
223 %*                                                                      *
224         GHCI stuff
225 %*                                                                      *
226 %************************************************************************
227
228 \begin{code}
229 #ifdef GHCI
230 -----------------------------------------------------------------------------
231 -- Setting the context doesn't throw away any bindings; the bindings
232 -- we've built up in the InteractiveContext simply move to the new
233 -- module.  They always shadow anything in scope in the current context.
234
235 cmSetContext
236         :: CmState
237         -> [String]             -- take the top-level scopes of these modules
238         -> [String]             -- and the just the exports from these
239         -> IO CmState
240 cmSetContext cmstate toplevs exports = do 
241   let old_ic  = cm_ic cmstate
242       hsc_env = cm_hsc cmstate
243       hpt     = hsc_HPT hsc_env
244
245   let export_mods = map mkModule exports
246   mapM_ (checkModuleExists (hsc_dflags hsc_env) hpt) export_mods
247   export_env  <- mkExportEnv hsc_env export_mods
248   toplev_envs <- mapM (mkTopLevEnv hpt) toplevs
249
250   let all_env = foldr plusGlobalRdrEnv export_env toplev_envs
251   return cmstate{ cm_ic = old_ic { ic_toplev_scope = toplevs,
252                                    ic_exports      = exports,
253                                    ic_rn_gbl_env   = all_env } }
254
255 checkModuleExists :: DynFlags -> HomePackageTable -> Module -> IO ()
256 checkModuleExists dflags hpt mod = 
257   case lookupModuleEnv hpt mod of
258     Just mod_info -> return ()
259     _not_a_home_module -> do
260           res <- findPackageModule dflags mod True
261           case res of
262             Found _ _ -> return  ()
263             err -> let msg = cantFindError dflags mod err in
264                    throwDyn (CmdLineError (showSDoc msg))
265
266 mkTopLevEnv :: HomePackageTable -> String -> IO GlobalRdrEnv
267 mkTopLevEnv hpt mod
268  = case lookupModuleEnv hpt (mkModule mod) of
269       Nothing      -> throwDyn (ProgramError ("mkTopLevEnv: not a home module " ++ mod))
270       Just details -> case mi_globals (hm_iface details) of
271                         Nothing  -> throwDyn (ProgramError ("mkTopLevEnv: not interpreted " ++ mod))
272                         Just env -> return env
273
274 cmGetContext :: CmState -> IO ([String],[String])
275 cmGetContext CmState{cm_ic=ic} = 
276   return (ic_toplev_scope ic, ic_exports ic)
277
278 cmModuleIsInterpreted :: CmState -> String -> IO Bool
279 cmModuleIsInterpreted cmstate str 
280  = case lookupModuleEnv (cmHPT cmstate) (mkModule str) of
281       Just details       -> return (isJust (mi_globals (hm_iface details)))
282       _not_a_home_module -> return False
283
284 -----------------------------------------------------------------------------
285
286 cmSetDFlags :: CmState -> DynFlags -> CmState
287 cmSetDFlags cm_state dflags 
288   = cm_state { cm_hsc = (cm_hsc cm_state) { hsc_dflags = dflags } }
289
290 cmGetDFlags :: CmState -> DynFlags
291 cmGetDFlags cm_state = hsc_dflags (cm_hsc cm_state)
292
293 -----------------------------------------------------------------------------
294 -- cmInfoThing: convert a String to a TyThing
295
296 -- A string may refer to more than one TyThing (eg. a constructor,
297 -- and type constructor), so we return a list of all the possible TyThings.
298
299 cmGetInfo :: CmState -> String -> IO [GetInfoResult]
300 cmGetInfo cmstate id = hscGetInfo (cm_hsc cmstate) (cm_ic cmstate) id
301
302 -- ---------------------------------------------------------------------------
303 -- cmBrowseModule: get all the TyThings defined in a module
304
305 cmBrowseModule :: CmState -> String -> Bool -> IO [IfaceDecl]
306 cmBrowseModule cmstate str exports_only
307   = do { mb_decls <- getModuleContents (cm_hsc cmstate) (cm_ic cmstate) 
308                                        (mkModule str) exports_only
309        ; case mb_decls of
310            Nothing -> return []         -- An error of some kind
311            Just ds -> return ds
312    }
313
314
315 -----------------------------------------------------------------------------
316 cmShowModule :: CmState -> ModSummary -> String
317 cmShowModule cmstate mod_summary
318   = case lookupModuleEnv hpt (ms_mod mod_summary) of
319         Nothing       -> panic "missing linkable"
320         Just mod_info -> showModMsg obj_linkable mod_summary
321                       where
322                          obj_linkable = isObjectLinkable (hm_linkable mod_info)
323   where
324     hpt  = hsc_HPT (cm_hsc cmstate)
325
326 -----------------------------------------------------------------------------
327 -- cmRunStmt:  Run a statement/expr.
328
329 data CmRunResult
330   = CmRunOk [Name]              -- names bound by this evaluation
331   | CmRunFailed 
332   | CmRunException Exception    -- statement raised an exception
333
334 cmRunStmt :: CmState -> String -> IO (CmState, CmRunResult)             
335 cmRunStmt cmstate@CmState{ cm_hsc=hsc_env, cm_ic=icontext } expr
336    = do 
337         -- Turn off -fwarn-unused-bindings when running a statement, to hide
338         -- warnings about the implicit bindings we introduce.
339         let dflags'  = dopt_unset (hsc_dflags hsc_env) Opt_WarnUnusedBinds
340             hsc_env' = hsc_env{ hsc_dflags = dflags' }
341
342         maybe_stuff <- hscStmt hsc_env' icontext expr
343
344         case maybe_stuff of
345            Nothing -> return (cmstate, CmRunFailed)
346            Just (new_ic, names, hval) -> do
347
348                 let thing_to_run = unsafeCoerce# hval :: IO [HValue]
349                 either_hvals <- sandboxIO thing_to_run
350
351                 case either_hvals of
352                     Left e -> do
353                         -- on error, keep the *old* interactive context,
354                         -- so that 'it' is not bound to something
355                         -- that doesn't exist.
356                         return ( cmstate, CmRunException e )
357
358                     Right hvals -> do
359                         -- Get the newly bound things, and bind them.  
360                         -- Don't need to delete any shadowed bindings;
361                         -- the new ones override the old ones. 
362                         extendLinkEnv (zip names hvals)
363                         
364                         return (cmstate{ cm_ic=new_ic }, 
365                                 CmRunOk names)
366
367
368 -- We run the statement in a "sandbox" to protect the rest of the
369 -- system from anything the expression might do.  For now, this
370 -- consists of just wrapping it in an exception handler, but see below
371 -- for another version.
372
373 sandboxIO :: IO a -> IO (Either Exception a)
374 sandboxIO thing = Exception.try thing
375
376 {-
377 -- This version of sandboxIO runs the expression in a completely new
378 -- RTS main thread.  It is disabled for now because ^C exceptions
379 -- won't be delivered to the new thread, instead they'll be delivered
380 -- to the (blocked) GHCi main thread.
381
382 -- SLPJ: when re-enabling this, reflect a wrong-stat error as an exception
383
384 sandboxIO :: IO a -> IO (Either Int (Either Exception a))
385 sandboxIO thing = do
386   st_thing <- newStablePtr (Exception.try thing)
387   alloca $ \ p_st_result -> do
388     stat <- rts_evalStableIO st_thing p_st_result
389     freeStablePtr st_thing
390     if stat == 1
391         then do st_result <- peek p_st_result
392                 result <- deRefStablePtr st_result
393                 freeStablePtr st_result
394                 return (Right result)
395         else do
396                 return (Left (fromIntegral stat))
397
398 foreign import "rts_evalStableIO"  {- safe -}
399   rts_evalStableIO :: StablePtr (IO a) -> Ptr (StablePtr a) -> IO CInt
400   -- more informative than the C type!
401 -}
402
403 -----------------------------------------------------------------------------
404 -- cmTypeOfExpr: returns a string representing the type of an expression
405
406 cmTypeOfExpr :: CmState -> String -> IO (Maybe String)
407 cmTypeOfExpr cmstate expr
408    = do maybe_stuff <- hscTcExpr (cm_hsc cmstate) (cm_ic cmstate) expr
409
410         case maybe_stuff of
411            Nothing -> return Nothing
412            Just ty -> return (Just (showSDocForUser unqual doc))
413              where 
414                 doc     = text expr <+> dcolon <+> ppr final_ty
415                 unqual  = icPrintUnqual (cm_ic cmstate)
416                 tidy_ty = tidyType emptyTidyEnv ty
417                 dflags  = hsc_dflags (cm_hsc cmstate)
418                 -- if -fglasgow-exts is on we show the foralls, otherwise
419                 -- we don't.
420                 final_ty
421                   | dopt Opt_GlasgowExts dflags = tidy_ty
422                   | otherwise                   = dropForAlls tidy_ty
423
424 -----------------------------------------------------------------------------
425 -- cmKindOfType: returns a string representing the kind of a type
426
427 cmKindOfType :: CmState -> String -> IO (Maybe String)
428 cmKindOfType cmstate str
429    = do maybe_stuff <- hscKcType (cm_hsc cmstate) (cm_ic cmstate) str
430         case maybe_stuff of
431            Nothing -> return Nothing
432            Just kind -> return (Just res_str)
433              where 
434                 res_str = showSDocForUser unqual (text str <+> dcolon <+> ppr kind)
435                 unqual  = icPrintUnqual (cm_ic cmstate)
436
437 -----------------------------------------------------------------------------
438 -- cmTypeOfName: returns a string representing the type of a name.
439
440 cmTypeOfName :: CmState -> Name -> IO (Maybe String)
441 cmTypeOfName CmState{ cm_ic=ic } name
442  = do 
443     hPutStrLn stderr ("cmTypeOfName: " ++ showSDoc (ppr name))
444     case lookupNameEnv (ic_type_env ic) name of
445         Nothing        -> return Nothing
446         Just (AnId id) -> return (Just str)
447            where
448              unqual = icPrintUnqual ic
449              ty = tidyType emptyTidyEnv (idType id)
450              str = showSDocForUser unqual (ppr ty)
451
452         _ -> panic "cmTypeOfName"
453
454 -----------------------------------------------------------------------------
455 -- cmCompileExpr: compile an expression and deliver an HValue
456
457 cmCompileExpr :: CmState -> String -> IO (Maybe HValue)
458 cmCompileExpr cmstate expr
459    = do 
460         maybe_stuff 
461             <- hscStmt (cm_hsc cmstate) (cm_ic cmstate)
462                        ("let __cmCompileExpr = "++expr)
463
464         case maybe_stuff of
465            Nothing -> return Nothing
466            Just (new_ic, names, hval) -> do
467
468                         -- Run it!
469                 hvals <- (unsafeCoerce# hval) :: IO [HValue]
470
471                 case (names,hvals) of
472                   ([n],[hv]) -> return (Just hv)
473                   _          -> panic "cmCompileExpr"
474
475 #endif /* GHCI */
476 \end{code}
477
478
479 %************************************************************************
480 %*                                                                      *
481         Loading and unloading
482 %*                                                                      *
483 %************************************************************************
484
485 \begin{code}
486 -----------------------------------------------------------------------------
487 -- Unload the compilation manager's state: everything it knows about the
488 -- current collection of modules in the Home package.
489
490 cmUnload :: CmState -> IO CmState
491 cmUnload state@CmState{ cm_hsc = hsc_env }
492  = do -- Throw away the old home dir cache
493       flushFinderCache
494
495       -- Unload everything the linker knows about
496       cm_unload hsc_env []
497
498       -- Start with a fresh CmState, but keep the PersistentCompilerState
499       return (discardCMInfo state)
500
501 cm_unload hsc_env stable_linkables      -- Unload everthing *except* 'stable_linkables'
502   = case hsc_mode hsc_env of
503         Batch -> return ()
504 #ifdef GHCI
505         Interactive -> Linker.unload (hsc_dflags hsc_env) stable_linkables
506 #else
507         Interactive -> panic "cm_unload: no interpreter"
508 #endif
509         other -> panic "cm_unload: strange mode"
510     
511
512 -----------------------------------------------------------------------------
513 -- Trace dependency graph
514
515 -- This is a seperate pass so that the caller can back off and keep
516 -- the current state if the downsweep fails.  Typically the caller
517 -- might go     cmDepAnal
518 --              cmUnload
519 --              cmLoadModules
520 -- He wants to do the dependency analysis before the unload, so that
521 -- if the former fails he can use the later
522
523 cmDepAnal :: CmState -> [FilePath] -> IO ModuleGraph
524 cmDepAnal cmstate rootnames
525   = do showPass dflags "Chasing dependencies"
526        when (verbosity dflags >= 1 && gmode == Batch) $
527            hPutStrLn stderr (showSDoc (hcat [
528              text "Chasing modules from: ",
529              hcat (punctuate comma (map text rootnames))]))
530        cmDownsweep dflags rootnames (cm_mg cmstate) []
531   where
532     hsc_env = cm_hsc cmstate
533     dflags  = hsc_dflags hsc_env
534     gmode   = hsc_mode hsc_env
535
536 -----------------------------------------------------------------------------
537 -- The real business of the compilation manager: given a system state and
538 -- a module name, try and bring the module up to date, probably changing
539 -- the system state at the same time.
540
541 cmLoadModules :: CmState                -- The HPT may not be as up to date
542               -> ModuleGraph            -- Bang up to date; but may contain hi-boot no
543               -> IO (CmState,           -- new state
544                      SuccessFlag,       -- was successful
545                      [String])          -- list of modules loaded
546
547 cmLoadModules cmstate1 mg2unsorted
548    = do -- version 1's are the original, before downsweep
549         let hsc_env   = cm_hsc cmstate1
550         let hpt1      = hsc_HPT hsc_env
551         let ghci_mode = hsc_mode   hsc_env -- this never changes
552         let dflags    = hsc_dflags hsc_env -- this never changes
553
554         -- Do the downsweep to reestablish the module graph
555         let verb = verbosity dflags
556
557         -- Find out if we have a Main module
558         mb_main_mod <- readIORef v_MainModIs
559         let 
560             main_mod = mb_main_mod `orElse` "Main"
561             a_root_is_Main 
562                = any ((==main_mod).moduleUserString.ms_mod) 
563                      mg2unsorted
564
565         let mg2unsorted_names = map ms_mod mg2unsorted
566
567         -- mg2 should be cycle free; but it includes hi-boot ModSummary nodes
568         let mg2 :: [SCC ModSummary]
569             mg2 = cmTopSort False mg2unsorted
570
571         -- mg2_with_srcimps drops the hi-boot nodes, returning a 
572         -- graph with cycles.  Among other things, it is used for
573         -- backing out partially complete cycles following a failed
574         -- upsweep, and for removing from hpt all the modules
575         -- not in strict downwards closure, during calls to compile.
576         let mg2_with_srcimps :: [SCC ModSummary]
577             mg2_with_srcimps = cmTopSort True mg2unsorted
578
579         -- Sort out which linkables we wish to keep in the unlinked image.
580         -- See getValidLinkables below for details.
581         (valid_old_linkables, new_linkables)
582             <- getValidLinkables ghci_mode (hptLinkables hpt1)
583                   mg2unsorted_names mg2_with_srcimps
584
585         -- putStrLn (showSDoc (vcat [ppr valid_old_linkables, ppr new_linkables]))
586
587         -- The new_linkables are .o files we found on the disk, presumably
588         -- as a result of a GHC run "on the side".  So we'd better forget
589         -- everything we know abouut those modules!
590         let old_hpt = delModuleEnvList hpt1 (map linkableModule new_linkables)
591
592         -- When (verb >= 2) $
593         --    putStrLn (showSDoc (text "Valid linkables:" 
594         --                       <+> ppr valid_linkables))
595
596         -- Figure out a stable set of modules which can be retained
597         -- the top level envs, to avoid upsweeping them.  Goes to a
598         -- bit of trouble to avoid upsweeping module cycles.
599         --
600         -- Construct a set S of stable modules like this:
601         -- Travel upwards, over the sccified graph.  For each scc
602         -- of modules ms, add ms to S only if:
603         -- 1.  All home imports of ms are either in ms or S
604         -- 2.  A valid old linkable exists for each module in ms
605
606         -- mg2_with_srcimps has no hi-boot nodes, 
607         -- and hence neither does stable_mods 
608         stable_summaries <- preUpsweep valid_old_linkables
609                                        mg2unsorted_names [] mg2_with_srcimps
610         let stable_mods      = map ms_mod stable_summaries
611             stable_linkables = filter (\m -> linkableModule m `elem` stable_mods) 
612                                       valid_old_linkables
613
614             stable_hpt = filterModuleEnv is_stable_hm hpt1
615             is_stable_hm hm_info = mi_module (hm_iface hm_info) `elem` stable_mods
616
617             upsweep_these
618                = filter (\scc -> any (`notElem` stable_mods) 
619                                      (map ms_mod (flattenSCC scc)))
620                         mg2
621
622         when (verb >= 2) $
623            hPutStrLn stderr (showSDoc (text "Stable modules:" 
624                                <+> sep (map (text.moduleUserString) stable_mods)))
625
626         -- Unload any modules which are going to be re-linked this time around.
627         cm_unload hsc_env stable_linkables
628
629         -- We can now glom together our linkable sets
630         let valid_linkables = valid_old_linkables ++ new_linkables
631
632         -- We could at this point detect cycles which aren't broken by
633         -- a source-import, and complain immediately, but it seems better
634         -- to let upsweep_mods do this, so at least some useful work gets
635         -- done before the upsweep is abandoned.
636         --hPutStrLn stderr "after tsort:\n"
637         --hPutStrLn stderr (showSDoc (vcat (map ppr mg2)))
638
639         -- Because we don't take into account source imports when doing
640         -- the topological sort, there shouldn't be any cycles in mg2.
641         -- If there is, we complain and give up -- the user needs to
642         -- break the cycle using a boot file.
643
644         -- Now do the upsweep, calling compile for each module in
645         -- turn.  Final result is version 3 of everything.
646
647         -- clean up between compilations
648         let cleanup = cleanTempFilesExcept dflags
649                           (ppFilesFromSummaries (flattenSCCs mg2))
650
651         (upsweep_ok, hsc_env3, modsUpswept)
652            <- upsweep_mods (hsc_env { hsc_HPT = stable_hpt })
653                            (old_hpt, valid_linkables)
654                            cleanup upsweep_these
655
656         -- At this point, modsUpswept and newLis should have the same
657         -- length, so there is one new (or old) linkable for each 
658         -- mod which was processed (passed to compile).
659
660         -- Make modsDone be the summaries for each home module now
661         -- available; this should equal the domain of hpt3.
662         -- (NOT STRICTLY TRUE if an interactive session was started
663         --  with some object on disk ???)
664         -- Get in in a roughly top .. bottom order (hence reverse).
665
666         let modsDone = reverse modsUpswept ++ stable_summaries
667
668         -- Try and do linking in some form, depending on whether the
669         -- upsweep was completely or only partially successful.
670
671         if succeeded upsweep_ok
672
673          then 
674            -- Easy; just relink it all.
675            do when (verb >= 2) $ 
676                  hPutStrLn stderr "Upsweep completely successful."
677
678               -- clean up after ourselves
679               cleanTempFilesExcept dflags (ppFilesFromSummaries modsDone)
680
681               ofile <- readIORef v_Output_file
682               no_hs_main <- readIORef v_NoHsMain
683
684               -- Issue a warning for the confusing case where the user
685               -- said '-o foo' but we're not going to do any linking.
686               -- We attempt linking if either (a) one of the modules is
687               -- called Main, or (b) the user said -no-hs-main, indicating
688               -- that main() is going to come from somewhere else.
689               --
690               let do_linking = a_root_is_Main || no_hs_main
691               when (ghci_mode == Batch && isJust ofile && not do_linking
692                      && verb > 0) $
693                  hPutStrLn stderr ("Warning: output was redirected with -o, but no output will be generated\nbecause there is no " ++ main_mod ++ " module.")
694
695               -- link everything together
696               linkresult <- link ghci_mode dflags do_linking (hsc_HPT hsc_env3)
697
698               let cmstate3 = cmstate1 { cm_mg = modsDone, cm_hsc = hsc_env3 }
699               cmLoadFinish Succeeded linkresult cmstate3
700
701          else 
702            -- Tricky.  We need to back out the effects of compiling any
703            -- half-done cycles, both so as to clean up the top level envs
704            -- and to avoid telling the interactive linker to link them.
705            do when (verb >= 2) $
706                 hPutStrLn stderr "Upsweep partially successful."
707
708               let modsDone_names
709                      = map ms_mod modsDone
710               let mods_to_zap_names 
711                      = findPartiallyCompletedCycles modsDone_names 
712                           mg2_with_srcimps
713               let mods_to_keep
714                      = filter ((`notElem` mods_to_zap_names).ms_mod) 
715                           modsDone
716
717               let hpt4 = retainInTopLevelEnvs (map ms_mod mods_to_keep) 
718                                               (hsc_HPT hsc_env3)
719
720               -- Clean up after ourselves
721               cleanTempFilesExcept dflags (ppFilesFromSummaries mods_to_keep)
722
723               -- Link everything together
724               linkresult <- link ghci_mode dflags False hpt4
725
726               let cmstate3 = cmstate1 { cm_mg = mods_to_keep,
727                                         cm_hsc = hsc_env3 { hsc_HPT = hpt4 } }
728               cmLoadFinish Failed linkresult cmstate3
729
730
731 -- Finish up after a cmLoad.
732
733 -- If the link failed, unload everything and return.
734 cmLoadFinish ok Failed cmstate
735   = do cm_unload (cm_hsc cmstate) []
736        return (discardCMInfo cmstate, Failed, [])
737
738 -- Empty the interactive context and set the module context to the topmost
739 -- newly loaded module, or the Prelude if none were loaded.
740 cmLoadFinish ok Succeeded cmstate
741   = do let new_cmstate = cmstate { cm_ic = emptyInteractiveContext }
742            mods_loaded = map (moduleUserString.ms_mod) 
743                              (cm_mg cmstate)
744
745        return (new_cmstate, ok, mods_loaded)
746
747 -- used to fish out the preprocess output files for the purposes of
748 -- cleaning up.  The preprocessed file *might* be the same as the
749 -- source file, but that doesn't do any harm.
750 ppFilesFromSummaries summaries = [ fn | Just fn <- map ms_hspp_file summaries ]
751
752 -----------------------------------------------------------------------------
753 -- getValidLinkables
754
755 -- For each module (or SCC of modules), we take:
756 --
757 --      - an on-disk linkable, if this is the first time around and one
758 --        is available.
759 --
760 --      - the old linkable, otherwise (and if one is available).
761 --
762 -- and we throw away the linkable if it is older than the source file.
763 -- In interactive mode, we also ignore the on-disk linkables unless
764 -- all of the dependents of this SCC also have on-disk linkables (we
765 -- can't have dynamically loaded objects that depend on interpreted
766 -- modules in GHCi).
767 --
768 -- If a module has a valid linkable, then it may be STABLE (see below),
769 -- and it is classified as SOURCE UNCHANGED for the purposes of calling
770 -- compile.
771 --
772 -- ToDo: this pass could be merged with the preUpsweep.
773
774 getValidLinkables
775         :: GhciMode
776         -> [Linkable]           -- old linkables
777         -> [Module]             -- all home modules
778         -> [SCC ModSummary]     -- all modules in the program, dependency order
779         -> IO ( [Linkable],     -- still-valid linkables 
780                 [Linkable]      -- new linkables we just found on the disk
781                                 -- presumably generated by separate run of ghc
782               )
783
784 getValidLinkables mode old_linkables all_home_mods module_graph
785   = do  {       -- Process the SCCs in bottom-to-top order
786                 -- (foldM works left-to-right)
787           ls <- foldM (getValidLinkablesSCC mode old_linkables all_home_mods) 
788                       [] module_graph
789         ; return (partition_it ls [] []) }
790  where
791   partition_it []         valid new = (valid,new)
792   partition_it ((l,b):ls) valid new 
793         | b         = partition_it ls valid (l:new)
794         | otherwise = partition_it ls (l:valid) new
795
796
797 getValidLinkablesSCC
798         :: GhciMode
799         -> [Linkable]           -- old linkables
800         -> [Module]             -- all home modules
801         -> [(Linkable,Bool)]
802         -> SCC ModSummary
803         -> IO [(Linkable,Bool)]
804
805 getValidLinkablesSCC mode old_linkables all_home_mods new_linkables scc0
806    = let 
807           scc             = flattenSCC scc0
808           scc_names       = map ms_mod scc
809           home_module m   = m `elem` all_home_mods && m `notElem` scc_names
810           scc_allhomeimps = nub (filter home_module (concatMap ms_imps scc))
811                 -- NB. ms_imps, not ms_allimps above.  We don't want to
812                 -- force a module's SOURCE imports to be already compiled for
813                 -- its object linkable to be valid.
814
815                 -- The new_linkables is only the *valid* linkables below here
816           has_object m = case findModuleLinkable_maybe (map fst new_linkables) m of
817                             Nothing -> False
818                             Just l  -> isObjectLinkable l
819
820           objects_allowed = mode == Batch || all has_object scc_allhomeimps
821      in do
822
823      new_linkables'
824         <- foldM (getValidLinkable old_linkables objects_allowed) [] scc
825
826         -- since an scc can contain only all objects or no objects at all,
827         -- we have to check whether we got all objects or not, and re-do
828         -- the linkable check if not.
829      new_linkables' <- 
830         if objects_allowed
831              && not (all isObjectLinkable (map fst new_linkables'))
832           then foldM (getValidLinkable old_linkables False) [] scc
833           else return new_linkables'
834
835      return (new_linkables ++ new_linkables')
836
837
838 getValidLinkable :: [Linkable] -> Bool -> [(Linkable,Bool)] -> ModSummary 
839         -> IO [(Linkable,Bool)]
840         -- True <=> linkable is new; i.e. freshly discovered on the disk
841         --                                presumably generated 'on the side'
842         --                                by a separate GHC run
843 getValidLinkable old_linkables objects_allowed new_linkables summary 
844         -- 'objects_allowed' says whether we permit this module to
845         -- have a .o-file linkable.  We only permit it if all the
846         -- modules it depends on also have .o files; a .o file can't
847         -- link to a bytecode module
848    = do let mod_name = ms_mod summary
849
850         maybe_disk_linkable
851           <- if (not objects_allowed)
852                 then return Nothing
853
854                 else findLinkable mod_name (ms_location summary)
855
856         let old_linkable = findModuleLinkable_maybe old_linkables mod_name
857
858             new_linkables' = 
859              case (old_linkable, maybe_disk_linkable) of
860                 (Nothing, Nothing)                      -> []
861
862                 -- new object linkable just appeared
863                 (Nothing, Just l)                       -> up_to_date l True
864
865                 (Just l,  Nothing)
866                   | isObjectLinkable l                  -> []
867                     -- object linkable disappeared!  In case we need to
868                     -- relink the module, disregard the old linkable and
869                     -- just interpret the module from now on.
870                   | otherwise                           -> up_to_date l False
871                     -- old byte code linkable
872
873                 (Just l, Just l') 
874                   | not (isObjectLinkable l)            -> up_to_date l  False
875                     -- if the previous linkable was interpreted, then we
876                     -- ignore a newly compiled version, because the version
877                     -- numbers in the interface file will be out-of-sync with
878                     -- our internal ones.
879                   | linkableTime l' >  linkableTime l   -> up_to_date l' True
880                   | linkableTime l' == linkableTime l   -> up_to_date l  False
881                   | otherwise                           -> []
882                     -- on-disk linkable has been replaced by an older one!
883                     -- again, disregard the previous one.
884
885             up_to_date l b
886                 | linkableTime l < ms_hs_date summary = []
887                 | otherwise = [(l,b)]
888                 -- why '<' rather than '<=' above?  If the filesystem stores
889                 -- times to the nearset second, we may occasionally find that
890                 -- the object & source have the same modification time, 
891                 -- especially if the source was automatically generated
892                 -- and compiled.  Using >= is slightly unsafe, but it matches
893                 -- make's behaviour.
894
895         return (new_linkables' ++ new_linkables)
896
897
898 hptLinkables :: HomePackageTable -> [Linkable]
899 -- Get all the linkables from the home package table, one for each module
900 -- Once the HPT is up to date, these are the ones we should link
901 hptLinkables hpt = map hm_linkable (moduleEnvElts hpt)
902
903
904 -----------------------------------------------------------------------------
905 -- Do a pre-upsweep without use of "compile", to establish a 
906 -- (downward-closed) set of stable modules for which we won't call compile.
907
908 -- a stable module:
909 --      * has a valid linkable (see getValidLinkables above)
910 --      * depends only on stable modules
911 --      * has an interface in the HPT (interactive mode only)
912
913 preUpsweep :: [Linkable]        -- new valid linkables
914            -> [Module]          -- names of all mods encountered in downsweep
915            -> [ModSummary]      -- accumulating stable modules
916            -> [SCC ModSummary]  -- scc-ified mod graph, including src imps
917            -> IO [ModSummary]   -- stable modules
918
919 preUpsweep valid_lis all_home_mods stable []  = return stable
920 preUpsweep valid_lis all_home_mods stable (scc0:sccs)
921    = do let scc = flattenSCC scc0
922             scc_allhomeimps :: [Module]
923             scc_allhomeimps 
924                = nub (filter (`elem` all_home_mods) (concatMap ms_allimps scc))
925             all_imports_in_scc_or_stable
926                = all in_stable_or_scc scc_allhomeimps
927             scc_mods     = map ms_mod scc
928             stable_names = scc_mods ++ map ms_mod stable
929             in_stable_or_scc m = m `elem` stable_names
930
931             -- now we check for valid linkables: each module in the SCC must 
932             -- have a valid linkable (see getValidLinkables above).
933             has_valid_linkable scc_mod
934               = isJust (findModuleLinkable_maybe valid_lis scc_mod)
935
936             scc_is_stable = all_imports_in_scc_or_stable
937                           && all has_valid_linkable scc_mods
938
939         if scc_is_stable
940          then preUpsweep valid_lis all_home_mods (scc ++ stable) sccs
941          else preUpsweep valid_lis all_home_mods stable          sccs
942
943
944 -- Return (names of) all those in modsDone who are part of a cycle
945 -- as defined by theGraph.
946 findPartiallyCompletedCycles :: [Module] -> [SCC ModSummary] -> [Module]
947 findPartiallyCompletedCycles modsDone theGraph
948    = chew theGraph
949      where
950         chew [] = []
951         chew ((AcyclicSCC v):rest) = chew rest    -- acyclic?  not interesting.
952         chew ((CyclicSCC vs):rest)
953            = let names_in_this_cycle = nub (map ms_mod vs)
954                  mods_in_this_cycle  
955                     = nub ([done | done <- modsDone, 
956                                    done `elem` names_in_this_cycle])
957                  chewed_rest = chew rest
958              in 
959              if   notNull mods_in_this_cycle
960                   && length mods_in_this_cycle < length names_in_this_cycle
961              then mods_in_this_cycle ++ chewed_rest
962              else chewed_rest
963
964
965 -- Compile multiple modules, stopping as soon as an error appears.
966 -- There better had not be any cyclic groups here -- we check for them.
967 upsweep_mods :: HscEnv                          -- Includes initially-empty HPT
968              -> (HomePackageTable, [Linkable])  -- HPT and valid linkables from last time round
969              -> IO ()                           -- How to clean up unwanted tmp files
970              -> [SCC ModSummary]                -- Mods to do (the worklist)
971              -> IO (SuccessFlag,
972                     HscEnv,             -- With an updated HPT
973                     [ModSummary])       -- Mods which succeeded
974
975 upsweep_mods hsc_env oldUI cleanup
976      []
977    = return (Succeeded, hsc_env, [])
978
979 upsweep_mods hsc_env oldUI cleanup
980      (CyclicSCC ms:_)
981    = do hPutStrLn stderr (showSDoc (cyclicModuleErr ms))
982         return (Failed, hsc_env, [])
983
984 upsweep_mods hsc_env oldUI@(old_hpt, old_linkables) cleanup
985      (AcyclicSCC mod:mods)
986    = do -- putStrLn ("UPSWEEP_MOD: hpt = " ++ 
987         --           show (map (moduleUserString.moduleName.mi_module.hm_iface) 
988         --                     (moduleEnvElts (hsc_HPT hsc_env)))
989
990         mb_mod_info <- upsweep_mod hsc_env oldUI mod 
991
992         cleanup         -- Remove unwanted tmp files between compilations
993
994         case mb_mod_info of
995             Nothing -> return (Failed, hsc_env, [])
996             Just mod_info -> do 
997                 { let this_mod = ms_mod mod
998
999                         -- Add new info to hsc_env
1000                       hpt1     = extendModuleEnv (hsc_HPT hsc_env) this_mod mod_info
1001                       hsc_env1 = hsc_env { hsc_HPT = hpt1 }
1002
1003                         -- Space-saving: delete the old HPT entry and linkable for mod
1004                         -- BUT if mod is a hs-boot node, don't delete it
1005                         -- For the linkable this is dead right: the linkable relates only
1006                         -- to the main Haskell source file. 
1007                         -- For the interface, the HPT entry is probaby for the main Haskell
1008                         -- source file.  Deleting it would force 
1009                       oldUI1 | isHsBoot (ms_hsc_src mod) = oldUI
1010                              | otherwise
1011                              = (delModuleEnv old_hpt this_mod, 
1012                                   delModuleLinkable old_linkables this_mod)
1013
1014                 ; (restOK, hsc_env2, modOKs) <- upsweep_mods hsc_env1 oldUI1 cleanup mods
1015                 ; return (restOK, hsc_env2, mod:modOKs) }
1016
1017
1018 -- Compile a single module.  Always produce a Linkable for it if 
1019 -- successful.  If no compilation happened, return the old Linkable.
1020 upsweep_mod :: HscEnv
1021             -> (HomePackageTable, UnlinkedImage)
1022             -> ModSummary
1023             -> IO (Maybe HomeModInfo)   -- Nothing => Failed
1024
1025 upsweep_mod hsc_env (old_hpt, old_linkables) summary
1026    = do 
1027         let this_mod = ms_mod summary
1028
1029         -- The old interface is ok if it's in the old HPT 
1030         --      a) we're compiling a source file, and the old HPT entry is for a source file
1031         --      b) we're compiling a hs-boot file
1032         -- Case (b) allows an hs-boot file to get the interface of its real source file
1033         -- on the second iteration of the compilation manager, but that does no harm.
1034         -- Otherwise the hs-boot file will always be recompiled
1035             mb_old_iface 
1036                 = case lookupModuleEnv old_hpt this_mod of
1037                      Nothing                                      -> Nothing
1038                      Just hm_info | isHsBoot (ms_hsc_src summary) -> Just iface
1039                                   | not (mi_boot iface)           -> Just iface
1040                                   | otherwise                     -> Nothing
1041                                    where 
1042                                      iface = hm_iface hm_info
1043
1044             maybe_old_linkable = findModuleLinkable_maybe old_linkables this_mod
1045             source_unchanged   = isJust maybe_old_linkable
1046
1047             old_linkable = expectJust "upsweep_mod:old_linkable" maybe_old_linkable
1048
1049             have_object 
1050                | Just l <- maybe_old_linkable, isObjectLinkable l = True
1051                | otherwise = False
1052
1053         compresult <- compile hsc_env summary source_unchanged have_object mb_old_iface
1054
1055         case compresult of
1056
1057            -- Compilation "succeeded", and may or may not have returned a new
1058            -- linkable (depending on whether compilation was actually performed
1059            -- or not).
1060            CompOK new_details new_iface maybe_new_linkable
1061               -> do let 
1062                         new_linkable = maybe_new_linkable `orElse` old_linkable
1063                         new_info = HomeModInfo { hm_iface = new_iface,
1064                                                  hm_details = new_details,
1065                                                  hm_linkable = new_linkable }
1066                     return (Just new_info)
1067
1068            -- Compilation failed.  Compile may still have updated the PCS, tho.
1069            CompErrs -> return Nothing
1070
1071 -- Filter modules in the HPT
1072 retainInTopLevelEnvs :: [Module] -> HomePackageTable -> HomePackageTable
1073 retainInTopLevelEnvs keep_these hpt
1074    = mkModuleEnv [ (mod, fromJust mb_mod_info)
1075                  | mod <- keep_these
1076                  , let mb_mod_info = lookupModuleEnv hpt mod
1077                  , isJust mb_mod_info ]
1078
1079 -----------------------------------------------------------------------------
1080 cmTopSort :: Bool               -- Drop hi-boot nodes? (see below)
1081           -> [ModSummary]
1082           -> [SCC ModSummary]
1083 -- Calculate SCCs of the module graph, possibly dropping the hi-boot nodes
1084 --
1085 -- Drop hi-boot nodes (first boolean arg)? 
1086 --
1087 --   False:     treat the hi-boot summaries as nodes of the graph,
1088 --              so the graph must be acyclic
1089 --
1090 --   True:      eliminate the hi-boot nodes, and instead pretend
1091 --              the a source-import of Foo is an import of Foo
1092 --              The resulting graph has no hi-boot nodes, but can by cyclic
1093
1094 cmTopSort drop_hs_boot_nodes summaries
1095    = stronglyConnComp nodes
1096    where
1097         -- Drop hs-boot nodes by using HsSrcFile as the key
1098         hs_boot_key | drop_hs_boot_nodes = HsSrcFile
1099                     | otherwise          = HsBootFile   
1100
1101         -- We use integers as the keys for the SCC algorithm
1102         nodes :: [(ModSummary, Int, [Int])]     
1103         nodes = [(s, fromJust (lookup_key (ms_hsc_src s) (ms_mod s)), 
1104                      out_edge_keys hs_boot_key (ms_srcimps s) ++
1105                      out_edge_keys HsSrcFile   (ms_imps s)    )
1106                 | s <- summaries
1107                 , not (ms_hsc_src s == HsBootFile && drop_hs_boot_nodes) ]
1108                 -- Drop the hi-boot ones if told to do so
1109
1110         key_map :: NodeMap Int
1111         key_map = listToFM ([(ms_mod s, ms_hsc_src s) | s <- summaries]
1112                            `zip` [1..])
1113
1114         lookup_key :: HscSource -> Module -> Maybe Int
1115         lookup_key hs_src mod = lookupFM key_map (mod, hs_src)
1116
1117         out_edge_keys :: HscSource -> [Module] -> [Int]
1118         out_edge_keys hi_boot ms = mapCatMaybes (lookup_key hi_boot) ms
1119                 -- If we want keep_hi_boot_nodes, then we do lookup_key with
1120                 -- the IsBootInterface parameter True; else False
1121
1122
1123 -----------------------------------------------------------------------------
1124 -- Downsweep (dependency analysis)
1125
1126 -- Chase downwards from the specified root set, returning summaries
1127 -- for all home modules encountered.  Only follow source-import
1128 -- links.
1129
1130 -- We pass in the previous collection of summaries, which is used as a
1131 -- cache to avoid recalculating a module summary if the source is
1132 -- unchanged.
1133 --
1134 -- The returned list of [ModSummary] nodes has one node for each home-package
1135 -- module.  The imports of these nodes are all there, including the imports
1136 -- of non-home-package modules.
1137
1138 cmDownsweep :: DynFlags
1139             -> [FilePath]       -- Roots
1140             -> [ModSummary]     -- Old summaries
1141             -> [Module]         -- Ignore dependencies on these; treat them as
1142                                 -- if they were package modules
1143             -> IO [ModSummary]
1144 cmDownsweep dflags roots old_summaries excl_mods
1145    = do rootSummaries <- mapM getRootSummary roots
1146         checkDuplicates rootSummaries
1147         loop (concatMap msImports rootSummaries) 
1148              (mkNodeMap rootSummaries)
1149      where
1150         old_summary_map :: NodeMap ModSummary
1151         old_summary_map = mkNodeMap old_summaries
1152
1153         getRootSummary :: FilePath -> IO ModSummary
1154         getRootSummary file
1155            | isHaskellSrcFilename file
1156            = do exists <- doesFileExist file
1157                 if exists then summariseFile dflags file else do
1158                 throwDyn (CmdLineError ("can't find file `" ++ file ++ "'"))    
1159            | otherwise
1160            = do exists <- doesFileExist hs_file
1161                 if exists then summariseFile dflags hs_file else do
1162                 exists <- doesFileExist lhs_file
1163                 if exists then summariseFile dflags lhs_file else do
1164                 let mod_name = mkModule file
1165                 maybe_summary <- summarise dflags emptyNodeMap Nothing False 
1166                                            mod_name excl_mods
1167                 case maybe_summary of
1168                    Nothing -> packageModErr mod_name
1169                    Just s  -> return s
1170            where 
1171                  hs_file = file ++ ".hs"
1172                  lhs_file = file ++ ".lhs"
1173
1174         -- In a root module, the filename is allowed to diverge from the module
1175         -- name, so we have to check that there aren't multiple root files
1176         -- defining the same module (otherwise the duplicates will be silently
1177         -- ignored, leading to confusing behaviour).
1178         checkDuplicates :: [ModSummary] -> IO ()
1179         checkDuplicates summaries = mapM_ check summaries
1180           where check summ = 
1181                   case dups of
1182                         []     -> return ()
1183                         [_one] -> return ()
1184                         many   -> multiRootsErr modl many
1185                    where modl = ms_mod summ
1186                          dups = 
1187                            [ fromJust (ml_hs_file (ms_location summ'))
1188                            | summ' <- summaries, ms_mod summ' == modl ]
1189
1190         loop :: [(FilePath,Module,IsBootInterface)]     -- Work list: process these modules
1191              -> NodeMap ModSummary      -- Visited set
1192              -> IO [ModSummary]         -- The result includes the worklist, except 
1193                                         -- for those mentioned in the visited set
1194         loop [] done      = return (nodeMapElts done)
1195         loop ((cur_path, wanted_mod, is_boot) : ss) done 
1196           | key `elemFM` done = loop ss done
1197           | otherwise         = do { mb_s <- summarise dflags old_summary_map 
1198                                                  (Just cur_path) is_boot 
1199                                                  wanted_mod excl_mods
1200                                    ; case mb_s of
1201                                         Nothing -> loop ss done
1202                                         Just s  -> loop (msImports s ++ ss) 
1203                                                         (addToFM done key s) }
1204           where
1205             key = (wanted_mod, if is_boot then HsBootFile else HsSrcFile)
1206
1207 msImports :: ModSummary -> [(FilePath,          -- Importing module
1208                              Module,            -- Imported module
1209                              IsBootInterface)]   -- {-# SOURCE #-} import or not
1210 msImports s =  [(f, m,True)  | m <- ms_srcimps s] 
1211             ++ [(f, m,False) | m <- ms_imps    s] 
1212         where
1213           f = msHsFilePath s    -- Keep the importing module for error reporting
1214
1215
1216 -----------------------------------------------------------------------------
1217 -- Summarising modules
1218
1219 -- We have two types of summarisation:
1220 --
1221 --    * Summarise a file.  This is used for the root module(s) passed to
1222 --      cmLoadModules.  The file is read, and used to determine the root
1223 --      module name.  The module name may differ from the filename.
1224 --
1225 --    * Summarise a module.  We are given a module name, and must provide
1226 --      a summary.  The finder is used to locate the file in which the module
1227 --      resides.
1228
1229 summariseFile :: DynFlags -> FilePath -> IO ModSummary
1230 -- Used for Haskell source only, I think
1231 -- We know the file name, and we know it exists,
1232 -- but we don't necessarily know the module name (might differ)
1233 summariseFile dflags file
1234    = do (dflags', hspp_fn) <- preprocess dflags file
1235                 -- The dflags' contains the OPTIONS pragmas
1236
1237         -- Read the file into a buffer.  We're going to cache
1238         -- this buffer in the ModLocation (ml_hspp_buf) so that it
1239         -- doesn't have to be slurped again when hscMain parses the
1240         -- file later.
1241         buf <- hGetStringBuffer hspp_fn
1242         (srcimps,the_imps,mod) <- getImports dflags' buf hspp_fn
1243
1244         -- Make a ModLocation for this file
1245         location <- mkHomeModLocation mod file
1246
1247         -- Tell the Finder cache where it is, so that subsequent calls
1248         -- to findModule will find it, even if it's not on any search path
1249         addHomeModuleToFinder mod location
1250
1251         src_timestamp <- getModificationTime file
1252         return (ModSummary { ms_mod = mod, ms_hsc_src = HsSrcFile,
1253                              ms_location = location,
1254                              ms_hspp_file = Just hspp_fn,
1255                              ms_hspp_buf  = Just buf,
1256                              ms_srcimps = srcimps, ms_imps = the_imps,
1257                              ms_hs_date = src_timestamp })
1258
1259 -- Summarise a module, and pick up source and timestamp.
1260 summarise :: DynFlags 
1261           -> NodeMap ModSummary -- Map of old summaries
1262           -> Maybe FilePath     -- Importing module (for error messages)
1263           -> IsBootInterface    -- True <=> a {-# SOURCE #-} import
1264           -> Module             -- Imported module to be summarised
1265           -> [Module]           -- Modules to exclude
1266           -> IO (Maybe ModSummary)      -- Its new summary
1267
1268 summarise dflags old_summary_map cur_mod is_boot wanted_mod excl_mods
1269   | wanted_mod `elem` excl_mods
1270   = return Nothing
1271
1272   | Just old_summary <- lookupFM old_summary_map (wanted_mod, hsc_src)
1273   = do  {       -- Find its new timestamp; all the 
1274                 -- ModSummaries in the old map have valid ml_hs_files
1275            let location = ms_location old_summary
1276                src_fn = fromJust (ml_hs_file location)
1277
1278         ;  src_timestamp <- getModificationTime src_fn
1279
1280                 -- return the cached summary if the source didn't change
1281         ; if ms_hs_date old_summary == src_timestamp 
1282           then return (Just old_summary)
1283           else new_summary location
1284         }
1285
1286   | otherwise
1287   = do  { found <- findModule dflags wanted_mod True {-explicit-}
1288         ; case found of
1289              Found location pkg 
1290                 | not (isHomePackage pkg)      -> return Nothing        -- Drop external-pkg
1291                 | isJust (ml_hs_file location) -> new_summary location  -- Home package
1292              err        -> noModError dflags cur_mod wanted_mod err     -- Not found
1293         }
1294   where
1295     hsc_src = if is_boot then HsBootFile else HsSrcFile
1296
1297     new_summary location
1298       = do {    -- Adjust location to point to the hs-boot source file, 
1299                 -- hi file, object file, when is_boot says so
1300           let location' | is_boot   = addBootSuffixLocn location
1301                         | otherwise = location
1302               src_fn = fromJust (ml_hs_file location')
1303
1304                 -- Check that it exists
1305                 -- It might have been deleted since the Finder last found it
1306         ; exists <- doesFileExist src_fn
1307         ; if exists then return () else noHsFileErr cur_mod src_fn
1308
1309         -- Preprocess the source file and get its imports
1310         -- The dflags' contains the OPTIONS pragmas
1311         ; (dflags', hspp_fn) <- preprocess dflags src_fn
1312         ; buf <- hGetStringBuffer hspp_fn
1313         ; (srcimps, the_imps, mod_name) <- getImports dflags' buf hspp_fn
1314
1315         ; when (mod_name /= wanted_mod) $
1316                 throwDyn (ProgramError 
1317                    (showSDoc (text src_fn
1318                               <>  text ": file name does not match module name"
1319                               <+> quotes (ppr mod_name))))
1320
1321                 -- Find its timestamp, and return the summary
1322         ; src_timestamp <- getModificationTime src_fn
1323         ; return (Just ( ModSummary { ms_mod       = wanted_mod, 
1324                                       ms_hsc_src   = hsc_src,
1325                                       ms_location  = location',
1326                                       ms_hspp_file = Just hspp_fn,
1327                                       ms_hspp_buf  = Just buf,
1328                                       ms_srcimps   = srcimps,
1329                                       ms_imps      = the_imps,
1330                                       ms_hs_date   = src_timestamp }))
1331         }
1332
1333
1334 -----------------------------------------------------------------------------
1335 --                      Error messages
1336 -----------------------------------------------------------------------------
1337
1338 noModError :: DynFlags -> Maybe FilePath -> Module -> FindResult -> IO ab
1339 -- ToDo: we don't have a proper line number for this error
1340 noModError dflags cur_mod wanted_mod err
1341   = throwDyn $ ProgramError $ showSDoc $
1342     vcat [cantFindError dflags wanted_mod err,
1343           nest 2 (parens (pp_where cur_mod))]
1344                                 
1345 noHsFileErr cur_mod path
1346   = throwDyn $ CmdLineError $ showSDoc $
1347     vcat [text "Can't find" <+> text path,
1348           nest 2 (parens (pp_where cur_mod))]
1349  
1350 pp_where Nothing  = text "one of the roots of the dependency analysis"
1351 pp_where (Just p) = text "imported from" <+> text p
1352
1353 packageModErr mod
1354   = throwDyn (CmdLineError (showSDoc (text "module" <+>
1355                                    quotes (ppr mod) <+>
1356                                    text "is a package module")))
1357
1358 multiRootsErr mod files
1359   = throwDyn (ProgramError (showSDoc (
1360         text "module" <+> quotes (ppr mod) <+> 
1361         text "is defined in multiple files:" <+>
1362         sep (map text files))))
1363
1364 cyclicModuleErr :: [ModSummary] -> SDoc
1365 cyclicModuleErr ms
1366   = hang (ptext SLIT("Module imports form a cycle for modules:"))
1367        2 (vcat (map show_one ms))
1368   where
1369     show_one ms = sep [ show_mod (ms_hsc_src ms) (ms_mod ms),
1370                         nest 2 $ ptext SLIT("imports:") <+> 
1371                                    (pp_imps HsBootFile (ms_srcimps ms)
1372                                    $$ pp_imps HsSrcFile  (ms_imps ms))]
1373     show_mod hsc_src mod = ppr mod <> text (hscSourceString hsc_src)
1374     pp_imps src mods = fsep (map (show_mod src) mods)
1375 \end{code}
1376