Cross Reference: /hets/GUI/ShowRefTree.hs
ShowRefTree.hs revision 1fac5c1cbbeac0c3b506437e7be4183809943af2
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
{- |
Module : $Header$
Copyright : (c) Mihai Codescu, DFKI GmbH 2010
License : GPLv2 or higher, see LICENSE.txt
Maintainer : mihai.codescu@dfki.de
Stability : provisional
Portability : non-portable (Logic)
display the logic graph
-}
module GUI.ShowRefTree (showRefTree) where
import Control.Monad
import Data.Graph.Inductive.Graph as Tree
import Data.IORef
import GUI.GraphTypes
import GUI.UDGUtils as UDG
import GUI.Utils
import GUI.GraphLogic
import Interfaces.DataTypes
import Interfaces.Command
import Common.Consistency
import Common.DocUtils
import Driver.Options (doDump)
import Static.DevGraph
import Static.DgUtils
import Static.PrintDevGraph
import Static.History
import qualified Data.Map as Map
showRefTree :: LibFunc
showRefTree gInfo = do
graph <- newIORef daVinciSort
nodesEdges <- newIORef (([], []) :: NodeEdgeListRef)
let
globalMenu =
GlobalMenu (UDG.Menu Nothing
[])
graphParms = globalMenu $$
GraphTitle "Refinement Tree" $$
OptimiseLayout True $$
AllowClose (return True) $$
emptyGraphParms
graph' <- newGraph daVinciSort graphParms
addNodesAndEdgesRef gInfo graph' nodesEdges
writeIORef graph graph'
redraw graph'
type NodeEdgeListRef = ([DaVinciNode Int], [DaVinciArc (IO RTLinkLab)])
type NodeEdgeListDep = ([DaVinciNode DiagNodeLab], [DaVinciArc (IO String)])
addNodesAndEdgesRef :: GInfo -> DaVinciGraphTypeSyn ->
IORef NodeEdgeListRef -> IO ()
addNodesAndEdgesRef gInfo@(GInfo { hetcatsOpts = opts}) graph nodesEdges = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let
le = i_libEnv ist
lookup' x y = Map.findWithDefault (error "lookup': node not found") y x
dg = lookup' le $ i_ln ist
rTree = refTree dg
vertexes = map fst $ Tree.labNodes rTree
arcs = Tree.labEdges rTree
subNodeMenu = LocalMenu (UDG.Menu Nothing [
Button "Show dependency diagram" $ showDiagram gInfo dg,
Button "Show spec" $ showSpec dg,
Button "Check consistency" $ checkCons gInfo])
subNodeTypeParms = subNodeMenu $$$
Ellipse $$$
ValueTitle (return . rtn_name . labRT dg) $$$
Color (getColor opts Green True True) $$$
emptyNodeTypeParms
subNodeType <- newNodeType graph subNodeTypeParms
subNodeList <- mapM (newNode graph subNodeType) vertexes
let
nodes' = Map.fromList $ zip (Tree.nodes rTree) subNodeList
subArcMenu = LocalMenu (UDG.Menu Nothing [])
subArcTypeParms = subArcMenu $$$
ValueTitle (return $ return "") $$$
Color (getColor opts Black False False) $$$
emptyArcTypeParms
subArcTypeParmsT = subArcMenu $$$
ValueTitle (return $ return "") $$$
Color (getColor opts Blue False False) $$$
emptyArcTypeParms
subArcTypeParmsR = subArcMenu $$$
ValueTitle (return $ return "") $$$
Color (getColor opts Coral False False) $$$
emptyArcTypeParms
subArcType <- newArcType graph subArcTypeParms
let insertSubArc (n1, n2, e) = newArc graph subArcType
(return e)
(lookup' nodes' n1)
(lookup' nodes' n2)
subArcList <- mapM insertSubArc $
filter (\ (_, _, e) -> rtl_type e == RTComp) arcs
subArcTypeT <- newArcType graph subArcTypeParmsT
let insertSubArcT (n1, n2, e) = newArc graph subArcTypeT
(return e)
(lookup' nodes' n1)
(lookup' nodes' n2)
subArcListT <- mapM insertSubArcT $
filter (\ (_, _, _e) -> False) -- TODO: it was easier
arcs
subArcTypeR <- newArcType graph subArcTypeParmsR
let insertSubArcR (n1, n2, e) = newArc graph subArcTypeR
(return e)
(lookup' nodes' n1)
(lookup' nodes' n2)
subArcListR <- mapM insertSubArcR $
filter (\ (_, _, e) -> rtl_type e == RTRefine) arcs
writeIORef nodesEdges (subNodeList, subArcList ++ subArcListT
++ subArcListR)
checkCons :: GInfo -> Int -> IO ()
checkCons gInfo n = do
lockGlobal gInfo
checkConsAux gInfo [n]
checkConsAux :: GInfo -> [Int] -> IO ()
checkConsAux gInfo [] = unlockGlobal gInfo
checkConsAux gInfo (n : ns) = do
ost <- readIORef $ intState gInfo
case i_state ost of
Nothing -> return ()
Just ist -> do
let
le = i_libEnv ist
lookup' x y = Map.findWithDefault (error "lookup': node not found") y x
dg = lookup' le $ i_ln ist
rtlab = labRT dg n
rt = refTree dg
changeConsStatus x = let
oldLab = labDG dg x
oldNInfo = nodeInfo oldLab
newLab = oldLab {nodeInfo = case oldNInfo of
DGNode o _ -> DGNode o $ mkConsStatus Cons
_ -> oldNInfo}
in [SetNodeLab oldLab (x, newLab)]
consLinks (s, t, l) = let
l' = l {dgl_type = case dgl_type l of
ScopedLink a b _ ->
ScopedLink a b $ mkConsStatus Cons
dt -> dt}
in [DeleteEdge (s, t, l), InsertEdge (s, t, l')]
updateDG changes = do
let dg' = changesDGH dg changes
history = snd $ splitHistory dg dg'
le' = Map.insert (i_ln ist) dg' le
lln = map DgCommandChange $ calcGlobalHistory le le'
nst = add2history HelpCmd ost lln
nwst = nst { i_state = Just ist { i_libEnv = le'}}
doDump (hetcatsOpts gInfo) "PrintHistory" $ do
putStrLn "History"
print $ prettyHistory history
writeIORef (intState gInfo) nwst
updateGraph gInfo (reverse $ flatHistory history)
case rtn_type rtlab of
RTRef n' -> checkConsAux gInfo $ n' : ns
RTPlain usig ->
let units = map (\ (_, x, _) -> x) $
filter (\ (_ss, _tt, ll) -> rtl_type ll == RTComp) $ out rt n
in case units of
[] -> -- n is itself a unit, insert obligation
case usig of
UnitSig [] nsig _ -> do -- non-parametric unit, change node
let gn = getNode nsig
changes = changeConsStatus gn
updateDG changes
checkConsAux gInfo ns
UnitSig _ _ Nothing -> error "consCheck2"
UnitSig _nsigs nsig (Just usig') -> do
let ss = getNode usig'
tt = getNode nsig
lEdges = filter (\ (x, y, _) -> x == ss && y == tt)
$ labEdges $ dgBody dg
ll = if null lEdges then
error "consCheck1"
else head lEdges -- parametric unit, change edge
changes = consLinks ll
updateDG changes
checkConsAux gInfo ns
_ -> checkConsAux gInfo $ units ++ ns
showSpec :: DGraph -> Int -> IO ()
showSpec dg n =
createTextDisplay "" (show $ labRT dg n)
showDiagram :: GInfo -> DGraph -> Int -> IO ()
showDiagram gInfo dg n = do
let asDiags = archSpecDiags dg
rtlab = labRT dg n
name = rtn_name rtlab
when (name `elem` Map.keys asDiags) $ do
graph <- newIORef daVinciSort
nodesEdges <- newIORef (([], []) :: NodeEdgeListDep)
let
globalMenu =
GlobalMenu (UDG.Menu Nothing
[])
graphParms = globalMenu $$
GraphTitle ("Dependency Diagram for " ++ name) $$
OptimiseLayout True $$
AllowClose (return True) $$
emptyGraphParms
graph' <- newGraph daVinciSort graphParms
addNodesAndEdgesDeps dg (Map.findWithDefault (error "showDiagram")
name asDiags)
graph' gInfo nodesEdges
writeIORef graph graph'
redraw graph'
showDiagSpec :: DGraph -> DiagNodeLab -> IO ()
showDiagSpec dg l = do
let NodeSig n _ = dn_sig l
nlab = labDG dg n
g1 = globOrLocTh nlab
createTextDisplay ""
$ "Desc:\n" ++ dn_desc l ++ "\n" ++
"Sig:\n" ++ showDoc g1 ""
addNodesAndEdgesDeps :: DGraph -> Diag -> DaVinciGraphTypeSyn -> GInfo ->
IORef NodeEdgeListDep -> IO ()
addNodesAndEdgesDeps dg diag graph gi nodesEdges = do
let
opts = hetcatsOpts gi
lookup' x y = Map.findWithDefault (error "lookup': node not found") y x
vertexes = map snd $ Tree.labNodes $ diagGraph diag
arcs = Tree.labEdges $ diagGraph diag
subNodeMenu = LocalMenu (UDG.Menu Nothing [Button "Show desc and sig" $
showDiagSpec dg ])
subNodeTypeParms = subNodeMenu $$$
Ellipse $$$
ValueTitle (return . (\ x ->
take 20 (dn_desc x) ++ "..." )) $$$
Color (getColor opts Green True True) $$$
emptyNodeTypeParms
subNodeType <- newNodeType graph subNodeTypeParms
subNodeList <- mapM (newNode graph subNodeType) vertexes
let
nodes' = Map.fromList $ zip (Tree.nodes $ diagGraph diag) subNodeList
subArcMenu = LocalMenu (UDG.Menu Nothing [])
subArcTypeParms = subArcMenu $$$
ValueTitle (return $ return "") $$$
Color (getColor opts Black False False) $$$
emptyArcTypeParms
subArcType <- newArcType graph subArcTypeParms
let insertSubArc (n1, n2, _e) = newArc graph subArcType
(return "")
(lookup' nodes' n1)
(lookup' nodes' n2)
subArcList <- mapM insertSubArc arcs
writeIORef nodesEdges (subNodeList, subArcList)