cloning debug state

This commit is contained in:
Vadim Lopatin 2015-12-17 16:46:59 +03:00
parent dd9163a5fb
commit 358eefa79c
1 changed files with 60 additions and 9 deletions

View File

@ -26,6 +26,13 @@ class LocationBase {
string fullFilePath; string fullFilePath;
string projectFilePath; string projectFilePath;
int line; int line;
this() {}
this(LocationBase v) {
file = v.file;
fullFilePath = v.fullFilePath;
projectFilePath = v.projectFilePath;
line = v.line;
}
} }
class DebugFrame : LocationBase { class DebugFrame : LocationBase {
@ -33,6 +40,16 @@ class DebugFrame : LocationBase {
string func; string func;
int level; int level;
DebugVariableList locals; DebugVariableList locals;
this() {}
this(DebugFrame v) {
super(v);
address = v.address;
func = v.func;
level = v.level;
locals = new DebugVariableList(locals);
}
void fillMissingFields(LocationBase v) { void fillMissingFields(LocationBase v) {
if (file.empty) if (file.empty)
file = v.file; file = v.file;
@ -52,16 +69,14 @@ class Breakpoint : LocationBase {
this() { this() {
id = _nextBreakpointId++; id = _nextBreakpointId++;
} }
this(Breakpoint v) {
super(v);
id = v.id;
enabled = v.enabled;
projectName = v.projectName;
}
Breakpoint clone() { Breakpoint clone() {
Breakpoint v = new Breakpoint(); return new Breakpoint(this);
v.id = id;
v.file = file;
v.fullFilePath = fullFilePath;
v.projectFilePath = projectFilePath;
v.line = line;
v.enabled = enabled;
v.projectName = projectName;
return v;
} }
} }
@ -71,6 +86,17 @@ class DebugThread {
DebugFrame frame; DebugFrame frame;
DebuggingState state; DebuggingState state;
DebugStack stack; DebugStack stack;
this() {
}
this(DebugThread v) {
id = v.id;
name = v.name;
frame = new DebugFrame(v.frame);
state = v.state;
stack = new DebugStack(v.stack);
}
@property int length() { return stack ? stack.length : 0; } @property int length() { return stack ? stack.length : 0; }
DebugFrame opIndex(int index) { return stack ? stack[index] : null; } DebugFrame opIndex(int index) { return stack ? stack[index] : null; }
} }
@ -78,6 +104,13 @@ class DebugThread {
class DebugThreadList { class DebugThreadList {
DebugThread[] threads; DebugThread[] threads;
ulong currentThreadId; ulong currentThreadId;
this() {}
this(DebugThreadList v) {
currentThreadId = v.currentThreadId;
foreach(t; v.threads)
threads ~= new DebugThread(t);
}
@property DebugThread currentThread() { @property DebugThread currentThread() {
return findThread(currentThreadId); return findThread(currentThreadId);
} }
@ -93,6 +126,13 @@ class DebugThreadList {
class DebugStack { class DebugStack {
DebugFrame[] frames; DebugFrame[] frames;
this() {}
this(DebugStack v) {
foreach(t; v.frames)
frames ~= new DebugFrame(t);
}
@property int length() { return cast(int)frames.length; } @property int length() { return cast(int)frames.length; }
DebugFrame opIndex(int index) { return frames[index]; } DebugFrame opIndex(int index) { return frames[index]; }
} }
@ -101,10 +141,21 @@ class DebugVariable {
string name; string name;
string type; string type;
string value; string value;
this() {}
this(DebugVariable v) {
name = v.name;
type = v.type;
value = v.value;
}
} }
class DebugVariableList { class DebugVariableList {
DebugVariable[] variables; DebugVariable[] variables;
this() {}
this(DebugVariableList v) {
foreach(t; v.variables)
variables ~= new DebugVariable(t);
}
} }
static __gshared _nextBreakpointId = 1; static __gshared _nextBreakpointId = 1;