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
|
{-# OPTIONS_CYMAKE -Wno-incomplete-patterns #-}
module AddTypes ( main, addTypeSignatures )
where
import FileGoodies
import List
import System ( exitWith, system, getArgs )
import AbstractCurry.Types
import AbstractCurry.Files
import AbstractCurry.Pretty
import Control.AllSolutions ( getOneValue )
import System.CurryPath ( stripCurrySuffix )
import Text.Pretty
import CurryStringClassifier
main :: IO ()
main = do
args <- getArgs
case args of
["-h"] -> printUsage
["--help"] -> printUsage
["-?"] -> printUsage
[fname] -> do
let progname = stripCurrySuffix fname
writeWithTypeSignatures progname
putStrLn $ "Signatures added.\nA backup of the original " ++
"file has been written to "++progname++".ORG.curry"
_ -> printUsage >> exitWith 1
printUsage :: IO ()
printUsage = putStrLn $ unlines
[ "A tool to add missing type signatures to top-level operations"
, ""
, "Usage:"
, ""
, " curry addtypes <Curry program>"
]
writeWithTypeSignatures :: String -> IO ()
writeWithTypeSignatures progname = do
system $ "cp -p "++progname++".curry "++progname++".ORG.curry"
newprog <- addTypeSignatures progname
writeFile (progname++".curry") newprog
addTypeSignatures :: String -> IO String
addTypeSignatures progname = do
typedProg <- readCurry progname
untypedProg <- readUntypedCurry progname
progLines <- readFile (progname++".curry")
mbprog <- getOneValue
(unscan (addTypes (scan progLines)
(getTypes typedProg untypedProg)))
system $ "rm -f "++progname++".acy "++progname++".uacy"
maybe (error "AddTypes: can't add type signatures") return mbprog
getTypes :: CurryProg -> CurryProg -> [(String,CQualTypeExpr)]
getTypes (CurryProg _ _ _ _ _ _ funcDecls1 _)
(CurryProg _ _ _ _ _ _ funcDecls2 _)
= getTypesFuncDecls funcDecls1 funcDecls2
where
getTypesFuncDecls [] [] = []
getTypesFuncDecls (CFunc name _ _ t1 _:fs1) (CFunc _ _ _ t2 _:fs2)
| isUntyped t2 = (snd name,t1) : getTypesFuncDecls fs1 fs2
| otherwise = getTypesFuncDecls fs1 fs2
addTypes :: Tokens -> [(String,CQualTypeExpr)] -> Tokens
addTypes [] _ = []
addTypes (ModuleHead s:ts) fts = ModuleHead s : (addTypes ts fts)
addTypes (SmallComment s:ts) fts = SmallComment s : (addTypes ts fts)
addTypes (BigComment s:ts) fts = BigComment s : (addTypes ts fts)
addTypes (Text s:ts) fts = Text s : (addTypes ts fts)
addTypes (Letter s:ts) fts = Letter s : (addTypes ts fts)
addTypes (Code s:ts) fts = Code newS : newTs
where
newS = addTypesCode s newFts fts
newTs = if null newFts then ts else addTypes ts newFts
newFts = unknown
addTypesCode :: String -> [(String,CQualTypeExpr)] -> [(String,CQualTypeExpr)]
-> String
addTypesCode code [] [] = code
addTypesCode code newFts ((f,t):fts)
| null code = (newFts=:=((f,t):fts)) &> []
| otherwise
= case lhs of
[] -> head remainder
: addTypesCode (tail remainder) newFts ((f,t):fts)
' ':_ -> line ++ addTypesCode remainder newFts ((f,t):fts)
_ -> if defines f lhs
then showWidth 78 (ppSig $ normalize t) ++ "\n" ++
line ++ addTypesCode remainder newFts fts
else line ++ addTypesCode remainder newFts ((f,t):fts)
where
(line,remainder) = break (=='\n') code
(lhs,_) = break (=='=') line
printf = if all (flip elem infixIDs) f then '(':f++")" else f
ppSig texp = nest 2 $
sep [ text printf
, align $ doubleColon <+>
ppCQualTypeExpr defaultOptions texp]
toTVar :: Int -> CTypeExpr
toTVar n | n<26 = CTVar (n,[chr (97+n)])
| otherwise = CTVar (n,"t"++show (n-26))
isUntyped :: CQualTypeExpr -> Bool
isUntyped typeexpr
= case typeexpr of
CQualType (CContext []) (CTCons (mod,name)) ->
name == "untyped" && mod == "Prelude"
_ -> False
normalize :: CQualTypeExpr -> CQualTypeExpr
normalize t | varNames 0 (tvarsInQualType t newT) = newT where newT free
tvarsInQualType :: CQualTypeExpr -> CQualTypeExpr -> [(Int,CTypeExpr)]
tvarsInQualType (CQualType (CContext cons) t) (CQualType (CContext cons') t') =
tvarsInContext cons cons' ++ tvars t t'
where
tvarsInContext [] [] = []
tvarsInContext ((qf,te):ctxt) ((qf',te'):ctxt')
| qf=:=qf' = tvars te te' ++ tvarsInContext ctxt ctxt'
tvars :: CTypeExpr -> CTypeExpr -> [(Int,CTypeExpr)]
tvars (CTVar (i,_)) m = [(i,m)]
tvars (CTCons n) (CTCons n')
| n=:=n' = []
tvars (CFuncType t1 t2) (CFuncType t1' t2')
= tvars t1 t1' ++ tvars t2 t2'
tvars (CTApply t1 t2) (CTApply t1' t2')
= tvars t1 t1' ++ tvars t2 t2'
varNames :: Eq a => Int -> [(a,CTypeExpr)] -> Bool
varNames _ [] = True
varNames n ((i,v):ivs)
| null is = (v =:= CTVar (0,"_")) &> (varNames n others)
| otherwise = (giveName (toTVar n) (v:map snd is)) &> (varNames (n+1) others)
where
(is,others) = partition (\ (i',_) -> i==i') ivs
giveName _ [] = True
giveName name (x:xs) = name=:=x & giveName name xs
dualMap :: (a -> b -> c) -> [a] -> [b] -> [c]
dualMap _ [] [] = []
dualMap f (x:xs) (y:ys) = f x y:dualMap f xs ys
defines :: String -> String -> Bool
defines f lhs
| null ts = False
| head lhs == ' ' = False
| otherwise = elem f ts
where
ts = symbols lhs
delimiters :: String
delimiters = " ([{,}])"
infixIDs :: String
infixIDs = "~!@#$%^&*+-=<>?./|\\:"
symbols :: String -> [String]
symbols lhs = syms [] lhs
where
maybeSym t = if null t then [] else [t]
syms s [] = maybeSym s
syms s (x:xs)
| elem x delimiters
= maybeSym s ++ syms [] (dropWhile (flip elem delimiters) xs)
| otherwise
= syms (s++[x]) xs
|