-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdraw.py
More file actions
225 lines (182 loc) · 6.07 KB
/
draw.py
File metadata and controls
225 lines (182 loc) · 6.07 KB
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
"""Draws CFG."""
from graphviz import Digraph
#from cfg import AssignmentNode
from itertools import permutations
from subprocess import run
import argparse
IGNORED_LABEL_NAME_CHARACHTERS = ':'
cfg_styles = {
'graph': {
'fontsize': '16',
'fontcolor': 'black',
'bgcolor': 'transparent',
'rankdir': 'TB',
'splines': 'ortho',
'margin': '0.01',
},
'nodes': {
'fontname': 'Gotham',
'shape': 'box',
'fontcolor': 'black',
'color': 'black',
'style': 'filled',
'fillcolor': 'transparent',
},
'edges': {
'style': 'filled',
'color': 'black',
'arrowhead': 'normal',
'fontname': 'Courier',
'fontsize': '12',
'fontcolor': 'black',
}
}
lattice_styles = {
'graph': {
'fontsize': '16',
'fontcolor': 'black',
'bgcolor': 'transparent',
'rankdir': 'TB',
'splines': 'line',
'margin': '0.01',
'ranksep': '1',
},
'nodes': {
'fontname': 'Gotham',
'shape': 'none',
'fontcolor': 'black',
'color': 'black',
'style': 'filled',
'fillcolor': 'transparent',
},
'edges': {
'style': 'filled',
'color': 'black',
'arrowhead': 'none',
'fontname': 'Courier',
'fontsize': '12',
'fontcolor': 'black',
}
}
def apply_styles(graph, styles):
"""Apply styles to graph."""
graph.graph_attr.update(
('graph' in styles and styles['graph']) or {}
)
graph.node_attr.update(
('nodes' in styles and styles['nodes']) or {}
)
graph.edge_attr.update(
('edges' in styles and styles['edges']) or {}
)
return graph
def draw_cfg(cfg, output_filename='output'):
"""Draw CFG and output as pdf."""
graph = Digraph(format='pdf')
for node in cfg.nodes:
stripped_label = node.label.replace(IGNORED_LABEL_NAME_CHARACHTERS, '')
if 'Exit' in stripped_label:
graph.node(stripped_label, 'Exit', shape='none')
elif 'Entry' in stripped_label:
graph.node(stripped_label, 'Entry', shape='none')
else:
graph.node(stripped_label, stripped_label)
for ingoing_node in node.ingoing:
graph.edge(ingoing_node.label.replace(IGNORED_LABEL_NAME_CHARACHTERS, ''), stripped_label)
# graph = apply_styles(graph, cfg_styles)
graph.render(output_filename, view=True)
class Node():
def __init__(self, s, parent, children=None):
self.s = s
self.parent = parent
self.children = children
def __str__(self):
return 'Node: ' + str(self.s) + ' Parent: ' + str(self.parent) + ' Children: ' + str(self.children)
def __hash__(self):
return hash(str(self.s))
def draw_node(l, graph, node):
node_label = str(node.s)
graph.node(node_label, node_label)
for child in node.children:
child_label = str(child.s)
graph.node(child_label, child_label)
if not (node_label, child_label) in l:
graph.edge(node_label, child_label, )
l.append((node_label, child_label))
draw_node(l, graph, child)
def make_lattice(s, length):
p = Node(s, None)
p.children = get_children(p, s, length)
return p
def get_children(p, s, length):
children = set()
if length < 0:
return children
for subset in permutations(s, length):
setsubset = set(subset)
append = True
for node in children:
if setsubset == node.s:
append = False
break
if append:
n = Node(setsubset, p)
n.children = get_children(n, setsubset, length - 1)
children.add(n)
return children
def add_anchor(filename):
filename += '.dot'
out = list()
delimiter = '->'
with open(filename, 'r') as fd:
for line in fd:
if delimiter in line:
s = line.split(delimiter)
ss = s[0][:-1]
s[0] = ss + ':s '
ss = s[1][:-1]
s[1] = ss + ':n\n'
s.insert(1, delimiter)
out.append(''.join(s))
elif 'set()' in line:
out.append('"set()" [label="{}"]')
else:
out.append(line)
with open(filename, 'w') as fd:
for line in out:
fd.write(line)
def run_dot(filename):
filename += '.dot'
run(['dot', '-Tpdf', filename, '-o', filename.replace('.dot', '.pdf')])
def draw_lattice(cfg, output_filename='output'):
"""Draw CFG and output as pdf."""
graph = Digraph(format='pdf')
ll = [s.label for s in cfg.nodes if isinstance(s, AssignmentNode)]
root = make_lattice(ll, len(ll) - 1)
l = list()
draw_node(l, graph, root)
graph = apply_styles(graph, lattice_styles)
graph.render(filename=output_filename + '.dot')
add_anchor(output_filename)
run_dot(output_filename)
def draw_lattice_from_labels(labels, output_filename):
graph = Digraph(format='pdf')
root = make_lattice(labels, len(labels) - 1)
l = list()
draw_node(l, graph, root)
graph = apply_styles(graph, lattice_styles)
graph.render(filename=output_filename + '.dot')
add_anchor(output_filename)
run_dot(output_filename)
def draw_lattices(cfg_list, output_prefix='output'):
for i, cfg in enumerate(cfg_list):
draw_lattice(cfg, output_prefix + '_' + str(i))
def draw_cfgs(cfg_list, output_prefix='output'):
for i, cfg in enumerate(cfg_list):
draw_cfg(cfg, output_prefix + '_' + str(i))
parser = argparse.ArgumentParser()
parser.add_argument('-l', '--labels', nargs='+', help='Set of labels in lattice.')
parser.add_argument('-n', '--name', help='Specify filename.', type=str)
if __name__ == '__main__':
args = parser.parse_args()
draw_lattice_from_labels(args.labels, args.name)