[project @ 2001-06-29 12:58:20 by rrt]
[ghc-hetmet.git] / ghc / compiler / main / SysTools.lhs
1 -----------------------------------------------------------------------------
2 -- Access to system tools: gcc, cp, rm etc
3 --
4 -- (c) The University of Glasgow 2000
5 --
6 -----------------------------------------------------------------------------
7
8 \begin{code}
9 module SysTools (
10         -- Initialisation
11         initSysTools,
12         setPgm,                 -- String -> IO ()
13                                 -- Command-line override
14         setDryRun,
15
16         packageConfigPath,      -- IO String    
17                                 -- Where package.conf is
18
19         -- Interface to system tools
20         runUnlit, runCpp, runCc, -- [String] -> IO ()
21         runMangle, runSplit,     -- [String] -> IO ()
22         runAs, runLink,          -- [String] -> IO ()
23         runMkDLL,
24
25         touch,                  -- String -> String -> IO ()
26         copy,                   -- String -> String -> String -> IO ()
27         
28         -- Temporary-file management
29         setTmpDir,
30         newTempName,
31         cleanTempFiles, cleanTempFilesExcept, removeTmpFiles,
32         addFilesToClean,
33
34         -- System interface
35         getProcessID,           -- IO Int
36         system,                 -- String -> IO Int
37
38         -- Misc
39         showGhcUsage,           -- IO ()        Shows usage message and exits
40         getSysMan,              -- IO String    Parallel system only
41
42         runSomething    -- ToDo: make private
43  ) where
44
45 import DriverUtil
46 import Config
47 import Outputable
48 import Panic            ( progName, GhcException(..) )
49 import Util             ( global )
50 import CmdLineOpts      ( dynFlag, verbosity )
51
52 import Exception        ( throwDyn, catchAllIO )
53 import IO
54 import Directory        ( doesFileExist, removeFile )
55 import IOExts           ( IORef, readIORef, writeIORef )
56 import Monad            ( when, unless )
57 import System           ( system, ExitCode(..), exitWith )
58 import CString
59 import Int
60
61 #if __GLASGOW_HASKELL__ < 500
62 import Storable
63 #else
64 import MarshalArray
65 #endif
66
67 #include "../includes/config.h"
68
69 #if !defined(mingw32_TARGET_OS)
70 import qualified Posix
71 #else
72 import Addr
73 import List             ( isPrefixOf )
74 #endif
75
76 import List             ( isSuffixOf )
77
78 #include "HsVersions.h"
79
80 {-# DEPRECATED runSomething "runSomething should be private to SysTools" #-}
81
82 \end{code}
83
84
85                 The configuration story
86                 ~~~~~~~~~~~~~~~~~~~~~~~
87
88 GHC needs various support files (library packages, RTS etc), plus
89 various auxiliary programs (cp, gcc, etc).  It finds these in one
90 of two places:
91
92 * When running as an *installed program*, GHC finds most of this support
93   stuff in the installed library tree.  The path to this tree is passed
94   to GHC via the -B flag, and given to initSysTools .
95
96 * When running *in-place* in a build tree, GHC finds most of this support
97   stuff in the build tree.  The path to the build tree is, again passed
98   to GHC via -B. 
99
100 GHC tells which of the two is the case by seeing whether package.conf
101 is in TopDir [installed] or in TopDir/ghc/driver [inplace] (what a hack).
102
103
104 SysTools.initSysProgs figures out exactly where all the auxiliary programs
105 are, and initialises mutable variables to make it easy to call them.
106 To to this, it makes use of definitions in Config.hs, which is a Haskell
107 file containing variables whose value is figured out by the build system.
108
109 Config.hs contains two sorts of things
110
111   cGCC,         The *names* of the programs
112   cCPP            e.g.  cGCC = gcc
113   cUNLIT                cCPP = gcc -E
114   etc           They do *not* include paths
115                                 
116
117   cUNLIT_DIR    The *path* to the directory containing unlit, split etc
118   cSPLIT_DIR    *relative* to the root of the build tree,
119                 for use when running *in-place* in a build tree (only)
120                 
121
122
123 %************************************************************************
124 %*                                                                      *
125 \subsection{Global variables to contain system programs}
126 %*                                                                      *
127 %************************************************************************
128
129 All these pathnames are maintained IN THE NATIVE FORMAT OF THE HOST MACHINE.
130 (See remarks under pathnames below)
131
132 \begin{code}
133 GLOBAL_VAR(v_Pgm_L,     error "pgm_L",   String)        -- unlit
134 GLOBAL_VAR(v_Pgm_P,     error "pgm_P",   String)        -- cpp
135 GLOBAL_VAR(v_Pgm_c,     error "pgm_c",   String)        -- gcc
136 GLOBAL_VAR(v_Pgm_m,     error "pgm_m",   String)        -- asm code mangler
137 GLOBAL_VAR(v_Pgm_s,     error "pgm_s",   String)        -- asm code splitter
138 GLOBAL_VAR(v_Pgm_a,     error "pgm_a",   String)        -- as
139 GLOBAL_VAR(v_Pgm_l,     error "pgm_l",   String)        -- ld
140 GLOBAL_VAR(v_Pgm_MkDLL, error "pgm_dll", String)        -- mkdll
141
142 GLOBAL_VAR(v_Pgm_T,    error "pgm_T",    String)        -- touch
143 GLOBAL_VAR(v_Pgm_CP,   error "pgm_CP",   String)        -- cp
144
145 GLOBAL_VAR(v_Path_package_config, error "path_package_config", String)
146 GLOBAL_VAR(v_Path_usage,          error "ghc_usage.txt",       String)
147
148 -- Parallel system only
149 GLOBAL_VAR(v_Pgm_sysman, error "pgm_sysman", String)    -- system manager
150 \end{code}
151
152
153 %************************************************************************
154 %*                                                                      *
155 \subsection{Initialisation}
156 %*                                                                      *
157 %************************************************************************
158
159 \begin{code}
160 initSysTools :: [String]        -- Command-line arguments starting "-B"
161
162              -> IO String       -- Set all the mutable variables above, holding 
163                                 --      (a) the system programs
164                                 --      (b) the package-config file
165                                 --      (c) the GHC usage message
166                                 -- Return TopDir
167
168
169 initSysTools minusB_args
170   = do  { (am_installed, top_dir) <- getTopDir minusB_args
171                 -- top_dir
172                 --      for "installed" this is the root of GHC's support files
173                 --      for "in-place" it is the root of the build tree
174                 -- NB: top_dir is assumed to be in standard Unix format '/' separated
175
176         ; let installed_bin pgm   =  pgmPath (top_dir `slash` "bin") pgm
177               installed     file  =  pgmPath top_dir file
178               inplace dir   pgm   =  pgmPath (top_dir `slash` dir) pgm
179
180         ; let pkgconfig_path
181                 | am_installed = installed "package.conf"
182                 | otherwise    = inplace cGHC_DRIVER_DIR "package.conf.inplace"
183
184               ghc_usage_msg_path
185                 | am_installed = installed "ghc-usage.txt"
186                 | otherwise    = inplace cGHC_DRIVER_DIR "ghc-usage.txt"
187
188                 -- For all systems, unlit, split, mangle are GHC utilities
189                 -- architecture-specific stuff is done when building Config.hs
190               unlit_path
191                 | am_installed = installed_bin cGHC_UNLIT
192                 | otherwise    = inplace cGHC_UNLIT_DIR cGHC_UNLIT
193
194                 -- split and mangle are Perl scripts
195               split_script
196                 | am_installed = installed_bin cGHC_SPLIT
197                 | otherwise    = inplace cGHC_SPLIT_DIR cGHC_SPLIT
198
199               mangle_script
200                 | am_installed = installed_bin cGHC_MANGLER
201                 | otherwise    = inplace cGHC_MANGLER_DIR cGHC_MANGLER
202
203         -- Check that the package config exists
204         ; config_exists <- doesFileExist pkgconfig_path
205         ; when (not config_exists) $
206              throwDyn (InstallationError 
207                          ("Can't find package.conf as " ++ pkgconfig_path))
208
209 #if defined(mingw32_TARGET_OS)
210         --              WINDOWS-SPECIFIC STUFF
211         -- On Windows, gcc and friends are distributed with GHC,
212         --      so when "installed" we look in TopDir/bin
213         -- When "in-place" we look wherever the build-time configure 
214         --      script found them
215         ; let cpp_path  | am_installed = installed cRAWCPP
216                         | otherwise    = cRAWCPP
217               gcc_path  | am_installed = installed cGCC
218                         | otherwise    = cGCC
219               perl_path | am_installed = installed cGHC_PERL
220                         | otherwise    = cGHC_PERL
221
222         -- 'touch' is a GHC util for Windows, and similarly unlit, mangle
223         ; let touch_path  | am_installed = installed cGHC_TOUCHY
224                           | otherwise    = inplace cGHC_TOUCHY_DIR cGHC_TOUCHY
225
226         -- On Win32 we don't want to rely on #!/bin/perl, so we prepend 
227         -- a call to Perl to get the invocation of split and mangle
228         ; let split_path  = perl_path ++ " " ++ split_script
229               mangle_path = perl_path ++ " " ++ mangle_script
230
231         ; let mkdll_path = cMKDLL
232 #else
233         --              UNIX-SPECIFIC STUFF
234         -- On Unix, the "standard" tools are assumed to be
235         -- in the same place whether we are running "in-place" or "installed"
236         -- That place is wherever the build-time configure script found them.
237         ; let   cpp_path   = cRAWCPP
238                 gcc_path   = cGCC
239                 touch_path = cGHC_TOUCHY
240                 mkdll_path = panic "Can't build DLLs on a non-Win32 system"
241
242         -- On Unix, scripts are invoked using the '#!' method.  Binary
243         -- installations of GHC on Unix place the correct line on the front
244         -- of the script at installation time, so we don't want to wire-in
245         -- our knowledge of $(PERL) on the host system here.
246         ; let split_path  = split_script
247               mangle_path = mangle_script
248
249 #endif
250
251         -- For all systems, copy and remove are provided by the host
252         -- system; architecture-specific stuff is done when building Config.hs
253         ; let   cp_path = cGHC_CP
254         
255         -- Other things being equal, as and ld are simply gcc
256         ; let   as_path  = gcc_path
257                 ld_path  = gcc_path
258
259                                        
260         -- Initialise the global vars
261         ; writeIORef v_Path_package_config pkgconfig_path
262         ; writeIORef v_Path_usage          ghc_usage_msg_path
263
264         ; writeIORef v_Pgm_sysman          (top_dir ++ "/ghc/rts/parallel/SysMan")
265                 -- Hans: this isn't right in general, but you can 
266                 -- elaborate it in the same way as the others
267
268         ; writeIORef v_Pgm_L               unlit_path
269         ; writeIORef v_Pgm_P               cpp_path
270         ; writeIORef v_Pgm_c               gcc_path
271         ; writeIORef v_Pgm_m               mangle_path
272         ; writeIORef v_Pgm_s               split_path
273         ; writeIORef v_Pgm_a               as_path
274         ; writeIORef v_Pgm_l               ld_path
275         ; writeIORef v_Pgm_MkDLL           mkdll_path
276         ; writeIORef v_Pgm_T               touch_path
277         ; writeIORef v_Pgm_CP              cp_path
278
279         ; return top_dir
280         }
281 \end{code}
282
283 setPgm is called when a command-line option like
284         -pgmLld
285 is used to override a particular program with a new onw
286
287 \begin{code}
288 setPgm :: String -> IO ()
289 -- The string is the flag, minus the '-pgm' prefix
290 -- So the first character says which program to override
291
292 setPgm ('P' : pgm) = writeIORef v_Pgm_P pgm
293 setPgm ('c' : pgm) = writeIORef v_Pgm_c pgm
294 setPgm ('m' : pgm) = writeIORef v_Pgm_m pgm
295 setPgm ('s' : pgm) = writeIORef v_Pgm_s pgm
296 setPgm ('a' : pgm) = writeIORef v_Pgm_a pgm
297 setPgm ('l' : pgm) = writeIORef v_Pgm_l pgm
298 setPgm pgm         = unknownFlagErr ("-pgm" ++ pgm)
299 \end{code}
300
301
302 \begin{code}
303 -- Find TopDir
304 --      for "installed" this is the root of GHC's support files
305 --      for "in-place" it is the root of the build tree
306 --
307 -- Plan of action:
308 -- 1. Set proto_top_dir
309 --      a) look for (the last) -B flag, and use it
310 --      b) if there are no -B flags, get the directory 
311 --         where GHC is running (only on Windows)
312 --
313 -- 2. If package.conf exists in proto_top_dir, we are running
314 --      installed; and TopDir = proto_top_dir
315 --
316 -- 3. Otherwise we are running in-place, so
317 --      proto_top_dir will be /...stuff.../ghc/compiler
318 --      Set TopDir to /...stuff..., which is the root of the build tree
319 --
320 -- This is very gruesome indeed
321
322 getTopDir :: [String]
323           -> IO (Bool,          -- True <=> am installed, False <=> in-place
324                  String)        -- TopDir (in Unix format '/' separated)
325
326 getTopDir minusbs
327   = do { top_dir <- get_proto
328         -- Discover whether we're running in a build tree or in an installation,
329         -- by looking for the package configuration file.
330        ; am_installed <- doesFileExist (top_dir `slash` "package.conf")
331
332        ; return (am_installed, top_dir)
333        }
334   where
335     -- get_proto returns a Unix-format path
336     get_proto | not (null minusbs)
337               = return (unDosifyPath (drop 2 (last minusbs)))   -- 2 for "-B"
338               | otherwise          
339               = do { maybe_exec_dir <- getExecDir -- Get directory of executable
340                    ; case maybe_exec_dir of       -- (only works on Windows; 
341                                                   --  returns Nothing on Unix)
342                         Nothing  -> throwDyn (InstallationError "missing -B<dir> option")
343                         Just dir -> return (remove_suffix (unDosifyPath dir))
344                    }
345
346     -- In an installed tree, the ghc binary lives in $libexecdir, which
347     -- is normally $libdir/bin.  So we strip off a /bin suffix here.
348     -- In a build tree, the ghc binary lives in $fptools/ghc/compiler,
349     -- so we strip off the /ghc/compiler suffix here too, leaving a
350     -- standard TOPDIR.
351     remove_suffix ghc_bin_dir   -- ghc_bin_dir is in standard Unix format
352         | "/ghc/compiler" `isSuffixOf` ghc_bin_dir      = back_two
353         | "/bin" `isSuffixOf` ghc_bin_dir               = back_one
354         | otherwise                                     = ghc_bin_dir
355         where
356          p1      = dropWhile (not . isSlash) (reverse ghc_bin_dir)
357          p2      = dropWhile (not . isSlash) (tail p1)  -- head is '/'
358          back_two = reverse (tail p2)                   -- head is '/'
359          back_one = reverse (tail p1)
360 \end{code}
361
362
363 %************************************************************************
364 %*                                                                      *
365 \subsection{Running an external program}
366 n%*                                                                     *
367 %************************************************************************
368
369
370 \begin{code}
371 runUnlit :: [String] -> IO ()
372 runUnlit args = do p <- readIORef v_Pgm_L
373                    runSomething "Literate pre-processor" p args
374
375 runCpp :: [String] -> IO ()
376 runCpp args =   do p <- readIORef v_Pgm_P
377                    runSomething "C pre-processor" p args
378
379 runCc :: [String] -> IO ()
380 runCc args =   do p <- readIORef v_Pgm_c
381                   runSomething "C Compiler" p args
382
383 runMangle :: [String] -> IO ()
384 runMangle args = do p <- readIORef v_Pgm_m
385                     runSomething "Mangler" p args
386
387 runSplit :: [String] -> IO ()
388 runSplit args = do p <- readIORef v_Pgm_s
389                    runSomething "Splitter" p args
390
391 runAs :: [String] -> IO ()
392 runAs args = do p <- readIORef v_Pgm_a
393                 runSomething "Assembler" p args
394
395 runLink :: [String] -> IO ()
396 runLink args = do p <- readIORef v_Pgm_l
397                   runSomething "Linker" p args
398
399 runMkDLL :: [String] -> IO ()
400 runMkDLL args = do p <- readIORef v_Pgm_MkDLL
401                    runSomething "Make DLL" p args
402
403 touch :: String -> String -> IO ()
404 touch purpose arg =  do p <- readIORef v_Pgm_T
405                         runSomething purpose p [arg]
406
407 copy :: String -> String -> String -> IO ()
408 copy purpose from to =
409     do
410       h <- openFile to WriteMode
411       ls <- readFile from -- inefficient, but it'll do for now.
412                               -- ToDo: speed up via slurping.
413       hPutStr h ls
414       hClose h
415 \end{code}
416
417 \begin{code}
418 getSysMan :: IO String  -- How to invoke the system manager 
419                         -- (parallel system only)
420 getSysMan = readIORef v_Pgm_sysman
421 \end{code}
422
423 %************************************************************************
424 %*                                                                      *
425 \subsection{GHC Usage message}
426 %*                                                                      *
427 %************************************************************************
428
429 Show the usage message and exit
430
431 \begin{code}
432 showGhcUsage = do { usage_path <- readIORef v_Path_usage
433                   ; usage      <- readFile usage_path
434                   ; dump usage
435                   ; exitWith ExitSuccess }
436   where
437      dump ""          = return ()
438      dump ('$':'$':s) = hPutStr stderr progName >> dump s
439      dump (c:s)       = hPutChar stderr c >> dump s
440
441 packageConfigPath = readIORef v_Path_package_config
442 \end{code}
443
444
445 %************************************************************************
446 %*                                                                      *
447 \subsection{Managing temporary files
448 %*                                                                      *
449 %************************************************************************
450
451 \begin{code}
452 GLOBAL_VAR(v_FilesToClean, [],               [String] )
453 GLOBAL_VAR(v_TmpDir,       cDEFAULT_TMPDIR,  String   )
454         -- v_TmpDir has no closing '/'
455 \end{code}
456
457 \begin{code}
458 setTmpDir dir = writeIORef v_TmpDir dir
459
460 cleanTempFiles :: Int -> IO ()
461 cleanTempFiles verb = do fs <- readIORef v_FilesToClean
462                          removeTmpFiles verb fs
463
464 cleanTempFilesExcept :: Int -> [FilePath] -> IO ()
465 cleanTempFilesExcept verb dont_delete
466   = do fs <- readIORef v_FilesToClean
467        let leftovers = filter (`notElem` dont_delete) fs
468        removeTmpFiles verb leftovers
469        writeIORef v_FilesToClean dont_delete
470
471
472 -- find a temporary name that doesn't already exist.
473 newTempName :: Suffix -> IO FilePath
474 newTempName extn
475   = do x <- getProcessID
476        tmp_dir <- readIORef v_TmpDir
477        findTempName tmp_dir x
478   where 
479     findTempName tmp_dir x
480       = do let filename = tmp_dir ++ "/ghc" ++ show x ++ '.':extn
481            b  <- doesFileExist filename
482            if b then findTempName tmp_dir (x+1)
483                 else do add v_FilesToClean filename -- clean it up later
484                         return filename
485
486 addFilesToClean :: [FilePath] -> IO ()
487 -- May include wildcards [used by DriverPipeline.run_phase SplitMangle]
488 addFilesToClean files = mapM_ (add v_FilesToClean) files
489
490 removeTmpFiles :: Int -> [FilePath] -> IO ()
491 removeTmpFiles verb fs
492   = traceCmd "Deleting temp files" 
493              ("Deleting: " ++ unwords fs)
494              (mapM_ rm fs)
495   where
496     rm f = removeFile f `catchAllIO`
497                 (\exn -> hPutStrLn stderr ("Warning: deleting non-existent " ++ f) >>
498                          return ())
499
500 \end{code}
501
502
503 %************************************************************************
504 %*                                                                      *
505 \subsection{Running a program}
506 %*                                                                      *
507 %************************************************************************
508
509 \begin{code}
510 GLOBAL_VAR(v_Dry_run, False, Bool)
511
512 setDryRun :: IO () 
513 setDryRun = writeIORef v_Dry_run True
514
515 -----------------------------------------------------------------------------
516 -- Running an external program
517
518 runSomething :: String          -- For -v message
519              -> String          -- Command name (possibly a full path)
520                                 --      assumed already dos-ified
521              -> [String]        -- Arguments
522                                 --      runSomething will dos-ify them
523              -> IO ()
524
525 runSomething phase_name pgm args
526  = traceCmd phase_name cmd_line $
527    do   { exit_code <- system cmd_line
528         ; if exit_code /= ExitSuccess
529           then throwDyn (PhaseFailed phase_name exit_code)
530           else return ()
531         }
532   where
533     cmd_line = unwords (pgm : dosifyPaths args)
534         -- The pgm is already in native format (appropriate dir separators)
535
536 traceCmd :: String -> String -> IO () -> IO ()
537 -- a) trace the command (at two levels of verbosity)
538 -- b) don't do it at all if dry-run is set
539 traceCmd phase_name cmd_line action
540  = do   { verb <- dynFlag verbosity
541         ; when (verb >= 2) $ hPutStrLn stderr ("*** " ++ phase_name)
542         ; when (verb >= 3) $ hPutStrLn stderr cmd_line
543         ; hFlush stderr
544         
545            -- Test for -n flag
546         ; n <- readIORef v_Dry_run
547         ; unless n $ do {
548
549            -- And run it!
550         ; action `catchAllIO` handle_exn verb
551         }}
552   where
553     handle_exn verb exn = do { when (verb >= 2) (hPutStr   stderr "\n")
554                              ; when (verb >= 3) (hPutStrLn stderr ("Failed: " ++ cmd_line))
555                              ; throwDyn (PhaseFailed phase_name (ExitFailure 1)) }
556 \end{code}
557
558
559 %************************************************************************
560 %*                                                                      *
561 \subsection{Path names}
562 %*                                                                      *
563 %************************************************************************
564
565 We maintain path names in Unix form ('/'-separated) right until 
566 the last moment.  On Windows we dos-ify them just before passing them
567 to the Windows command.
568
569 The alternative, of using '/' consistently on Unix and '\' on Windows,
570 proved quite awkward.  There were a lot more calls to dosifyPath,
571 and even on Windows we might invoke a unix-like utility (eg 'sh'), which
572 interpreted a command line 'foo\baz' as 'foobaz'.
573
574 \begin{code}
575 -----------------------------------------------------------------------------
576 -- Convert filepath into MSDOS form.
577
578 dosifyPaths :: [String] -> [String]
579 -- dosifyPaths does two things
580 -- a) change '/' to '\'
581 -- b) remove initial '/cygdrive/'
582
583 unDosifyPath :: String -> String
584 -- Just change '\' to '/'
585
586 pgmPath :: String               -- Directory string in Unix format
587         -> String               -- Program name with no directory separators
588                                 --      (e.g. copy /y)
589         -> String               -- Program invocation string in native format
590
591
592
593 #if defined(mingw32_TARGET_OS)
594
595 --------------------- Windows version ------------------
596 unDosifyPath xs = xs
597
598 dosifyPaths xs = map dosifyPath xs
599
600 pgmPath dir pgm = dosifyPath dir ++ '\\' : pgm
601
602 dosifyPath stuff
603   = subst '/' '\\' real_stuff
604  where
605    -- fully convince myself that /cygdrive/ prefixes cannot
606    -- really appear here.
607   cygdrive_prefix = "/cygdrive/"
608
609   real_stuff
610     | cygdrive_prefix `isPrefixOf` stuff = drop (length cygdrive_prefix) stuff
611     | otherwise = stuff
612    
613 #else
614
615 --------------------- Unix version ---------------------
616 dosifyPaths  ps = ps
617 unDosifyPath xs = subst '\\' '/' xs
618 pgmPath dir pgm = dir ++ '/' : pgm
619 --------------------------------------------------------
620 #endif
621
622 subst a b ls = map (\ x -> if x == a then b else x) ls
623 \end{code}
624
625
626 -----------------------------------------------------------------------------
627    Path name construction
628
629 \begin{code}
630 slash            :: String -> String -> String
631 absPath, relPath :: [String] -> String
632
633 isSlash '/'   = True
634 isSlash other = False
635
636 relPath [] = ""
637 relPath xs = foldr1 slash xs
638
639 absPath xs = "" `slash` relPath xs
640
641 slash s1 s2 = s1 ++ ('/' : s2)
642 \end{code}
643
644
645 %************************************************************************
646 %*                                                                      *
647 \subsection{Support code}
648 %*                                                                      *
649 %************************************************************************
650
651 \begin{code}
652 -----------------------------------------------------------------------------
653 -- Define       myGetProcessId :: IO Int
654 --              getExecDir     :: IO (Maybe String)
655
656 #ifdef mingw32_TARGET_OS
657 foreign import "_getpid" getProcessID :: IO Int -- relies on Int == Int32 on Windows
658
659 #if __GLASGOW_HASKELL__ >= 500
660 foreign import stdcall "GetCurrentDirectoryA" getCurrentDirectory :: Int32 -> CString -> IO Int32
661 foreign import stdcall "GetCurrentDirectoryA" getCurrentDirectoryLen :: Int32 -> Addr -> IO Int32
662 getExecDir :: IO (Maybe String)
663 getExecDir = do len <- getCurrentDirectoryLen 0 nullAddr
664                 buf <- mallocArray (fromIntegral len)
665                 ret <- getCurrentDirectory len buf
666                 if ret == 0 then return Nothing
667                             else do s <- peekCString buf
668                                     destructArray (fromIntegral len) buf
669                                     return (Just s)
670 #else
671 foreign import stdcall "GetCurrentDirectoryA" getCurrentDirectory :: Int32 -> Addr -> IO Int32
672 getExecDir :: IO (Maybe String)
673 getExecDir = do len <- getCurrentDirectory 0 nullAddr
674                 buf <- malloc (fromIntegral len)
675                 ret <- getCurrentDirectory len buf
676                 if ret == 0 then return Nothing
677                             else do s <- unpackCStringIO buf
678                                     free buf
679                                     return (Just s)
680 #endif
681 #else
682 getProcessID :: IO Int
683 getProcessID = Posix.getProcessID
684 getExecDir :: IO (Maybe String) = do return Nothing
685 #endif
686 \end{code}