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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
|
{
/***************************************************************************
pkgmanager.pas
--------------
***************************************************************************/
***************************************************************************
* *
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
Author: Mattias Gaertner
Abstract:
Dialog showing the package links of the IDE package systems.
}
unit PkgLinksDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, StdCtrls,
Buttons, Grids, ExtCtrls, ComCtrls, Menus, AvgLvlTree, LazUTF8,
FileProcs, LazFileUtils, LazFileCache, PackageIntf,
LazarusIDEStrConsts, PackageLinks, LPKCache;
type
{ TPkgLinkInfo }
TPkgLinkInfo = class(TPackageLink)
private
FEffectiveFilename: string;
FIsValid: boolean;
FLPKInfo: TLPKInfo;
FVisible: boolean;
public
constructor Create; override;
destructor Destroy; override;
procedure Assign(Source: TPersistent); override;
property Origin;
property LPKInfo: TLPKInfo read FLPKInfo;
property Visible: boolean read FVisible write FVisible;
property IsValid: boolean read FIsValid write FIsValid;
property EffectiveFilename: string read FEffectiveFilename write FEffectiveFilename;
end;
{ TPackageLinksDialog }
TPackageLinksDialog = class(TForm)
BtnPanel: TPanel;
CloseBitBtn: TBitBtn;
DeleteSelectedButton: TButton;
FilterEdit: TEdit;
LPKFileValidCheckBox: TCheckBox;
LPKFileInvalidCheckBox: TCheckBox;
LPKParsingTimer: TTimer;
CopyCellToClipboardMenuItem: TMenuItem;
GridPopupMenu: TPopupMenu;
ProgressBar1: TProgressBar;
ShowUserLinksCheckBox: TCheckBox;
ShowGlobalLinksCheckBox: TCheckBox;
ScopeGroupBox: TGroupBox;
PkgStringGrid: TStringGrid;
UpdateGlobalLinksButton: TButton;
procedure CopyCellToClipboardMenuItemClick(Sender: TObject);
procedure DeleteSelectedButtonClick(Sender: TObject);
procedure FilterEditChange(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure LPKFileValidCheckBoxChange(Sender: TObject);
procedure LPKFileInvalidCheckBoxChange(Sender: TObject);
procedure LPKParsingTimerTimer(Sender: TObject);
procedure OnAllLPKParsed(Sender: TObject);
procedure ShowGlobalLinksCheckBoxChange(Sender: TObject);
procedure ShowUserLinksCheckBoxChange(Sender: TObject);
procedure UpdateGlobalLinksButtonClick(Sender: TObject);
private
FCountGlobalLinks: integer;
FCountLPKValid: integer;
FCountLPKInvalid: integer;
FCountUserLinks: Integer;
FLinks: TAvglVLTree;// tree of TPkgLinkInfo sorted for name and version
FCollectingOrigin: TPkgLinkOrigin;
procedure RescanGlobalLinks;
procedure UpdateFacets;
procedure UpdatePackageList;
procedure ClearLinks;
procedure IteratePackages(APackage: TLazPackageID);
function GetLinkAtRow(Row: integer): TPkgLinkInfo;
function GetLinkWithEffectiveFilename(Filename: string;
Origins: TPkgLinkOrigins): TPkgLinkInfo;
public
property CountLPKValid: integer read FCountLPKValid;
property CountLPKInvalid: integer read FCountLPKInvalid;
property CountUserLinks: Integer read FCountUserLinks;
property CountGlobalLinks: integer read FCountGlobalLinks;
end;
function ShowPackageLinks: TModalResult;
implementation
{$R *.lfm}
function ShowPackageLinks: TModalResult;
var
PackageLinksDialog: TPackageLinksDialog;
begin
PackageLinksDialog:=TPackageLinksDialog.Create(nil);
try
Result:=PackageLinksDialog.ShowModal;
finally
PackageLinksDialog.Free;
end;
end;
{ TPackageLinksDialog }
procedure TPackageLinksDialog.FormCreate(Sender: TObject);
begin
Caption:=lisPLDPackageLinks;
ScopeGroupBox.Caption:=dlgSearchScope;
CopyCellToClipboardMenuItem.Caption:=srkmecCopy;
DeleteSelectedButton.Caption:=lrsPLDDeleteSelected;
UpdateGlobalLinksButton.Caption:=lrsRescanLplFiles;
CloseBitBtn.Caption:=lisClose;
FilterEdit.TextHint:=lisCEFilter;
ProgressBar1.Style:=pbstMarquee;
ProgressBar1.Visible:=true;
LPKInfoCache.AddOnQueueEmpty(@OnAllLPKParsed);
LPKInfoCache.StartLPKReaderWithAllAvailable;
UpdatePackageList;
end;
procedure TPackageLinksDialog.FilterEditChange(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.CopyCellToClipboardMenuItemClick(Sender: TObject);
begin
PkgStringGrid.CopyToClipboard(true);
end;
procedure TPackageLinksDialog.DeleteSelectedButtonClick(Sender: TObject);
var
i: Integer;
Link: TPkgLinkInfo;
ErrMsg: String;
begin
ErrMsg:='';
for i:=1 to PkgStringGrid.RowCount-1 do begin
if PkgStringGrid.Cells[0,i]=PkgStringGrid.Columns[0].ValueChecked then begin
Link:=GetLinkAtRow(i);
if Link=nil then exit;
if Link.Origin=ploGlobal then begin
// delete lpl file
if FileExistsCached(Link.LPLFilename) then begin
if not DeleteFileUTF8(Link.LPLFilename) then
ErrMsg+=Format(lrsPLDUnableToDeleteFile, [Link.LPLFilename])+
LineEnding;
end;
end else begin
// delete user link
PkgLinks.RemoveUserLinks(Link);
end;
end;
end;
RescanGlobalLinks;
UpdatePackageList;
PkgLinks.SaveUserLinks;
end;
procedure TPackageLinksDialog.FormDestroy(Sender: TObject);
begin
LPKInfoCache.EndLPKReader;
LPKInfoCache.RemoveOnQueueEmpty(@OnAllLPKParsed);
ClearLinks;
end;
procedure TPackageLinksDialog.LPKFileValidCheckBoxChange(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.LPKFileInvalidCheckBoxChange(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.LPKParsingTimerTimer(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.OnAllLPKParsed(Sender: TObject);
begin
LPKParsingTimer.Enabled:=false;
ProgressBar1.Visible:=false;
ProgressBar1.Style:=pbstNormal;
UpdatePackageList;
end;
procedure TPackageLinksDialog.ShowGlobalLinksCheckBoxChange(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.ShowUserLinksCheckBoxChange(Sender: TObject);
begin
UpdatePackageList;
end;
procedure TPackageLinksDialog.UpdateGlobalLinksButtonClick(Sender: TObject);
begin
RescanGlobalLinks;
UpdatePackageList;
end;
procedure TPackageLinksDialog.UpdatePackageList;
var
FilterCase: TCaption;
FilterLo: String;
function HasFilterText(Link: TPkgLinkInfo): boolean;
begin
Result:=true;
if Pos(FilterLo,UTF8LowerCase(Link.Name))>0 then
exit;
if Pos(FilterLo,UTF8LowerCase(Link.Version.AsString))>0 then
exit;
if FilenamesCaseSensitive then {%H-}begin
if Pos(FilterCase,Link.EffectiveFilename)>0 then
exit;
end else {%H-}begin
if Pos(FilterLo,UTF8LowerCase(Link.EffectiveFilename))>0 then
exit;
end;
Result:=false;
end;
var
Node: TAvgLvlTreeNode;
Link: TPkgLinkInfo;
i: Integer;
OriginStr: String;
Info: TLPKInfo;
NextNode: TAvgLvlTreeNode;
s: String;
begin
// collect links
ClearLinks;
if FLinks=nil then
FLinks:=TAvgLvlTree.Create(@ComparePackageLinks);
if ShowGlobalLinksCheckBox.Checked then begin
FCollectingOrigin:=ploGlobal;
PkgLinks.IteratePackages(false,@IteratePackages,[ploGlobal]);
end;
if ShowUserLinksCheckBox.Checked then begin
FCollectingOrigin:=ploUser;
PkgLinks.IteratePackages(false,@IteratePackages,[ploUser]);
end;
// query additional information from lpk files
LPKInfoCache.EnterCritSection;
try
FCountLPKValid:=0;
FCountLPKInvalid:=0;
FCountGlobalLinks:=0;
FCountUserLinks:=0;
Node:=FLinks.FindLowest;
FilterCase:=FilterEdit.Text;
FilterLo:=UTF8LowerCase(FilterCase);
while Node<>nil do begin
Link:=TPkgLinkInfo(Node.Data);
Link.Visible:=true;
NextNode:=Node.Successor;
Link.EffectiveFilename:=Link.GetEffectiveFilename;
Info:=LPKInfoCache.FindPkgInfoWithFilename(Link.EffectiveFilename);
// filter for Validity
if Link.Visible then begin
Link.IsValid:=true;
if Info<>nil then begin
Link.LPKInfo.Assign(Info);
if Link.LPKInfo.LPKParsed=lpkiParsedError then
Link.IsValid:=false;
end else
Link.IsValid:=false;
if Link.IsValid then begin
if not LPKFileValidCheckBox.Checked then Link.Visible:=false;
end else begin
if not LPKFileInvalidCheckBox.Checked then Link.Visible:=false;
end;
end;
if Link.Visible and (FilterCase<>'') then begin
// filter for text
Link.Visible:=HasFilterText(Link);
end;
if Link.Visible then begin
// this link is shown => increase facet counters
if Link.IsValid then
inc(FCountLPKValid)
else
inc(FCountLPKInvalid);
if Link.Origin=ploGlobal then
inc(FCountGlobalLinks)
else
inc(FCountUserLinks);
end else begin
// delete link
Link.Free;
FLinks.Delete(Node);
end;
Node:=NextNode;
end;
finally
LPKInfoCache.LeaveCritSection;
end;
// fill/update grid
PkgStringGrid.RowCount:=FLinks.Count+1;
PkgStringGrid.Columns[0].Title.Caption:=lisMenuSelect;
PkgStringGrid.Columns[1].Title.Caption:=lisName;
PkgStringGrid.Columns[2].Title.Caption:=lisVersion;
PkgStringGrid.Columns[3].Title.Caption:=lisGroup;
PkgStringGrid.Columns[4].Title.Caption:=lisOIPState;
PkgStringGrid.Columns[5].Title.Caption:=lisA2PFilename2;
PkgStringGrid.Columns[6].Title.Caption:=lisLastOpened;
i:=1;
Node:=FLinks.FindLowest;
while Node<>nil do begin
Link:=TPkgLinkInfo(Node.Data);
Node:=Node.Successor;
PkgStringGrid.Cells[0,i]:=PkgStringGrid.Columns[0].ValueUnchecked;
PkgStringGrid.Cells[1,i]:=Link.Name;
PkgStringGrid.Cells[2,i]:=Link.Version.AsString;
if Link.Origin=ploGlobal then
OriginStr:=lisPLDGlobal
else
OriginStr:=lisPLDUser;
PkgStringGrid.Cells[3,i]:=OriginStr;
if Link.IsValid then
s:=lrsPLDValid
else if (Info<>nil) and (Info.LPKError<>'') then
s:=Info.LPKError
else
s:=lrsPLDInvalid;
PkgStringGrid.Cells[4,i]:=s;
PkgStringGrid.Cells[5,i]:=Link.EffectiveFilename;
if Link.LastUsed=0 then
PkgStringGrid.Cells[6,i]:= lisNever
else
PkgStringGrid.Cells[6,i]:= DateTimeToStr(Link.LastUsed);
inc(i);
end;
PkgStringGrid.AutoAdjustColumns;
if PkgStringGrid.SortColumn>=0 then
PkgStringGrid.SortColRow(true,PkgStringGrid.SortColumn);
UpdateFacets;
end;
procedure TPackageLinksDialog.UpdateFacets;
begin
ShowGlobalLinksCheckBox.Caption:=lisPLDShowGlobalLinksIn
+PkgLinks.GetGlobalLinkDirectory+'*.lpl'
+' ('+IntToStr(CountGlobalLinks)+')';
ShowUserLinksCheckBox.Caption:=lisPLDShowUserLinksIn
+PkgLinks.GetUserLinkFile
+' ('+IntToStr(CountUserLinks)+')';
LPKFileValidCheckBox.Caption:=Format(lrsPLDLpkFileValid, [IntToStr(
CountLPKValid)]);
LPKFileInvalidCheckBox.Caption:=Format(lrsPLDLpkFileInvalid, [IntToStr(
CountLPKInvalid)]);
end;
procedure TPackageLinksDialog.RescanGlobalLinks;
begin
PkgLinks.UpdateGlobalLinks;
end;
procedure TPackageLinksDialog.ClearLinks;
begin
if FLinks<>nil then begin
FLinks.FreeAndClear;
FreeAndNil(FLinks);
end;
end;
procedure TPackageLinksDialog.IteratePackages(APackage: TLazPackageID);
var
NewLink: TPkgLinkInfo;
begin
NewLink:=TPkgLinkInfo.Create;
NewLink.Assign(APackage);
NewLink.Origin:=FCollectingOrigin;
FLinks.Add(NewLink);
end;
function TPackageLinksDialog.GetLinkAtRow(Row: integer): TPkgLinkInfo;
var
Origin: TPkgLinkOrigin;
EffectiveFilename: String;
begin
Result:=nil;
if (Row<1) or (Row>=PkgStringGrid.RowCount) then exit;
EffectiveFilename:=PkgStringGrid.Cells[5,Row];
if PkgStringGrid.Cells[3,Row]=lisPLDGlobal then
Origin:=ploGlobal
else
Origin:=ploUser;
Result:=GetLinkWithEffectiveFilename(EffectiveFilename,[Origin]);
end;
function TPackageLinksDialog.GetLinkWithEffectiveFilename(Filename: string;
Origins: TPkgLinkOrigins): TPkgLinkInfo;
var
Node: TAvgLvlTreeNode;
begin
Node:=FLinks.FindLowest;
while Node<>nil do begin
Result:=TPkgLinkInfo(Node.Data);
if (Result.Origin in Origins) and (Result.EffectiveFilename=Filename) then
exit;
Node:=Node.Successor;
end;
Result:=nil;
end;
{ TPkgLinkInfo }
constructor TPkgLinkInfo.Create;
begin
inherited Create;
FLPKInfo:=TLPKInfo.Create(TLazPackageID.Create,false);
end;
destructor TPkgLinkInfo.Destroy;
begin
FreeAndNil(FLPKInfo);
inherited Destroy;
end;
procedure TPkgLinkInfo.Assign(Source: TPersistent);
var
Link: TPackageLink;
begin
if Source is TLazPackageID then begin
AssignID(TLazPackageID(Source));
LPKInfo.Assign(Source);
if Source is TPackageLink then begin
Link:=TPackageLink(Source);
Origin:=Link.Origin;
LPKFilename:=Link.LPKFilename;
LPLFilename:=Link.LPLFilename;
AutoCheckExists:=Link.AutoCheckExists;
LPKFileDateValid:=Link.LPKFileDateValid;
LPKFileDate:=Link.LPKFileDate;
LastUsed:=Link.LastUsed;
end;
end else
inherited Assign(Source);
end;
end.
|