-
Notifications
You must be signed in to change notification settings - Fork 3
/
PDA2Dot.cpp
162 lines (115 loc) · 2.9 KB
/
PDA2Dot.cpp
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
//
// Created by xie on 18-5-29.
//
#include "PDA2Dot.h"
#include "PDA.h"
struct Indent
{
int ind;
Indent(int ind = 1):ind(ind) {}
friend std::ostream& operator <<(std::ostream& os, const Indent& ind);
};
std::ostream& operator <<(std::ostream& os, const Indent& ind)
{
for (int i = 0; i < ind.ind; ++i)
os << "\t";
return os;
}
PDA2Dot::PDA2Dot(PDA *pda, const char *file) :pda(pda), file(file){
reopen(file);
}
void PDA2Dot::reopen(const char *new_file)
{
if (!new_file)
new_file = "/dev/stdout";
if (out.is_open())
out.close();
out.open(new_file);
file = new_file;
}
bool PDA2Dot::ensureFile(const char *fl)
{
if (fl)
reopen(fl);
if (!out.is_open()) {
std::cerr << "File '" << file << "' not opened"
<< std::endl;
return false;
}
return true;
}
void PDA2Dot::start()
{
out << "digraph \"PDA\" {\n";
out << "\tcompound=true label=\"PDA "
<< " has " << pda->size() << " paths\\n\n"
<<"\t Can Summ: white \\n\n"
<<"\t Can not Summ: greenyellow \"\n\n";
}
void PDA2Dot::end()
{
out << "}\n";
}
void PDA2Dot::dump_node(Location *node, int ind)
{
Indent Ind(ind);
out << Ind
<< "NODE" << node << " [label=\"";
if(node->isIterPath())
out<<"[*]\\n";
else
out<<"[1]\\n";
out <<"PC: "<< node->getPathCondition()<<"\\n";
expr_map <expr> valChange = node->getValChange();
for(auto it = valChange.begin(), ed = valChange.end(); it != ed; it++)
out<<it->first <<" := "<<it->second<<"\\n";
// end of label
out << "\" ";
if(!node->canBeSumm())
out << "style=filled fillcolor=greenyellow";
else
out << "style=filled fillcolor=white";
out << "]\n";
}
void PDA2Dot::dump_nodes()
{
out << "\t/* nodes */\n";
vector<Location*> nodes = pda->getPaths();
for (auto I = nodes.begin(), E = nodes.end(); I != E; ++I) {
dump_node(*I);
}
}
void PDA2Dot::dump_node_edges(Location *node1, Location* node2, int ind)
{
Indent Ind(ind);
out << Ind << "/* -- node " << "\n"
<< Ind << " * ------------------------------------------- */\n";
out << Ind << "NODE" << node1 << " -> NODE" << node2
<< " [color=\"black\" rank=max]\n";
}
void PDA2Dot::dump_edges()
{
map<Location*, Location*> trans = pda->getTransitions();
for (auto I = trans.begin(), E = trans.end(); I != E; I++)
dump_node_edges(I->first, I->second);
}
bool PDA2Dot::dump(const char *new_file)
{
if (!ensureFile(new_file))
return false;
start();
dump_nodes();
dump_edges();
end();
out.close();
return true;
}
bool PDA2Dot::open(const char *new_file)
{
if (out.is_open()) {
std::cerr << "File already opened (" << file << ")"
<< std::endl;
return false;
} else
reopen(new_file);
}