1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
|
{-# OPTIONS -fglasgow-exts #-}
-----------------------------------------------------------------------------
-- $Id: Main.hs,v 1.31 2002/10/29 10:53:42 simonpj Exp $
--
-- Package management tool
-----------------------------------------------------------------------------
module Main where
import Package
#if __GLASGOW_HASKELL__ >= 504
import System.Console.GetOpt
import Text.PrettyPrint
import qualified Control.Exception as Exception
#else
import GetOpt
import Pretty
import qualified Exception
#endif
import Monad
import Directory
import System ( getEnv, getArgs,
system, exitWith,
ExitCode(..)
)
import IO
import List ( isPrefixOf )
import ParsePkgConfLite
#include "../../includes/config.h"
#ifdef mingw32_HOST_OS
import Foreign
#if __GLASGOW_HASKELL__ >= 504
import Foreign.C.String
#else
import CString
#endif
#endif
main = do
args <- getArgs
case getOpt Permute flags args of
(clis@(_:_),[],[]) -> runit clis
(_,_,errors) -> die (concat errors ++
usageInfo usageHeader flags)
data Flag
= Config FilePath
| Input FilePath
| List | Add Bool {- True => replace existing info -}
| Remove String | Show String
| Field String | AutoGHCiLibs | Force
deriving (Eq)
isAction (Config _) = False
isAction (Field _) = False
isAction (Input _) = False
isAction (AutoGHCiLibs) = False
isAction (Force) = False
isAction _ = True
usageHeader = "ghc-pkg [OPTION...]"
flags = [
Option ['f'] ["config-file"] (ReqArg Config "FILE")
"Use the specified package config file",
Option ['l'] ["list-packages"] (NoArg List)
"List the currently installed packages",
Option ['a'] ["add-package"] (NoArg (Add False))
"Add a new package",
Option ['u'] ["update-package"] (NoArg (Add True))
"Update package with new configuration",
Option ['i'] ["input-file"] (ReqArg Input "FILE")
"Read new package info from specified file",
Option ['s'] ["show-package"] (ReqArg Show "NAME")
"Show the configuration for package NAME",
Option [] ["field"] (ReqArg Field "FIELD")
"(with --show-package) Show field FIELD only",
Option [] ["force"] (NoArg Force)
"ignore missing directories/libraries",
Option ['r'] ["remove-package"] (ReqArg Remove "NAME")
"Remove an installed package",
Option ['g'] ["auto-ghci-libs"] (NoArg AutoGHCiLibs)
"Automatically build libs for GHCi (with -a)"
]
runit clis = do
let err_msg = "missing -f option, location of package.conf unknown"
conf_file <-
case [ f | Config f <- clis ] of
fs@(_:_) -> return (last fs)
[] -> do mb_dir <- getExecDir "/bin/ghc-pkg.exe"
case mb_dir of
Nothing -> die err_msg
Just dir -> return (dir ++ "/package.conf")
let toField "import_dirs" = return import_dirs
toField "source_dirs" = return source_dirs
toField "library_dirs" = return library_dirs
toField "hs_libraries" = return hs_libraries
toField "extra_libraries" = return extra_libraries
toField "include_dirs" = return include_dirs
toField "c_includes" = return c_includes
toField "package_deps" = return package_deps
toField "extra_ghc_opts" = return extra_ghc_opts
toField "extra_cc_opts" = return extra_cc_opts
toField "extra_ld_opts" = return extra_ld_opts
toField "framework_dirs" = return framework_dirs
toField "extra_frameworks"= return extra_frameworks
toField s = die ("unknown field: `" ++ s ++ "'")
fields <- mapM toField [ f | Field f <- clis ]
s <- readFile conf_file
let packages = parsePackageConfig s
eval_catch packages (\_ -> die "parse error in package config file")
let auto_ghci_libs = any isAuto clis
where isAuto AutoGHCiLibs = True; isAuto _ = False
input_file = head ([ f | (Input f) <- clis] ++ ["-"])
force = Force `elem` clis
case [ c | c <- clis, isAction c ] of
[ List ] -> listPackages packages
[ Add upd ] -> addPackage packages conf_file input_file
auto_ghci_libs upd force
[ Remove p ] -> removePackage packages conf_file p
[ Show p ] -> showPackage packages conf_file p fields
_ -> die (usageInfo usageHeader flags)
listPackages :: [PackageConfig] -> IO ()
listPackages packages = hPutStrLn stdout (listPkgs packages)
showPackage :: [PackageConfig]
-> FilePath
-> String
-> [PackageConfig -> [String]]
-> IO ()
showPackage packages pkgconf pkg_name fields =
case [ p | p <- packages, name p == pkg_name ] of
[] -> die ("can't find package `" ++ pkg_name ++ "'")
[pkg] | null fields -> hPutStrLn stdout (render (dumpPkgGuts pkg))
| otherwise -> hPutStrLn stdout (render (vcat
(map (vcat . map text) (map ($ pkg) fields))))
_ -> die "showPackage: internal error"
addPackage :: [PackageConfig] -> FilePath -> FilePath
-> Bool -> Bool -> Bool -> IO ()
addPackage packages pkgconf inputFile auto_ghci_libs updatePkg force = do
checkConfigAccess pkgconf
s <-
case inputFile of
"-" -> do
hPutStr stdout "Reading package info from stdin... "
getContents
f -> do
hPutStr stdout ("Reading package info from " ++ show f)
readFile f
let new_pkg = parseOnePackageConfig s
eval_catch new_pkg (\_ -> die "parse error in package info")
hPutStrLn stdout "done."
hPutStr stdout "Expanding embedded variables..."
new_exp_pkg <- expandEnvVars new_pkg force
hPutStrLn stdout "done."
new_details <- validatePackageConfig new_exp_pkg packages
auto_ghci_libs updatePkg force
savePackageConfig pkgconf
maybeRestoreOldConfig pkgconf $
writeNewConfig pkgconf new_details
removePackage :: [PackageConfig] -> FilePath -> String -> IO ()
removePackage packages pkgconf pkgName = do
checkConfigAccess pkgconf
when (pkgName `notElem` map name packages)
(die ("package `" ++ pkgName ++ "' not installed"))
savePackageConfig pkgconf
maybeRestoreOldConfig pkgconf $
writeNewConfig pkgconf (filter ((/= pkgName) . name) packages)
checkConfigAccess :: FilePath -> IO ()
checkConfigAccess pkgconf = do
access <- getPermissions pkgconf
when (not (writable access))
(die "you don't have permission to modify the package configuration file")
maybeRestoreOldConfig :: String -> IO () -> IO ()
maybeRestoreOldConfig conf_file io
= my_catch io (\e -> do
hPutStr stdout "\nWARNING: an error was encountered while the new \n\
\configuration was being written. Attempting to \n\
\restore the old configuration... "
renameFile (conf_file ++ ".old") conf_file
hPutStrLn stdout "done."
my_throw e
)
writeNewConfig :: String -> [PackageConfig] -> IO ()
writeNewConfig conf_file packages = do
hPutStr stdout "Writing new package config file... "
h <- openFile conf_file WriteMode
hPutStrLn h (dumpPackages packages)
hClose h
hPutStrLn stdout "done."
savePackageConfig :: String -> IO ()
savePackageConfig conf_file = do
hPutStr stdout "Saving old package config file... "
-- mv rather than cp because we've already done an hGetContents
-- on this file so we won't be able to open it for writing
-- unless we move the old one out of the way...
let oldFile = conf_file ++ ".old"
doesExist <- doesFileExist oldFile `catch` (\ _ -> return False)
when doesExist (removeFile oldFile `catch` (const $ return ()))
catch (renameFile conf_file oldFile)
(\ err -> do
hPutStrLn stderr (unwords [ "Unable to rename "
, show conf_file
, " to "
, show oldFile
])
ioError err)
hPutStrLn stdout "done."
-----------------------------------------------------------------------------
-- Sanity-check a new package config, and automatically build GHCi libs
-- if requested.
validatePackageConfig :: PackageConfig
-> [PackageConfig]
-> Bool
-> Bool
-> Bool
-> IO [PackageConfig]
validatePackageConfig pkg pkgs auto_ghci_libs updatePkg force = do
when (not updatePkg && (name pkg `elem` map name pkgs))
(die ("package `" ++ name pkg ++ "' is already installed"))
mapM_ (checkDep pkgs force) (package_deps pkg)
mapM_ (checkDir force) (import_dirs pkg)
mapM_ (checkDir force) (source_dirs pkg)
mapM_ (checkDir force) (library_dirs pkg)
mapM_ (checkDir force) (include_dirs pkg)
mapM_ (checkHSLib (library_dirs pkg) auto_ghci_libs force) (hs_libraries pkg)
-- ToDo: check these somehow?
-- extra_libraries :: [String],
-- c_includes :: [String],
let existing_pkgs
| updatePkg = filter ((/=(name pkg)).name) pkgs
| otherwise = pkgs
return (existing_pkgs ++ [pkg])
checkDir force d
| "$libdir" `isPrefixOf` d = return ()
-- can't check this, because we don't know what $libdir is
| otherwise = do
there <- doesDirectoryExist d
when (not there)
(dieOrForce force ("`" ++ d ++ "' doesn't exist or isn't a directory"))
checkDep :: [PackageConfig] -> Bool -> String -> IO ()
checkDep pkgs force n
| n `elem` map name pkgs = return ()
| otherwise = dieOrForce force ("dependency `" ++ n ++ "' doesn't exist")
checkHSLib :: [String] -> Bool -> Bool -> String -> IO ()
checkHSLib dirs auto_ghci_libs force lib = do
let batch_lib_file = "lib" ++ lib ++ ".a"
bs <- mapM (doesLibExistIn batch_lib_file) dirs
case [ dir | (exists,dir) <- zip bs dirs, exists ] of
[] -> dieOrForce force ("cannot find `" ++ batch_lib_file ++
"' on library path")
(dir:_) -> checkGHCiLib dirs dir batch_lib_file lib auto_ghci_libs
doesLibExistIn lib d
| "$libdir" `isPrefixOf` d = return True
| otherwise = doesFileExist (d ++ '/':lib)
checkGHCiLib :: [String] -> String -> String -> String -> Bool -> IO ()
checkGHCiLib dirs batch_lib_dir batch_lib_file lib auto_build = do
let ghci_lib_file = lib ++ ".o"
ghci_lib_path = batch_lib_dir ++ '/':ghci_lib_file
bs <- mapM (\d -> doesFileExist (d ++ '/':ghci_lib_file)) dirs
case [ dir | (exists,dir) <- zip bs dirs, exists ] of
[] | auto_build ->
autoBuildGHCiLib batch_lib_dir batch_lib_file ghci_lib_file
| otherwise ->
hPutStrLn stderr ("warning: can't find GHCi lib `"
++ ghci_lib_file ++ "'")
(dir:_) -> return ()
-- automatically build the GHCi version of a batch lib,
-- using ld --whole-archive.
autoBuildGHCiLib dir batch_file ghci_file = do
let ghci_lib_file = dir ++ '/':ghci_file
batch_lib_file = dir ++ '/':batch_file
hPutStr stderr ("building GHCi library `" ++ ghci_lib_file ++ "'...")
#ifdef darwin_TARGET_OS
system("ld -r -x -o " ++ ghci_lib_file ++
" -all_load " ++ batch_lib_file)
#else
system("ld -r -x -o " ++ ghci_lib_file ++
" --whole-archive " ++ batch_lib_file)
#endif
hPutStrLn stderr (" done.")
-----------------------------------------------------------------------------
expandEnvVars :: PackageConfig -> Bool -> IO PackageConfig
expandEnvVars pkg force = do
-- permit _all_ strings to contain ${..} environment variable references,
-- arguably too flexible.
nm <- expandString (name pkg)
imp_dirs <- expandStrings (import_dirs pkg)
src_dirs <- expandStrings (source_dirs pkg)
lib_dirs <- expandStrings (library_dirs pkg)
hs_libs <- expandStrings (hs_libraries pkg)
ex_libs <- expandStrings (extra_libraries pkg)
inc_dirs <- expandStrings (include_dirs pkg)
c_incs <- expandStrings (c_includes pkg)
p_deps <- expandStrings (package_deps pkg)
e_g_opts <- expandStrings (extra_ghc_opts pkg)
e_c_opts <- expandStrings (extra_cc_opts pkg)
e_l_opts <- expandStrings (extra_ld_opts pkg)
f_dirs <- expandStrings (framework_dirs pkg)
e_frames <- expandStrings (extra_frameworks pkg)
return (pkg { name = nm
, import_dirs = imp_dirs
, source_dirs = src_dirs
, library_dirs = lib_dirs
, hs_libraries = hs_libs
, extra_libraries = ex_libs
, include_dirs = inc_dirs
, c_includes = c_incs
, package_deps = p_deps
, extra_ghc_opts = e_g_opts
, extra_cc_opts = e_c_opts
, extra_ld_opts = e_l_opts
, framework_dirs = f_dirs
, extra_frameworks= e_frames
})
where
expandStrings = mapM expandString
-- Just for fun, keep this in the IO monad.
expandString :: String -> IO String
expandString str =
case break (=='$') str of
(xs, _:'{':rs) ->
case span (/='}') rs of
(nm,_:remainder) -> do
nm' <- lookupEnvVar nm
str' <- expandString remainder
return (nm' ++ str')
_ -> return str -- no closing '}'
_ -> return str
lookupEnvVar nm =
catch (System.getEnv nm)
(\ _ -> do dieOrForce force ("Unable to expand variable " ++
show nm)
return "")
-----------------------------------------------------------------------------
die :: String -> IO a
die s = do { hFlush stdout ; hPutStrLn stderr s; exitWith (ExitFailure 1) }
dieOrForce :: Bool -> String -> IO ()
dieOrForce force s
| force = do hFlush stdout; hPutStrLn stderr (s ++ " (ignoring)")
| otherwise = die s
-----------------------------------------------------------------------------
-- Exceptions
#ifndef __GLASGOW_HASKELL__
eval_catch a h = a `seq` return ()
my_catch = IO.catch
my_throw = IO.fail
#else /* GHC */
my_throw = Exception.throw
#if __GLASGOW_HASKELL__ > 408
eval_catch = Exception.catch . Exception.evaluate
my_catch = Exception.catch
#else
eval_catch = Exception.catchAll
my_catch = Exception.catchAllIO
#endif
#endif
-----------------------------------------
-- Cut and pasted from ghc/compiler/SysTools
#if defined(mingw32_HOST_OS)
subst a b ls = map (\ x -> if x == a then b else x) ls
unDosifyPath xs = subst '\\' '/' xs
getExecDir :: String -> IO (Maybe String)
-- (getExecDir cmd) returns the directory in which the current
-- executable, which should be called 'cmd', is running
-- So if the full path is /a/b/c/d/e, and you pass "d/e" as cmd,
-- you'll get "/a/b/c" back as the result
getExecDir cmd
= allocaArray len $ \buf -> do
ret <- getModuleFileName nullPtr buf len
if ret == 0 then return Nothing
else do s <- peekCString buf
return (Just (reverse (drop (length cmd)
(reverse (unDosifyPath s)))))
where
len = 2048::Int -- Plenty, PATH_MAX is 512 under Win32.
foreign import stdcall "GetModuleFileNameA" unsafe
getModuleFileName :: Ptr () -> CString -> Int -> IO Int32
#else
getExecDir :: String -> IO (Maybe String)
getExecDir s = do return Nothing
#endif
|