diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 85b1b39..bb3c0c8 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -1710,6 +1710,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL return; } _logPanel.activateLogTab(); + string baseDirectory = project.dir; + Log.d("build: base directory is ", baseDirectory); + _logPanel.setLogWidgetBaseDirectory(baseDirectory); if (!listener) { if (buildOp == BuildOperation.Upgrade || buildOp == BuildOperation.Build || buildOp == BuildOperation.Rebuild) { listener = delegate(int result) { diff --git a/src/dlangide/ui/outputpanel.d b/src/dlangide/ui/outputpanel.d index 68f0bd6..d3baa08 100644 --- a/src/dlangide/ui/outputpanel.d +++ b/src/dlangide/ui/outputpanel.d @@ -44,6 +44,10 @@ class CompilerLogWidget : LogWidget { Signal!CompilerLogIssueClickHandler compilerLogIssueClickHandler; + protected string _baseDirectory; + @property string baseDirectory() { return _baseDirectory; } + @property void baseDirectory(string dir) { _baseDirectory = dir; } + //auto ctr = ctRegex!(r"(.+)\((\d+)\): (Error|Warning|Deprecation): (.+)"d); auto ctr = ctRegex!(r"(.+)\((\d+)(?:,(\d+))?\): (Error|Warning|Deprecation): (.+)"d); @@ -160,15 +164,30 @@ class CompilerLogWidget : LogWidget { if(!match.empty) { dstring filename = match[1]; import std.conv:to; - int row = to!int(match[2]) - 1; + int row = 0; + try { + row = to!int(match[2]) - 1; + } catch (Exception e) { + row = 0; + } if (row < 0) row = 0; int col = 0; if (match[3] && match[3] != "") { - col = to!int(match[3]) - 1; + try { + col = to!int(match[3]) - 1; + } catch (Exception e) { + col = 0; + } if (col < 0) col = 0; } + if (filename.startsWith("../") || filename.startsWith("..\\")) { + import dlangui.core.types : toUTF8; + string fn = filename.toUTF8; + resolveRelativePath(fn, line); + filename = fn.toUTF32; + } return new ErrorPosition(filename, row, col); } return null; @@ -184,6 +203,36 @@ class CompilerLogWidget : LogWidget { return null; } + //dlangui ~master: building configuration "default"... + string findProjectForLine(int line) { + for (int i = line - 1; i >= 0; i--) { + dstring s = _content[i]; + int p = cast(int)s.indexOf(": building configuration "d); + if (p >= 0) { + int p0 = cast(int)s.indexOf(" "); + if (p0 > 0 && p0 < p) { + import dlangui.core.types : toUTF8; + return s[0 .. p0].toUTF8; + } + } + } + return null; + } + + void resolveRelativePath(ref string path, int line) { + import std.path : getcwd, absolutePath; + Log.d("resolveRelativePath ", path, " current directory: ", getcwd); + string prjName = findProjectForLine(line); + if (prjName) { + Log.d("Error is in project ", prjName); + } + string base = _baseDirectory; + if (!base) + base = getcwd; + // TODO: select proper base + path = absolutePath(path, base); + Log.d("converted to absolute path: ", path); + } /// override bool onMouseEvent(MouseEvent event) { @@ -224,8 +273,12 @@ class CompilerLogWidget : LogWidget { if (col < 0) col = 0; } - - compilerLogIssueClickHandler(match[1], row, col); + import dlangui.core.types : toUTF8; + string filename = match[1].toUTF8; + if (filename.startsWith("../") || filename.startsWith("..\\")) { + resolveRelativePath(filename, _caretPos.line); + } + compilerLogIssueClickHandler(filename.toUTF32, row, col); } } @@ -248,6 +301,10 @@ class OutputPanel : DockWindow { @property TabWidget getTabs() { return _tabs;} + void setLogWidgetBaseDirectory(string baseDir) { + _logWidget.baseDirectory = baseDir; + } + void activateLogTab() { ensureLogVisible(); _tabs.selectTab("logwidget"); diff --git a/src/dlangide/workspace/project.d b/src/dlangide/workspace/project.d index 36bdbd3..3834e4f 100644 --- a/src/dlangide/workspace/project.d +++ b/src/dlangide/workspace/project.d @@ -54,6 +54,11 @@ class ProjectItem { @property string filename() { return _filename; } + @property string directory() { + import std.path : dirName; + return _filename.dirName; + } + @property dstring name() { return _name; } @property string name8() { diff --git a/views/VERSION b/views/VERSION index 0af43a5..af24d2d 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.91 \ No newline at end of file +v0.7.92 \ No newline at end of file