[project @ 2003-07-17 12:04:50 by simonmar]
[ghc-hetmet.git] / ghc / compiler / main / DriverMkDepend.hs
1 -----------------------------------------------------------------------------
2 -- $Id: DriverMkDepend.hs,v 1.29 2003/07/17 12:04:53 simonmar Exp $
3 --
4 -- GHC Driver
5 --
6 -- (c) Simon Marlow 2000
7 --
8 -----------------------------------------------------------------------------
9
10 module DriverMkDepend where
11
12 #include "HsVersions.h"
13
14 import GetImports       ( getImports )
15 import DriverState      
16 import DriverUtil
17 import DriverFlags
18 import SysTools         ( newTempName )
19 import qualified SysTools
20 import Module           ( ModuleName, ModLocation(..),
21                           moduleNameUserString, isHomeModule )
22 import Finder           ( findModule, hiBootExt, hiBootVerExt,
23                           mkHomeModLocation )
24 import Util             ( global )
25 import Panic
26
27 import DATA_IOREF       ( IORef, readIORef, writeIORef )
28 import EXCEPTION
29
30 import Directory
31 import IO
32 import Monad            ( when )
33 import Maybe            ( isJust )
34
35 #if __GLASGOW_HASKELL__ <= 408
36 import Panic            ( catchJust, ioErrors )
37 #endif
38
39 -------------------------------------------------------------------------------
40 -- mkdependHS
41
42         -- flags
43 GLOBAL_VAR(v_Dep_makefile,              "Makefile", String);
44 GLOBAL_VAR(v_Dep_include_prelude,       False, Bool);
45 GLOBAL_VAR(v_Dep_exclude_mods,          ["GHC.Prim"], [String]);
46 GLOBAL_VAR(v_Dep_suffixes,              [], [String]);
47 GLOBAL_VAR(v_Dep_warnings,              True, Bool);
48
49         -- global vars
50 GLOBAL_VAR(v_Dep_makefile_hdl,  error "dep_makefile_hdl", Maybe Handle);
51 GLOBAL_VAR(v_Dep_tmp_file,      error "dep_tmp_file", String);
52 GLOBAL_VAR(v_Dep_tmp_hdl,       error "dep_tmp_hdl", Handle);
53 GLOBAL_VAR(v_Dep_dir_contents,  error "dep_dir_contents", [(String,[String])]);
54
55 depStartMarker = "# DO NOT DELETE: Beginning of Haskell dependencies"
56 depEndMarker   = "# DO NOT DELETE: End of Haskell dependencies"
57
58 -- for compatibility with the old mkDependHS, we accept options of the form
59 -- -optdep-f -optdep.depend, etc.
60 dep_opts = 
61    [ (  "s",                    SepArg (add v_Dep_suffixes) )
62    , (  "f",                    SepArg (writeIORef v_Dep_makefile) )
63    , (  "w",                    NoArg (writeIORef v_Dep_warnings False) )
64    , (  "-include-prelude",     NoArg (writeIORef v_Dep_include_prelude True) )
65    , (  "-exclude-module=",       Prefix (add v_Dep_exclude_mods) )
66    , (  "x",                      Prefix (add v_Dep_exclude_mods) )
67    ]
68
69 beginMkDependHS :: IO ()
70 beginMkDependHS = do
71
72         -- slurp in the mkdependHS-style options
73   flags <- getStaticOpts v_Opt_dep
74   _ <- processArgs dep_opts flags []
75
76         -- open a new temp file in which to stuff the dependency info
77         -- as we go along.
78   dep_file <- newTempName "dep"
79   writeIORef v_Dep_tmp_file dep_file
80   tmp_hdl <- openFile dep_file WriteMode
81   writeIORef v_Dep_tmp_hdl tmp_hdl
82
83         -- open the makefile
84   makefile <- readIORef v_Dep_makefile
85   exists <- doesFileExist makefile
86   if not exists
87         then do 
88            writeIORef v_Dep_makefile_hdl Nothing
89            return ()
90
91         else do
92            makefile_hdl <- openFile makefile ReadMode
93            writeIORef v_Dep_makefile_hdl (Just makefile_hdl)
94
95                 -- slurp through until we get the magic start string,
96                 -- copying the contents into dep_makefile
97            let slurp = do
98                 l <- hGetLine makefile_hdl
99                 if (l == depStartMarker)
100                         then return ()
101                         else do hPutStrLn tmp_hdl l; slurp
102          
103                 -- slurp through until we get the magic end marker,
104                 -- throwing away the contents
105            let chuck = do
106                 l <- hGetLine makefile_hdl
107                 if (l == depEndMarker)
108                         then return ()
109                         else chuck
110          
111            catchJust ioErrors slurp 
112                 (\e -> if isEOFError e then return () else ioError e)
113            catchJust ioErrors chuck
114                 (\e -> if isEOFError e then return () else ioError e)
115
116
117         -- write the magic marker into the tmp file
118   hPutStrLn tmp_hdl depStartMarker
119
120         -- cache the contents of all the import directories, for future
121         -- reference.
122   import_dirs <- readIORef v_Import_paths
123   pkg_import_dirs <- getPackageImportPath
124   import_dir_contents <- mapM softGetDirectoryContents import_dirs
125   pkg_import_dir_contents <- mapM softGetDirectoryContents pkg_import_dirs
126   writeIORef v_Dep_dir_contents 
127         (zip import_dirs import_dir_contents ++
128          zip pkg_import_dirs pkg_import_dir_contents)
129
130   return ()
131
132
133 doMkDependHSPhase basename suff input_fn
134  = do src <- readFile input_fn
135       let (import_sources, import_normals, mod_name) = getImports src
136       (_, location') <- mkHomeModLocation mod_name "." basename suff
137
138       -- take -ohi into account if present
139       ohi <- readIORef v_Output_hi
140       let location | Just fn <- ohi = location'{ ml_hi_file = fn }
141                    | otherwise      = location'
142
143       let orig_fn = basename ++ '.':suff
144       deps_sources <- mapM (findDependency True  orig_fn) import_sources
145       deps_normals <- mapM (findDependency False orig_fn) import_normals
146       let deps = deps_sources ++ deps_normals
147
148       osuf <- readIORef v_Object_suf
149
150       extra_suffixes <- readIORef v_Dep_suffixes
151       let suffixes = osuf : map (++ ('_':osuf)) extra_suffixes
152           ofiles = map (\suf -> basename ++ '.':suf) suffixes
153
154       objs <- mapM odir_ify ofiles
155
156         -- Handle for file that accumulates dependencies 
157       hdl <- readIORef v_Dep_tmp_hdl
158
159         -- std dependency of the object(s) on the source file
160       hPutStrLn hdl (unwords (map escapeSpaces objs) ++ " : " ++
161                      escapeSpaces (basename ++ '.':suff))
162
163       let genDep (dep, False {- not an hi file -}) = 
164              hPutStrLn hdl (unwords (map escapeSpaces objs) ++ " : " ++
165                             escapeSpaces dep)
166           genDep (dep, True  {- is an hi file -}) = do
167              hisuf <- readIORef v_Hi_suf
168              let dep_base = remove_suffix '.' dep
169                  deps = (dep_base ++ hisuf)
170                         : map (\suf -> dep_base ++ suf ++ '_':hisuf) extra_suffixes
171                   -- length objs should be == length deps
172              sequence_ (zipWith (\o d -> hPutStrLn hdl (escapeSpaces o ++ " : " ++ escapeSpaces d)) objs deps)
173
174       sequence_ (map genDep [ d | Just d <- deps ])
175       return location
176
177 -- add the lines to dep_makefile:
178            -- always:
179                    -- this.o : this.hs
180
181            -- if the dependency is on something other than a .hi file:
182                    -- this.o this.p_o ... : dep
183            -- otherwise
184                    -- if the import is {-# SOURCE #-}
185                            -- this.o this.p_o ... : dep.hi-boot[-$vers]
186                            
187                    -- else
188                            -- this.o ...   : dep.hi
189                            -- this.p_o ... : dep.p_hi
190                            -- ...
191    
192            -- (where .o is $osuf, and the other suffixes come from
193            -- the cmdline -s options).
194    
195
196
197 endMkDependHS :: IO ()
198 endMkDependHS = do
199   makefile     <- readIORef v_Dep_makefile
200   makefile_hdl <- readIORef v_Dep_makefile_hdl
201   tmp_file     <- readIORef v_Dep_tmp_file
202   tmp_hdl      <- readIORef v_Dep_tmp_hdl
203
204         -- write the magic marker into the tmp file
205   hPutStrLn tmp_hdl depEndMarker
206
207   case makefile_hdl of
208      Nothing  -> return ()
209      Just hdl -> do
210
211           -- slurp the rest of the original makefile and copy it into the output
212         let slurp = do
213                 l <- hGetLine hdl
214                 hPutStrLn tmp_hdl l
215                 slurp
216          
217         catchJust ioErrors slurp 
218                 (\e -> if isEOFError e then return () else ioError e)
219
220         hClose hdl
221
222   hClose tmp_hdl  -- make sure it's flushed
223
224         -- Create a backup of the original makefile
225   when (isJust makefile_hdl)
226        (SysTools.copy ("Backing up " ++ makefile) makefile (makefile++".bak"))
227
228         -- Copy the new makefile in place
229   SysTools.copy "Installing new makefile" tmp_file makefile
230
231
232 findDependency :: Bool -> FilePath -> ModuleName -> IO (Maybe (String, Bool))
233 findDependency is_source src imp = do
234    excl_mods <- readIORef v_Dep_exclude_mods
235    include_prelude <- readIORef v_Dep_include_prelude
236    let imp_mod = moduleNameUserString imp
237    if imp_mod `elem` excl_mods 
238       then return Nothing
239       else do
240         r <- findModule imp
241         case r of 
242            Right (mod,loc)
243                 -- not in this package: we don't need a dependency
244                 | not (isHomeModule mod) && not include_prelude
245                 -> return Nothing
246
247                 -- normal import: just depend on the .hi file
248                 | not is_source
249                 -> return (Just (ml_hi_file loc, not is_source))
250
251                 -- if it's a source import, we want to generate a dependency
252                 -- on the .hi-boot file, not the .hi file
253                 | otherwise
254                 -> let hi_file = ml_hi_file loc
255                        boot_hi_file = replaceFilenameSuffix hi_file hiBootExt 
256                        boot_ver_hi_file = replaceFilenameSuffix hi_file hiBootVerExt 
257                    in do
258                    b <- doesFileExist boot_ver_hi_file
259                    if b 
260                      then return (Just (boot_ver_hi_file, not is_source))
261                      else do
262                         b <- doesFileExist boot_hi_file
263                         if b 
264                            then return (Just (boot_hi_file, not is_source))
265                            else return (Just (hi_file, not is_source))
266
267            Left _ -> throwDyn (ProgramError 
268                 (src ++ ": " ++ "can't locate import `" ++ imp_mod ++ "'" ++
269                  if is_source then " (SOURCE import)" else ""))