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
|
module CPM.PackageCache.Local
( cacheDir
, createLinkToGlobalCache
, linkPackages
, clearCache
, createLink
, doesLinkPointToGlobalCache
, packageDir
, isPackageInCache
, allPackages
) where
import Debug
import Directory ( createDirectoryIfMissing, copyFile, getAbsolutePath
, getDirectoryContents, doesDirectoryExist, doesFileExist )
import Either ( rights )
import FilePath ( (</>) )
import IOExts ( readCompleteFile )
import List ( isPrefixOf )
import CPM.Config ( Config, packageInstallDir )
import CPM.ErrorLogger
import CPM.FileUtil ( isSymlink, removeSymlink, createSymlink, linkTarget )
import CPM.Package ( Package, packageId, readPackageSpec )
import CPM.PackageCache.Global ( installedPackageDir )
cacheDir :: String -> String
cacheDir pkgDir = pkgDir </> ".cpm" </> "package_cache"
allPackages :: String -> IO (ErrorLogger [Package])
allPackages pkgDir = do
cacheExists <- doesDirectoryExist cdir
if cacheExists
then do
debugMessage $ "Reading local package cache from '" ++ cdir ++ "'..."
cdircont <- getDirectoryContents cdir
let pkgDirs = filter (not . isPrefixOf ".") cdircont
pkgPaths <- mapIO removeIfIllegalSymLink $ map (cdir </>) pkgDirs
specPaths <- return $ map (</> "package.json") $ concat pkgPaths
specs <- mapIO (readPackageSpecIO . readCompleteFile) specPaths
succeedIO $ rights specs
else succeedIO []
where
readPackageSpecIO = liftIO readPackageSpec
cdir = cacheDir pkgDir
removeIfIllegalSymLink target = do
dirExists <- doesDirectoryExist target
fileExists <- doesFileExist target
isLink <- isSymlink target
if isLink && (dirExists || fileExists)
then return [target]
else when isLink (removeSymlink target >> done) >> return []
createLinkToGlobalCache :: Config -> String -> GlobalCache -> Package
-> IO (ErrorLogger ())
createLinkToGlobalCache cfg pkgDir _ pkg =
createLink pkgDir (installedPackageDir cfg pkg) (packageId pkg) False
linkPackages :: Config -> String -> GlobalCache -> [Package]
-> IO (ErrorLogger ())
linkPackages cfg pkgDir gc pkgs =
mapEL (createLinkToGlobalCache cfg pkgDir gc) pkgs |> succeedIO ()
doesLinkPointToGlobalCache :: Config -> GlobalCache -> String -> String -> IO Bool
doesLinkPointToGlobalCache cfg _ pkgDir name = do
target <- linkTarget link
return $ isPrefixOf (packageInstallDir cfg) target
where
link = (cacheDir pkgDir) </> name
packageDir :: String -> Package -> String
packageDir pkgDir pkg = (cacheDir pkgDir) </> (packageId pkg)
isPackageInCache :: String -> Package -> IO Bool
isPackageInCache pkgDir pkg = do
dirExists <- doesDirectoryExist packageDir'
fileExists <- doesFileExist packageDir'
return $ dirExists || fileExists
where
packageDir' = packageDir pkgDir pkg
clearCache :: String -> IO ()
clearCache pkgDir = do
cacheExists <- doesDirectoryExist cdir
if cacheExists
then do
pkgDirs <- getDirectoryContents cdir
forIO (map (cdir </>) $ filter (not . isDotOrDotDot) pkgDirs) deleteIfLink
return ()
else return ()
where
cdir = cacheDir pkgDir
ensureCacheDir :: String -> IO String
ensureCacheDir pkgDir = do
createDirectoryIfMissing True (cacheDir pkgDir)
return (cacheDir pkgDir)
deleteIfLink :: String -> IO (ErrorLogger ())
deleteIfLink target = do
dirExists <- doesDirectoryExist target
fileExists <- doesFileExist target
isLink <- isSymlink target
if dirExists || fileExists
then
if isLink
then removeSymlink target >> succeedIO ()
else failIO $ "deleteIfLink can only delete links!\n" ++
"Unexpected target: " ++ target
else
if isLink
then removeSymlink target >> succeedIO ()
else succeedIO ()
linkExists :: String -> IO Bool
linkExists target = do
dirExists <- doesDirectoryExist target
fileExists <- doesFileExist target
if dirExists || fileExists
then isSymlink target
else return False
isDotOrDotDot :: String -> Bool
isDotOrDotDot s = case s of
"." -> True
".." -> True
_ -> False
createLink :: String -> String -> String -> Bool -> IO (ErrorLogger ())
createLink pkgDir from name replace = do
ensureCacheDir pkgDir
exists <- linkExists target
if exists && not replace
then succeedIO ()
else deleteIfLink target |> do
fromabs <- getAbsolutePath from
rc <- createSymlink fromabs target
if rc == 0
then succeedIO ()
else failIO $ "Failed to create symlink from '" ++ from ++ "' to '" ++
target ++ "', return code " ++ show rc
where
target = cacheDir pkgDir </> name
|