highlight compiler output; fix tetris sample dub.json

This commit is contained in:
Vadim Lopatin 2015-02-10 11:25:33 +03:00
parent 5b95c5a66f
commit ffe10b24b8
2 changed files with 59 additions and 6 deletions

View File

@ -6,24 +6,78 @@ import dlangide.workspace.project;
import std.utf; import std.utf;
import std.regex; import std.regex;
import std.algorithm : startsWith;
/// /// event listener to navigate by error/warning position
interface CompilerLogIssueClickHandler { interface CompilerLogIssueClickHandler {
bool onCompilerLogIssueClick(dstring filename, int line, int column); bool onCompilerLogIssueClick(dstring filename, int line, int column);
} }
/// /// Log widget with parsing of compiler output
class CompilerLogWidget : LogWidget { class CompilerLogWidget : LogWidget {
Signal!CompilerLogIssueClickHandler compilerLogIssueClickHandler; Signal!CompilerLogIssueClickHandler compilerLogIssueClickHandler;
auto ctr = ctRegex!(r"(.+)\((\d+)\): (Error|Warning): (.+)"d); auto ctr = ctRegex!(r"(.+)\((\d+)\): (Error|Warning|Deprecation): (.+)"d);
/// forward to super c'tor /// forward to super c'tor
this(string ID) { this(string ID) {
super(ID); super(ID);
} }
/**
Custom text color and style highlight (using text highlight) support.
Return null if no syntax highlight required for line.
*/
override protected CustomCharProps[] handleCustomLineHighlight(int line, dstring txt) {
auto match = matchFirst(txt, ctr);
uint defColor = textColor;
const uint filenameColor = 0x0000C0;
const uint errorColor = 0xFF0000;
const uint warningColor = 0x606000;
const uint deprecationColor = 0x802040;
uint flags = 0;
if(!match.empty) {
CustomCharProps[] colors = new CustomCharProps[txt.length];
uint cl = filenameColor;
flags = TextFlag.Underline;
for (int i = 0; i < txt.length; i++) {
dstring rest = txt[i..$];
if (rest.startsWith(" Error"d)) {
cl = errorColor;
flags = 0;
} else if (rest.startsWith(" Warning"d)) {
cl = warningColor;
flags = 0;
} else if (rest.startsWith(" Deprecation"d)) {
cl = deprecationColor;
flags = 0;
}
colors[i].color = cl;
colors[i].textFlags = flags;
}
return colors;
} else if (txt.startsWith("Building ")) {
CustomCharProps[] colors = new CustomCharProps[txt.length];
uint cl = defColor;
for (int i = 0; i < txt.length; i++) {
dstring rest = txt[i..$];
if (i == 9) {
cl = filenameColor;
flags = TextFlag.Underline;
} else if (rest.startsWith(" configuration"d)) {
cl = defColor;
flags = 0;
}
colors[i].color = cl;
colors[i].textFlags = flags;
}
return colors;
}
return null;
}
/// ///
override bool onMouseEvent(MouseEvent event) { override bool onMouseEvent(MouseEvent event) {
@ -36,8 +90,7 @@ class CompilerLogWidget : LogWidget {
auto match = matchFirst(logLine, ctr); auto match = matchFirst(logLine, ctr);
if(!match.empty) if(!match.empty) {
{
if (compilerLogIssueClickHandler.assigned) { if (compilerLogIssueClickHandler.assigned) {
import std.conv:to; import std.conv:to;
compilerLogIssueClickHandler(match[1], to!int(match[2]), 0); compilerLogIssueClickHandler(match[1], to!int(match[2]), 0);

View File

@ -12,6 +12,6 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi"], "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi"],
"dependencies": { "dependencies": {
"dlangui:dlanguilib": "~master" "dlangui": "~master"
} }
} }