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
|
module CurryDoc.CDoc where
import Data.List
import FlatCurry.Types
import FlatCurry.Files
import FlatCurry.FlexRigid
import ReadShowTerm
import CurryDoc.AnaInfo
import CurryDoc.Read
generateCDoc :: String -> String -> [(SourceLine,String)] -> AnaInfo
-> IO String
generateCDoc modName modCmts progCmts anaInfo = do
fcyName <- getFlatCurryFileInLoadPath modName
Prog _ _ types functions _ <- readFlatCurryFile fcyName
let modInfo = ModuleInfo modName (author avCmts) mCmts
funcInfo (Func qName@(mName, fName) _ _ tExpr rule) =
FunctionInfo fName
(removeForall tExpr)
mName
(funcComment fName progCmts)
(getNondetInfo anaInfo qName)
(flexRigid rule)
typeInfo (Type (mName, tName) _ vars consDecl) =
TypeInfo tName
(map consSignature
(filter (\ (Cons _ _ vis _) -> vis == Public) consDecl))
(map fst vars)
mName
(dataComment tName progCmts)
False
typeInfo (TypeNew (mName, tName) _ vars newconsDecl) =
TypeInfo tName
(map newconsSignature
(filter (\ (NewCons _ vis _) -> vis == Public) [newconsDecl]))
(map fst vars)
mName
(dataComment tName progCmts)
False
typeInfo (TypeSyn qName@(mName, tName) _ vars tExpr) =
TypeInfo tName
[(qName, [removeForall tExpr])]
(map fst vars)
mName
(dataComment tName progCmts)
True
(mCmts, avCmts) = splitComment modCmts
funcInfos = map funcInfo
(filter (\ (Func _ _ vis _ _) -> vis == Public) functions)
typeInfos = map typeInfo (concatMap filterT types)
putStrLn $ "Writing " ++ modName ++ ".cdoc file"
return $ showTerm (CurryInfo modInfo funcInfos typeInfos)
where
filterT f@(Type _ vis _ _) = if vis == Public then [f] else []
filterT f@(TypeSyn _ vis _ _) = if vis == Public then [f] else []
filterT f@(TypeNew _ vis _ _) = if vis == Public then [f] else []
removeForall :: TypeExpr -> TypeExpr
removeForall texp = case texp of
ForallType _ te -> removeForall te
FuncType te1 te2 -> FuncType (removeForall te1) (removeForall te2)
TCons qn tes -> TCons qn (map removeForall tes)
TVar _ -> texp
funcComment :: String -> [(SourceLine,String)] -> String
str = fst . splitComment . getFuncComment str
dataComment :: String -> [(SourceLine,String)] -> String
str = fst . splitComment . getDataComment str
flexRigid :: Rule -> FlexRigidResult
flexRigid (Rule _ expr) = getFlexRigid expr
flexRigid (External _) = UnknownFR
data ModuleInfo = ModuleInfo String String String
data CurryInfo = CurryInfo ModuleInfo [FunctionInfo] [TypeInfo]
data FunctionInfo =
FunctionInfo String TypeExpr String String Bool FlexRigidResult
data TypeInfo =
TypeInfo String [(QName, [TypeExpr])] [TVarIndex] String String Bool
author :: [(String, String)] -> String
author av = concat $ getCommentType "author" av
consSignature :: ConsDecl -> (QName, [TypeExpr])
consSignature (Cons (mName, cName) _ _ tExprList) =
((mName, cName), map removeForall tExprList)
newconsSignature :: NewConsDecl -> (QName, [TypeExpr])
newconsSignature (NewCons (mName, cName) _ tExpr) =
((mName, cName), map removeForall [tExpr])
|