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
|
module CPM.Package.Helpers
( installPackageSourceTo
, renderPackageInfo
, cleanPackage
, getLocalPackageSpec
) where
import System.Directory
import System.FilePath
import System.Process ( getPID )
import Data.List ( intercalate, isSuffixOf, splitOn, nub )
import Control.Monad
import Prelude hiding ( empty )
import System.CurryPath ( addCurrySubdir )
import Text.Pretty hiding ( (</>) )
import CPM.Config ( Config(..), homePackageDir, compilerBaseVersion )
import CPM.ErrorLogger
import CPM.Executables ( getCurlCmd )
import CPM.FileUtil ( cleanTempDir, getRealPath, inDirectory, inTempDir
, quote, removeDirectoryComplete, tempDir
, whenFileExists )
import CPM.Helpers ( stripSpaces )
import CPM.Package
installPackageSourceTo :: Package -> PackageSource -> String -> ErrorLogger ()
installPackageSourceTo pkg (Git url rev) installdir = do
let pkgDir = installdir </> pkgid
c <- inDirectoryEL installdir $
execQuietCmd (cloneCommand "-q") (cloneCommand "")
if c == 0
then case rev of
Nothing -> checkoutGitRef pkgDir "HEAD"
Just (Tag tag) -> checkoutGitRef pkgDir
(replaceVersionInTag pkg tag)
Just (Ref ref) -> checkoutGitRef pkgDir ref
Just VersionAsTag ->
let tag = "v" ++ (showVersion $ version pkg)
in do checkoutGitRef pkgDir tag
logInfo $ "Package '" ++ packageId pkg ++ "' installed"
else liftIOEL (removeDirectoryComplete pkgDir) >>
fail ("Failed to clone repository from '" ++ url ++
"', return code " ++ show c)
where
pkgid = packageId pkg
cloneCommand q = unwords ["git clone", q, quote url, quote $ pkgid]
installPackageSourceTo pkg (FileSource zipfile) installdir =
installPkgFromFile pkg zipfile (installdir </> packageId pkg) False
installPackageSourceTo pkg (Http url) installdir = do
pid <- liftIOEL $ getPID
let pkgDir = installdir </> packageId pkg
basepf = "package" ++ show pid
pkgfile = if takeExtension url == ".zip"
then basepf ++ ".zip"
else if ".tar.gz" `isSuffixOf` url
then basepf ++ ".tar.gz"
else ""
if null pkgfile
then fail $ "Illegal URL (only .zip or .tar.gz allowed):\n" ++ url
else do
tmpdir <- liftIOEL tempDir
let tmppkgfile = tmpdir </> pkgfile
curlcmd <- getCurlCmd
c <- inTempDirEL $ showExecCmd $
curlcmd ++ " -f -o " ++ tmppkgfile ++ " " ++ quote url
if c == 0
then installPkgFromFile pkg tmppkgfile pkgDir True
else do liftIOEL cleanTempDir
fail $ "`curl` failed with exit status " ++ show c
installPkgFromFile :: Package -> String -> String -> Bool -> ErrorLogger ()
installPkgFromFile pkg pkgfile pkgDir rmfile = do
let iszip = takeExtension pkgfile == ".zip"
absfile <- liftIOEL $ getRealPath pkgfile
liftIOEL $ createDirectory pkgDir
c <- if iszip
then inTempDirEL $ showExecCmd $ "unzip -qq -d " ++ quote pkgDir ++
" " ++ quote absfile
else inDirectoryEL pkgDir $ showExecCmd $
"tar -xzf " ++ quote absfile
when rmfile (showExecCmd ("rm -f " ++ absfile) >> return ())
liftIOEL cleanTempDir
if c == 0
then logInfo $ "Installed " ++ packageId pkg
else do liftIOEL $ removeDirectoryComplete pkgDir
fail ("Failed to unzip package, return code " ++ show c)
checkoutGitRef :: String -> String -> ErrorLogger ()
checkoutGitRef dir ref = do
let qcmd q = unwords ["git checkout", q, ref]
c <- inDirectoryEL dir $ execQuietCmd (qcmd "-q") (qcmd "")
if c == 0
then liftIOEL removeGitFiles >> return ()
else liftIOEL (removeDirectoryComplete dir) >>
fail ("Failed to check out " ++ ref ++ ", return code " ++ show c)
where
removeGitFiles = do
removeDirectoryComplete (dir </> ".git")
let gitignore = dir </> ".gitignore"
whenFileExists gitignore (removeFile gitignore)
cleanPackage :: Config -> LogLevel -> ErrorLogger ()
cleanPackage cfg ll = do
specDir <- getLocalPackageSpec cfg "."
pkg <- loadPackageSpec specDir
let dotcpm = specDir </> ".cpm"
srcdirs = map (specDir </>) (sourceDirsOf pkg)
testdirs = map (specDir </>)
(maybe []
(map (\ (PackageTest m _ _ _) -> m))
(testSuite pkg))
cldirs = nub (dotcpm : map (</> compilerSubdir) (srcdirs ++ testdirs))
rmdirs <- filterM (liftIOEL . doesDirectoryExist) cldirs
unless (null rmdirs) $ do
logAt ll $ "Removing directories: " ++ unwords rmdirs
showExecCmd (unwords $ ["rm", "-rf"] ++ rmdirs)
return ()
where
compilerSubdir =
let (cname,cmaj,cmin,crev) = compilerVersion cfg
in ".curry" </>
cname ++ '-' : intercalate "." (map show [cmaj, cmin, crev])
renderPackageInfo :: Bool -> Bool -> Bool -> Package -> String
renderPackageInfo allinfos plain installed pkg = pPrint doc
where
boldText s = (if plain then id else bold) $ text s
maxLen = 12
doc = vcat $ [ heading, rule
, if allinfos then instTxt installed else empty
, ver, auth, maintnr, synop
, cats, deps, compilers, descr ] ++ execspecs ++
if allinfos
then [ srcdirs, expmods, cfgmod ] ++ testsuites ++
[ docuspec, src, licns, licfl, copyrt, homepg
, reposy, bugrep ]
else []
pkgId = packageId pkg
heading = text pkgId
instTxt i = if i || plain then empty
else red $ text "Not installed"
rule = text (take (length pkgId) $ repeat '-')
ver = fill maxLen (boldText "Version") <+>
(text $ showVersion $ version pkg)
auth = fill maxLen (boldText "Author") <+>
indent 0 (fillSep (map (text . stripSpaces)
(concatMap (splitOn ",") $ author pkg)))
synop = fill maxLen (boldText "Synopsis") <+>
indent 0 (fillSep (map text (words (synopsis pkg))))
deps = boldText "Dependencies" <$$>
(vcat $ map (indent 4 . text . showDependency) $ dependencies pkg)
maintnr = case maintainer pkg of
[] -> empty
xs -> fill maxLen (boldText "Maintainer") <+>
indent 0 (fillSep (map (text . stripSpaces)
(concatMap (splitOn ",") xs)))
cats =
if null (category pkg)
then empty
else fill maxLen (boldText "Category") <+>
indent 0 (fillSep (map text (category pkg)))
execspecs = map showExec (executableSpec pkg)
where
showExec (PackageExecutable n m eopts) =
if allinfos
then boldText "Executable" <$$>
indent 4 (boldText "Name " <+> text n) <$$>
indent 4 (boldText "Main module " <+> text m) <$$>
if null eopts
then empty
else indent 4 (boldText "Options ") <+>
align (vsep (map (\ (c,o) -> text $ c ++ ": " ++ o) eopts))
else fill maxLen (boldText "Executable") <+> text n
testsuites = case testSuite pkg of
Nothing -> []
Just tests ->
map (\ (PackageTest dir mods opts script) ->
let check = if null script then "Check" else "Test" in
boldText "Test suite" <$$>
indent 4 (boldText "Directory " <+> text dir) <$$>
(if null script
then empty
else indent 4 (boldText "Test script " <+> text script)) <$$>
(if null opts
then empty
else indent 4 (boldText (check++" options") <+>
text opts)) <$$>
(if null mods
then empty
else indent 4 (boldText "Test modules " <+>
align (fillSep (map text mods)))))
tests
docuspec = case documentation pkg of
Nothing -> empty
Just (PackageDocumentation docdir docmain doccmd) ->
boldText "Documentation" <$$>
indent 4 (boldText "Directory " <+> text docdir) <$$>
indent 4 (boldText "Main file " <+> text docmain) <$$>
if null doccmd
then empty
else indent 4 (boldText "Command ") <+> text doccmd
descr = showParaField description "Description"
licns = showLineField license "License"
licfl = showLineField licenseFile "License file"
copyrt = showParaField copyright "Copyright"
homepg = showLineField homepage "Homepage"
reposy = showLineField repository "Repository"
bugrep = showLineField bugReports "Bug reports"
cfgmod = showLineField configModule "Config module"
src = maybe empty
(\_ -> boldText "Source" <$$>
indent 4 (text $ showSourceOfPackage pkg))
(source pkg)
srcdirs =
if null (sourceDirs pkg)
then empty
else boldText "Source directories" <$$>
indent 4 (fillSep (map text (sourceDirs pkg)))
expmods =
if null (exportedModules pkg)
then empty
else boldText "Exported modules" <$$>
indent 4 (fillSep (map text (exportedModules pkg)))
compilers =
if null (compilerCompatibility pkg)
then empty
else boldText "Compiler compatibility" <$$>
(vcat $ map (indent 4 . text . showCompilerDependency)
$ compilerCompatibility pkg)
showLineField fgetter fname = case fgetter pkg of
Nothing -> empty
Just s -> boldText fname <$$> indent 4 (text s)
showParaField fgetter fname = case fgetter pkg of
Nothing -> empty
Just s -> boldText fname <$$>
indent 4 (fillSep (map text (words s)))
getLocalPackageSpec :: Config -> String -> ErrorLogger String
getLocalPackageSpec cfg dir = do
adir <- liftIOEL $ getRealPath dir
spec <- searchLocalSpec (length (splitPath adir)) dir
maybe returnHomePackage return spec
where
returnHomePackage = do
let homepkgdir = homePackageDir cfg
homepkgspec = homepkgdir </> packageSpecFile
specexists <- liftIOEL $ doesFileExist homepkgspec
let basedeps = maybe []
(\v -> [Dependency "base" [[VMajCompatible v]]])
(readVersion (compilerBaseVersion cfg))
unless (specexists || null homepkgdir) $ do
liftIOEL $ createDirectoryIfMissing True homepkgdir
let newpkg = emptyPackage
{ name = snd (splitFileName homepkgdir)
, version = initialVersion
, author = ["CPM"]
, synopsis = "Default home package"
, dependencies = basedeps
}
liftIOEL $ writePackageSpec newpkg homepkgspec
logInfo $ "New empty package specification '" ++ homepkgspec ++
"' generated"
return homepkgdir
searchLocalSpec m sdir = do
existsLocal <- liftIOEL $ doesFileExist $ sdir </> packageSpecFile
if existsLocal
then return (Just sdir)
else do
logDebug ("No package.json in " ++ show sdir ++ ", trying " ++
show (sdir </> ".."))
parentExists <- liftIOEL $ doesDirectoryExist $ sdir </> ".."
if m>0 && parentExists
then searchLocalSpec (m-1) $ sdir </> ".."
else return Nothing
|