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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
|
module Verify.Files
( deleteVerifyCacheDirectory, typeFilesOutdated, readCallCondTypes
, readTypesOfModules, readPublicCallTypeModule
, readCallTypeFile, readNonFailCondFile
, storeTypes
)
where
import Control.Monad ( unless, when )
import Data.List ( find, intercalate, isPrefixOf, isSuffixOf, sortBy )
import Curry.Compiler.Distribution ( installDir )
import AbstractCurry.Build
import AbstractCurry.Files ( readCurry )
import AbstractCurry.Pretty ( showCProg )
import AbstractCurry.Select
import AbstractCurry.Types hiding ( pre )
import Analysis.TermDomain ( TermDomain )
import Contract.Names ( decodeContractName, encodeContractName )
import Data.Time ( ClockTime, compareClockTime )
import Debug.Profile
import FlatCurry.Types ( FuncDecl )
import FlatCurry.TypesRW
import RW.Base ( ReadWrite, readDataFile, writeDataFile )
import System.CurryPath ( currySubdir, lookupModuleSourceInLoadPath
, modNameToPath )
import System.Directory
import System.FilePath ( (</>), (<.>), dropDrive, dropFileName, isAbsolute
, joinPath, splitDirectories )
import System.IO
import System.IOExts ( evalCmd, readCompleteFile )
import System.Process ( system )
import FlatCurry.Build ( pre )
import PackageConfig ( getPackagePath )
import Verify.CallTypes
import Verify.Helpers
import Verify.IOTypes
import Verify.NonFailConditions
import Verify.Options
import Verify.ProgInfo
getVerifyCacheDirectory :: String -> IO String
getVerifyCacheDirectory domainid = do
homedir <- getHomeDirectory
hashomedir <- doesDirectoryExist homedir
let maindir = if hashomedir then homedir else installDir
return $ maindir </> ".curry_verify_cache" </>
joinPath (tail (splitDirectories currySubdir)) </> domainid
deleteVerifyCacheDirectory :: Options -> IO ()
deleteVerifyCacheDirectory opts = do
cachedir <- getVerifyCacheDirectory (optDomainID opts)
exists <- doesDirectoryExist cachedir
when exists $ do
printWhenStatus opts $ "Deleting directory '" ++ cachedir ++ "''..."
system $ "rm -Rf " ++ quote cachedir
return ()
where
quote s = "\"" ++ s ++ "\""
getVerifyCacheBaseFile :: Options -> String -> String -> IO String
getVerifyCacheBaseFile opts moduleName infotype = do
analysisDirectory <- getVerifyCacheDirectory (optDomainID opts)
let modAnaName = moduleName ++ "-" ++ infotype
(fileDir,_) <- findModuleSourceInLoadPath moduleName
absfileDir <- getRealPath fileDir
return $ analysisDirectory </> dropDrive absfileDir </> modAnaName
where
findModuleSourceInLoadPath modname =
lookupModuleSourceInLoadPath modname >>=
maybe (error $ "Source file for module '" ++ modname ++ "' not found!")
return
getRealPath :: String -> IO String
getRealPath path = do
(rc, out, _) <- evalCmd "realpath" [path] ""
if rc == 0 then return (stripSpaces out)
else getAbsolutePath path
where
stripSpaces = reverse . dropWhile isSpace . reverse . dropWhile isSpace
getCallTypesFile :: Options -> String -> IO String
getCallTypesFile opts mname = getVerifyCacheBaseFile opts mname "CALLTYPES"
getNonFailCondFile :: Options -> String -> IO String
getNonFailCondFile opts mname = getVerifyCacheBaseFile opts mname "NONFAIL"
getIOTypesFile :: Options -> String -> IO String
getIOTypesFile opts mname = getVerifyCacheBaseFile opts mname "IOTYPES"
getConsInfosFile :: Options -> String -> IO String
getConsInfosFile opts mname = getVerifyCacheBaseFile opts mname "CONSINFOS"
callTypesModule :: String -> String
callTypesModule mname = mname ++ "_CALLSPEC"
storeTypes :: TermDomain a => Options
-> String
-> [FuncDecl]
-> [(QName,ConsInfo)]
-> [(QName,ACallType a)]
-> [(QName,ACallType a)]
-> [(QName,NonFailCond)]
-> [(QName,InOutType a)]
-> IO ()
storeTypes opts mname fdecls consinfos acalltypes pubntcalltypes funconds
iotypes = do
patfile <- getVerifyCacheBaseFile opts mname "..."
printWhenAll opts $ "Caching analysis results at '" ++ patfile ++ "'"
createDirectoryIfMissing True (dropFileName patfile)
cifile <- getConsInfosFile opts mname
ctfile <- getCallTypesFile opts mname
nffile <- getNonFailCondFile opts mname
iofile <- getIOTypesFile opts mname
writeTermFile opts cifile consinfos
writeTermFile opts ctfile
(map (\ ((_,fn),ct) -> (fn,ct)) (filterMod acalltypes))
writeTermFile opts nffile
(map (\ ((_,fn),ct) -> (fn, filterUnknownTypes ct)) (filterMod funconds))
writeTermFile opts iofile
(map (\ ((_,fn), IOT iots) -> (fn,iots)) (filterMod iotypes))
when (optSpecModule opts) $
writeSpecModule opts mname fdecls (sortFunResults pubntcalltypes)
(sortFunResults funconds)
where
filterUnknownTypes :: NonFailCond -> NonFailCond
filterUnknownTypes (vts,e) = (filter ((/=unknownType) . snd) vts, e)
filterMod xs = filter (\ ((mn,_),_) -> mn == mname) xs
typeFilesOutdated :: Options -> String -> IO Bool
typeFilesOutdated opts mname = do
cifile <- getConsInfosFile opts mname
ctfile <- getCallTypesFile opts mname
nffile <- getNonFailCondFile opts mname
iofile <- getIOTypesFile opts mname
allexists <- fmap and $ mapM doesFileExist [cifile,ctfile,nffile,iofile]
if not allexists
then return True
else do
srctime <- getModuleModTime mname
ftimes <- mapM getModificationTime [cifile,ctfile,nffile,iofile]
return $ any (\t -> compareClockTime t srctime == LT) ftimes
readTypes :: TermDomain a => Options -> String
-> IO ([(QName,ConsInfo)], [(QName,ACallType a)],
[(QName,NonFailCond)], [(QName,InOutType a)])
readTypes opts mname = do
consis <- getConsInfosFile opts mname >>= readTermFile opts
cts <- getCallTypesFile opts mname >>= readTermFile opts
nfcs <- getNonFailCondFile opts mname >>= readTermFile opts
iots <- getIOTypesFile opts mname >>= readTermFile opts
return (consis,
map (\ (fn,ct) -> ((mname,fn), ct)) cts,
map (\ (fn,nfc) -> ((mname,fn), nfc)) nfcs,
map (\ (fn,iot) -> ((mname,fn), IOT iot)) iots)
readCallCondTypes :: TermDomain a => Options -> String
-> IO ([(QName,ACallType a)], [(QName,NonFailCond)])
readCallCondTypes opts mname = do
cts <- getCallTypesFile opts mname >>= readTermFile opts
nfcs <- getNonFailCondFile opts mname >>= readTermFile opts
return (map (\ (fn,ct) -> ((mname,fn), ct)) cts,
map (\ (fn,nfc) -> ((mname,fn), nfc)) nfcs)
readTypesOfModules :: TermDomain a => Options
-> (Options -> String -> IO ()) -> [String]
-> IO ([(QName,ConsInfo)], [(QName, ACallType a)],
[(QName,NonFailCond)], [(QName, InOutType a)])
readTypesOfModules opts computetypes mnames = do
(xs,ys,zs,ws) <- mapM tryRead mnames >>= return . unzip4
return (concat xs, concat ys, concat zs, concat ws)
where
tryRead mname = do
outdated <- typeFilesOutdated opts mname
if outdated
then do
printWhenStatus opts $ "\nVerifying imported module '" ++ mname ++ "'..."
computetypes opts mname
oldfs <- typeFilesOutdated opts mname
if oldfs
then error $ "Cannot read call/io types of module '" ++ mname ++ "'"
else readTypes opts mname
else readTypes opts mname
unzip4 :: [(a, b, c, d)] -> ([a], [b], [c], [d])
unzip4 [] = ([], [], [], [])
unzip4 ((x, y, z, w) : ts) = (x : xs, y : ys, z : zs, w : ws)
where (xs, ys, zs, ws) = unzip4 ts
readCallTypeFile :: TermDomain a => Options -> ClockTime -> String
-> IO (Maybe [(QName,ACallType a)])
readCallTypeFile opts mtimesrc mname = do
fname <- getCallTypesFile opts mname
existsf <- doesFileExist fname
if existsf && not (optRerun opts)
then do
mtimectf <- getModificationTime fname
if compareClockTime mtimectf mtimesrc == GT
then do
printWhenStatus opts $
"Reading previously inferred abstract call types from '" ++
fname ++ "'..."
cts <- readTermFile opts fname
return $ Just (map (\ (fn,ct) -> ((mname,fn), ct)) cts)
else return Nothing
else return Nothing
readNonFailCondFile :: Options -> ClockTime -> String
-> IO (Maybe [(QName,NonFailCond)])
readNonFailCondFile opts mtimesrc mname = do
fname <- getNonFailCondFile opts mname
existsf <- doesFileExist fname
if existsf && not (optRerun opts)
then do
mtimectf <- getModificationTime fname
if compareClockTime mtimectf mtimesrc == GT
then do
printWhenStatus opts $
"Reading previously inferred non-fail conditions from '" ++
fname ++ "'..."
cts <- readTermFile opts fname
return $ Just $ map (\ (fn,ct) -> ((mname,fn), ct)) cts
else return Nothing
else return Nothing
readPublicCallTypeModule :: Options -> [(QName,ConsInfo)] -> ClockTime -> String
-> IO [(QName,[[CallType]])]
readPublicCallTypeModule opts consinfos mtimesrc mname = do
let specmname = callTypesModule mname
specfile <- lookupModuleSourceInLoadPath specmname >>= return . maybe "" snd
existsf <- doesFileExist specfile
if existsf && not (optRerun opts)
then do
mtimesf <- getModificationTime specfile
if compareClockTime mtimesf mtimesrc == GT
then do
printWhenStatus opts $
"Reading required call types from '" ++ specfile ++ "'..."
readCallTypeSpecMod consinfos mname specmname
else do
printWhenStatus opts $
"Ignoring call type specifications in '" ++ specfile ++ "' (too old)"
tryReadInclude specmname
else tryReadInclude specmname
where
tryReadInclude ctmname = do
pkgpath <- getPackagePath
let ifname = pkgpath </> "include" </> modNameToPath ctmname ++ ".curry"
existsif <- doesFileExist ifname
if existsif
then do
printWhenStatus opts $
"Reading required call types from '" ++ ifname ++ "'..."
curdir <- getCurrentDirectory
setCurrentDirectory $ pkgpath </> "include"
result <- readCallTypeSpecMod consinfos mname ctmname
setCurrentDirectory curdir
return result
else return []
readCallTypeSpecMod :: [(QName,ConsInfo)] -> String -> String
-> IO [(QName,[[CallType]])]
readCallTypeSpecMod consinfos mname specmname = do
smod <- readCurry specmname
return $ map (fromSpecFunc consinfos mname)
(filter isSpecFunc (functions smod))
where
isSpecFunc fd = "'calltype" `isSuffixOf` snd (funcName fd)
maybeCons2CallTypes :: [(QName,ConsInfo)] -> [[Maybe [String]]]
-> [[CallType]]
maybeCons2CallTypes consinfos cts = map (map mb2ct) cts
where
mb2ct Nothing = AnyT
mb2ct (Just cscts) = MCons $ map (mb2cs . readQC) cscts
where
mb2cs qc = (qc, take (arityOfCons consinfos qc) (repeat AnyT))
fromSpecFunc :: [(QName,ConsInfo)] -> String -> CFuncDecl
-> (QName, [[CallType]])
fromSpecFunc consinfos mname fdecl =
((mname,fname),
maybeCons2CallTypes consinfos $ rules2calltype (funcRules fdecl))
where
fname = fromSpecName (decodeContractName (snd (funcName fdecl)))
fromSpecName = reverse . drop 9 . reverse
rules2calltype rl = case rl of
[CRule [] (CSimpleRhs exp [])] -> parseACList parseACTuple exp
_ -> error syntaxError
syntaxError =
"Illegal specification syntax in specification rule for '" ++ fname ++ "'"
parseACTuple exp = case funArgsOfExp exp of
Just (qf,[]) | qf == pre "()" -> []
Just (qf,args) | "(," `isPrefixOf` snd qf
-> map (parseACMaybe (parseACList parseACString)) args
_ -> [parseACMaybe (parseACList parseACString) exp]
parseACMaybe parsex exp = case funArgsOfExp exp of
Just (qf,[]) | qf == pre "Nothing" -> Nothing
Just (qf,[a]) | qf == pre "Just" -> Just (parsex a)
_ -> error syntaxError
parseACList parsex exp = case funArgsOfExp exp of
Just (qf,[]) | qf == pre "[]" -> []
Just (qf,[e1,e2]) | qf == pre ":" -> parsex e1 : parseACList parsex e2
_ -> error syntaxError
parseACString exp = case exp of
CLit (CStringc s) -> s
_ -> error syntaxError
funArgsOfExp :: CExpr -> Maybe (QName,[CExpr])
funArgsOfExp exp = case exp of
CSymbol qf -> Just (qf,[])
CApply e1 e2 -> maybe Nothing
(\ (qf, args) -> Just (qf, args ++ [e2]))
(funArgsOfExp e1)
_ -> Nothing
writeSpecModule :: TermDomain a => Options -> String -> [FuncDecl]
-> [(QName,ACallType a)] -> [(QName,NonFailCond)] -> IO ()
writeSpecModule opts mname fdecls pubntcalltypes funconds = do
let ctmname = callTypesModule mname
ctfile = ctmname ++ ".curry"
exct <- doesFileExist ctfile
if null pubntcalltypes && null funconds
then when exct $ removeFile ctfile
else do
oldctmod <- if exct then readCompleteFile ctfile else return ""
let ctmod = callTypeCond2SpecMod mname fdecls pubntcalltypes funconds
unless (oldctmod == ctmod || not (optSpecModule opts)) $ do
writeFile ctfile ctmod
printWhenStatus opts $
"A Curry module '" ++ ctmname ++ "' with required call types\n" ++
"and non-fail conditions is written to: '" ++ ctfile ++ "'.\n"
callTypeCond2SpecMod :: TermDomain a => String -> [FuncDecl]
-> [(QName,ACallType a)] -> [(QName,NonFailCond)] -> String
callTypeCond2SpecMod mname fdecls functs funconds =
showCProg (simpleCurryProg specmname [] []
(map ct2fun (filter hasNoNFCond functs)) []) ++
"\n" ++ showConditions fdecls funconds
where
specmname = callTypesModule mname
hasNoNFCond = (`notElem` (map fst funconds)) . fst
ct2fun ((_,fn), cts) =
cmtfunc
("Required call type of operation `" ++ fn ++ "` (pretty printed):")
(specmname, encodeContractName $ fn ++ "'calltype") 0 Public
(emptyClassType stringType)
[simpleRule [] (string2ac (prettyFunCallAType cts))]
callTypes2SpecMod :: String -> [(QName,[[CallType]])] -> CurryProg
callTypes2SpecMod mname functs =
simpleCurryProg specmname [] [] (map ct2fun functs) []
where
specmname = callTypesModule mname
ct2fun ((_,fn), cts) =
cmtfunc
("Required call type of operation `" ++ fn ++ "`:")
(specmname, encodeContractName $ fn ++ "'calltype") 0 Public
(emptyClassType (baseType (pre "untyped")))
[simpleRule [] (list2ac (map (tupleExpr . map ct2mb) cts))]
where
ct2mb AnyT = constF (pre "Nothing")
ct2mb (MCons cscts) = applyJust (list2ac $ map cs2mb cscts)
cs2mb ct@((mn,mc),cts) =
if any (/= AnyT) cts
then error $ "Call type with nested constructors: " ++ show ct
else string2ac $ (if null mn then "" else mn ++ ".") ++ mc
writeTermFile :: (ReadWrite a, Show a) => Options -> String -> a -> IO ()
writeTermFile _ f ts = do
writeFile f (show ts)
writeDataFile (f <.> "rw") ts
readTermFile :: (Read a, ReadWrite a, Eq a) => Options -> String -> IO a
readTermFile opts file = do
let reporttimings = optVerb opts > 3
rwfile = file <.> "rw"
readtermfile = fmap read $ readFile file
rwex <- doesFileExist rwfile
if rwex
then do
ftime <- getModificationTime file
rwftime <- getModificationTime rwfile
if compareClockTime rwftime ftime == LT
then readtermfile
else do
(mbterms,rwtime) <- getElapsedTimeNF (readDataFile rwfile)
maybe (error $ "Illegal data in file " ++ rwfile)
(\rwterms ->
if not reporttimings
then return rwterms
else do
putStrLn $ "\nReading " ++ file
(terms,ttime) <- getElapsedTimeNF readtermfile
putStrLn $ "Time: " ++ show ttime ++
" msecs / Compact reading: " ++
show rwtime ++ " msecs / speedup: " ++
show (fromInt ttime / fromInt rwtime)
if rwterms == terms
then return rwterms
else error "Difference in compact terms!" )
mbterms
else readtermfile
|