forked from cp-profiler/cp-profiler-deprecated-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtreecanvas.hh
422 lines (349 loc) · 12.1 KB
/
treecanvas.hh
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
/* 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.
*
*/
#ifndef TREECANVAS_HH
#define TREECANVAS_HH
#include <QtGui>
#if QT_VERSION >= 0x050000
#include <QtWidgets>
// #include <QTimer>
#endif
#include <functional>
#include "visualnode.hh"
#include "zoomToFitIcon.hpp"
#include "execution.hh"
/// \brief Parameters for the tree layout
namespace LayoutConfig {
/// Minimum scale factor
const int minScale = 1;
/// Maximum scale factor
const int maxScale = 400;
/// Default scale factor
const int defScale = 100;
/// Maximum scale factor for automatic zoom
const int maxAutoZoomScale = defScale;
}
class TreeCanvas;
namespace cpprofiler { namespace analysis {
class SimilarShapesWindow;
}}
class TreeDialog;
/// *********************
/// SIMILAR SUBTREES
/// *********************
enum class CanvasType {
REGULAR,
MERGED
};
/// \brief A canvas that displays the search tree
class TreeCanvas : public QWidget {
Q_OBJECT
/// TODO: try to reduce the number of these
friend class Gist;
friend class ShapeCanvas;
friend class TreeComparison;
friend class CmpTreeDialog;
public:
/// each new consequent Canvas will get an id
int _id;
const CanvasType canvasType;
std::string getLabel(unsigned int gid) {
return execution->getLabel(gid);
}
unsigned long long getTotalTime() const { return execution->getTotalTime(); }
std::string getTitle() const { return execution->getTitle(); }
DbEntry* getEntry(unsigned int gid) { return execution->getEntry(gid); }
const Statistics& get_stats() const { return execution->getStatistics(); }
/// TODO(maxim): funny const here
Execution* getExecution() const { return execution; }
private:
/// ****** INTERFACE STUFF *********
QPixmap zoomPic;
QToolButton* autoZoomButton;
/// to generate ids
static int counter;
/// Pointer to Data Object
Execution* execution;
int nodeCount = 0;
QTimer* updateTimer;
public Q_SLOTS:
void reset();
public:
/// Constructor
TreeCanvas(Execution* execution, QGridLayout* layout, CanvasType type, QWidget* parent);
/// Destructor
~TreeCanvas(void);
/// ***** GETTERS *****
unsigned int getTreeDepth(void);
/// *******************
/// Return number of solved children in the node
int getNoOfSolvedLeaves(VisualNode* n);
void printSearchLogTo(const QString& file_name);
/// Apply `action` to every node that satisfies the predicate
void applyToEachNodeIf(std::function<void (VisualNode*)> action,
std::function<bool (VisualNode*)> predicate);
public Q_SLOTS:
/// Set scale factor to \a scale0
void scaleTree(int scale0, int zoomx=-1, int zoomy=-1);
/// Toggle hidden state of selected node
void toggleHidden(void);
/// Hide failed subtrees of selected node
void hideFailed(void);
/// Hide subtrees under a certain size
void hideSize(void);
/// Unhide all nodes below selected node
void unhideAll(void);
/// Unselect all nodes
void unselectAll(void);
/// Sets the node and its ancestry as not hidden;
/// marks the path as dirty
void unhideNode(VisualNode* node);
/// Do not stop at selected stop node
void toggleStop(void);
/// Do not stop at any stop node
void unstopAll(void);
/// Export pdf of the current subtree
void exportPDF(void);
/// Export pdf of the whole tree
void exportWholeTreePDF(void);
/// Print the tree
void print(void);
/// Print the search tree log
void printSearchLog(void);
/// Zoom the canvas so that the whole tree fits
void zoomToFit(void);
/// Center the view on the currently selected node
void centerCurrentNode(void);
/// Expand hidden node or pentagon
void expandCurrentNode();
/// Label all branches in subtree under current node
void labelBranches(void);
/// Label all branches on path to root node
void labelPath(void);
/// Show Indented Pixel Tree View
void showPixelTree(void);
/// Show Icicle Tree View
void showIcicleTree(void);
/// Follow path from root
void followPath(void);
/// Analyze similar subtrees of current node
void analyzeSimilarSubtrees(void);
/// Show highlight nodes dialog
void highlightNodesMenu(void);
/// Show no-goods
void showNogoods(void);
/// Show node info
void showNodeInfo(void);
/// Show a node on a pixel tree
void showNodeOnPixelTree(void);
/// Collect ML stats from the current node
void collectMLStats(void);
/// Collect ML stats for a specified node
void collectMLStats(VisualNode* node);
/// Collect ML stats from the root
void collectMLStatsRoot(std::ostream& out);
/// calls when clicking right mouse button on a shape
void highlightShape(VisualNode* node);
void resetNodesHighlighting();
/// highlight nodes with non-empty info field
void highlightNodesWithInfo();
/// highlight failures caused by nogoods (nogoods in info)
void highlightFailedByNogoods();
/// Move selection to the parent of the selected node
void navUp(void);
/// Move selection to the first child of the selected node
void navDown(void);
/// Move selection to the left sibling of the selected node
void navLeft(void);
/// Move selection to the right sibling of the selected node
void navRight(void);
/// Move selection to the root node
void navRoot(void);
/// Move selection to next solution (in DFS order)
void navNextSol(bool back = false);
/// Move selection to next leaf (in DFS order)
void navNextLeaf(bool back = false);
/// Move selection to next pentagon (in DFS order)
void navNextPentagon(bool back = false);
/// Move selection to previous solution (in DFS order)
void navPrevSol(void);
/// Move selection to previous leaf (in DFS order)
void navPrevLeaf(void);
/// Bookmark current node
void bookmarkNode(void);
/// Re-emit status change information for current node
void emitStatusChanged(void);
/// Set preference whether to automatically hide failed subtrees
void setAutoHideFailed(bool b);
/// Set preference whether to automatically zoom to fit
void setAutoZoom(bool b);
/// Return preference whether to automatically hide failed subtrees
bool getAutoHideFailed(void);
/// Return preference whether to automatically zoom to fit
bool getAutoZoom(void);
/// Set refresh rate
void setRefresh(int i);
/// Set refresh pause in msec
void setRefreshPause(int i);
/// Return preference whether to use smooth scrolling and zooming
bool getSmoothScrollAndZoom(void);
/// Set preference whether to use smooth scrolling and zooming
void setSmoothScrollAndZoom(bool b);
/// Return preference whether to move cursor during search
bool getMoveDuringSearch(void);
/// Set preference whether to move cursor during search
void setMoveDuringSearch(bool b);
/// Resize to the outer widget size if auto zoom is enabled
void resizeToOuter(void);
/// Stop search and wait for it to finish
bool finish(void);
Q_SIGNALS:
void scaleChanged(int);
/// The auto-zoom state was changed
void autoZoomChanged(bool);
/// Context menu triggered
void contextMenu(QContextMenuEvent*);
/// Status bar update
void statusChanged(VisualNode*, const Statistics&, bool);
void needActionsUpdate(VisualNode*, bool);
/// Signals that a solution has been found
void solution(int);
/// Signals that %Gist is finished
void searchFinished(void);
/// Signals that a bookmark has been added
void addedBookmark(const QString& id);
/// Signals that a bookmark has been removed
void removedBookmark(int idx);
void showNodeOnPixelTree(int gid);
void announceSelectNode(int gid);
protected:
/// Mutex for synchronizing acccess to the tree
QMutex& mutex;
/// Mutex for synchronizing layout and drawing
QMutex& layoutMutex;
/// Flag signalling that Gist is ready to be closed
bool finishedFlag;
/// Allocator for nodes
NodeAllocator& na;
/// The root node of the tree
VisualNode* root;
/// The currently selected node
VisualNode* currentNode;
/// The head of the currently selected path
VisualNode* pathHead;
/// The bookmarks map
QVector<VisualNode*> bookmarks;
/// The scale bar
QSlider* scaleBar;
/// Box for selecting "small subtree" size
QLineEdit* smallBox;
/// Current scale factor
double scale;
/// Offset on the x axis so that the tree is centered
int xtrans;
/// Whether to hide failed subtrees automatically
bool autoHideFailed = true;
/// Whether to zoom automatically
bool autoZoom = false;
/// Whether to show copies in the tree
bool showCopies;
/// Refresh rate
int refresh = 500;
/// Time (in msec) to pause after each refresh
int refreshPause = 0;
/// Whether to use smooth scrolling and zooming
bool smoothScrollAndZoom = false;
/// Whether to move cursor during search
bool moveDuringSearch = false;
/// Return the node corresponding to the \a event position
VisualNode* eventNode(QEvent *event);
/// General event handler, used for displaying tool tips
bool event(QEvent *event);
/// Paint the tree
void paintEvent(QPaintEvent* event);
/// Handle mouse press event
void mousePressEvent(QMouseEvent* event);
/// Handle mouse double click event
void mouseDoubleClickEvent(QMouseEvent* event);
/// Handle context menu event
void contextMenuEvent(QContextMenuEvent* event);
/// Handle resize event
void resizeEvent(QResizeEvent* event);
/// Handle mouse wheel events
void wheelEvent(QWheelEvent* event);
/// Timer for smooth zooming
QTimeLine zoomTimeLine{500};
/// Timer for smooth scrolling
QTimeLine scrollTimeLine{1000};
/// Target x coordinate after smooth scrolling
int targetX = 0;
/// Source x coordinate after smooth scrolling
int sourceX = 0;
/// Target y coordinate after smooth scrolling
int targetY = 0;
/// Target y coordinate after smooth scrolling
int sourceY = 0;
/// Target width after layout
int targetW = 0;
/// Target height after layout
int targetH = 0;
/// Target scale after layout
int targetScale = 0;
/// Timer id for delaying the update
int layoutDoneTimerId = 0;
/// Timer invoked for smooth zooming and scrolling
virtual void timerEvent(QTimerEvent* e);
/// Similar shapes dialog
std::unique_ptr<cpprofiler::analysis::SimilarShapesWindow> shapesWindow;
// Node that represents the shape currently selected
VisualNode* shapeHighlighted;
public:
/// traverse every node and set hidden
void hideAll(void);
public Q_SLOTS:
void maybeUpdateCanvas(void);
void updateCanvas(void);
/// Update display
void update(void);
/// React to scroll events
void scroll(void);
/// Layout done
void layoutDone(int w, int h, int scale0);
/// Set the selected node to \a n
void setCurrentNode(VisualNode* n, bool finished=true, bool update=true);
/// Set the selected not to a node by solver id (from no-good table)
void navigateToNodeById(int gid);
void statusFinished();
#ifdef MAXIM_DEBUG
void printDebugInfo(void);
void addChildren();
#endif
private Q_SLOTS:
/// Set isUsed to true and update
void finalizeCanvas(void);
/// Search has finished
void statusChanged(bool);
/// Export PDF of the subtree of \a n
void exportNodePDF(VisualNode* n);
/// Scroll to \a i percent of the target
void scroll(int i);
void updateViaTimer(void);
};
#endif // TREECANVAS_HH