forked from cp-profiler/cp-profiler-deprecated-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecution.hh
111 lines (88 loc) · 2.51 KB
/
execution.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
#ifndef EXECUTION_HH
#define EXECUTION_HH
#include <QObject>
#include <QDebug>
#include <sstream>
#include <ctime>
#include <memory>
#include "nodetree.hh"
#include <unordered_map>
class Data;
class DbEntry;
class NodeAllocator;
namespace message {
class Node;
}
class TreeBuilder;
class Execution : public QObject {
Q_OBJECT
friend class TreeCanvas;
public:
Execution();
Execution(const Execution&) = delete;
Execution& operator=(const Execution&) = delete;
~Execution();
const std::string* getNogood(const Node& node) const;
const std::string* getInfo(const Node& node) const;
std::string getTitle() const;
std::string getDescription() {
std::stringstream ss;
ss << getTitle();
return ss.str();
}
DbEntry* getEntry(const Node& node) const {
auto gid = node.getIndex(getNA());
return getEntry(gid);
}
const NodeAllocator& getNA() const {
return node_tree.getNA();
}
NodeAllocator& getNA() {
return node_tree.getNA();
}
const NodeTree& nodeTree() const {
return node_tree;
}
const std::unordered_map<int64_t, std::string>& getNogoods() const;
std::unordered_map<int64_t, std::string*>& getInfo(void) const;
DbEntry* getEntry(int gid) const;
unsigned int getGidBySid(int sid);
std::string getLabel(int gid) const;
unsigned long long getTotalTime();
Data* getData() const;
void start(std::string label, bool isRestarts);
bool isDone() const { return _is_done; }
bool isRestarts() const { return _is_restarts; }
VisualNode* getRootNode() const {
return node_tree.getRootNode();
}
Statistics& getStatistics() {
return node_tree.getStatistics();
}
QMutex& getMutex() { return node_tree.getMutex(); }
QMutex& getLayoutMutex() { return node_tree.getLayoutMutex(); }
void setVariableListString(const std::string& s) {
variableListString = s;
// std::cerr << "set variableListString to " << s << "\n";
}
std::string getVariableListString(void) {
return variableListString;
}
signals:
void newNode();
void newRoot();
void titleKnown();
void startReceiving();
void doneReceiving();
void doneBuilding();
private:
std::unique_ptr<Data> m_Data;
std::unique_ptr<TreeBuilder> m_Builder;
NodeTree node_tree;
bool _is_done = false;
bool _is_restarts;
std::string variableListString;
public Q_SLOTS:
void handleNewNode(message::Node& node);
};
#endif