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
|
module ImportUsage(main,showImportCalls) where
import Char
import Directory ( doesFileExist, getModificationTime )
import FilePath ( (</>), takeFileName )
import List
import Sort
import System
import FlatCurry.Types
import FlatCurry.Files
import System.CurryPath ( lookupModuleSourceInLoadPath, stripCurrySuffix )
main :: IO ()
main = do
args <- getArgs
if length args /= 1
then putStrLn $ "ERROR: Illegal arguments: " ++
concat (intersperse " " args) ++ "\n" ++
"Usage: curry-usedimports <module_name>"
else showAllImportedCalls (stripCurrySuffix (head args))
showAllImportedCalls :: String -> IO ()
showAllImportedCalls modname = do
prog <- readCurrentFlatCurry modname
putStrLn $ "Calls to imported functions/constructors in module '" ++
modname ++ "':\n"
putStrLn $ showImportCalls prog
showImportCalls :: Prog -> String
showImportCalls = formatImpCalls . getAllImpCalls
formatImpCalls :: [(String,[String])] -> String
formatImpCalls impcalls =
concatMap (\(mod,imps)->"import "++mod++"("++
concat (intersperse "," (map showName imps))++")\n")
impcalls
where
showName name = if isAlpha (head name) then name else '(':name++")"
getAllImpCalls :: Prog -> [(String,[String])]
getAllImpCalls (Prog mod imps _ funs _) =
calls2impCalls imps
(mergeSortBy (\ (_,n1) (_,n2) -> n1 <= n2)
(allFunCalls mod funs))
calls2impCalls :: [String] -> [QName] -> [(String,[String])]
calls2impCalls [] _ = []
calls2impCalls (mod:mods) funs =
(mod, map snd (filter (\(m,_)->m==mod) funs)) : calls2impCalls mods funs
allFunCalls :: String -> [FuncDecl] -> [QName]
allFunCalls _ [] = []
allFunCalls mod (Func _ _ _ _ (Rule _ e) : funs) =
union (globalFunsInExpr mod e) (allFunCalls mod funs)
allFunCalls mod (Func _ _ _ _ (External _) : funs) = allFunCalls mod funs
globalFunsInExpr :: String -> Expr -> [QName]
globalFunsInExpr mod exp = funsInExpr exp
where
funsInExpr (Var _) = []
funsInExpr (Lit _) = []
funsInExpr (Comb _ (m,f) es) =
if m==mod || (m=="Prelude" && f `elem` ["commit","apply","cond"])
then nub (concatMap funsInExpr es)
else nub ((m,f) : concatMap funsInExpr es)
funsInExpr (Free _ e) = funsInExpr e
funsInExpr (Let bs e) = union (nub (concatMap (funsInExpr . snd) bs)) (funsInExpr e)
funsInExpr (Or e1 e2) = union (funsInExpr e1) (funsInExpr e2)
funsInExpr (Case _ e bs) = union (funsInExpr e)
(nub (concatMap funsInBranch bs))
where funsInBranch (Branch _ be) = funsInExpr be
funsInExpr (Typed e _) = funsInExpr e
readCurrentFlatCurry :: String -> IO Prog
readCurrentFlatCurry modname = do
mbdirfn <- lookupModuleSourceInLoadPath modname
let progname = maybe modname snd mbdirfn
let fcyprogname = flatCurryFileName
(maybe modname (\ (d,_) -> d </> takeFileName modname)
mbdirfn)
fcyexists <- doesFileExist fcyprogname
if not fcyexists
then readFlatCurry modname
else do ctime <- getModificationTime progname
ftime <- getModificationTime fcyprogname
if ctime>ftime
then readFlatCurry modname
else readFlatCurryFile fcyprogname
|