Merged revision(s) 43727 #9121265a10, 43804 #0b9e3dcde4 from trunk:

IDE: In compiler options -> Other -> Defines, catch an exception when parsing an invalid option.
........
IDE: In all compiler options, allow one char options combined like -Criot.
........

git-svn-id: branches/fixes_1_2@43841 -
This commit is contained in:
maxim 2014-01-29 22:50:49 +00:00
parent 41898f7d4d
commit bfb39df3cf
2 changed files with 40 additions and 13 deletions

View File

@ -135,6 +135,7 @@ type
private
// List of options belonging to this group.
fCompilerOpts: TCompilerOptList;
function OneCharOptions(aOptAndValue: string): TCompilerOpt;
protected
procedure ParseEditKind; override;
public
@ -620,10 +621,28 @@ begin
Result := FindOptionSub(Self);
end;
function TCompilerOptGroup.OneCharOptions(aOptAndValue: string): TCompilerOpt;
// Split and select option characters like in -Criot.
// Returns reference to the last option object if all characters were valid opts.
var
i: Integer;
OptBase: String;
begin
OptBase := Copy(aOptAndValue, 1, 2);
for i := 3 to Length(aOptAndValue) do
begin
Result := FindOption(OptBase + aOptAndValue[i]);
if Assigned(Result) then
Result.Value := 'True'
else
Exit(Nil);
end;
end;
function TCompilerOptGroup.SelectOption(aOptAndValue: string): Boolean;
var
Opt: TCompilerOpt;
OptStr, Param: string;
Param: string;
OptLen, ParamLen: integer;
begin
Opt := FindOption(aOptAndValue);
@ -634,23 +653,26 @@ begin
// ToDo: figure out the length in a more clever way.
if (Length(aOptAndValue) < 3) or (aOptAndValue[1] <> '-') then
raise Exception.CreateFmt('Invalid option or value "%s".', [aOptAndValue]);
if aOptAndValue[2] in ['e', 'd', 'u', 'I', 'k', 'o'] then
if aOptAndValue[2] in ['e', 'u', 'I', 'k', 'o'] then
OptLen := 2
else
OptLen := 3;
OptStr := Copy(aOptAndValue, 1, OptLen);
ParamLen := Length(aOptAndValue) - OptLen;
if (ParamLen > 0)
Opt := Nil;
if (ParamLen > 1)
and (aOptAndValue[OptLen+1] in ['''', '"'])
and (aOptAndValue[Length(aOptAndValue)] in ['''', '"']) then
begin
Inc(OptLen); // Strip quotes
Dec(ParamLen, 2);
Param := Copy(aOptAndValue, OptLen+2, ParamLen-2) // Strip quotes
else begin
Param := Copy(aOptAndValue, OptLen+1, ParamLen);
if OptLen = 3 then // Can contain one char options like -Criot. Can be combined.
Opt := OneCharOptions(aOptAndValue);
end;
if Opt = Nil then begin
Opt := FindOption(Copy(aOptAndValue, 1, OptLen));
if Assigned(Opt) then
Opt.Value := Param;
end;
Param := Copy(aOptAndValue, OptLen+1, ParamLen);
Opt := FindOption(OptStr);
if Assigned(Opt) then
Opt.Value := Param;
end;
Result := Assigned(Opt);
end;
@ -707,7 +729,7 @@ begin
Opt := TCompilerOpt(fCompilerOpts[i]);
if Opt.Value <> '' then
case Opt.EditKind of
oeSetElem: s := s + Opt.Option;
oeSetElem : s := s + Opt.Option;
oeSetNumber: s := s + Opt.Value;
end;
end;
@ -1098,7 +1120,7 @@ begin
for j := 0 to sl.Count-1 do
if AnsiStartsStr('-d', sl[j]) then
begin
if not AnsiStartsStr(CommentId, sl[j]) then
if (Length(sl[j]) > 2) and not AnsiStartsStr(CommentId, sl[j]) then
fDefines.Add(sl[j])
end
else

View File

@ -145,6 +145,7 @@ var
EditForm: TCustomDefinesForm;
begin
EditForm := TCustomDefinesForm.Create(Nil);
try
try
EditForm.OptionsReader := FOptionsReader;
EditForm.OptionsThread := FOptionsThread;
@ -158,6 +159,10 @@ begin
EditForm.ToCustomOptions(memoCustomOptions.Lines);
memoCustomOptions.Invalidate;
end;
except
on E: Exception do
ShowMessage('Error parsing custom options: '+E.Message);
end;
finally
EditForm.Free;
end;