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 441 442 443 444 445 446 447 448 449 450 451
|
{
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
Author: Mattias Gaertner
Abstract:
Dialog to show information about the message
"recompiling unit1, checksum changed for unit2"
ToDo:
- show the location(s) of the first unit
- show the location(s) of the second unit
- actions:
- open a source file
- open a package
- delete a ppu+o file
- recompile a package clean (remove the .compiled file)
}
unit InspectChksumChangedDlg;
{$mode objfpc}{$H+}
interface
uses
// RTL + FCL + LCL
Classes, SysUtils, contnrs,
LCLProc, Forms, Controls, StdCtrls, ExtCtrls, ComCtrls, ButtonPanel,
// CodeTools
CodeToolManager, FileProcs, DirectoryCacher, DefineTemplates,
// LazUtils
LazFileUtils, LazFileCache,
// IDEIntf
TextTools, IDEMsgIntf, PackageIntf, ProjectIntf, IDEExternToolIntf,
// IDE
LazarusIDEStrConsts;
const
ICC_FPC = '#FPC unit search path';
ICC_Project = '#Project';
type
TInspectChksumChgDialog = class;
{ TICCAction }
TICCAction = class
public
Dlg: TInspectChksumChgDialog;
Caption: string;
constructor Create(aDlg: TInspectChksumChgDialog; aCaption: string);
end;
{ TICCFile }
TICCFile = class(TComponent)
public
Filename: string;
Age: integer;
OwnerNames: TStringList;
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
end;
{ TICCFiles }
TICCFiles = class(TComponentList)
private
function GetFiles(Index: integer): TICCFile;
procedure SetFiles(Index: integer; const AValue: TICCFile);
public
property Files[Index: integer]: TICCFile read GetFiles write SetFiles; default;
end;
{ TInspectChksumChgDialog }
TInspectChksumChgDialog = class(TForm)
ButtonPanel1: TButtonPanel;
InfoGroupBox: TGroupBox;
ProgressBar1: TProgressBar;
ActionsRadioGroup: TRadioGroup;
Splitter1: TSplitter;
InfoTreeView: TTreeView;
procedure CancelClick(Sender: TObject);
procedure OkClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
private
FMsg: string;
FUnit1: string;
FUnit1Files: TICCFiles;
FUnit2: string;
FUnit2Files: TICCFiles;
procedure FindUnitOwnerNames(aFile: TICCFile);
procedure SearchDirectory(anUnitName: string; Dir: string;
IsFPCPath: boolean; Files: TICCFiles);
procedure SearchInFPCFiles(anUnitName: string; Files: TICCFiles);
procedure SearchInSearchPath(anUnitName, SearchPath: string; Files: TICCFiles);
function SearchUnit(anUnitName, SearchPath: string): TICCFiles;
procedure AddNodesForUnit(anUnitName: string; Files: TICCFiles);
public
procedure InitWithMsg(const aMsg, aUnitName1, aUnitName2: string);
property Msg: string read FMsg;
property Unit1: string read FUnit1;
property Unit2: string read FUnit2;
property Unit1Files: TICCFiles read FUnit1Files;
property Unit2Files: TICCFiles read FUnit2Files;
end;
type
{ TQuickFixRecompilingChecksumChanged }
TQuickFixRecompilingChecksumChanged = class(TMsgQuickFix)
public
function IsApplicable(Msg: TMessageLine; out Unitname1, Unitname2: string): boolean;
procedure CreateMenuItems(Fixes: TMsgQuickFixes); override;
procedure QuickFix({%H-}Fixes: TMsgQuickFixes; Msg: TMessageLine); override;
end;
procedure InitInspectChecksumChangedQuickFixItems;
implementation
procedure InitInspectChecksumChangedQuickFixItems;
begin
RegisterIDEMsgQuickFix(TQuickFixRecompilingChecksumChanged.Create);
end;
{ TICCFile }
constructor TICCFile.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
OwnerNames:=TStringList.Create;
end;
destructor TICCFile.Destroy;
begin
FreeAndNil(OwnerNames);
inherited Destroy;
end;
{ TICCFiles }
function TICCFiles.GetFiles(Index: integer): TICCFile;
begin
Result:=TICCFile(Items[Index]);
end;
procedure TICCFiles.SetFiles(Index: integer; const AValue: TICCFile);
begin
Items[Index]:=AValue;
end;
{ TICCAction }
constructor TICCAction.Create(aDlg: TInspectChksumChgDialog; aCaption: string);
begin
Dlg:=aDlg;
Caption:=aCaption;
end;
{$R *.lfm}
{ TInspectChksumChgDialog }
procedure TInspectChksumChgDialog.FormCreate(Sender: TObject);
begin
Caption:='Inspect checksum changed message';
InfoGroupBox.Caption:='Hints:';
ActionsRadioGroup.Caption:='Actions';
ButtonPanel1.OKButton.OnClick:=@OkClick;
ButtonPanel1.CancelButton.OnClick:=@CancelClick;
ProgressBar1.Visible:=false;
end;
procedure TInspectChksumChgDialog.OkClick(Sender: TObject);
begin
ModalResult:=mrOK;
end;
procedure TInspectChksumChgDialog.CancelClick(Sender: TObject);
begin
ModalResult:=mrCancel;
end;
procedure TInspectChksumChgDialog.FormDestroy(Sender: TObject);
begin
FreeAndNil(FUnit1Files);
FreeAndNil(FUnit2Files);
end;
procedure TInspectChksumChgDialog.FindUnitOwnerNames(aFile: TICCFile);
var
Owners: TFPList;
i: Integer;
begin
Owners:=PackageEditingInterface.GetPossibleOwnersOfUnit(aFile.Filename,
[piosfIncludeSourceDirectories]);
//debugln(['TInspectChksumChgDialog.FindUnitOwnerNames ',aFile.Filename,' ',DbgSName(Owners)]);
if Owners<>nil then begin
for i:=0 to Owners.Count-1 do begin
if TObject(Owners[i]) is TIDEPackage then
aFile.OwnerNames.Add(TIDEPackage(Owners[i]).Name)
else if TObject(Owners[i]) is TLazProject then
aFile.OwnerNames.Add(ICC_Project);
end;
Owners.Free;
end;
end;
procedure TInspectChksumChgDialog.SearchDirectory(anUnitName: string;
Dir: string; IsFPCPath: boolean; Files: TICCFiles);
var
DirCache: TCTDirectoryCache;
i: Integer;
Filename: PChar;
Ext: String;
aFile: TICCFile;
j: Integer;
begin
if (Dir='') or (not FilenameIsAbsolute(Dir)) then exit;
// search in directory for all files that could be sources or ppu files of this unit
DirCache:=CodeToolBoss.DirectoryCachePool.GetCache(Dir,true,false);
if (DirCache=nil) or (DirCache.Listing=nil) then exit;
for i:=0 to DirCache.Listing.Count-1 do begin
Filename:=DirCache.Listing.GetFilename(i);
Ext:=lowercase(ExtractFileExt(Filename));
if ((Ext='.pas') or (Ext='.pp') or (Ext='.p') or (Ext='.ppu'))
and (SysUtils.CompareText(anUnitName,ExtractFileNameOnly(Filename))=0)
then begin
j:=Files.Count-1;
while (j>=0) and (CompareFilenames(Files[j].Filename,Filename)<>0) do
dec(j);
if j<0 then begin
//debugln(['TInspectChksumChgDialog.SearchUnit Unit="',anUnitName,'" Filename="',Filename,'"']);
aFile:=TICCFile.Create(nil);
aFile.Filename:=AppendPathDelim(Dir)+Filename;
aFile.Age:=FileAgeCached(aFile.Filename);
FindUnitOwnerNames(aFile);
if IsFPCPath then
aFile.OwnerNames.Add(ICC_FPC);
Files.Add(aFile);
end;
end;
end;
end;
procedure TInspectChksumChgDialog.SearchInSearchPath(anUnitName,
SearchPath: string; Files: TICCFiles);
var
CurDir: String;
p: LongInt;
l: Integer;
StartPos: Integer;
begin
// search in search path
StartPos:=1;
l:=length(SearchPath);
while StartPos<=l do begin
p:=StartPos;
while (p<=l) and (SearchPath[p]<>';') do inc(p);
CurDir:=TrimFilename(copy(SearchPath,StartPos,p-StartPos));
SearchDirectory(anUnitName,CurDir,false,Files);
StartPos:=p+1;
end;
end;
procedure TInspectChksumChgDialog.SearchInFPCFiles(
anUnitName: string; Files: TICCFiles);
var
UnitSetID: String;
UnitSet: TFPCUnitSetCache;
CfgCache: TPCTargetConfigCache;
i: Integer;
HasChanged: boolean;
CurDir: String;
begin
// search in fpc unit paths
UnitSetID:=CodeToolBoss.GetUnitSetIDForDirectory('');
if UnitSetID='' then exit;
UnitSet:=CodeToolBoss.CompilerDefinesCache.FindUnitSetWithID(UnitSetID,HasChanged,false);
if UnitSet=nil then exit;
CfgCache:=UnitSet.GetConfigCache(false);
if CfgCache=nil then exit;
if CfgCache.UnitPaths=nil then exit;
for i:=0 to CfgCache.UnitPaths.Count-1 do begin
CurDir:=TrimFilename(CfgCache.UnitPaths[i]);
SearchDirectory(anUnitName,CurDir,false,Files);
end;
end;
function TInspectChksumChgDialog.SearchUnit(anUnitName, SearchPath: string
): TICCFiles;
begin
Result:=TICCFiles.create(true);
if (anUnitName='') then exit;
SearchInSearchPath(anUnitName,SearchPath,Result);
SearchInFPCFiles(anUnitName,Result);
end;
procedure TInspectChksumChgDialog.AddNodesForUnit(anUnitName: string;
Files: TICCFiles);
var
UnitNode: TTreeNode;
i: Integer;
aFile: TICCFile;
FileNode: TTreeNode;
OwnerName: string;
j: Integer;
s: String;
APackage: TIDEPackage;
PPUCount: Integer;
SrcCount: Integer;
begin
UnitNode:=InfoTreeView.Items.Add(nil,'Unit '+anUnitName);
if Files<>nil then begin
PPUCount:=0;
SrcCount:=0;
FileNode:=nil;
for i:=0 to Files.Count-1 do begin
aFile:=Files[i];
if CompareFileExt(aFile.Filename,'.ppu',false)=0 then
inc(PPUCount)
else
inc(SrcCount);
FileNode:=InfoTreeView.Items.AddChildObject(UnitNode,aFile.Filename,aFile);
for j:=0 to aFile.OwnerNames.Count-1 do begin
OwnerName:=aFile.OwnerNames[j];
if OwnerName=ICC_FPC then begin
s:=lisInFPCUnitSearchPathProbablyInstalledByTheFPCPackag;
end else if OwnerName=ICC_Project then begin
s:=lisInASourceDirectoryOfTheProjectCheckForDuplicates;
end else begin
s:=Format(lisInASourceDirectoryOfThePackage, [OwnerName]);
APackage:=PackageEditingInterface.FindPackageWithName(OwnerName);
if APackage<>nil then begin
if APackage.IsVirtual then begin
s:=Format(lisCheckTheTargetOSCPULCLWidgetTypeMaybeYouHaveToReco, [s]);
end else begin
s:=Format(lisMaybeYouHaveToRecompileThePackage, [s]);
end;
end;
end;
if s<>'' then
InfoTreeView.Items.AddChild(FileNode,s);
end;
end;
if PPUCount>1 then begin
// ToDo: Fix uninitialized FileNode. It is initialized inside a loop, this is outside of the loop.
InfoTreeView.Items.AddChild(FileNode,
lisDuplicatePpuFilesDeleteOneOrMakeSureAllSearchPaths);
end;
if SrcCount>1 then begin
InfoTreeView.Items.AddChild(FileNode,
lisDuplicateSourcesDeleteOneOrMakeSureAllSearchPathsH);
end;
end;
UnitNode.Expand(true);
end;
procedure TInspectChksumChgDialog.InitWithMsg(const aMsg, aUnitName1,
aUnitName2: string);
var
SearchPath: String;
begin
FMsg:=aMsg;
FUnit1:=aUnitName1;
FUnit2:=aUnitName2;
FreeAndNil(FUnit1Files);
FreeAndNil(FUnit2Files);
SearchPath:=CodeToolBoss.GetCompleteSrcPathForDirectory('');
//debugln(['TInspectChksumChgDialog.InitWithMsg SearchPath=',SearchPath]);
FUnit1Files:=SearchUnit(Unit1,SearchPath);
FUnit2Files:=SearchUnit(Unit2,SearchPath);
InfoTreeView.BeginUpdate;
InfoTreeView.Items.Clear;
InfoTreeView.Items.Add(nil,'Message: '+dbgstr(Msg));
AddNodesForUnit(Unit1,Unit1Files);
AddNodesForUnit(Unit2,Unit2Files);
InfoTreeView.EndUpdate;
end;
{ TQuickFixRecompilingChecksumChanged }
function TQuickFixRecompilingChecksumChanged.IsApplicable(Msg: TMessageLine;
out Unitname1, Unitname2: string): boolean;
begin
// check: Recompiling $1, checksum changed for $2
Result:=IDEFPCParser.MsgLineIsId(Msg,10028,Unitname1,Unitname2);
end;
procedure TQuickFixRecompilingChecksumChanged.CreateMenuItems(
Fixes: TMsgQuickFixes);
var
Msg: TMessageLine;
Unitname1: string;
Unitname2: string;
i: Integer;
begin
for i:=0 to Fixes.LineCount-1 do begin
Msg:=Fixes.Lines[i];
if not IsApplicable(Msg,Unitname1,Unitname2) then continue;
Fixes.AddMenuItem(Self,Msg,'Explore message "checksum changed"');
exit;
end;
end;
procedure TQuickFixRecompilingChecksumChanged.QuickFix(Fixes: TMsgQuickFixes;
Msg: TMessageLine);
var
Unit1: String;
Unit2: String;
Dlg: TInspectChksumChgDialog;
begin
if not IsApplicable(Msg,Unit1,Unit2) then exit;
debugln(['TQuickFixRecompilingChecksumChanged.Execute Unit1=',REVar(1),', checksum changed for Unit2=',REVar(2)]);
Dlg:=TInspectChksumChgDialog.Create(nil);
try
Dlg.InitWithMsg(Msg.Msg,Unit1,Unit2);
Dlg.ShowModal;
finally
Dlg.Free;
end;
end;
end.
|