debugger improvements

This commit is contained in:
Vadim Lopatin 2015-12-17 11:48:57 +03:00
parent b8b44a79e7
commit 611c2f2cb7
10 changed files with 175 additions and 5 deletions

View File

@ -212,6 +212,8 @@
<Compile Include="src\dlangide\ui\outputpanel.d" />
<Compile Include="src\dlangide\ui\searchPanel.d" />
<Compile Include="src\dlangide\ui\settings.d" />
<Compile Include="src\dlangide\ui\stackpanel.d" />
<Compile Include="src\dlangide\ui\watchpanel.d" />
<Compile Include="src\dlangide\ui\wspanel.d" />
<Compile Include="src\dlangide\ui\newfile.d" />
<Compile Include="src\dlangide\workspace\project.d" />

View File

@ -121,6 +121,8 @@
<Compile Include="src\dlangide\ui\outputpanel.d" />
<Compile Include="src\dlangide\ui\searchPanel.d" />
<Compile Include="src\dlangide\ui\settings.d" />
<Compile Include="src\dlangide\ui\stackpanel.d" />
<Compile Include="src\dlangide\ui\watchpanel.d" />
<Compile Include="src\dlangide\ui\wspanel.d" />
<Compile Include="src\dlangide\tools\editortool.d" />
<Compile Include="src\dlangide\tools\d\dcdinterface.d" />

View File

@ -462,6 +462,8 @@
<File path="src\dlangide\ui\outputpanel.d" />
<File path="src\dlangide\ui\searchPanel.d" />
<File path="src\dlangide\ui\settings.d" />
<File path="src\dlangide\ui\stackpanel.d" />
<File path="src\dlangide\ui\watchpanel.d" />
<File path="src\dlangide\ui\wspanel.d" />
</Folder>
<Folder name="workspace">

View File

@ -14,7 +14,7 @@
"copyFiles-windows": ["lib/win32/dcd-server.exe", "lib/win32/dcd-client.exe"],
"dependencies": {
"dlangui": "~>0.7.21",
"dlangui": "~>0.7.22",
"libdparse": "==0.2.0"
},

View File

@ -4,6 +4,8 @@ import core.thread;
import dlangui.core.logger;
import ddebug.common.queue;
import ddebug.common.execution;
import std.array : empty;
import std.algorithm : startsWith, endsWith, equal;
enum DebuggingState {
loaded,
@ -29,6 +31,16 @@ class LocationBase {
class DebugLocation : LocationBase {
ulong address;
string func;
void fillMissingFields(LocationBase v) {
if (file.empty)
file = v.file;
if (fullFilePath.empty)
fullFilePath = v.fullFilePath;
if (projectFilePath.empty)
projectFilePath = v.projectFilePath;
if (!line)
line = v.line;
}
}
class Breakpoint : LocationBase {
@ -272,8 +284,8 @@ abstract class DebuggerBase : Thread, Debugger {
}
~this() {
stop();
destroy(_queue);
//stop();
//destroy(_queue);
_queue = null;
}

View File

@ -9,7 +9,7 @@ import ddebug.gdb.gdbmiparser;
import std.utf;
import std.conv : to;
import std.array : empty;
import std.algorithm : startsWith, equal;
import std.algorithm : startsWith, endsWith, equal;
import core.thread;
abstract class ConsoleDebuggerInterface : DebuggerBase, TextWriter {
@ -416,6 +416,8 @@ class GDBInterface : ConsoleDebuggerInterface {
// ~message
void handleStreamLineCLI(string s) {
Log.d("GDB CLI: ", s);
if (s.length >= 2 && s.startsWith('\"') && s.endsWith('\"'))
s = parseCString(s);
_callback.onDebuggerMessage(s);
}
@ -456,8 +458,13 @@ class GDBInterface : ConsoleDebuggerInterface {
if (reason.equal("end-stepping-range")) {
_callback.onDebugState(DebuggingState.paused, StateChangeReason.endSteppingRange, location, bp);
} else if (reason.equal("breakpoint-hit")) {
if (GDBBreakpoint gdbbp = findBreakpointByNumber(params.getString("bkptno")))
if (GDBBreakpoint gdbbp = findBreakpointByNumber(params.getString("bkptno"))) {
bp = gdbbp.bp;
if (!location && bp) {
location = new DebugLocation();
location.fillMissingFields(bp);
}
}
_callback.onDebugState(DebuggingState.paused, StateChangeReason.breakpointHit, location, bp);
} else {
_callback.onDebugState(DebuggingState.stopped, StateChangeReason.exited, null, null);

View File

@ -2,11 +2,14 @@ module dlangide.ui.debuggerui;
import dlangui.core.logger;
import dlangui.core.events;
import dlangui.widgets.docks;
import dlangide.workspace.project;
import dlangide.workspace.workspace;
import dlangide.ui.frame;
import dlangide.ui.commands;
import dlangide.ui.dsourceedit;
import dlangide.ui.stackpanel;
import dlangide.ui.watchpanel;
import ddebug.common.execution;
import ddebug.common.debugger;
@ -26,6 +29,7 @@ class DebuggerUIHandler : DebuggerCallback {
void onProgramExecutionStatus(ProgramExecution process, ExecutionStatus status, int exitCode) {
Log.d("Debugger exit status: ", status, " ", exitCode);
updateLocation(null);
switchToDevelopPerspective();
_ide.debugFinished(process, status, exitCode);
//_callbackDelegate( delegate() { _callback.onProgramExecutionStatus(this, status, exitCode); } );
}
@ -42,6 +46,7 @@ class DebuggerUIHandler : DebuggerCallback {
/// debugger is started and loaded program, you can set breakpoints at this time
void onProgramLoaded(bool successful, bool debugInfoLoaded) {
_ide.logPanel.logLine("Program is loaded");
switchToDebugPerspective();
// TODO: check succes status and debug info
if (_breakpoints.length)
_debugger.setBreakpoints(_breakpoints);
@ -160,4 +165,30 @@ class DebuggerUIHandler : DebuggerCallback {
return true;
}
}
private WatchPanel _watchPanel;
private StackPanel _stackPanel;
void switchToDebugPerspective() {
_ide.dockHost.layoutPriority = [DockAlignment.Bottom, DockAlignment.Top, DockAlignment.Left, DockAlignment.Right];
_watchPanel = new WatchPanel("watch");
_watchPanel.dockAlignment = DockAlignment.Bottom;
_ide.dockHost.addDockedWindow(_watchPanel);
_stackPanel = new StackPanel("stack");
_stackPanel.dockAlignment = DockAlignment.Right;
_ide.dockHost.addDockedWindow(_stackPanel);
}
void switchToDevelopPerspective() {
_ide.dockHost.layoutPriority = [DockAlignment.Top, DockAlignment.Left, DockAlignment.Right, DockAlignment.Bottom];
_watchPanel = null;
auto w = _ide.dockHost.removeDockedWindow("watch");
if (w)
destroy(w);
_stackPanel = null;
w = _ide.dockHost.removeDockedWindow("stack");
if (w)
destroy(w);
}
}

View File

@ -91,6 +91,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
applySettings(_settings);
}
@property DockHost dockHost() { return _dockHost; }
@property OutputPanel logPanel() { return _logPanel; }
/// stop current program execution

View File

@ -0,0 +1,43 @@
module dlangide.ui.stackpanel;
import dlangui;
class StackPanel : DockWindow {
this(string id) {
super(id);
_caption.text = "Stack"d;
}
override protected Widget createBodyWidget() {
VerticalLayout root = new VerticalLayout();
root.layoutWeight = FILL_PARENT;
root.layoutHeight = FILL_PARENT;
ComboBox comboBox = new ComboBox("threadComboBox", ["Thread1"d]);
comboBox.layoutWidth = FILL_PARENT;
comboBox.selectedItemIndex = 0;
StringGridWidget grid = new StringGridWidget("stackGrid");
grid.resize(2, 20);
grid.showColHeaders = true;
grid.showRowHeaders = false;
grid.layoutHeight = FILL_PARENT;
grid.layoutWidth = FILL_PARENT;
grid.setColTitle(0, "Function"d);
grid.setColTitle(1, "Address"d);
grid.setCellText(0, 0, "main()"d);
root.addChild(comboBox);
root.addChild(grid);
return root;
}
protected void onPopupMenuItem(MenuItem item) {
if (item.action)
handleAction(item.action);
}
/// override to handle specific actions
override bool handleAction(const Action a) {
return super.handleAction(a);
}
}

View File

@ -0,0 +1,70 @@
module dlangide.ui.watchpanel;
import dlangui;
class VariablesWindow : StringGridWidget {
this(string ID = null) {
super(ID);
resize(3, 20);
showColHeaders = true;
showRowHeaders = false;
layoutHeight = FILL_PARENT;
layoutWidth = FILL_PARENT;
setColTitle(0, "Variable"d);
setColTitle(1, "Value"d);
setColTitle(2, "Type"d);
setCellText(0, 0, "a"d);
setCellText(1, 0, "1"d);
setCellText(2, 0, "int"d);
setCellText(0, 1, "b"d);
setCellText(1, 1, "42"d);
setCellText(2, 1, "ulong"d);
}
}
class WatchPanel : DockWindow {
this(string id) {
super(id);
_caption.text = "Watch"d;
_showCloseButton = false;
}
protected TabWidget _tabs;
protected VariablesWindow _locals;
protected VariablesWindow _autos;
override protected Widget createBodyWidget() {
_tabs = new TabWidget("WatchPanelTabs", Align.Bottom);
_tabs.setStyles(null, STYLE_TAB_DOWN_DARK, STYLE_TAB_DOWN_BUTTON_DARK, STYLE_TAB_UP_BUTTON_DARK_TEXT);
_tabs.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
_tabs.tabHost.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
_locals = new VariablesWindow("watchLocals");
_autos = new VariablesWindow("watchAutos");
_tabs.addTab(_locals, "Locals"d);
_tabs.addTab(_autos, "Autos"d);
_tabs.selectTab("watchAutos");
return _tabs;
}
override protected void init() {
//styleId = STYLE_DOCK_WINDOW;
styleId = null;
_bodyWidget = createBodyWidget();
//_bodyWidget.styleId = STYLE_DOCK_WINDOW_BODY;
addChild(_bodyWidget);
}
protected void onPopupMenuItem(MenuItem item) {
if (item.action)
handleAction(item.action);
}
/// override to handle specific actions
override bool handleAction(const Action a) {
return super.handleAction(a);
}
}