GDB commander, format and demangle result of evaluation triggered by mouse motion

This commit is contained in:
Basile Burg 2020-02-18 07:50:36 +01:00
parent 90eedf284a
commit 42abae2c17
1 changed files with 80 additions and 1 deletions

View File

@ -1689,6 +1689,85 @@ begin
updateButtonsState; updateButtonsState;
end; end;
function formatEvaluationResult(const str: string): string;
var
c: char = #0;
p: char;
i: integer = 0;
t: integer = 0;
s: boolean = false;
procedure writeIndent();
var
i: integer;
begin
for i := 1 to t do
result += ' ';
end;
procedure newLineAndIndent();
begin
result += #10;
writeIndent();
end;
begin
result := '';
while i <> str.length do
begin
i += 1;
p := c;
c := str[i];
if s and (c <> #38) then
begin
result += c;
continue;
end;
case c of
#10, #13:
begin
continue;
end;
'\':
begin
result += c;
if i <> str.length then
begin
result += str[i +1];
i += 1;
end;
end;
'{':
begin
if t = 0 then
writeIndent()
else
newLineAndIndent();
result += c;
t += 1;
newLineAndIndent();
end;
'}':
begin
t -= 1;
newLineAndIndent();
result += c;
newLineAndIndent();
end;
',':
begin
if p <> '}' then
newLineAndIndent();
end;
#38:
begin
s := not s;
result += c;
end;
else result += c;
end;
end;
end;
function TGdbWidget.evaluate(const exp: string): string; function TGdbWidget.evaluate(const exp: string): string;
begin begin
result := ''; result := '';
@ -1700,7 +1779,7 @@ begin
sleep(25); sleep(25);
Application.ProcessMessages(); Application.ProcessMessages();
sleep(25); sleep(25);
result := fCaughtCustomEvalAstring; result := demangle(formatEvaluationResult(fCaughtCustomEvalAstring));
end; end;
procedure TGdbWidget.updateButtonsState; procedure TGdbWidget.updateButtonsState;