forked from kmarkus/rFSM
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rfsm2uml.lua
300 lines (238 loc) · 7.52 KB
/
rfsm2uml.lua
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
--
-- This file is part of rFSM.
--
-- (C) 2010-2013 Markus Klotzbuecher <[email protected]>
-- (C) 2014-2020 Markus Klotzbuecher <[email protected]>
--
-- SPDX-License-Identifier: BSD-3-Clause
--
require("gv")
require("utils")
require("rfsm")
local pairs, ipairs, print, table, type, assert, gv, io, utils, rfsm
= pairs, ipairs, print, table, type, assert, gv, io, utils, rfsm
module("rfsm2uml")
param = {}
param.fontsize = 12.0
param.trfontsize = 7.0
param.ndfontsize = 8.0
param.cs_border_color = "black"
param.cs_fillcolor = "white"
param.layout="dot"
param.rankdir="TD"
param.show_fqn = false
param.err = print
param.warn = print
param.dbg = function () return true end
-- setup common properties
local function set_props(h)
gv.setv(h, "fixedsize", "false")
gv.setv(h, "fontsize", param.fontsize)
end
-- setup transition propeties
local function set_trprops(h)
gv.setv(h, "fixedsize", "false")
gv.setv(h, "fontsize", param.trfontsize)
gv.setv(h, "arrowhead", "vee")
gv.setv(h, "arrowsize", "0.5")
end
-- setup node properties
local function set_ndprops(h)
gv.setv(h, "fixedsize", "false")
gv.setv(h, "fontsize", param.ndfontsize)
end
local function setup_color(state, nh)
gv.setv(nh, "style", "filled")
if state._mode == 'active' then
gv.setv(nh, "fillcolor", "green")
elseif state._mode == 'done' then
gv.setv(nh, "fillcolor", "chocolate")
else gv.setv(nh, "fillcolor", "white") end
end
-- return handle, type for state fqn
local function get_shandle(gh, fqn)
if fqn == gv.nameof(gh) then return gh, "graph" end
local sh = gv.findsubg(gh, "cluster_" .. fqn)
if sh then return sh, "subgraph" end
local nh = gv.findnode(gh, fqn)
if nh then return nh, "node" end
param.err("No state '" .. fqn .. "'")
return false
end
-- create a new graph
local function new_gra(name, caption)
local gh = gv.digraph(name)
caption = caption or ""
set_props(gh)
gv.setv(gh, "compound", "true")
gv.setv(gh, "fontsize", param.fontsize)
gv.setv(gh, "labelloc", "t")
gv.setv(gh, "label", name .. ' - ' .. caption)
gv.setv(gh, "remincross", "true")
gv.setv(gh, "splines", "true")
gv.setv(gh, "rankdir", param.rankdir or "TD")
-- layout clusters locally before integrating
-- doesn't seem to make any difference
-- gv.setv(gh, "clusterrank", "local")
param.dbg("creating new graph " .. name)
return gh
end
local function new_conn(gh, conn)
local ph, type = get_shandle(gh, conn._parent._fqn)
assert(ph)
assert(type ~= "simple", "Parent not of type simple")
assert(rfsm.is_conn(conn), "Obj not a connector")
if gv.findnode(ph, conn._fqn) then
param.err("graph " .. conn._parent._fqn .. "already has a node " .. conn._fqn)
return false
end
local nh = gv.node(ph, conn._fqn)
set_ndprops(nh)
if rfsm.is_conn(conn) then
if conn._id == 'initial' then
gv.setv(nh, "shape", "point")
gv.setv(nh, "height", "0.1")
else
gv.setv(nh, "shape", "circle")
gv.setv(nh, "height", "0.4")
end
else param.err("ERROR: unknown conn type") end
gv.setv(nh, "label", conn._id)
gv.setv(nh, "fixedsize", "true")
param.dbg("creating new connector " .. conn._fqn)
return nh
end
-- create a new simple state
local function new_sista(gh, state, label)
param.dbg("creating new simple state '" .. state._fqn)
local __label
local ph, type = get_shandle(gh, state._parent._fqn)
assert(ph)
assert(type ~= "simple")
-- tbd: use gh here?
if gv.findnode(ph, state._fqn) then
param.err("graph already has a node " .. state._fqn)
return false
end
local nh = gv.node(ph, state._fqn)
set_ndprops(nh)
gv.setv(nh, "style", "rounded")
gv.setv(nh, "shape", "box")
setup_color(state, nh)
if param.show_fqn then __label = state._fqn
else __label=state._id end
if label then __label = __label .. "\n" .. label end
gv.setv(nh, "label", __label)
return nh
end
-- create an new composite state
local function new_csta(gh, state, label)
param.dbg("creating new composite state " .. state._fqn)
local __label
local ph = get_shandle(gh, state._parent._fqn)
assert(ph)
iname = "cluster_" .. state._fqn
-- tbd: use gh here?
if gv.findsubg(ph, iname) then
param.err("graph already has a subgraph " .. state._fqn)
return false
end
local ch = gv.graph(ph, iname)
set_ndprops(ch)
gv.setv(ch, "color", param.cs_border_color)
gv.setv(ch, "style", "bold")
setup_color(state, ch)
--if label then gv.setv(ch, "label", state._id .. "\n" .. label)
--else gv.setv(ch, "label", state._id) end
-- fqn or id?
if param.show_fqn then __label = state._fqn
else __label=state._id end
-- append user label
if label then __label = __label .. "\n" .. label end
gv.setv(ch, "label", __label)
return ch
end
-- new transition
-- src and target are only fully qualified strings!
local function new_tr(gh, src, tgt, events)
local label
param.dbg("creating transition from " .. src .. " -> " .. tgt)
local sh, shtype = get_shandle(gh, src)
local th, thtype = get_shandle(gh, tgt)
assert(sh)
assert(th)
-- if src/tgt is a cluster then src/tgt is fqn_dummy
if shtype == "subgraph" then
realsh = gv.findnode(sh, src .. ".initial")
else
realsh = sh
end
-- assert(shtype ~= "subgraph")
-- the following must not happen because transitions *always* end
-- on a connector or sista.
assert(thtype ~= "subgraph", "tgt should be a subgraph but isn't: " .. tgt)
if thtype == "subgraph" then
realth = gv.findnode(th, tgt .. ".initial")
else
realth = th
end
-- realth = th
local eh = gv.edge(realsh, realth)
set_trprops(eh)
-- transition stops on composite state boundary
-- we don't really want to hide the real connections
if shtype == "subgraph" then
gv.setv(eh, "ltail", "cluster_" .. src)
end
-- if thtype == "subgraph" then
-- gv.setv(eh, "lhead", "cluster_" .. tgt)
-- end
if events then label = table.concat(events, ', ') end
if label then gv.setv(eh, "label", " " .. label .. " ") end
end
local function proc_node(gh, node)
if rfsm.is_composite(node) then new_csta(gh, node)
elseif rfsm.is_leaf(node) then new_sista(gh, node)
elseif rfsm.is_conn(node) then new_conn(gh, node)
else
param.err("unknown node type: " .. node:type() .. ", name=" .. node._fqn)
end
end
local function proc_trans(gh, t, parent)
if t.tgt == 'internal' then
return true
else
new_tr(gh, t.src._fqn, t.tgt._fqn, t.events)
end
end
--
-- convert given fsm to a populated graphviz object
--
local function fsm2gh(root, caption)
gh = new_gra(root._id, caption)
rfsm.mapfsm(function (s)
if rfsm.is_root(s) then return end
proc_node(gh, s)
end, root, rfsm.is_node)
rfsm.mapfsm(function (t, p) proc_trans(gh, t, p) end, root, rfsm.is_trans)
return gh
end
function rfsm2uml(root, format, outfile, caption)
if not root._initialized then
param.err("rfsm2uml ERROR: fsm " .. root._id .. " uninitialized")
return false
end
local gh = fsm2gh(root, caption)
gv.layout(gh, param.layout)
param.dbg("rfsm2uml: running " .. param.layout .. " layouter")
gv.render(gh, format, outfile)
param.dbg("rfsm2uml: rendering to " .. format .. ", written result to " .. outfile)
end
function rfsm2dot(root, outfile, caption)
if not root._initialized then
param.err("rfsm2uml ERROR: fsm " .. root._id .. " uninitialized")
return false
end
local gh = fsm2gh(root, caption or " ")
gv.write(gh, outfile)
end