forked from schulmar/Templar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebugmanager.cpp
127 lines (99 loc) · 2.68 KB
/
debugmanager.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
#include "debugmanager.h"
#include "graphvizbuilder.h"
#include "tracereader.h"
#include "common.h"
#include "templateeventhandler.h"
#include <QDir>
#include <QXmlStreamReader>
#include <QString>
#include <QColor>
#include <stack>
#include <exception>
namespace Templar{
DebugManager::DebugManager(QObject *parent) : QObject(parent)
{
}
void DebugManager::next()
{
if (historyPos >= instantiationHistory.size())
return;
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->handleEvent(instantiationHistory[historyPos]);
++historyPos;
}
void DebugManager::prev(){
if (historyPos == 0)
return;
--historyPos;
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->undoEvent();
}
void DebugManager::reset(const std::vector<TraceEntry>& instHistory)
{
instantiationHistory = instHistory;
historyPos = 0;
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->reset();
}
int DebugManager::getEventCount() const
{
return instantiationHistory.size();
}
void DebugManager::addEventHandler(TemplateEventHandler *handler)
{
eventHandlers.append(handler);
}
void DebugManager::inspect(const TraceEntry &entry)
{
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->inspect(entry);
}
void DebugManager::forward()
{
std::vector<TraceEntry> entryVec;
while (historyPos < instantiationHistory.size())
{
const TraceEntry& entry = instantiationHistory[historyPos++];
entryVec.push_back(entry);
if (hasBreakpoint(entry.context)) {
break;
}
}
if (!entryVec.empty())
{
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->forward(entryVec);
}
}
void DebugManager::rewind()
{
int count = 0;
bool breakPointActivated = false;
while (historyPos > 0)
{
++count;
const TraceEntry& entry = instantiationHistory[--historyPos];
if (hasBreakpoint(entry.context) && count > 1) {
breakPointActivated = true;
break;
}
}
if (count > 0)
{
for (int i = 0; i < this->eventHandlers.size(); ++i)
eventHandlers[i]->rewind(count);
if (breakPointActivated && count > 1) {
next();
}
}
}
bool DebugManager::hasBreakpoint(const QString &str) const
{
for (int i = 0; i < breakpoints.count(); ++i)
{
if (breakpoints[i].exactMatch(str))
return true;
}
return false;
}
} // namespace Templar