b724e3726b13de1c4cd180c65a0618619c52b034
[ghc-hetmet.git] / ghc / compiler / rename / RnIfaces.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[RnIfaces]{Cacheing and Renaming of Interfaces}
5
6 \begin{code}
7 module RnIfaces (
8         findAndReadIface, 
9
10         getInterfaceExports, getDeferredDecls,
11         getImportedInstDecls, getImportedRules,
12         lookupFixityRn, loadHomeInterface,
13         importDecl, ImportDeclResult(..), recordLocalSlurps, loadBuiltinRules,
14         mkImportExportInfo, getSlurped, 
15
16         checkModUsage, outOfDate, upToDate,
17
18         getDeclBinders, getDeclSysBinders,
19         removeContext           -- removeContext probably belongs somewhere else
20     ) where
21
22 #include "HsVersions.h"
23
24 import CmdLineOpts      ( opt_NoPruneDecls, opt_NoPruneTyDecls, opt_IgnoreIfacePragmas )
25 import HsSyn            ( HsDecl(..), TyClDecl(..), InstDecl(..), IfaceSig(..), 
26                           HsType(..), ConDecl(..), IE(..), ConDetails(..), Sig(..),
27                           ForeignDecl(..), ForKind(..), isDynamicExtName,
28                           FixitySig(..), RuleDecl(..),
29                           isClassOpSig, DeprecDecl(..)
30                         )
31 import HsImpExp         ( ieNames )
32 import CoreSyn          ( CoreRule )
33 import BasicTypes       ( Version, NewOrData(..) )
34 import RdrHsSyn         ( RdrNameHsDecl, RdrNameInstDecl, RdrNameRuleDecl,
35                           RdrNameDeprecation, RdrNameIE,
36                           extractHsTyRdrNames 
37                         )
38 import RnEnv
39 import RnMonad
40 import ParseIface       ( parseIface, IfaceStuff(..) )
41
42 import Name             ( Name {-instance NamedThing-}, nameOccName,
43                           nameModule, isLocallyDefined, 
44                           isWiredInName, NamedThing(..),
45                           elemNameEnv, extendNameEnv
46                          )
47 import Module           ( Module, mkVanillaModule, pprModuleName,
48                           moduleName, isLocalModule,
49                           ModuleName, WhereFrom(..),
50                         )
51 import RdrName          ( RdrName, rdrNameOcc )
52 import NameSet
53 import SrcLoc           ( mkSrcLoc, SrcLoc )
54 import PrelInfo         ( cCallishTyKeys )
55 import Maybes           ( maybeToBool )
56 import Unique           ( Uniquable(..) )
57 import StringBuffer     ( hGetStringBuffer )
58 import FastString       ( mkFastString )
59 import ErrUtils         ( Message )
60 import Util             ( sortLt )
61 import Lex
62 import FiniteMap
63 import Outputable
64 import Bag
65
66 import List     ( nub )
67 \end{code}
68
69
70 %*********************************************************
71 %*                                                      *
72 \subsection{Loading a new interface file}
73 %*                                                      *
74 %*********************************************************
75
76 \begin{code}
77 loadHomeInterface :: SDoc -> Name -> RnM d Ifaces
78 loadHomeInterface doc_str name
79   = loadInterface doc_str (moduleName (nameModule name)) ImportBySystem
80
81 loadOrphanModules :: [ModuleName] -> RnM d ()
82 loadOrphanModules mods
83   | null mods = returnRn ()
84   | otherwise = traceRn (text "Loading orphan modules:" <+> 
85                          fsep (map pprModuleName mods))         `thenRn_` 
86                 mapRn_ load mods                                `thenRn_`
87                 returnRn ()
88   where
89     load mod   = loadInterface (mk_doc mod) mod ImportBySystem
90     mk_doc mod = pprModuleName mod <+> ptext SLIT("is a orphan-instance module")
91            
92
93 loadInterface :: SDoc -> ModuleName -> WhereFrom -> RnM d Ifaces
94 loadInterface doc mod from 
95   = tryLoadInterface doc mod from       `thenRn` \ (ifaces, maybe_err) ->
96     case maybe_err of
97         Nothing  -> returnRn ifaces
98         Just err -> failWithRn ifaces err
99
100 tryLoadInterface :: SDoc -> ModuleName -> WhereFrom -> RnM d (Ifaces, Maybe Message)
101         -- Returns (Just err) if an error happened
102         -- Guarantees to return with iImpModInfo m --> (... Just cts)
103         -- (If the load fails, we plug in a vanilla placeholder
104 tryLoadInterface doc_str mod_name from
105  = getIfacesRn                  `thenRn` \ ifaces ->
106    let
107         mod_map  = iImpModInfo ifaces
108         mod_info = lookupFM mod_map mod_name
109
110         hi_boot_file 
111           = case (from, mod_info) of
112                 (ImportByUser,       _)                -> False         -- Not hi-boot
113                 (ImportByUserSource, _)                -> True          -- hi-boot
114                 (ImportBySystem, Just (_, is_boot, _)) -> is_boot       -- 
115                 (ImportBySystem, Nothing)              -> False
116                         -- We're importing a module we know absolutely
117                         -- nothing about, so we assume it's from
118                         -- another package, where we aren't doing 
119                         -- dependency tracking. So it won't be a hi-boot file.
120
121         redundant_source_import 
122           = case (from, mod_info) of 
123                 (ImportByUserSource, Just (_,False,_)) -> True
124                 other                                  -> False
125    in
126         -- CHECK WHETHER WE HAVE IT ALREADY
127    case mod_info of {
128         Just (_, _, True)
129                 ->      -- We're read it already so don't re-read it
130                     returnRn (ifaces, Nothing) ;
131
132         _ ->
133
134         -- Issue a warning for a redundant {- SOURCE -} import
135         -- NB that we arrange to read all the ordinary imports before 
136         -- any of the {- SOURCE -} imports
137    warnCheckRn  (not redundant_source_import)
138                 (warnRedundantSourceImport mod_name)    `thenRn_`
139
140         -- READ THE MODULE IN
141    findAndReadIface doc_str mod_name hi_boot_file   `thenRn` \ read_resultb ->
142    case read_result of {
143         Left err ->     -- Not found, so add an empty export env to the Ifaces map
144                         -- so that we don't look again
145            let
146                 new_mod_map = addToFM mod_map mod_name (False, False, True)
147                 new_ifaces  = ifaces { iImpModInfo = new_mod_map }
148            in
149            setIfacesRn new_ifaces               `thenRn_`
150            returnRn (new_ifaces, Just err) ;
151
152         -- Found and parsed!
153         Right (mod, iface) ->
154
155         -- LOAD IT INTO Ifaces
156
157         -- NB: *first* we do loadDecl, so that the provenance of all the locally-defined
158         ---    names is done correctly (notably, whether this is an .hi file or .hi-boot file).
159         --     If we do loadExport first the wrong info gets into the cache (unless we
160         --      explicitly tag each export which seems a bit of a bore)
161
162
163         -- Sanity check.  If we're system-importing a module we know nothing at all
164         -- about, it should be from a different package to this one
165     WARN( not (maybeToBool mod_info) && 
166           case from of { ImportBySystem -> True; other -> False } &&
167           isLocalModule mod,
168           ppr mod )
169
170     loadDecls mod               (iDecls ifaces)   (pi_decls iface)      `thenRn` \ (decls_vers, new_decls) ->
171     loadRules mod               (iRules ifaces)   (pi_rules iface)      `thenRn` \ (rule_vers, new_rules) ->
172     loadFixDecls mod_name                         (pi_fixity iface)     `thenRn` \ (fix_vers, fix_env) ->
173     foldlRn (loadDeprec mod)    emptyDeprecEnv    (pi_deprecs iface)    `thenRn` \ deprec_env ->
174     foldlRn (loadInstDecl mod)  (iInsts ifaces)   (pi_insts iface)      `thenRn` \ new_insts ->
175     loadExports                                   (pi_exports iface)    `thenRn` \ avails ->
176     let
177         version = VersionInfo { modVers  = pi_vers iface, 
178                                 fixVers  = fix_vers,
179                                 ruleVers = rule_vers,
180                                 declVers = decl_vers }
181
182         -- For an explicit user import, add to mod_map info about
183         -- the things the imported module depends on, extracted
184         -- from its usage info.
185         mod_map1 = case from of
186                         ImportByUser -> addModDeps mod (pi_usages iface) mod_map
187                         other        -> mod_map
188         mod_map2 = addToFM mod_map1 mod_name (pi_orphan iface, hi_boot_file, True)
189
190         -- Now add info about this module to the PST
191         new_pst     = extendModuleEnv pst mod mod_detils
192         mod_details = ModDetails { mdModule = mod, mvVersion = version,
193                                    mdExports = avails,
194                                    mdFixEnv = fix_env, mdDeprecEnv = deprec_env }
195
196         new_ifaces = ifaces { iPST        = new_pst,
197                               iDecls      = new_decls,
198                               iInsts      = new_insts,
199                               iRules      = new_rules,
200                               iImpModInfo = mod_map2  }
201     in
202     setIfacesRn new_ifaces              `thenRn_`
203     returnRn (new_ifaces, Nothing)
204     }}
205
206 -----------------------------------------------------
207 --      Adding module dependencies from the 
208 --      import decls in the interface file
209 -----------------------------------------------------
210
211 addModDeps :: Module -> PackageSymbolTable -> [ImportVersion a] 
212            -> ImportedModuleInfo -> ImportedModuleInfo
213 -- (addModDeps M ivs deps)
214 -- We are importing module M, and M.hi contains 'import' decls given by ivs
215 addModDeps mod new_deps mod_deps
216   = foldr add mod_deps filtered_new_deps
217   where
218         -- Don't record dependencies when importing a module from another package
219         -- Except for its descendents which contain orphans,
220         -- and in that case, forget about the boot indicator
221     filtered_new_deps :: (ModuleName, (WhetherHasOrphans, IsBootInterface))
222     filtered_new_deps
223         | isLocalModule mod = [ (imp_mod, (has_orphans, is_boot, False))
224                               | (imp_mod, has_orphans, is_boot, _) <- new_deps 
225                               ]                       
226         | otherwise         = [ (imp_mod, (True, False, False))
227                               | (imp_mod, has_orphans, _, _) <- new_deps, 
228                                 has_orphans
229                               ]
230     add (imp_mod, dep) deps = addToFM_C combine deps imp_mod dep
231
232     combine old@(_, old_is_boot, old_is_loaded) new
233         | old_is_loaded || not old_is_boot = old        -- Keep the old info if it's already loaded
234                                                         -- or if it's a non-boot pending load
235         | otherwise                         = new       -- Otherwise pick new info
236
237
238 -----------------------------------------------------
239 --      Loading the export list
240 -----------------------------------------------------
241
242 loadExports :: [ExportItem] -> RnM d Avails
243 loadExports items
244   = getModuleRn                                 `thenRn` \ this_mod ->
245     mapRn (loadExport this_mod) items           `thenRn` \ avails_s ->
246     returnRn (concat avails_s)
247
248
249 loadExport :: Module -> ExportItem -> RnM d [AvailInfo]
250 loadExport this_mod (mod, entities)
251   | mod == moduleName this_mod = returnRn []
252         -- If the module exports anything defined in this module, just ignore it.
253         -- Reason: otherwise it looks as if there are two local definition sites
254         -- for the thing, and an error gets reported.  Easiest thing is just to
255         -- filter them out up front. This situation only arises if a module
256         -- imports itself, or another module that imported it.  (Necessarily,
257         -- this invoves a loop.)  Consequence: if you say
258         --      module A where
259         --         import B( AType )
260         --         type AType = ...
261         --
262         --      module B( AType ) where
263         --         import {-# SOURCE #-} A( AType )
264         --
265         -- then you'll get a 'B does not export AType' message.  A bit bogus
266         -- but it's a bogus thing to do!
267
268   | otherwise
269   = mapRn (load_entity mod) entities
270   where
271     new_name mod occ = newGlobalName mod occ
272
273     load_entity mod (Avail occ)
274       = new_name mod occ        `thenRn` \ name ->
275         returnRn (Avail name)
276     load_entity mod (AvailTC occ occs)
277       = new_name mod occ              `thenRn` \ name ->
278         mapRn (new_name mod) occs     `thenRn` \ names ->
279         returnRn (AvailTC name names)
280
281
282 -----------------------------------------------------
283 --      Loading type/class/value decls
284 -----------------------------------------------------
285
286 loadDecls :: Module 
287           -> DeclsMap
288           -> [(Version, RdrNameHsDecl)]
289           -> RnM d (NameEnv Version, DeclsMap)
290 loadDecls mod decls_map decls
291   = foldlRn (loadDecl mod) (emptyNameEnv, decls_map) decls
292
293 loadDecl :: Module 
294          -> (NameEnv Version, DeclsMap)
295          -> (Version, RdrNameHsDecl)
296          -> RnM d (NameEnv Version, DeclsMap)
297 loadDecl mod (version_map, decls_map) (version, decl)
298   = getDeclBinders new_name decl        `thenRn` \ maybe_avail ->
299     case maybe_avail of {
300         Nothing    -> returnRn (version_map, decls_map);        -- No bindings
301         Just avail -> 
302
303     getDeclSysBinders new_name decl     `thenRn` \ sys_bndrs ->
304     let
305         full_avail    = addSysAvails avail sys_bndrs
306                 -- Add the sys-binders to avail.  When we import the decl,
307                 -- it's full_avail that will get added to the 'already-slurped' set (iSlurp)
308                 -- If we miss out sys-binders, we'll read the decl multiple times!
309
310         main_name     = availName avail
311         new_decls_map = foldl add_decl decls_map
312                                        [ (name, (full_avail, name==main_name, (mod, decl'))) 
313                                        | name <- availNames full_avail]
314         add_decl decls_map (name, stuff)
315           = WARN( name `elemNameEnv` decls_map, ppr name )
316             extendNameEnv decls_map name stuff
317
318         new_version_map = extendNameEnv version_map main_name version
319     in
320     returnRn (new_version_map, new_decls_map)
321     }
322   where
323         -- newTopBinder puts into the cache the binder with the
324         -- module information set correctly.  When the decl is later renamed,
325         -- the binding site will thereby get the correct module.
326         -- There maybe occurrences that don't have the correct Module, but
327         -- by the typechecker will propagate the binding definition to all 
328         -- the occurrences, so that doesn't matter
329     new_name rdr_name loc = newTopBinder mod rdr_name loc
330
331     {-
332       If a signature decl is being loaded, and optIgnoreIfacePragmas is on,
333       we toss away unfolding information.
334
335       Also, if the signature is loaded from a module we're importing from source,
336       we do the same. This is to avoid situations when compiling a pair of mutually
337       recursive modules, peering at unfolding info in the interface file of the other, 
338       e.g., you compile A, it looks at B's interface file and may as a result change
339       its interface file. Hence, B is recompiled, maybe changing its interface file,
340       which will the unfolding info used in A to become invalid. Simple way out is to
341       just ignore unfolding info.
342
343       [Jan 99: I junked the second test above.  If we're importing from an hi-boot
344        file there isn't going to *be* any pragma info.  Maybe the above comment
345        dates from a time where we picked up a .hi file first if it existed?]
346     -}
347     decl' = case decl of
348                SigD (IfaceSig name tp ls loc) | opt_IgnoreIfacePragmas
349                          ->  SigD (IfaceSig name tp [] loc)
350                other     -> decl
351
352 -----------------------------------------------------
353 --      Loading fixity decls
354 -----------------------------------------------------
355
356 loadFixDecls mod_name (version, decls)
357   | null decls = returnRn (version, emptyNameEnv)
358
359   | otherwise
360   = mapRn (loadFixDecl mod_name) decls  `thenRn` \ to_add ->
361     returnRn (version, mkNameEnv to_add)
362
363 loadFixDecl mod_name sig@(FixitySig rdr_name fixity loc)
364   = newGlobalName mod_name (rdrNameOcc rdr_name)        `thenRn` \ name ->
365     returnRn (name, FixitySig name fixity loc)
366
367
368 -----------------------------------------------------
369 --      Loading instance decls
370 -----------------------------------------------------
371
372 loadInstDecl :: Module
373              -> IfaceInsts
374              -> RdrNameInstDecl
375              -> RnM d IfaceInsts
376 loadInstDecl mod insts decl@(InstDecl inst_ty binds uprags dfun_name src_loc)
377   = 
378         -- Find out what type constructors and classes are "gates" for the
379         -- instance declaration.  If all these "gates" are slurped in then
380         -- we should slurp the instance decl too.
381         -- 
382         -- We *don't* want to count names in the context part as gates, though.
383         -- For example:
384         --              instance Foo a => Baz (T a) where ...
385         --
386         -- Here the gates are Baz and T, but *not* Foo.
387     let 
388         munged_inst_ty = removeContext inst_ty
389         free_names     = extractHsTyRdrNames munged_inst_ty
390     in
391     setModuleRn mod $
392     mapRn lookupOrigName free_names     `thenRn` \ gate_names ->
393     returnRn ((mkNameSet gate_names, (mod, InstD decl)) `consBag` insts)
394
395
396 -- In interface files, the instance decls now look like
397 --      forall a. Foo a -> Baz (T a)
398 -- so we have to strip off function argument types as well
399 -- as the bit before the '=>' (which is always empty in interface files)
400 removeContext (HsForAllTy tvs cxt ty) = HsForAllTy tvs [] (removeFuns ty)
401 removeContext ty                      = removeFuns ty
402
403 removeFuns (HsFunTy _ ty) = removeFuns ty
404 removeFuns ty               = ty
405
406
407 -----------------------------------------------------
408 --      Loading Rules
409 -----------------------------------------------------
410
411 loadRules :: Module -> IfaceRules 
412           -> (Version, [RdrNameRuleDecl])
413           -> RnM d (Version, IfaceRules)
414 loadRules mod rule_bag (version, rules)
415   | null rules || opt_IgnoreIfacePragmas 
416   = returnRn (version, rule_bag)
417   | otherwise
418   = setModuleRn mod                     $
419     mapRn (loadRule mod) rules          `thenRn` \ new_rules ->
420     returnRn (version, rule_bag `unionBags` listToBag new_rules)
421
422 loadRule :: Module -> RdrNameRuleDecl -> RnM d GatedDecl
423 -- "Gate" the rule simply by whether the rule variable is
424 -- needed.  We can refine this later.
425 loadRule mod decl@(IfaceRule _ _ var _ _ src_loc)
426   = lookupOrigName var          `thenRn` \ var_name ->
427     returnRn (unitNameSet var_name, (mod, RuleD decl))
428
429 loadBuiltinRules :: [(RdrName, CoreRule)] -> RnMG ()
430 loadBuiltinRules builtin_rules
431   = getIfacesRn                         `thenRn` \ ifaces ->
432     mapRn loadBuiltinRule builtin_rules `thenRn` \ rule_decls ->
433     setIfacesRn (ifaces { iRules = iRules ifaces `unionBags` listToBag rule_decls })
434
435 loadBuiltinRule (var, rule)
436   = lookupOrigName var          `thenRn` \ var_name ->
437     returnRn (unitNameSet var_name, (nameModule var_name, RuleD (IfaceRuleOut var rule)))
438
439
440 -----------------------------------------------------
441 --      Loading Deprecations
442 -----------------------------------------------------
443
444 loadDeprec :: Module -> DeprecationEnv -> RdrNameDeprecation -> RnM d DeprecationEnv
445 loadDeprec mod deprec_env (Deprecation (IEModuleContents _) txt _)
446   = traceRn (text "module deprecation not yet implemented:" <+> ppr mod <> colon <+> ppr txt) `thenRn_`
447         -- SUP: TEMPORARY HACK, ignoring module deprecations for now
448     returnRn deprec_env
449
450 loadDeprec mod deprec_env (Deprecation ie txt _)
451   = setModuleRn mod                                     $
452     mapRn lookupOrigName (ieNames ie)           `thenRn` \ names ->
453     traceRn (text "loaded deprecation(s) for" <+> hcat (punctuate comma (map ppr names)) <> colon <+> ppr txt) `thenRn_`
454     returnRn (extendNameEnvList deprec_env (zip names (repeat txt)))
455 \end{code}
456
457
458 %********************************************************
459 %*                                                      *
460 \subsection{Checking usage information}
461 %*                                                      *
462 %********************************************************
463
464 \begin{code}
465 upToDate  = True
466 outOfDate = False
467
468 checkModUsage :: [ImportVersion OccName] -> RnMG Bool
469 -- Given the usage information extracted from the old
470 -- M.hi file for the module being compiled, figure out
471 -- whether M needs to be recompiled.
472
473 checkModUsage [] = returnRn upToDate            -- Yes!  Everything is up to date!
474
475 checkModUsage ((mod_name, _, _, NothingAtAll) : rest)
476         -- If CurrentModule.hi contains 
477         --      import Foo :: ;
478         -- then that simply records that Foo lies below CurrentModule in the
479         -- hierarchy, but CurrentModule doesn't depend in any way on Foo.
480         -- In this case we don't even want to open Foo's interface.
481   = traceRn (ptext SLIT("Nothing used from:") <+> ppr mod_name) `thenRn_`
482     checkModUsage rest  -- This one's ok, so check the rest
483
484 checkModUsage ((mod_name, _, _, whats_imported)  : rest)
485   = tryLoadInterface doc_str mod_name ImportBySystem    `thenRn` \ (ifaces, maybe_err) ->
486     case maybe_err of {
487         Just err -> out_of_date (sep [ptext SLIT("Can't find version number for module"), 
488                                       pprModuleName mod_name]) ;
489                 -- Couldn't find or parse a module mentioned in the
490                 -- old interface file.  Don't complain -- it might just be that
491                 -- the current module doesn't need that import and it's been deleted
492
493         Nothing -> 
494     let
495         (_, new_mod_vers, new_fix_vers, new_rule_vers, _, _) 
496                 = case lookupFM (iImpModInfo ifaces) mod_name of
497                            Just (_, _, Just stuff) -> stuff
498
499         old_mod_vers = case whats_imported of
500                          Everything v        -> v
501                          Specifically v _ _ _ -> v
502                          -- NothingAtAll case dealt with by previous eqn for checkModUsage
503     in
504         -- If the module version hasn't changed, just move on
505     if new_mod_vers == old_mod_vers then
506         traceRn (sep [ptext SLIT("Module version unchanged:"), pprModuleName mod_name])
507         `thenRn_` checkModUsage rest
508     else
509     traceRn (sep [ptext SLIT("Module version has changed:"), pprModuleName mod_name])
510     `thenRn_`
511         -- Module version changed, so check entities inside
512
513         -- If the usage info wants to say "I imported everything from this module"
514         --     it does so by making whats_imported equal to Everything
515         -- In that case, we must recompile
516     case whats_imported of {    -- NothingAtAll dealt with earlier
517         
518       Everything _ 
519         -> out_of_date (ptext SLIT("...and I needed the whole module")) ;
520
521       Specifically _ old_fix_vers old_rule_vers old_local_vers ->
522
523     if old_fix_vers /= new_fix_vers then
524         out_of_date (ptext SLIT("Fixities changed"))
525     else if old_rule_vers /= new_rule_vers then
526         out_of_date (ptext SLIT("Rules changed"))
527     else        
528         -- Non-empty usage list, so check item by item
529     checkEntityUsage mod_name (iDecls ifaces) old_local_vers    `thenRn` \ up_to_date ->
530     if up_to_date then
531         traceRn (ptext SLIT("...but the bits I use haven't."))  `thenRn_`
532         checkModUsage rest      -- This one's ok, so check the rest
533     else
534         returnRn outOfDate      -- This one failed, so just bail out now
535     }}
536   where
537     doc_str = sep [ptext SLIT("need version info for"), pprModuleName mod_name]
538
539
540 checkEntityUsage mod decls [] 
541   = returnRn upToDate   -- Yes!  All up to date!
542
543 checkEntityUsage mod decls ((occ_name,old_vers) : rest)
544   = newGlobalName mod occ_name  `thenRn` \ name ->
545     case lookupNameEnv decls name of
546
547         Nothing       ->        -- We used it before, but it ain't there now
548                           out_of_date (sep [ptext SLIT("No longer exported:"), ppr name])
549
550         Just (new_vers,_,_,_)   -- It's there, but is it up to date?
551                 | new_vers == old_vers
552                         -- Up to date, so check the rest
553                 -> checkEntityUsage mod decls rest
554
555                 | otherwise
556                         -- Out of date, so bale out
557                 -> out_of_date (sep [ptext SLIT("Out of date:"), ppr name])
558
559 out_of_date msg = traceRn msg `thenRn_` returnRn outOfDate
560 \end{code}
561
562
563 %*********************************************************
564 %*                                                      *
565 \subsection{Getting in a declaration}
566 %*                                                      *
567 %*********************************************************
568
569 \begin{code}
570 importDecl :: Name -> RnMG ImportDeclResult
571
572 data ImportDeclResult
573   = AlreadySlurped
574   | WiredIn     
575   | Deferred
576   | HereItIs (Module, RdrNameHsDecl)
577
578 importDecl name
579   = getIfacesRn                         `thenRn` \ ifaces ->
580     getHomeSymbolTableRn                `thenRn` \ hst ->
581     if name `elemNameSet` iSlurp ifaces
582     || inTypeEnv (iPST ifaces) name
583     || inTypeEnv hst           name
584     then        -- Already dealt with
585         returnRn AlreadySlurped 
586
587     else if isLocallyDefined name then  -- Don't bring in decls from
588                                         -- the renamed module's own interface file
589         addWarnRn (importDeclWarn name) `thenRn_`
590         returnRn AlreadySlurped
591
592     else if isWiredInName name then
593         -- When we find a wired-in name we must load its
594         -- home module so that we find any instance decls therein
595         loadHomeInterface doc name      `thenRn_`
596         returnRn WiredIn
597
598     else getNonWiredInDecl name
599   where
600     doc = ptext SLIT("need home module for wired in thing") <+> ppr name
601
602 getNonWiredInDecl :: Name -> RnMG ImportDeclResult
603 getNonWiredInDecl needed_name 
604   = traceRn doc_str                             `thenRn_`
605     loadHomeInterface doc_str needed_name       `thenRn` \ ifaces ->
606     case lookupNameEnv (iDecls ifaces) needed_name of
607
608       Just (version, avail, is_tycon_name, decl@(_, TyClD (TyData DataType _ _ _ _ ncons _ _ _ _ _)))
609         -- This case deals with deferred import of algebraic data types
610
611         |  not opt_NoPruneTyDecls
612
613         && (opt_IgnoreIfacePragmas || ncons > 1)
614                 -- We only defer if imported interface pragmas are ingored
615                 -- or if it's not a product type.
616                 -- Sole reason: The wrapper for a strict function may need to look
617                 -- inside its arg, and hence need to see its arg type's constructors.
618
619         && not (getUnique tycon_name `elem` cCallishTyKeys)
620                 -- Never defer ccall types; we have to unbox them, 
621                 -- and importing them does no harm
622
623         ->      -- OK, so we're importing a deferrable data type
624             if needed_name == tycon_name then   
625                 -- The needed_name is the TyCon of a data type decl
626                 -- Record that it's slurped, put it in the deferred set
627                 -- and don't return a declaration at all
628                 setIfacesRn (recordSlurp (ifaces {iDeferred = iDeferred ifaces 
629                                                               `addOneToNameSet` tycon_name})
630                                          version (AvailTC needed_name [needed_name]))   `thenRn_`
631                 returnRn Deferred
632             else
633                 -- The needed name is a constructor of a data type decl,
634                 -- getting a constructor, so remove the TyCon from the deferred set
635                 -- (if it's there) and return the full declaration
636                  setIfacesRn (recordSlurp (ifaces {iDeferred = iDeferred ifaces 
637                                                                `delFromNameSet` tycon_name})
638                                     version avail)      `thenRn_`
639                  returnRn (HereItIs decl)
640         where
641            tycon_name = availName avail
642
643       Just (version,avail,_,decl)
644         -> setIfacesRn (recordSlurp ifaces version avail)       `thenRn_`
645            returnRn (HereItIs decl)
646
647       Nothing 
648         -> addErrRn (getDeclErr needed_name)    `thenRn_` 
649            returnRn AlreadySlurped
650   where
651      doc_str = ptext SLIT("need decl for") <+> ppr needed_name
652
653 getDeferredDecls :: RnMG [(Module, RdrNameHsDecl)]
654 getDeferredDecls 
655   = getIfacesRn         `thenRn` \ ifaces ->
656     let
657         decls_map           = iDecls ifaces
658         deferred_names      = nameSetToList (iDeferred ifaces)
659         get_abstract_decl n = case lookupNameEnv decls_map n of
660                                  Just (_, _, _, decl) -> decl
661     in
662     traceRn (sep [text "getDeferredDecls", nest 4 (fsep (map ppr deferred_names))])     `thenRn_`
663     returnRn (map get_abstract_decl deferred_names)
664 \end{code}
665
666 @getWiredInDecl@ maps a wired-in @Name@ to what it makes available.
667 It behaves exactly as if the wired in decl were actually in an interface file.
668 Specifically,
669 \begin{itemize}
670 \item   if the wired-in name is a data type constructor or a data constructor, 
671         it brings in the type constructor and all the data constructors; and
672         marks as ``occurrences'' any free vars of the data con.
673
674 \item   similarly for synonum type constructor
675
676 \item   if the wired-in name is another wired-in Id, it marks as ``occurrences''
677         the free vars of the Id's type.
678
679 \item   it loads the interface file for the wired-in thing for the
680         sole purpose of making sure that its instance declarations are available
681 \end{itemize}
682 All this is necessary so that we know all types that are ``in play'', so
683 that we know just what instances to bring into scope.
684         
685
686
687     
688 %*********************************************************
689 %*                                                      *
690 \subsection{Getting what a module exports}
691 %*                                                      *
692 %*********************************************************
693
694 @getInterfaceExports@ is called only for directly-imported modules.
695
696 \begin{code}
697 getInterfaceExports :: ModuleName -> WhereFrom -> RnMG (Module, Avails)
698 getInterfaceExports mod_name from
699   = loadInterface doc_str mod_name from `thenRn` \ ifaces ->
700     case lookupFM (iImpModInfo ifaces) mod_name of
701         Just (_, _, Just (mod, _, _, _, _, avails)) -> returnRn (mod, avails)
702         -- loadInterface always puts something in the map
703         -- even if it's a fake
704   where
705     doc_str = sep [pprModuleName mod_name, ptext SLIT("is directly imported")]
706 \end{code}
707
708
709 %*********************************************************
710 %*                                                      *
711 \subsection{Instance declarations are handled specially}
712 %*                                                      *
713 %*********************************************************
714
715 \begin{code}
716 getImportedInstDecls :: NameSet -> RnMG [(Module,RdrNameHsDecl)]
717 getImportedInstDecls gates
718   =     -- First, load any orphan-instance modules that aren't aready loaded
719         -- Orphan-instance modules are recorded in the module dependecnies
720     getIfacesRn                                         `thenRn` \ ifaces ->
721     let
722         orphan_mods =
723           [mod | (mod, (True, _, Nothing)) <- fmToList (iImpModInfo ifaces)]
724     in
725     loadOrphanModules orphan_mods                       `thenRn_` 
726
727         -- Now we're ready to grab the instance declarations
728         -- Find the un-gated ones and return them, 
729         -- removing them from the bag kept in Ifaces
730     getIfacesRn                                         `thenRn` \ ifaces ->
731     let
732         (decls, new_insts) = selectGated gates (iInsts ifaces)
733     in
734     setIfacesRn (ifaces { iInsts = new_insts })         `thenRn_`
735
736     traceRn (sep [text "getImportedInstDecls:", 
737                   nest 4 (fsep (map ppr gate_list)),
738                   text "Slurped" <+> int (length decls) <+> text "instance declarations",
739                   nest 4 (vcat (map ppr_brief_inst_decl decls))])       `thenRn_`
740     returnRn decls
741   where
742     gate_list      = nameSetToList gates
743
744 ppr_brief_inst_decl (mod, InstD (InstDecl inst_ty _ _ _ _))
745   = case inst_ty of
746         HsForAllTy _ _ tau -> ppr tau
747         other              -> ppr inst_ty
748
749 getImportedRules :: RnMG [(Module,RdrNameHsDecl)]
750 getImportedRules 
751   | opt_IgnoreIfacePragmas = returnRn []
752   | otherwise
753   = getIfacesRn         `thenRn` \ ifaces ->
754     let
755         gates              = iSlurp ifaces      -- Anything at all that's been slurped
756         rules              = iRules ifaces
757         (decls, new_rules) = selectGated gates rules
758     in
759     if null decls then
760         returnRn []
761     else
762     setIfacesRn (ifaces { iRules = new_rules })              `thenRn_`
763     traceRn (sep [text "getImportedRules:", 
764                   text "Slurped" <+> int (length decls) <+> text "rules"])   `thenRn_`
765     returnRn decls
766
767 selectGated gates decl_bag
768         -- Select only those decls whose gates are *all* in 'gates'
769 #ifdef DEBUG
770   | opt_NoPruneDecls    -- Just to try the effect of not gating at all
771   = (foldrBag (\ (_,d) ds -> d:ds) [] decl_bag, emptyBag)       -- Grab them all
772
773   | otherwise
774 #endif
775   = foldrBag select ([], emptyBag) decl_bag
776   where
777     select (reqd, decl) (yes, no)
778         | isEmptyNameSet (reqd `minusNameSet` gates) = (decl:yes, no)
779         | otherwise                                  = (yes,      (reqd,decl) `consBag` no)
780
781 lookupFixityRn :: Name -> RnMS Fixity
782 lookupFixityRn name
783   | isLocallyDefined name
784   = getFixityEnv                        `thenRn` \ local_fix_env ->
785     returnRn (lookupLocalFixity local_fix_env name)
786
787   | otherwise   -- Imported
788       -- For imported names, we have to get their fixities by doing a loadHomeInterface,
789       -- and consulting the Ifaces that comes back from that, because the interface
790       -- file for the Name might not have been loaded yet.  Why not?  Suppose you import module A,
791       -- which exports a function 'f', which is defined in module B.  Then B isn't loaded
792       -- right away (after all, it's possible that nothing from B will be used).
793       -- When we come across a use of 'f', we need to know its fixity, and it's then,
794       -- and only then, that we load B.hi.  That is what's happening here.
795   = loadHomeInterface doc name          `thenRn` \ ifaces ->
796     getHomeSymbolTableRn                `thenRn` \ hst ->
797     returnRn (lookupFixityEnv hst name             `orElse`
798               lookupFixityEnv (iPST ifaces) name)  `orElse`
799               defaultFixity)
800   where
801     doc = ptext SLIT("Checking fixity for") <+> ppr name
802 \end{code}
803
804
805 %*********************************************************
806 %*                                                      *
807 \subsection{Keeping track of what we've slurped, and version numbers}
808 %*                                                      *
809 %*********************************************************
810
811 getImportVersions figures out what the ``usage information'' for this
812 moudule is; that is, what it must record in its interface file as the
813 things it uses.  It records:
814
815 \begin{itemize}
816 \item   (a) anything reachable from its body code
817 \item   (b) any module exported with a @module Foo@
818 \item   (c) anything reachable from an exported item
819 \end{itemize}
820
821 Why (b)?  Because if @Foo@ changes then this module's export list
822 will change, so we must recompile this module at least as far as
823 making a new interface file --- but in practice that means complete
824 recompilation.
825
826 Why (c)?  Consider this:
827 \begin{verbatim}
828         module A( f, g ) where  |       module B( f ) where
829           import B( f )         |         f = h 3
830           g = ...               |         h = ...
831 \end{verbatim}
832
833 Here, @B.f@ isn't used in A.  Should we nevertheless record @B.f@ in
834 @A@'s usages?  Our idea is that we aren't going to touch A.hi if it is
835 *identical* to what it was before.  If anything about @B.f@ changes
836 than anyone who imports @A@ should be recompiled in case they use
837 @B.f@ (they'll get an early exit if they don't).  So, if anything
838 about @B.f@ changes we'd better make sure that something in A.hi
839 changes, and the convenient way to do that is to record the version
840 number @B.f@ in A.hi in the usage list.  If B.f changes that'll force a
841 complete recompiation of A, which is overkill but it's the only way to 
842 write a new, slightly different, A.hi.
843
844 But the example is tricker.  Even if @B.f@ doesn't change at all,
845 @B.h@ may do so, and this change may not be reflected in @f@'s version
846 number.  But with -O, a module that imports A must be recompiled if
847 @B.h@ changes!  So A must record a dependency on @B.h@.  So we treat
848 the occurrence of @B.f@ in the export list *just as if* it were in the
849 code of A, and thereby haul in all the stuff reachable from it.
850
851 [NB: If B was compiled with -O, but A isn't, we should really *still*
852 haul in all the unfoldings for B, in case the module that imports A *is*
853 compiled with -O.  I think this is the case.]
854
855 Even if B is used at all we get a usage line for B
856         import B <n> :: ... ;
857 in A.hi, to record the fact that A does import B.  This is used to decide
858 to look to look for B.hi rather than B.hi-boot when compiling a module that
859 imports A.  This line says that A imports B, but uses nothing in it.
860 So we'll get an early bale-out when compiling A if B's version changes.
861
862 \begin{code}
863 mkImportExportInfo :: ModuleName                        -- Name of this module
864                    -> Avails                            -- Info about exports 
865                    -> Maybe [RdrNameIE]                 -- The export header
866                    -> RnMG ([ExportItem],               -- Export info for iface file; sorted
867                             [ImportVersion OccName])    -- Import info for iface file; sorted
868                         -- Both results are sorted into canonical order to
869                         -- reduce needless wobbling of interface files
870
871 mkImportExportInfo this_mod export_avails exports
872   = getIfacesRn                                 `thenRn` \ ifaces ->
873     let
874         export_all_mods = case exports of
875                                 Nothing -> []
876                                 Just es -> [mod | IEModuleContents mod <- es, 
877                                                   mod /= this_mod]
878
879         mod_map   = iImpModInfo ifaces
880         imp_names = iVSlurp     ifaces
881
882         -- mv_map groups together all the things imported from a particular module.
883         mv_map :: FiniteMap ModuleName [(OccName,Version)]
884         mv_map = foldr add_mv emptyFM imp_names
885
886         add_mv (name, version) mv_map = addItem mv_map (moduleName (nameModule name)) 
887                                                        (nameOccName name, version)
888
889         -- Build the result list by adding info for each module.
890         -- For (a) a library module, we don't record it at all unless it contains orphans
891         --         (We must never lose track of orphans.)
892         -- 
893         --     (b) a source-imported module, don't record the dependency at all
894         --      
895         -- (b) may seem a bit strange.  The idea is that the usages in a .hi file records
896         -- *all* the module's dependencies other than the loop-breakers.  We use
897         -- this info in findAndReadInterface to decide whether to look for a .hi file or
898         -- a .hi-boot file.  
899         --
900         -- This means we won't track version changes, or orphans, from .hi-boot files.
901         -- The former is potentially rather bad news.  It could be fixed by recording
902         -- whether something is a boot file along with the usage info for it, but 
903         -- I can't be bothered just now.
904
905         mk_imp_info mod_name (has_orphans, is_boot, contents) so_far
906            | mod_name == this_mod       -- Check if M appears in the set of modules 'below' M
907                                         -- This seems like a convenient place to check
908            = WARN( not is_boot, ptext SLIT("Wierd:") <+> ppr this_mod <+> 
909                                 ptext SLIT("imports itself (perhaps indirectly)") )
910              so_far
911  
912            | otherwise
913            = let
914                 go_for_it exports = (mod_name, has_orphans, is_boot, exports) 
915                                     : so_far
916              in 
917              case contents of
918                 Nothing ->      -- We didn't even open the interface
919                         -- This happens when a module, Foo, that we explicitly imported has 
920                         -- 'import Baz' in its interface file, recording that Baz is below
921                         -- Foo in the module dependency hierarchy.  We want to propagate this
922                         -- information.  The Nothing says that we didn't even open the interface
923                         -- file but we must still propagate the dependeny info.
924                         -- The module in question must be a local module (in the same package)
925                    go_for_it NothingAtAll
926
927                 Just (mod, mod_vers, fix_vers, rule_vers, how_imported, _)
928                    |  is_sys_import && is_lib_module && not has_orphans
929                    -> so_far            
930            
931                    |  is_lib_module                     -- Record the module but not detailed
932                    || mod_name `elem` export_all_mods   -- version information for the imports
933                    -> go_for_it (Everything mod_vers)
934
935                    |  otherwise
936                    -> case lookupFM mv_map mod_name of
937                         Just whats_imported -> go_for_it (Specifically mod_vers fix_vers rule_vers 
938                                                                        (sortImport whats_imported))
939                         Nothing             -> go_for_it NothingAtAll
940                                                 -- This happens if you have
941                                                 --      import Foo
942                                                 -- but don't actually *use* anything from Foo
943                                                 -- In which case record an empty dependency list
944                    where
945                      is_lib_module = not (isLocalModule mod)
946                      is_sys_import = case how_imported of
947                                         ImportBySystem -> True
948                                         other          -> False
949              
950
951         import_info = foldFM mk_imp_info [] mod_map
952
953         -- Sort exports into groups by module
954         export_fm :: FiniteMap ModuleName [RdrAvailInfo]
955         export_fm = foldr insert emptyFM export_avails
956
957         insert avail efm = addItem efm (moduleName (nameModule (availName avail)))
958                                        (rdrAvailInfo avail)
959
960         export_info = [(m, sortExport as) | (m,as) <- fmToList export_fm]
961     in
962     traceRn (text "Modules in Ifaces: " <+> fsep (map ppr (keysFM mod_map)))    `thenRn_`
963     returnRn (export_info, import_info)
964
965
966 addItem :: FiniteMap ModuleName [a] -> ModuleName -> a -> FiniteMap ModuleName [a]
967 addItem fm mod x = addToFM_C add_item fm mod [x]
968                  where
969                    add_item xs _ = x:xs
970
971 sortImport :: [(OccName,Version)] -> [(OccName,Version)]
972         -- Make the usage lists appear in canonical order
973 sortImport vs = sortLt lt vs
974               where
975                 lt (n1,v1) (n2,v2) = n1 < n2
976
977 sortExport :: [RdrAvailInfo] -> [RdrAvailInfo]
978 sortExport as = sortLt lt as
979               where
980                 lt a1 a2 = availName a1 < availName a2
981 \end{code}
982
983 \begin{code}
984 getSlurped
985   = getIfacesRn         `thenRn` \ ifaces ->
986     returnRn (iSlurp ifaces)
987
988 recordSlurp ifaces@(Ifaces { iSlurp = slurped_names, iVSlurp = imp_names })
989             version avail
990   = let
991         new_slurped_names = addAvailToNameSet slurped_names avail
992         new_imp_names = (availName avail, version) : imp_names
993     in
994     ifaces { iSlurp  = new_slurped_names, iVSlurp = new_imp_names }
995
996 recordLocalSlurps local_avails
997   = getIfacesRn         `thenRn` \ ifaces ->
998     let
999         new_slurped_names = foldl addAvailToNameSet (iSlurp ifaces) local_avails
1000     in
1001     setIfacesRn (ifaces { iSlurp  = new_slurped_names })
1002 \end{code}
1003
1004
1005 %*********************************************************
1006 %*                                                      *
1007 \subsection{Getting binders out of a declaration}
1008 %*                                                      *
1009 %*********************************************************
1010
1011 @getDeclBinders@ returns the names for a @RdrNameHsDecl@.
1012 It's used for both source code (from @availsFromDecl@) and interface files
1013 (from @loadDecl@).
1014
1015 It doesn't deal with source-code specific things: @ValD@, @DefD@.  They
1016 are handled by the sourc-code specific stuff in @RnNames@.
1017
1018 \begin{code}
1019 getDeclBinders :: (RdrName -> SrcLoc -> RnM d Name)     -- New-name function
1020                 -> RdrNameHsDecl
1021                 -> RnM d (Maybe AvailInfo)
1022
1023 getDeclBinders new_name (TyClD (TyData _ _ tycon _ condecls _ _ _ src_loc _ _))
1024   = new_name tycon src_loc                      `thenRn` \ tycon_name ->
1025     getConFieldNames new_name condecls          `thenRn` \ sub_names ->
1026     returnRn (Just (AvailTC tycon_name (tycon_name : nub sub_names)))
1027         -- The "nub" is because getConFieldNames can legitimately return duplicates,
1028         -- when a record declaration has the same field in multiple constructors
1029
1030 getDeclBinders new_name (TyClD (TySynonym tycon _ _ src_loc))
1031   = new_name tycon src_loc              `thenRn` \ tycon_name ->
1032     returnRn (Just (AvailTC tycon_name [tycon_name]))
1033
1034 getDeclBinders new_name (TyClD (ClassDecl _ cname _ _ sigs _ _ _ src_loc))
1035   = new_name cname src_loc                      `thenRn` \ class_name ->
1036
1037         -- Record the names for the class ops
1038     let
1039         -- just want class-op sigs
1040         op_sigs = filter isClassOpSig sigs
1041     in
1042     mapRn (getClassOpNames new_name) op_sigs    `thenRn` \ sub_names ->
1043
1044     returnRn (Just (AvailTC class_name (class_name : sub_names)))
1045
1046 getDeclBinders new_name (SigD (IfaceSig var ty prags src_loc))
1047   = new_name var src_loc                        `thenRn` \ var_name ->
1048     returnRn (Just (Avail var_name))
1049
1050 getDeclBinders new_name (FixD _)    = returnRn Nothing
1051 getDeclBinders new_name (DeprecD _) = returnRn Nothing
1052
1053     -- foreign declarations
1054 getDeclBinders new_name (ForD (ForeignDecl nm kind _ dyn _ loc))
1055   | binds_haskell_name kind dyn
1056   = new_name nm loc                 `thenRn` \ name ->
1057     returnRn (Just (Avail name))
1058
1059   | otherwise           -- a foreign export
1060   = lookupOrigName nm `thenRn_` 
1061     returnRn Nothing
1062
1063 getDeclBinders new_name (DefD _)  = returnRn Nothing
1064 getDeclBinders new_name (InstD _) = returnRn Nothing
1065 getDeclBinders new_name (RuleD _) = returnRn Nothing
1066
1067 binds_haskell_name (FoImport _) _   = True
1068 binds_haskell_name FoLabel      _   = True
1069 binds_haskell_name FoExport  ext_nm = isDynamicExtName ext_nm
1070
1071 ----------------
1072 getConFieldNames new_name (ConDecl con _ _ _ (RecCon fielddecls) src_loc : rest)
1073   = mapRn (\n -> new_name n src_loc) (con:fields)       `thenRn` \ cfs ->
1074     getConFieldNames new_name rest                      `thenRn` \ ns  -> 
1075     returnRn (cfs ++ ns)
1076   where
1077     fields = concat (map fst fielddecls)
1078
1079 getConFieldNames new_name (ConDecl con _ _ _ condecl src_loc : rest)
1080   = new_name con src_loc                `thenRn` \ n ->
1081     getConFieldNames new_name rest      `thenRn` \ ns -> 
1082     returnRn (n : ns)
1083
1084 getConFieldNames new_name [] = returnRn []
1085
1086 getClassOpNames new_name (ClassOpSig op _ _ src_loc) = new_name op src_loc
1087 \end{code}
1088
1089 @getDeclSysBinders@ gets the implicit binders introduced by a decl.
1090 A the moment that's just the tycon and datacon that come with a class decl.
1091 They aren't returned by @getDeclBinders@ because they aren't in scope;
1092 but they {\em should} be put into the @DeclsMap@ of this module.
1093
1094 Note that this excludes the default-method names of a class decl,
1095 and the dict fun of an instance decl, because both of these have 
1096 bindings of their own elsewhere.
1097
1098 \begin{code}
1099 getDeclSysBinders new_name (TyClD (ClassDecl _ cname _ _ sigs _ _ names 
1100                                    src_loc))
1101   = sequenceRn [new_name n src_loc | n <- names]
1102
1103 getDeclSysBinders new_name (TyClD (TyData _ _ _ _ cons _ _ _ _ _ _))
1104   = sequenceRn [new_name wkr_name src_loc | ConDecl _ wkr_name _ _ _ src_loc <- cons]
1105
1106 getDeclSysBinders new_name other_decl
1107   = returnRn []
1108 \end{code}
1109
1110 %*********************************************************
1111 %*                                                      *
1112 \subsection{Reading an interface file}
1113 %*                                                      *
1114 %*********************************************************
1115
1116 \begin{code}
1117 findAndReadIface :: SDoc -> ModuleName 
1118                  -> IsBootInterface     -- True  <=> Look for a .hi-boot file
1119                                         -- False <=> Look for .hi file
1120                  -> RnM d (Either Message (Module, ParsedIface))
1121         -- Nothing <=> file not found, or unreadable, or illegible
1122         -- Just x  <=> successfully found and parsed 
1123
1124 findAndReadIface doc_str mod_name hi_boot_file
1125   = traceRn trace_msg                   `thenRn_`
1126       -- we keep two maps for interface files,
1127       -- one for 'normal' ones, the other for .hi-boot files,
1128       -- hence the need to signal which kind we're interested.
1129
1130     getFinderRn                                 `thenRn` \ finder ->
1131     ioToRn (findModule finder mod_name)         `thenRn` \ maybe_module ->
1132
1133     case maybe_module of
1134       Just mod | hi_boot_file, Just fpath <- moduleHiBootFile mod
1135               -> readIface mod fpath
1136                | not hi_boot_file, Just fpath <- moduleHiFile mod
1137               -> readIface mod fpath
1138         
1139         -- Can't find it
1140       other   -> traceRn (ptext SLIT("...not found"))   `thenRn_`
1141                  returnRn (Left (noIfaceErr finder mod_name hi_boot_file))
1142
1143   where
1144     trace_msg = sep [hsep [ptext SLIT("Reading"), 
1145                            if hi_boot_file then ptext SLIT("[boot]") else empty,
1146                            ptext SLIT("interface for"), 
1147                            pprModuleName mod_name <> semi],
1148                      nest 4 (ptext SLIT("reason:") <+> doc_str)]
1149 \end{code}
1150
1151 @readIface@ tries just the one file.
1152
1153 \begin{code}
1154 readIface :: Module -> String -> RnM d (Either Message (Module, ParsedIface))
1155         -- Nothing <=> file not found, or unreadable, or illegible
1156         -- Just x  <=> successfully found and parsed 
1157 readIface wanted_mod file_path
1158   = traceRn (ptext SLIT("...reading from") <+> text file_path)  `thenRn_`
1159     ioToRnM (hGetStringBuffer False file_path)                   `thenRn` \ read_result ->
1160     case read_result of
1161         Right contents    -> 
1162              case parseIface contents
1163                         PState{ bol = 0#, atbol = 1#,
1164                                 context = [],
1165                                 glasgow_exts = 1#,
1166                                 loc = mkSrcLoc (mkFastString file_path) 1 } of
1167                   POk _  (PIface iface) ->
1168                       warnCheckRn (moduleName wanted_mod == read_mod)
1169                                   (hiModuleNameMismatchWarn wanted_mod read_mod) `thenRn_`
1170                       returnRn (Right (mod, iface))
1171                     where
1172                       read_mod = moduleName (pi_mod iface)
1173
1174                   PFailed err   -> bale_out err
1175                   parse_result  -> bale_out empty
1176                         -- This last case can happen if the interface file is (say) empty
1177                         -- in which case the parser thinks it looks like an IdInfo or
1178                         -- something like that.  Just an artefact of the fact that the
1179                         -- parser is used for several purposes at once.
1180
1181         Left io_err -> bale_out (text (show io_err))
1182   where
1183     bale_out err = returnRn (Left (badIfaceFile file_path err))
1184 \end{code}
1185
1186 %*********************************************************
1187 %*                                                       *
1188 \subsection{Errors}
1189 %*                                                       *
1190 %*********************************************************
1191
1192 \begin{code}
1193 noIfaceErr mod_name boot_file search_path
1194   = vcat [ptext SLIT("Could not find interface file for") <+> quotes (pprModuleName mod_name),
1195           ptext SLIT("in the directories") <+> 
1196                         -- \& to avoid cpp interpreting this string as a
1197                         -- comment starter with a pre-4.06 mkdependHS --SDM
1198                 vcat [ text dir <> text "/\&*" <> pp_suffix suffix 
1199                      | (dir,suffix) <- search_path]
1200         ]
1201   where
1202     pp_suffix suffix | boot_file = ptext SLIT(".hi-boot")
1203                      | otherwise = text suffix
1204
1205 badIfaceFile file err
1206   = vcat [ptext SLIT("Bad interface file:") <+> text file, 
1207           nest 4 err]
1208
1209 getDeclErr name
1210   = vcat [ptext SLIT("Failed to find interface decl for") <+> quotes (ppr name),
1211           ptext SLIT("from module") <+> quotes (ppr (nameModule name))
1212          ]
1213
1214 importDeclWarn name
1215   = sep [ptext SLIT(
1216     "Compiler tried to import decl from interface file with same name as module."), 
1217          ptext SLIT(
1218     "(possible cause: module name clashes with interface file already in scope.)")
1219         ] $$
1220     hsep [ptext SLIT("name:"), quotes (ppr name)]
1221
1222 warnRedundantSourceImport mod_name
1223   = ptext SLIT("Unnecessary {- SOURCE -} in the import of module")
1224           <+> quotes (pprModuleName mod_name)
1225
1226 hiModuleNameMismatchWarn :: Module -> ModuleName  -> Message
1227 hiModuleNameMismatchWarn requested_mod read_mod = 
1228     hsep [ ptext SLIT("Something is amiss; requested module name")
1229          , ppr requested_mod
1230          , ptext SLIT("differs from name found in the interface file")
1231          , pprModuleName read_mod
1232          ]
1233
1234 \end{code}