forked from cp-profiler/cp-profiler-deprecated-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmp_tree_dialog.cpp
510 lines (347 loc) · 14.3 KB
/
cmp_tree_dialog.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
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
/* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "cmp_tree_dialog.hh"
#include "nodewidget.hh"
#include "treecomparison.hh"
#include "treecanvas.hh"
#include "data.hh"
#include "third-party/json.hpp"
#include <algorithm>
#include <cmath>
using std::string;
/// TODO(maxim): use normal Gist window for comparison instead???
CmpTreeDialog::CmpTreeDialog(QWidget* parent, Execution* execution, bool with_labels,
TreeCanvas* tc1, TreeCanvas* tc2)
: QDialog{parent} {
auto main_layout = new QHBoxLayout();
layout = new QGridLayout(this);
auto nc_layout = new QVBoxLayout();
auto status_layout = new QVBoxLayout();
main_layout->addLayout(status_layout);
auto scrollArea = new QAbstractScrollArea(this);
m_Canvas = new TreeCanvas(execution, layout, CanvasType::MERGED, scrollArea->viewport());
layout->addWidget(scrollArea, 0, 0, 1, 1);
layout->addWidget(m_Canvas->scaleBar, 0, 1, Qt::AlignHCenter);
scrollArea->viewport()->setLayout(nc_layout);
nc_layout->addWidget(m_Canvas);
auto menuBar = new QMenuBar(this);
// Don't add the menu bar on Mac OS X
#ifndef Q_WS_MAC
layout->setMenuBar(menuBar);
#endif
statusBar = new QStatusBar(this);
QWidget* stw = new QWidget();
statusBar->addPermanentWidget(stw);
layout->addWidget(statusBar);
auto hbl = new QHBoxLayout();
hbl->setContentsMargins(0,0,0,0);
stw->setLayout(hbl);
statusBar->showMessage("Ready");
/// ***********************************
connect(scrollArea->horizontalScrollBar(), SIGNAL(valueChanged(int)),
m_Canvas, SLOT(scroll(void)));
connect(scrollArea->verticalScrollBar(), SIGNAL(valueChanged(int)),
m_Canvas, SLOT(scroll(void)));
resize(500, 400);
show();
hbl->addWidget(new NodeWidget(MERGING));
auto mergedLabel = new QLabel("0");
hbl->addWidget(mergedLabel);
comparison_ = new TreeComparison{*tc1->getExecution(), *tc2->getExecution()};
auto nodeMenu = menuBar->addMenu(tr("&Node"));
auto analysisMenu = menuBar->addMenu(tr("&Analysis"));
addActions(nodeMenu, analysisMenu);
/// sort the pentagons by nodes diff:
comparison_->compare(m_Canvas, with_labels);
comparison_->sortPentagons();
mergedLabel->setNum(comparison_->get_no_pentagons());
}
CmpTreeDialog::~CmpTreeDialog() {
delete m_Canvas;
}
void
CmpTreeDialog::addActions(QMenu* nodeMenu, QMenu* analysisMenu) {
/// Note(maxim): Qt::WindowShortcut is default context
auto navFirstPentagon = new QAction("To first pentagon", this);
navFirstPentagon->setShortcut(QKeySequence("Ctrl+Shift+1"));
addAction(navFirstPentagon);
nodeMenu->addAction(navFirstPentagon);
connect(navFirstPentagon, SIGNAL(triggered()), this, SLOT(navFirstPentagon()));
auto navNextPentagon = new QAction("To next pentagon", this);
navNextPentagon->setShortcut(QKeySequence("Ctrl+Shift+Right"));
addAction(navNextPentagon);
nodeMenu->addAction(navNextPentagon);
connect(navNextPentagon, SIGNAL(triggered()), this, SLOT(navNextPentagon()));
auto navPrevPentagon = new QAction("To prev pentagon", this);
navPrevPentagon->setShortcut(QKeySequence("Ctrl+Shift+Left"));
addAction(navPrevPentagon);
nodeMenu->addAction(navPrevPentagon);
connect(navPrevPentagon, SIGNAL(triggered()), this, SLOT(navPrevPentagon()));
auto labelBranches = new QAction("Label/clear branches", this);
labelBranches->setShortcut(QKeySequence("L"));
addAction(labelBranches);
nodeMenu->addAction(labelBranches);
connect(labelBranches, SIGNAL(triggered()), m_Canvas, SLOT(labelBranches()));
auto showInfo = new QAction("Show info", this);
showInfo->setShortcut(QKeySequence("I"));
addAction(showInfo);
nodeMenu->addAction(showInfo);
connect(showInfo, SIGNAL(triggered()), m_Canvas, SLOT(showNodeInfo()));
auto showPentagonHist = new QAction("Pentagon list", this);
analysisMenu->addAction(showPentagonHist);
connect(showPentagonHist, SIGNAL(triggered()), this, SLOT(showPentagonHist()));
auto listNogoodsAction = new QAction("List Responsible Nogoods", this);
analysisMenu->addAction(listNogoodsAction);
connect(listNogoodsAction, &QAction::triggered, this, &CmpTreeDialog::showResponsibleNogoods);
auto saveComparisonStats = new QAction("Save comparison stats", this);
analysisMenu->addAction(saveComparisonStats);
connect(saveComparisonStats, SIGNAL(triggered()), this, SLOT(saveComparisonStats()));
}
void
CmpTreeDialog::statusChanged(VisualNode*, const Statistics&, bool finished) {
if (finished) {
/// add total time to 'Done' label
QString t;
unsigned long long totalTime = m_Canvas->getTotalTime();
const int MILLION = 1000000;
float seconds = (float)totalTime / MILLION; /// microseconds to seconds
t.setNum(seconds);
statusBar->showMessage("Done in " + t + "s");
qDebug() << "Done in " + t + "s";
/// no need to change stats after done
disconnect(m_Canvas, SIGNAL(statusChanged(VisualNode*, const Statistics&, bool)),
this, SLOT(statusChanged(VisualNode*, const Statistics&, bool)));
} else {
statusBar->showMessage("Searching");
}
}
void
CmpTreeDialog::navFirstPentagon() {
const auto pentagon_items = comparison_->pentagon_items();
if (pentagon_items.size() == 0) {
qDebug() << "warning: pentagons.size() == 0";
return;
}
m_Canvas->setCurrentNode(pentagon_items[0].node);
m_Canvas->centerCurrentNode();
}
void
CmpTreeDialog::navNextPentagon() {
m_Canvas->navNextPentagon();
}
void
CmpTreeDialog::navPrevPentagon() {
m_Canvas->navNextPentagon(true);
}
void
CmpTreeDialog::showPentagonHist() {
auto pentagon_window = new PentListWindow(this, comparison_->pentagon_items());
pentagon_window->createList();
pentagon_window->show();
}
static string empty_string = "";
// string& getNogoodById(int ng_id, const Execution& e) {
string& getNogoodById(int ng_id, const std::unordered_map<int64_t, string>& ng_map) {
string& nogood = empty_string;
auto maybe_nogood = ng_map.find(ng_id);
if (maybe_nogood != ng_map.end()){
nogood = maybe_nogood->second;
}
return nogood;
}
void
CmpTreeDialog::saveComparisonStatsTo(const QString& file_name) {
if (file_name != "") {
QFile outputFile(file_name);
if (outputFile.open(QFile::WriteOnly | QFile::Truncate)) {
QTextStream out(&outputFile);
auto ng_stats = comparison_->responsible_nogood_stats();
auto nogood_map = comparison_->left_execution().getNogoods();
out << "id,occur,score,nogood\n";
for (auto& ng : ng_stats) {
out << ng.first << ",";
out << ng.second.occurrence << ",";
out << ng.second.search_eliminated << ",";
string& nogood = getNogoodById(ng.first, nogood_map);
out << nogood.c_str() << "\n";
}
qDebug() << "writing comp stats to the file: " << file_name;
} else {
qDebug() << "could not open the file: " << file_name;
}
}
}
void
CmpTreeDialog::saveComparisonStats() {
saveComparisonStatsTo("temp_stats.txt");
}
/// *************** Pentagon List Window ****************
void initNogoodTable(QTableWidget& ng_table) {
ng_table.setEditTriggers(QAbstractItemView::NoEditTriggers);
ng_table.setColumnCount(3);
QStringList table_header;
table_header << "Id" << "Occurrence" << "Literals";
ng_table.setHorizontalHeaderLabels(table_header);
ng_table.setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel);
ng_table.setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
}
std::vector<int>
infoToNogoodVector(const string& info) {
auto info_json = nlohmann::json::parse(info);
auto nogoods = info_json["nogoods"];
if (nogoods.is_array()) {
return nogoods;
}
return {};
}
void
PentListWindow::populateNogoodTable(const vector<int>& nogoods) {
auto ng_stats = comparison_.responsible_nogood_stats();
auto nogood_map = comparison_.left_execution().getNogoods();
_nogoodTable.setRowCount(nogoods.size());
for (unsigned int i = 0; i < nogoods.size(); i++) {
int ng_id = nogoods[i]; /// is this sid of gid???
_nogoodTable.setItem(i, 0, new QTableWidgetItem(QString::number(ng_id)));
string& nogood = getNogoodById(ng_id, nogood_map);
int ng_count = ng_stats.at(ng_id).occurrence;
_nogoodTable.setItem(i, 1, new QTableWidgetItem(QString::number(ng_count)));
_nogoodTable.setItem(i, 2, new QTableWidgetItem(nogood.c_str()));
}
_nogoodTable.resizeColumnsToContents();
}
PentListWindow::PentListWindow(CmpTreeDialog* parent, const std::vector<PentagonItem>& items)
: QDialog(parent), _pentagonTable{this}, _items(items), comparison_(parent->comparison()) {
resize(600, 400);
setAttribute(Qt::WA_DeleteOnClose, true);
connect(&_pentagonTable, &QTableWidget::cellDoubleClicked, [this, parent](int row, int) {
static_cast<CmpTreeDialog*>(parent)->selectPentagon(row);
auto maybe_info = _items[row].info;
/// clear nogood view
_nogoodTable.clearContents();
if (maybe_info) {
auto nogoods = infoToNogoodVector(*maybe_info);
populateNogoodTable(nogoods);
}
});
auto layout = new QVBoxLayout(this);
_pentagonTable.setEditTriggers(QAbstractItemView::NoEditTriggers);
_pentagonTable.setSelectionBehavior(QAbstractItemView::SelectRows);
initNogoodTable(_nogoodTable);
layout->addWidget(&_pentagonTable);
layout->addWidget(&_nogoodTable);
}
QString infoToNogoodStr(const string& info) {
QString result = "";
auto info_json = nlohmann::json::parse(info);
auto nogoods = info_json["nogoods"];
if (nogoods.is_array() && nogoods.size() > 0) {
for (auto nogood : nogoods) {
int ng = nogood;
result += QString::number(ng) + " ";
}
}
return result;
}
void
PentListWindow::createList()
{
_pentagonTable.setColumnCount(3);
_pentagonTable.setRowCount(_items.size());
QStringList table_header;
table_header << "Left" << "Right" << "Nogoods involved";
_pentagonTable.setHorizontalHeaderLabels(table_header);
_pentagonTable.setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel);
_pentagonTable.setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
for (unsigned int i = 0; i < _items.size(); i++) {
_pentagonTable.setItem(i, 0, new QTableWidgetItem(QString::number(_items[i].l_size)));
_pentagonTable.setItem(i, 1, new QTableWidgetItem(QString::number(_items[i].r_size)));
auto maybe_info = _items[i].info;
if (maybe_info) {
QString nogood_str = infoToNogoodStr(*maybe_info);
_pentagonTable.setItem(i, 2, new QTableWidgetItem(nogood_str));
}
}
_pentagonTable.resizeColumnsToContents();
}
void
CmpTreeDialog::selectPentagon(int row) {
const auto items = comparison_->pentagon_items();
auto node = items[row].node;
//TODO(maxim): this should unhide all nodes above
// m_Canvas->unhideNode(node); // <- does not work correctly
m_Canvas->setCurrentNode(node);
m_Canvas->centerCurrentNode();
}
void
CmpTreeDialog::showResponsibleNogoods() {
auto ng_dialog = new QDialog(this);
auto ng_layout = new QVBoxLayout();
ng_dialog->resize(600, 400);
ng_dialog->setLayout(ng_layout);
ng_dialog->show();
auto ng_table = new QTableWidget(ng_dialog);
ng_table->setEditTriggers(QAbstractItemView::NoEditTriggers);
ng_table->setColumnCount(4);
ng_table->setHorizontalScrollMode(QAbstractItemView::ScrollPerPixel);
ng_table->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
ng_table->setHorizontalHeaderLabels({"Id", "Occurrence",
"Reduction Total", "Literals"});
ng_layout->addWidget(ng_table);
auto save_btn = new QPushButton("Save as", ng_dialog);
connect(save_btn, &QPushButton::clicked, this, [this](){
saveComparisonStatsTo("temp_stats.txt");
});
ng_layout->addWidget(save_btn);
/// *** edit table ***
auto ng_stats = comparison_->responsible_nogood_stats();
/// map to vector
std::vector<std::pair<int, NogoodCmpStats> > ng_stats_vector;
ng_stats_vector.reserve(ng_stats.size());
for (auto ng : ng_stats) {
ng_stats_vector.push_back(ng);
}
std::sort(ng_stats_vector.begin(), ng_stats_vector.end(),
[](const std::pair<int, NogoodCmpStats>& lhs, const std::pair<int, NogoodCmpStats>& rhs){
// return lhs.second.occurrence > rhs.second.occurrence;
return lhs.second.search_eliminated > rhs.second.search_eliminated;
});
ng_table->setRowCount(ng_stats.size());
auto nogood_map = comparison_->left_execution().getNogoods();
int row = 0;
for (auto ng : ng_stats_vector) {
ng_table->setItem(row, 0, new QTableWidgetItem(QString::number(ng.first)));
ng_table->setItem(row, 1, new QTableWidgetItem(QString::number(ng.second.occurrence)));
string& nogood = getNogoodById(ng.first, nogood_map);
ng_table->setItem(row, 2, new QTableWidgetItem(QString::number(ng.second.search_eliminated)));
ng_table->setItem(row, 3, new QTableWidgetItem(nogood.c_str()));
// if (row > 100) break;
++row;
}
ng_table->resizeColumnsToContents();
auto total_reduced = comparison_->get_total_reduced();
auto total_nodes = comparison_->right_execution().getData()->size();
auto reduction_label = QString{"Nodes reduced: "} +
QString::number(total_reduced) +
QString{" out of "} +
QString::number(total_nodes);
ng_layout->addWidget(new QLabel{reduction_label});
}
/// ******************************************************