1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
unit compiler_compilation_options;
{$mode objfpc}{$H+}
interface
uses
// RTL + FCL
Classes, sysutils,
// LCL
Controls, StdCtrls, Dialogs, CheckLst,
// CodeTools
FileProcs, DefineTemplates, CodeToolManager, LinkScanner,
// LazUtils
FileUtil, LazFileUtils,
// IDEIntf
IDEOptionsIntf, IDEOptEditorIntf, CompOptsIntf, IDEExternToolIntf,
IDEDialogs, IDEUtils,
// IDE
Project, CompilerOptions, PackageDefs, LazarusIDEStrConsts, EnvironmentOpts,
LazConf, IDEProcs, DialogProcs, InputHistory, InitialSetupProc;
type
{ TCompilerCompilationOptionsFrame }
TCompilerCompilationOptionsFrame = class(TAbstractIDEOptionsEditor)
BrowseCompilerButton: TButton;
ExecAfterParsersCheckListBox: TCheckListBox;
ExecAfterParsersLabel: TLabel;
ExecBeforeBrowseButton: TButton;
chkCompilerBuild: TCheckBox;
chkCompilerCompile: TCheckBox;
chkCompilerRun: TCheckBox;
chkCreateMakefile: TCheckBox;
chkExecAfterBuild: TCheckBox;
chkExecAfterCompile: TCheckBox;
chkExecAfterRun: TCheckBox;
chkExecBeforeBuild: TCheckBox;
chkExecBeforeCompile: TCheckBox;
chkExecBeforeRun: TCheckBox;
cobCompiler: TComboBox;
ExecAfterBrowseButton: TButton;
ExecBeforeParsersCheckListBox: TCheckListBox;
ExecuteAfterCommandComboBox: TComboBox;
ExecuteAfterCommandLabel: TLabel;
ExecuteAfterGroupBox: TGroupBox;
ExecuteBeforeCommandComboBox: TComboBox;
ExecuteBeforeCommandLabel: TLabel;
ExecuteBeforeGroupBox: TGroupBox;
ExecBeforeParsersLabel: TLabel;
grpCompiler: TGroupBox;
lblCompiler: TLabel;
lblRunIfCompiler: TLabel;
lblRunIfExecAfter: TLabel;
lblRunIfExecBefore: TLabel;
procedure CompCmdBrowseButtonClick(Sender: TObject);
private
procedure ReadSettingsParsers(ToolOpts: TCompilationToolOptions;
Cmb: TCheckListBox);
procedure WriteSettingsParsers(ToolOpts: TCompilationToolOptions;
Cmb: TCheckListBox);
public
function GetTitle: string; override;
procedure Setup({%H-}ADialog: TAbstractOptionsEditorDialog); override;
procedure ReadSettings(AOptions: TAbstractIDEOptions); override;
procedure WriteSettings(AOptions: TAbstractIDEOptions); override;
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
end;
implementation
{$R *.lfm}
{ TCompilerCompilationOptionsFrame }
procedure TCompilerCompilationOptionsFrame.CompCmdBrowseButtonClick(
Sender: TObject);
function ShowQuality(Quality: TSDFilenameQuality;
const Filename, Note: string): boolean;
begin
if Quality<>sddqCompatible then begin
if IDEMessageDialog(lisCCOWarningCaption, Format(
lisTheCompilerFileDoesNotLookCorrect, [Filename, #13, Note]),
mtWarning,[mbIgnore,mbCancel])<>mrIgnore
then
exit(false);
end;
Result:=true;
end;
var
OpenDialog: TOpenDialog;
NewFilename: string;
Quality: TSDFilenameQuality;
Note: string;
s: string;
OldFilename: string;
OldParams: string;
Combo: TComboBox;
ok: Boolean;
Kind: TPascalCompiler;
begin
OpenDialog:=TOpenDialog.Create(nil);
try
InputHistories.ApplyFileDialogSettings(OpenDialog);
OpenDialog.Options:=OpenDialog.Options+[ofFileMustExist];
OpenDialog.Filter:=dlgFilterAll+'|'+GetAllFilesMask;
OldFilename:='';
OldParams:='';
// set title
if Sender=BrowseCompilerButton then begin
Combo:=cobCompiler;
OpenDialog.Title:=Format(lisChooseCompilerExecutable,[GetDefaultCompilerFilename])
end else if (Sender=ExecAfterBrowseButton) then begin
Combo:=ExecuteAfterCommandComboBox;
OpenDialog.Title:=lisChooseExecutable;
SplitCmdLine(Combo.Text,OldFilename,OldParams);
end else if (Sender=ExecBeforeBrowseButton) then begin
Combo:=ExecuteBeforeCommandComboBox;
OpenDialog.Title:=lisChooseExecutable;
SplitCmdLine(Combo.Text,OldFilename,OldParams);
end else
exit;
if not OpenDialog.Execute then exit;
NewFilename:=TrimAndExpandFilename(OpenDialog.Filename);
// check, even if new file is old filename, so the user see the warnings again
ok:=false;
if Sender=BrowseCompilerButton then begin
// check compiler filename
case GetPascalCompilerFromExeName(NewFilename) of
pcPas2js:
if IsPas2JSExecutable(NewFilename,s) then begin
// check pas2js
Quality:=CheckPas2jsQuality(NewFilename,Note,
CodeToolBoss.CompilerDefinesCache.TestFilename);
if not ShowQuality(Quality,NewFilename,Note) then exit;
ok:=true;
end;
else
if IsCompilerExecutable(NewFilename,s,Kind) then begin
// check compiler
if Kind=pcPas2js then
Quality:=CheckPas2jsQuality(NewFilename,Note,
CodeToolBoss.CompilerDefinesCache.TestFilename)
else
Quality:=CheckFPCExeQuality(NewFilename,Note,
CodeToolBoss.CompilerDefinesCache.TestFilename);
if not ShowQuality(Quality,NewFilename,Note) then exit;
ok:=true;
end;
end;
// maybe a script
if (not ok)
and not CheckExecutable(OldFilename,NewFilename,lisInvalidExecutable,lisInvalidExecutableMessageText)
then
exit;
ok:=true;
end else if (Sender=ExecBeforeBrowseButton)
or (Sender=ExecAfterBrowseButton) then begin
// check executable
if not CheckExecutable(OldFilename,NewFilename,lisInvalidExecutable,lisInvalidExecutableMessageText)
then
exit;
ok:=true;
end;
SetComboBoxText(Combo,NewFilename,cstFilename);
finally
InputHistories.StoreFileDialogSettings(OpenDialog);
OpenDialog.Free;
end;
end;
procedure TCompilerCompilationOptionsFrame.ReadSettingsParsers(
ToolOpts: TCompilationToolOptions; Cmb: TCheckListBox);
var
l: TFPList;
i, j: Integer;
ParserClass: TExtToolParserClass;
s: String;
begin
l:=TFPList.Create;
try
// add registered parsers
for i:=0 to ExternalToolList.ParserCount-1 do
begin
ParserClass:=ExternalToolList.Parsers[i];
j:=0;
while (j<l.Count)
and (TExtToolParserClass(l[j]).Priority>=ParserClass.Priority) do
inc(j);
l.Insert(j,ParserClass);
end;
Cmb.Clear;
for i:=0 to l.Count-1 do
begin
ParserClass:=TExtToolParserClass(l[i]);
s:=ParserClass.GetLocalizedParserName;
j:=Cmb.Items.Add(s);
Cmb.Checked[j] := ToolOpts.HasParser[ParserClass.GetParserName];
end;
// add not registered parsers
// Note: this happens when opening a project, which needs a designtime-package
for i:=0 to ToolOpts.Parsers.Count-1 do
begin
s:=ToolOpts.Parsers[i];
if ExternalToolList.FindParserWithName(s)=nil then
begin
j:=Cmb.Items.Add(s);
Cmb.Checked[j]:=True;
end;
end;
finally
l.Free;
end;
end;
procedure TCompilerCompilationOptionsFrame.WriteSettingsParsers(
ToolOpts: TCompilationToolOptions; Cmb: TCheckListBox);
var
sl: TStringList;
i, j: Integer;
begin
sl:=TStringList.Create;
try
for i:=0 to Cmb.Items.Count-1 do
if Cmb.Checked[i] then begin
j:=ExternalToolList.ParserCount-1;
while (j>=0)
and (Cmb.Items[i]<>ExternalToolList.Parsers[i].GetLocalizedParserName) do
dec(j);
if j>=0 then
sl.Add(ExternalToolList.Parsers[i].GetParserName)
else
sl.Add(Cmb.Items[i]); // not registered parser
end;
ToolOpts.Parsers:=sl;
finally
sl.Free;
end;
end;
function TCompilerCompilationOptionsFrame.GetTitle: string;
begin
Result := dlgCOCompilerCommands;
end;
procedure TCompilerCompilationOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
chkCreateMakefile.Caption := dlgCOCreateMakefile;
chkCreateMakefile.Hint := lisEnabledOnlyForPackages;
ExecuteBeforeGroupBox.Caption := lisCOExecuteBefore;
lblRunIfExecBefore.Caption := lisCOCallOn;
chkExecBeforeBuild.Caption := lisBuildStage;
chkExecBeforeCompile.Caption := lisCompileStage;
chkExecBeforeRun.Caption := lisRunStage;
ExecuteBeforeCommandComboBox.Text := '';
ExecuteBeforeCommandLabel.Caption := lisCOCommand;
ExecBeforeParsersLabel.Caption:=lisParsers;
grpCompiler.Caption := lisCompiler;
lblRunIfCompiler.Caption := lisCOCallOn;
chkCompilerBuild.Caption := lisBuildStage;
chkCompilerBuild.Checked := True;
chkCompilerCompile.Caption := lisCompileStage;
chkCompilerCompile.Checked := True;
chkCompilerRun.Caption := lisRunStage;
chkCompilerRun.Checked := True;
lblCompiler.Caption := lisCOCommand;
cobCompiler.Text := '';
BrowseCompilerButton.Hint:=lisBrowseAndSelectACompiler+ExeExt+')';
ExecuteAfterGroupBox.Caption := lisCOExecuteAfter;
chkExecAfterBuild.Caption := lisBuildStage;
chkExecAfterCompile.Caption := lisCompileStage;
chkExecAfterRun.Caption := lisRunStage;
ExecuteAfterCommandComboBox.Text := '';
ExecuteAfterCommandLabel.Caption := lisCOCommand;
ExecAfterParsersLabel.Caption:=lisParsers;
lblRunIfExecAfter.Caption := lisCOCallOn;
end;
procedure TCompilerCompilationOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
var
Options: TBaseCompilerOptions absolute AOptions;
Syy: TCompileReasons;
IsProj: Boolean;
begin
IsProj := Options is TProjectCompilerOptions;
chkCreateMakefile.Checked := Options.CreateMakefileOnBuild;
// execute before
with ExecuteBeforeCommandComboBox do begin
Items.BeginUpdate;
Items.Assign(InputHistories.HistoryLists.GetList('BuildExecBefore',true,rltFile));
SetComboBoxText(ExecuteBeforeCommandComboBox,Options.ExecuteBefore.Command,cstCaseSensitive);
Items.EndUpdate;
end;
Syy := Options.ExecuteBefore.CompileReasons;
chkExecBeforeCompile.Checked := crCompile in Syy;
chkExecBeforeBuild.Checked := crBuild in Syy;
chkExecBeforeRun.Checked := crRun in Syy;
lblRunIfExecBefore.Visible := IsProj;
chkExecBeforeCompile.Visible := IsProj;
chkExecBeforeBuild.Visible := IsProj;
chkExecBeforeRun.Visible := IsProj;
ReadSettingsParsers(Options.ExecuteBefore,ExecBeforeParsersCheckListBox);
// compiler path
with cobCompiler do begin
Items.BeginUpdate;
Items.Assign(EnvironmentOptions.CompilerFileHistory);
AddFilenameToList(Items,DefaultCompilerPath);
SetComboBoxText(cobCompiler,Options.CompilerPath,cstFilename);
Items.EndUpdate;
end;
if Options is TProjectCompilerOptions then
with TProjectCompilerOptions(Options) do
begin
chkCreateMakefile.Enabled:=false;
lblRunIfCompiler.Visible := True;
chkCompilerCompile.AnchorToNeighbour(akLeft, 30, lblRunIfCompiler);
chkCompilerCompile.Checked := crCompile in CompileReasons;
chkCompilerBuild.Checked := crBuild in CompileReasons;
chkCompilerRun.Checked := crRun in CompileReasons;
chkCompilerCompile.Caption := lisCompileStage;
chkCompilerCompile.Visible := True;
chkCompilerBuild.Visible := True;
chkCompilerRun.Visible := True;
cobCompiler.AnchorToNeighbour(akTop, 0, chkCompilerCompile);
end
else if Options is TPkgCompilerOptions then
begin
chkCreateMakefile.Enabled:=true;
lblRunIfCompiler.Visible := False;
chkCompilerCompile.AnchorParallel(akTop, 6, chkCompilerCompile.Parent);
chkCompilerCompile.AnchorParallel(akLeft, 6, chkCompilerCompile.Parent);
chkCompilerCompile.Visible := True;
chkCompilerCompile.Caption := lisCOSkipCallingCompiler;
chkCompilerCompile.Checked := TPkgCompilerOptions(Options).SkipCompiler;
chkCompilerBuild.Visible := False;
chkCompilerRun.Visible := False;
cobCompiler.AnchorToNeighbour(akTop, 0, chkCompilerCompile);
end
else
begin
lblRunIfCompiler.Visible := False;
chkCompilerCompile.Visible := False;
chkCompilerBuild.Visible := False;
chkCompilerRun.Visible := False;
cobCompiler.AnchorParallel(akTop, 0, lblCompiler.Parent);
end;
// execute after
with ExecuteAfterCommandComboBox do begin
Items.BeginUpdate;
Items.Assign(InputHistories.HistoryLists.GetList('BuildExecAfter',true,rltFile));
SetComboBoxText(ExecuteAfterCommandComboBox,Options.ExecuteAfter.Command,cstCaseSensitive);
Items.EndUpdate;
end;
Syy := Options.ExecuteAfter.CompileReasons;
chkExecAfterCompile.Checked := crCompile in Syy;
chkExecAfterBuild.Checked := crBuild in Syy;
chkExecAfterRun.Checked := crRun in Syy;
lblRunIfExecAfter.Visible := IsProj;
chkExecAfterCompile.Visible := IsProj;
chkExecAfterBuild.Visible := IsProj;
chkExecAfterRun.Visible := IsProj;
ReadSettingsParsers(Options.ExecuteAfter,ExecAfterParsersCheckListBox);
end;
procedure TCompilerCompilationOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
function MakeCompileReasons(const ACompile, ABuild, ARun: TCheckBox): TCompileReasons;
begin
Result := [];
if ACompile.Checked then Include(Result, crCompile);
if ABuild.Checked then Include(Result, crBuild);
if ARun.Checked then Include(Result, crRun);
end;
var
Options: TBaseCompilerOptions absolute AOptions;
begin
Options.CreateMakefileOnBuild := chkCreateMakefile.Checked;
// execute before
Options.ExecuteBefore.Command := ExecuteBeforeCommandComboBox.Text;
with InputHistories.HistoryLists.GetList('BuildExecBefore',true,rltCaseSensitive) do begin
Assign(ExecuteBeforeCommandComboBox.Items);
Push(Options.ExecuteBefore.Command);
end;
WriteSettingsParsers(Options.ExecuteBefore,ExecBeforeParsersCheckListBox);
if Options.ExecuteBefore is TProjectCompilationToolOptions then
Options.ExecuteBefore.CompileReasons :=
MakeCompileReasons(chkExecBeforeCompile, chkExecBeforeBuild, chkExecBeforeRun);
// compiler path
Options.CompilerPath := cobCompiler.Text;
EnvironmentOptions.CompilerFileHistory.Assign(cobCompiler.Items);
AddToRecentList(Options.CompilerPath,EnvironmentOptions.CompilerFileHistory,30,rltFile);
if Options is TProjectCompilerOptions then
begin
TProjectCompilerOptions(Options).CompileReasons :=
MakeCompileReasons(chkCompilerCompile, chkCompilerBuild, chkCompilerRun);
end
else if Options is TPkgCompilerOptions then
TPkgCompilerOptions(Options).SkipCompiler := chkCompilerCompile.Checked;
// execute after
Options.ExecuteAfter.Command := ExecuteAfterCommandComboBox.Text;
with InputHistories.HistoryLists.GetList('BuildExecAfter',true,rltCaseSensitive) do begin
Assign(ExecuteAfterCommandComboBox.Items);
Push(Options.ExecuteAfter.Command);
end;
WriteSettingsParsers(Options.ExecuteAfter,ExecAfterParsersCheckListBox);
if Options.ExecuteAfter is TProjectCompilationToolOptions then
Options.ExecuteAfter.CompileReasons :=
MakeCompileReasons(chkExecAfterCompile, chkExecAfterBuild, chkExecAfterRun);
end;
class function TCompilerCompilationOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
Result := TBaseCompilerOptions;
end;
initialization
RegisterIDEOptionsEditor(GroupCompiler, TCompilerCompilationOptionsFrame,
CompilerOptionsCompilation);
RegisterIDEOptionsEditor(GroupPkgCompiler, TCompilerCompilationOptionsFrame,
CompilerOptionsCompilation);
end.
|