refactoring only: use the parameterised InstalledPackageInfo
[ghc-hetmet.git] / compiler / main / Packages.lhs
1  %
2 % (c) The University of Glasgow, 2006
3 %
4 % Package manipulation
5 %
6 \begin{code}
7 {-# OPTIONS -w #-}
8 -- The above warning supression flag is a temporary kludge.
9 -- While working on this module you are encouraged to remove it and fix
10 -- any warnings in the module. See
11 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
12 -- for details
13
14 module Packages (
15         module PackageConfig,
16
17         -- * The PackageConfigMap
18         PackageConfigMap, emptyPackageConfigMap, lookupPackage,
19         extendPackageConfigMap, dumpPackages,
20
21         -- * Reading the package config, and processing cmdline args
22         PackageState(..),
23         initPackages,
24         getPackageDetails,
25         lookupModuleInAllPackages,
26
27         -- * Inspecting the set of packages in scope
28         getPackageIncludePath,
29         getPackageCIncludes,
30         getPackageLibraryPath,
31         getPackageLinkOpts,
32         getPackageExtraCcOpts,
33         getPackageFrameworkPath,
34         getPackageFrameworks,
35         getPreloadPackagesAnd,
36
37         -- * Utils
38         isDllName
39     )
40 where
41
42 #include "HsVersions.h"
43
44 import PackageConfig    
45 import ParsePkgConf     ( loadPackageConfig )
46 import DynFlags         ( dopt, DynFlag(..), DynFlags(..), PackageFlag(..) )
47 import StaticFlags      ( opt_Static )
48 import Config           ( cProjectVersion )
49 import Name             ( Name, nameModule_maybe )
50 import UniqFM
51 import Module
52 import Util
53 import Maybes           ( expectJust, MaybeErr(..) )
54 import Panic
55 import Outputable
56
57 #if __GLASGOW_HASKELL__ < 603
58 import Compat.Directory ( getAppUserDataDirectory )
59 #endif
60
61 import System.Environment ( getEnv )
62 import Distribution.InstalledPackageInfo
63 import Distribution.Package
64 import Distribution.Version
65 import FastString
66 import ErrUtils         ( debugTraceMsg, putMsg, Message )
67
68 import System.Directory
69 import Data.Maybe
70 import Control.Monad
71 import Data.List
72 import Control.Exception        ( throwDyn )
73
74 -- ---------------------------------------------------------------------------
75 -- The Package state
76
77 -- Package state is all stored in DynFlags, including the details of
78 -- all packages, which packages are exposed, and which modules they
79 -- provide.
80
81 -- The package state is computed by initPackages, and kept in DynFlags.
82 --
83 --   * -package <pkg> causes <pkg> to become exposed, and all other packages 
84 --      with the same name to become hidden.
85 -- 
86 --   * -hide-package <pkg> causes <pkg> to become hidden.
87 -- 
88 --   * Let exposedPackages be the set of packages thus exposed.  
89 --     Let depExposedPackages be the transitive closure from exposedPackages of
90 --     their dependencies.
91 --
92 --   * When searching for a module from an preload import declaration,
93 --     only the exposed modules in exposedPackages are valid.
94 --
95 --   * When searching for a module from an implicit import, all modules
96 --     from depExposedPackages are valid.
97 --
98 --   * When linking in a comp manager mode, we link in packages the
99 --     program depends on (the compiler knows this list by the
100 --     time it gets to the link step).  Also, we link in all packages
101 --     which were mentioned with preload -package flags on the command-line,
102 --     or are a transitive dependency of same, or are "base"/"rts".
103 --     The reason for (b) is that we might need packages which don't
104 --     contain any Haskell modules, and therefore won't be discovered
105 --     by the normal mechanism of dependency tracking.
106
107 -- Notes on DLLs
108 -- ~~~~~~~~~~~~~
109 -- When compiling module A, which imports module B, we need to 
110 -- know whether B will be in the same DLL as A.  
111 --      If it's in the same DLL, we refer to B_f_closure
112 --      If it isn't, we refer to _imp__B_f_closure
113 -- When compiling A, we record in B's Module value whether it's
114 -- in a different DLL, by setting the DLL flag.
115
116 data PackageState = PackageState {
117   pkgIdMap              :: PackageConfigMap, -- PackageId   -> PackageConfig
118         -- The exposed flags are adjusted according to -package and
119         -- -hide-package flags, and -ignore-package removes packages.
120
121   preloadPackages      :: [PackageId],
122         -- The packages we're going to link in eagerly.  This list
123         -- should be in reverse dependency order; that is, a package
124         -- is always mentioned before the packages it depends on.
125
126   moduleToPkgConfAll    :: UniqFM [(PackageConfig,Bool)] -- ModuleEnv mapping
127         -- Derived from pkgIdMap.       
128         -- Maps Module to (pkgconf,exposed), where pkgconf is the
129         -- PackageConfig for the package containing the module, and
130         -- exposed is True if the package exposes that module.
131   }
132
133 -- A PackageConfigMap maps a PackageId to a PackageConfig
134 type PackageConfigMap = UniqFM PackageConfig
135
136 emptyPackageConfigMap :: PackageConfigMap
137 emptyPackageConfigMap = emptyUFM
138
139 lookupPackage :: PackageConfigMap -> PackageId -> Maybe PackageConfig
140 lookupPackage = lookupUFM
141
142 extendPackageConfigMap
143    :: PackageConfigMap -> [PackageConfig] -> PackageConfigMap
144 extendPackageConfigMap pkg_map new_pkgs 
145   = foldl add pkg_map new_pkgs
146   where add pkg_map p = addToUFM pkg_map (packageConfigId p) p
147
148 getPackageDetails :: PackageState -> PackageId -> PackageConfig
149 getPackageDetails dflags ps = expectJust "getPackageDetails" (lookupPackage (pkgIdMap dflags) ps)
150
151 -- ----------------------------------------------------------------------------
152 -- Loading the package config files and building up the package state
153
154 -- | Call this after 'DynFlags.parseDynFlags'.  It reads the package
155 -- configuration files, and sets up various internal tables of package
156 -- information, according to the package-related flags on the
157 -- command-line (@-package@, @-hide-package@ etc.)
158 --
159 -- Returns a list of packages to link in if we're doing dynamic linking.
160 -- This list contains the packages that the user explicitly mentioned with
161 -- -package flags.
162 --
163 -- 'initPackages' can be called again subsequently after updating the
164 -- 'packageFlags' field of the 'DynFlags', and it will update the
165 -- 'packageState' in 'DynFlags' and return a list of packages to
166 -- link in.
167 initPackages :: DynFlags -> IO (DynFlags, [PackageId])
168 initPackages dflags = do 
169   pkg_db <- case pkgDatabase dflags of
170                 Nothing -> readPackageConfigs dflags
171                 Just db -> return db
172   (pkg_state, preload, this_pkg)       
173         <- mkPackageState dflags pkg_db [] (thisPackage dflags)
174   return (dflags{ pkgDatabase = Just pkg_db,
175                   pkgState = pkg_state,
176                   thisPackage = this_pkg },
177           preload)
178
179 -- -----------------------------------------------------------------------------
180 -- Reading the package database(s)
181
182 readPackageConfigs :: DynFlags -> IO PackageConfigMap
183 readPackageConfigs dflags = do
184    e_pkg_path <- try (getEnv "GHC_PACKAGE_PATH")
185    system_pkgconfs <- getSystemPackageConfigs dflags
186
187    let pkgconfs = case e_pkg_path of
188                     Left _   -> system_pkgconfs
189                     Right path
190                      | last cs == "" -> init cs ++ system_pkgconfs
191                      | otherwise     -> cs
192                      where cs = parseSearchPath path
193                      -- if the path ends in a separator (eg. "/foo/bar:")
194                      -- the we tack on the system paths.
195
196         -- Read all the ones mentioned in -package-conf flags
197    pkg_map <- foldM (readPackageConfig dflags) emptyPackageConfigMap
198                  (reverse pkgconfs ++ extraPkgConfs dflags)
199
200    return pkg_map
201
202
203 getSystemPackageConfigs :: DynFlags -> IO [FilePath]
204 getSystemPackageConfigs dflags = do
205         -- System one always comes first
206    let system_pkgconf = systemPackageConfig dflags
207
208         -- allow package.conf.d to contain a bunch of .conf files
209         -- containing package specifications.  This is an easier way
210         -- to maintain the package database on systems with a package
211         -- management system, or systems that don't want to run ghc-pkg
212         -- to register or unregister packages.  Undocumented feature for now.
213    let system_pkgconf_dir = system_pkgconf ++ ".d"
214    system_pkgconf_dir_exists <- doesDirectoryExist system_pkgconf_dir
215    system_pkgconfs <-
216      if system_pkgconf_dir_exists
217        then do files <- getDirectoryContents system_pkgconf_dir
218                return [ system_pkgconf_dir ++ '/' : file
219                       | file <- files
220                       , isSuffixOf ".conf" file]
221        else return []
222
223         -- Read user's package conf (eg. ~/.ghc/i386-linux-6.3/package.conf)
224         -- unless the -no-user-package-conf flag was given.
225         -- We only do this when getAppUserDataDirectory is available 
226         -- (GHC >= 6.3).
227    user_pkgconf <- handle (\_ -> return []) $ do
228       appdir <- getAppUserDataDirectory "ghc"
229       let 
230          pkgconf = appdir
231                    `joinFileName` (TARGET_ARCH ++ '-':TARGET_OS ++ '-':cProjectVersion)
232                    `joinFileName` "package.conf"
233       flg <- doesFileExist pkgconf
234       if (flg && dopt Opt_ReadUserPackageConf dflags)
235         then return [pkgconf]
236         else return []
237
238    return (user_pkgconf ++ system_pkgconfs ++ [system_pkgconf])
239
240
241 readPackageConfig
242    :: DynFlags -> PackageConfigMap -> FilePath -> IO PackageConfigMap
243 readPackageConfig dflags pkg_map conf_file = do
244   debugTraceMsg dflags 2 (text "Using package config file:" <+> text conf_file)
245   proto_pkg_configs <- loadPackageConfig conf_file
246   let top_dir = topDir dflags
247       pkg_configs1 = mungePackagePaths top_dir proto_pkg_configs
248       pkg_configs2 = maybeHidePackages dflags pkg_configs1
249   return (extendPackageConfigMap pkg_map pkg_configs2)
250
251 maybeHidePackages :: DynFlags -> [PackageConfig] -> [PackageConfig]
252 maybeHidePackages dflags pkgs
253   | dopt Opt_HideAllPackages dflags = map hide pkgs
254   | otherwise                       = pkgs
255   where
256     hide pkg = pkg{ exposed = False }
257
258 mungePackagePaths :: String -> [PackageConfig] -> [PackageConfig]
259 -- Replace the string "$topdir" at the beginning of a path
260 -- with the current topdir (obtained from the -B option).
261 mungePackagePaths top_dir ps = map munge_pkg ps
262  where 
263   munge_pkg p = p{ importDirs  = munge_paths (importDirs p),
264                    includeDirs = munge_paths (includeDirs p),
265                    libraryDirs = munge_paths (libraryDirs p),
266                    frameworkDirs = munge_paths (frameworkDirs p) }
267
268   munge_paths = map munge_path
269
270   munge_path p 
271           | Just p' <- maybePrefixMatch "$topdir" p = top_dir ++ p'
272           | otherwise                               = p
273
274
275 -- -----------------------------------------------------------------------------
276 -- Modify our copy of the package database based on a package flag
277 -- (-package, -hide-package, -ignore-package).
278
279 applyPackageFlag
280    :: [PackageConfig]           -- Initial database
281    -> PackageFlag               -- flag to apply
282    -> IO [PackageConfig]        -- new database
283
284 applyPackageFlag pkgs flag = 
285   case flag of
286         ExposePackage str ->
287            case matchingPackages str pkgs of
288                 Nothing -> missingPackageErr str
289                 Just (p:ps,qs) -> return (p':ps')
290                   where p' = p {exposed=True}
291                         ps' = hideAll (pkgName (package p)) (ps++qs)
292
293         HidePackage str ->
294            case matchingPackages str pkgs of
295                 Nothing -> missingPackageErr str
296                 Just (ps,qs) -> return (map hide ps ++ qs)
297                   where hide p = p {exposed=False}
298
299         IgnorePackage str ->
300            case matchingPackages str pkgs of
301                 Nothing -> return pkgs
302                 Just (ps,qs) -> return qs
303                 -- missing package is not an error for -ignore-package,
304                 -- because a common usage is to -ignore-package P as
305                 -- a preventative measure just in case P exists.
306    where
307         -- When a package is requested to be exposed, we hide all other
308         -- packages with the same name.
309         hideAll name ps = map maybe_hide ps
310           where maybe_hide p | pkgName (package p) == name = p {exposed=False}
311                              | otherwise                   = p
312
313
314 matchingPackages :: String -> [PackageConfig]
315          -> Maybe ([PackageConfig], [PackageConfig])
316 matchingPackages str pkgs
317   = case partition (matches str) pkgs of
318         ([],_)    -> Nothing
319         (ps,rest) -> Just (sortByVersion ps, rest)
320   where
321         -- A package named on the command line can either include the
322         -- version, or just the name if it is unambiguous.
323         matches str p
324                 =  str == showPackageId (package p)
325                 || str == pkgName (package p)
326
327
328 pickPackages pkgs strs = 
329   [ p | p <- strs, Just (p:ps,_) <- [matchingPackages p pkgs] ]
330
331 sortByVersion = sortBy (flip (comparing (pkgVersion.package)))
332 comparing f a b = f a `compare` f b
333
334 -- -----------------------------------------------------------------------------
335 -- Hide old versions of packages
336
337 --
338 -- hide all packages for which there is also a later version
339 -- that is already exposed.  This just makes it non-fatal to have two
340 -- versions of a package exposed, which can happen if you install a
341 -- later version of a package in the user database, for example.
342 --
343 hideOldPackages :: DynFlags -> [PackageConfig] -> IO [PackageConfig]
344 hideOldPackages dflags pkgs = mapM maybe_hide pkgs
345   where maybe_hide p
346            | not (exposed p) = return p
347            | (p' : _) <- later_versions = do
348                 debugTraceMsg dflags 2 $
349                    (ptext SLIT("hiding package") <+> 
350                     text (showPackageId (package p)) <+>
351                     ptext SLIT("to avoid conflict with later version") <+>
352                     text (showPackageId (package p')))
353                 return (p {exposed=False})
354            | otherwise = return p
355           where myname = pkgName (package p)
356                 myversion = pkgVersion (package p)
357                 later_versions = [ p | p <- pkgs, exposed p,
358                                     let pkg = package p,
359                                     pkgName pkg == myname,
360                                     pkgVersion pkg > myversion ]
361
362 -- -----------------------------------------------------------------------------
363 -- Wired-in packages
364
365 findWiredInPackages
366    :: DynFlags
367    -> [PackageConfig]           -- database
368    -> [PackageIdentifier]       -- preload packages
369    -> PackageId                 -- this package
370    -> IO ([PackageConfig],
371           [PackageIdentifier],
372           PackageId)
373
374 findWiredInPackages dflags pkgs preload this_package = do
375   --
376   -- Now we must find our wired-in packages, and rename them to
377   -- their canonical names (eg. base-1.0 ==> base).
378   --
379   let
380         wired_in_pkgids = [ basePackageId,
381                             rtsPackageId,
382                             haskell98PackageId,
383                             thPackageId,
384                             ndpPackageId ]
385
386         wired_in_names = map packageIdString wired_in_pkgids
387
388         -- find which package corresponds to each wired-in package
389         -- delete any other packages with the same name
390         -- update the package and any dependencies to point to the new
391         -- one.
392         --
393         -- When choosing which package to map to a wired-in package
394         -- name, we prefer exposed packages, and pick the latest
395         -- version.  To override the default choice, -hide-package
396         -- could be used to hide newer versions.
397         --
398         findWiredInPackage :: [PackageConfig] -> String
399                            -> IO (Maybe PackageIdentifier)
400         findWiredInPackage pkgs wired_pkg =
401            let all_ps = [ p | p <- pkgs, pkgName (package p) == wired_pkg ] in
402            case filter exposed all_ps of
403                 [] -> case all_ps of
404                         []   -> notfound
405                         many -> pick (head (sortByVersion many))
406                 many  -> pick (head (sortByVersion many))
407           where
408                 notfound = do
409                           debugTraceMsg dflags 2 $
410                             ptext SLIT("wired-in package ")
411                                  <> text wired_pkg
412                                  <> ptext SLIT(" not found.")
413                           return Nothing
414                 pick pkg = do
415                         debugTraceMsg dflags 2 $
416                             ptext SLIT("wired-in package ")
417                                  <> text wired_pkg
418                                  <> ptext SLIT(" mapped to ")
419                                  <> text (showPackageId (package pkg))
420                         return (Just (package pkg))
421
422
423   mb_wired_in_ids <- mapM (findWiredInPackage pkgs) wired_in_names
424   let 
425         wired_in_ids = catMaybes mb_wired_in_ids
426
427         deleteOtherWiredInPackages pkgs = filter ok pkgs
428           where ok p = pkgName (package p) `notElem` wired_in_names
429                      || package p `elem` wired_in_ids
430
431         updateWiredInDependencies pkgs = map upd_pkg pkgs
432           where upd_pkg p = p{ package = upd_pid (package p),
433                                depends = map upd_pid (depends p) }
434
435         upd_pid pid = case filter (== pid) wired_in_ids of
436                                 [] -> pid
437                                 (x:_) -> x{ pkgVersion = Version [] [] }
438
439         pkgs1 = deleteOtherWiredInPackages pkgs
440
441         pkgs2 = updateWiredInDependencies pkgs1
442
443         preload1 = map upd_pid preload
444
445         -- we must return an updated thisPackage, just in case we
446         -- are actually compiling one of the wired-in packages
447         Just old_this_pkg = unpackPackageId this_package
448         new_this_pkg = mkPackageId (upd_pid old_this_pkg)
449
450   return (pkgs2, preload1, new_this_pkg)
451
452 -- -----------------------------------------------------------------------------
453 --
454 -- Eliminate any packages which have dangling dependencies (
455 -- because the dependency was removed by -ignore-package).
456 --
457 elimDanglingDeps
458    :: DynFlags
459    -> [PackageConfig]
460    -> [PackageId]       -- ignored packages
461    -> IO [PackageConfig]
462
463 elimDanglingDeps dflags pkgs ignored = 
464    case partition (not.null.snd) (map (getDanglingDeps pkgs ignored) pkgs) of
465         ([],ps) -> return (map fst ps)
466         (ps,qs) -> do
467             mapM_ reportElim ps
468             elimDanglingDeps dflags (map fst qs)
469                 (ignored ++ map packageConfigId (map fst ps))
470  where
471    reportElim (p, deps) = 
472         debugTraceMsg dflags 2 $
473              (ptext SLIT("package") <+> pprPkg p <+> 
474                   ptext SLIT("will be ignored due to missing dependencies:") $$ 
475               nest 2 (hsep (map (text.showPackageId) deps)))
476
477    getDanglingDeps pkgs ignored p = (p, filter dangling (depends p))
478         where dangling pid = mkPackageId pid `elem` ignored
479
480 -- -----------------------------------------------------------------------------
481 -- When all the command-line options are in, we can process our package
482 -- settings and populate the package state.
483
484 mkPackageState
485     :: DynFlags
486     -> PackageConfigMap         -- initial database
487     -> [PackageId]              -- preloaded packages
488     -> PackageId                -- this package
489     -> IO (PackageState,
490            [PackageId],         -- new packages to preload
491            PackageId) -- this package, might be modified if the current
492
493                       -- package is a wired-in package.
494
495 mkPackageState dflags orig_pkg_db preload0 this_package = do
496   --
497   -- Modify the package database according to the command-line flags
498   -- (-package, -hide-package, -ignore-package, -hide-all-packages).
499   --
500   let flags = reverse (packageFlags dflags)
501   let pkgs0 = eltsUFM orig_pkg_db
502   pkgs1 <- foldM applyPackageFlag pkgs0 flags
503
504   -- Here we build up a set of the packages mentioned in -package
505   -- flags on the command line; these are called the "preload"
506   -- packages.  we link these packages in eagerly.  The preload set
507   -- should contain at least rts & base, which is why we pretend that
508   -- the command line contains -package rts & -package base.
509   --
510   let new_preload_packages = 
511         map package (pickPackages pkgs0 [ p | ExposePackage p <- flags ])
512
513   -- hide packages that are subsumed by later versions
514   pkgs2 <- hideOldPackages dflags pkgs1
515
516   -- sort out which packages are wired in
517   (pkgs3, preload1, new_this_pkg)
518         <- findWiredInPackages dflags pkgs2 new_preload_packages this_package
519
520   let ignored = map packageConfigId $
521                    pickPackages pkgs0 [ p | IgnorePackage p <- flags ]
522   pkgs <- elimDanglingDeps dflags pkgs3 ignored
523
524   let pkg_db = extendPackageConfigMap emptyPackageConfigMap pkgs
525       pkgids = map packageConfigId pkgs
526
527       -- add base & rts to the preload packages
528       basicLinkedPackages = filter (flip elemUFM pkg_db)
529                                  [basePackageId,rtsPackageId]
530       -- but in any case remove the current package from the set of
531       -- preloaded packages so that base/rts does not end up in the
532       -- set up preloaded package when we are just building it
533       preload2 = nub (filter (/= new_this_pkg)
534                              (basicLinkedPackages ++ map mkPackageId preload1))
535
536   -- Close the preload packages with their dependencies
537   dep_preload <- closeDeps pkg_db (zip preload2 (repeat Nothing))
538   let new_dep_preload = filter (`notElem` preload0) dep_preload
539
540   let pstate = PackageState{ preloadPackages     = dep_preload,
541                              pkgIdMap            = pkg_db,
542                              moduleToPkgConfAll  = mkModuleMap pkg_db
543                            }
544
545   return (pstate, new_dep_preload, new_this_pkg)
546
547
548 -- -----------------------------------------------------------------------------
549 -- Make the mapping from module to package info
550
551 mkModuleMap
552   :: PackageConfigMap
553   -> UniqFM [(PackageConfig, Bool)]
554 mkModuleMap pkg_db = foldr extend_modmap emptyUFM pkgids
555   where
556         pkgids = map packageConfigId (eltsUFM pkg_db)
557         
558         extend_modmap pkgid modmap =
559                 addListToUFM_C (++) modmap 
560                    ([(m, [(pkg, True)])  | m <- exposed_mods] ++
561                     [(m, [(pkg, False)]) | m <- hidden_mods])
562           where
563                 pkg = expectJust "mkModuleMap" (lookupPackage pkg_db pkgid)
564                 exposed_mods = exposedModules pkg
565                 hidden_mods  = hiddenModules pkg
566
567 pprPkg :: PackageConfig -> SDoc
568 pprPkg p = text (showPackageId (package p))
569
570 -- -----------------------------------------------------------------------------
571 -- Extracting information from the packages in scope
572
573 -- Many of these functions take a list of packages: in those cases,
574 -- the list is expected to contain the "dependent packages",
575 -- i.e. those packages that were found to be depended on by the
576 -- current module/program.  These can be auto or non-auto packages, it
577 -- doesn't really matter.  The list is always combined with the list
578 -- of preload (command-line) packages to determine which packages to
579 -- use.
580
581 getPackageIncludePath :: DynFlags -> [PackageId] -> IO [String]
582 getPackageIncludePath dflags pkgs = do
583   ps <- getPreloadPackagesAnd dflags pkgs
584   return (nub (filter notNull (concatMap includeDirs ps)))
585
586         -- includes are in reverse dependency order (i.e. rts first)
587 getPackageCIncludes :: [PackageConfig] -> IO [String]
588 getPackageCIncludes pkg_configs = do
589   return (reverse (nub (filter notNull (concatMap includes pkg_configs))))
590
591 getPackageLibraryPath :: DynFlags -> [PackageId] -> IO [String]
592 getPackageLibraryPath dflags pkgs = do 
593   ps <- getPreloadPackagesAnd dflags pkgs
594   return (nub (filter notNull (concatMap libraryDirs ps)))
595
596 getPackageLinkOpts :: DynFlags -> [PackageId] -> IO [String]
597 getPackageLinkOpts dflags pkgs = do
598   ps <- getPreloadPackagesAnd dflags pkgs
599   let tag = buildTag dflags
600       rts_tag = rtsBuildTag dflags
601   let 
602         mkDynName | opt_Static = id
603                   | otherwise = (++ ("-ghc" ++ cProjectVersion))
604         libs p     = map (mkDynName . addSuffix) (hsLibraries p)
605                          ++ extraLibraries p
606         all_opts p = map ("-l" ++) (libs p) ++ ldOptions p
607
608         addSuffix rts@"HSrts"    = rts       ++ (expandTag rts_tag)
609         addSuffix other_lib      = other_lib ++ (expandTag tag)
610
611         expandTag t | null t = ""
612                     | otherwise = '_':t
613
614   return (concat (map all_opts ps))
615
616 getPackageExtraCcOpts :: DynFlags -> [PackageId] -> IO [String]
617 getPackageExtraCcOpts dflags pkgs = do
618   ps <- getPreloadPackagesAnd dflags pkgs
619   return (concatMap ccOptions ps)
620
621 getPackageFrameworkPath  :: DynFlags -> [PackageId] -> IO [String]
622 getPackageFrameworkPath dflags pkgs = do
623   ps <- getPreloadPackagesAnd dflags pkgs
624   return (nub (filter notNull (concatMap frameworkDirs ps)))
625
626 getPackageFrameworks  :: DynFlags -> [PackageId] -> IO [String]
627 getPackageFrameworks dflags pkgs = do
628   ps <- getPreloadPackagesAnd dflags pkgs
629   return (concatMap frameworks ps)
630
631 -- -----------------------------------------------------------------------------
632 -- Package Utils
633
634 -- | Takes a Module, and if the module is in a package returns 
635 -- @(pkgconf,exposed)@ where pkgconf is the PackageConfig for that package,
636 -- and exposed is True if the package exposes the module.
637 lookupModuleInAllPackages :: DynFlags -> ModuleName -> [(PackageConfig,Bool)]
638 lookupModuleInAllPackages dflags m =
639   case lookupUFM (moduleToPkgConfAll (pkgState dflags)) m of
640         Nothing -> []
641         Just ps -> ps
642
643 getPreloadPackagesAnd :: DynFlags -> [PackageId] -> IO [PackageConfig]
644 getPreloadPackagesAnd dflags pkgids =
645   let 
646       state   = pkgState dflags
647       pkg_map = pkgIdMap state
648       preload = preloadPackages state
649       pairs = zip pkgids (repeat Nothing)
650   in do
651   all_pkgs <- throwErr (foldM (add_package pkg_map) preload pairs)
652   return (map (getPackageDetails state) all_pkgs)
653
654 -- Takes a list of packages, and returns the list with dependencies included,
655 -- in reverse dependency order (a package appears before those it depends on).
656 closeDeps :: PackageConfigMap -> [(PackageId, Maybe PackageId)]
657         -> IO [PackageId]
658 closeDeps pkg_map ps = throwErr (closeDepsErr pkg_map ps)
659
660 throwErr :: MaybeErr Message a -> IO a
661 throwErr m = case m of
662                 Failed e    -> throwDyn (CmdLineError (showSDoc e))
663                 Succeeded r -> return r
664
665 closeDepsErr :: PackageConfigMap -> [(PackageId,Maybe PackageId)]
666         -> MaybeErr Message [PackageId]
667 closeDepsErr pkg_map ps = foldM (add_package pkg_map) [] ps
668
669 -- internal helper
670 add_package :: PackageConfigMap -> [PackageId] -> (PackageId,Maybe PackageId)
671         -> MaybeErr Message [PackageId]
672 add_package pkg_db ps (p, mb_parent)
673   | p `elem` ps = return ps     -- Check if we've already added this package
674   | otherwise =
675       case lookupPackage pkg_db p of
676         Nothing -> Failed (missingPackageMsg (packageIdString p) <> 
677                            missingDependencyMsg mb_parent)
678         Just pkg -> do
679            -- Add the package's dependents also
680            let deps = map mkPackageId (depends pkg)
681            ps' <- foldM (add_package pkg_db) ps (zip deps (repeat (Just p)))
682            return (p : ps')
683
684 missingPackageErr p = throwDyn (CmdLineError (showSDoc (missingPackageMsg p)))
685 missingPackageMsg p = ptext SLIT("unknown package:") <+> text p
686
687 missingDependencyMsg Nothing = empty
688 missingDependencyMsg (Just parent)
689   = space <> parens (ptext SLIT("dependency of") <+> ftext (packageIdFS parent))
690
691 -- -----------------------------------------------------------------------------
692
693 isDllName :: PackageId -> Name -> Bool
694 isDllName this_pkg name
695   | opt_Static = False
696   | Just mod <- nameModule_maybe name = modulePackageId mod /= this_pkg
697   | otherwise = False  -- no, it is not even an external name
698
699 -- -----------------------------------------------------------------------------
700 -- Displaying packages
701
702 dumpPackages :: DynFlags -> IO ()
703 -- Show package info on console, if verbosity is >= 3
704 dumpPackages dflags
705   = do  let pkg_map = pkgIdMap (pkgState dflags)
706         putMsg dflags $
707               vcat (map (text.showInstalledPackageInfo.to_ipi) (eltsUFM pkg_map))
708  where
709   to_ipi pkgconf@InstalledPackageInfo_{ exposedModules = e,
710                                         hiddenModules = h } = 
711     pkgconf{ exposedModules = map moduleNameString e,
712              hiddenModules  = map moduleNameString h }
713 \end{code}