Opkman: Quick statistics about repository/lazarus packages.

git-svn-id: trunk@55631 -
This commit is contained in:
balazs 2017-08-02 19:04:05 +00:00
parent 635d630025
commit f8eace024e
3 changed files with 20 additions and 3 deletions

View File

@ -63,7 +63,7 @@ resourcestring
rsLazarusPackageManager = 'Online Package Manager';
//main form
rsPackagesFound = '(%s packages found)';
rsPackagesFound = '(%s repository packages found, containing %s lpk files, total size %s)';
rsMainFrm_VSTHeaderColumn_PackageName = 'Packages';
rsMainFrm_VSTHeaderColumn_LazarusPackage = 'Lazarus Package (.lpk)';
rsMainFrm_VSTHeaderColumn_Repository = 'Repository';

View File

@ -365,8 +365,7 @@ begin
SetupMessage;
mJSON.Text := AJSON;
cbAll.Checked := False;
Caption := rsLazarusPackageManager + ' ' + Format(rsPackagesFound, [
IntToStr(SerializablePackages.Count)]);
Caption := rsLazarusPackageManager + ' ' + SerializablePackages.QuickStatistics;
if Assigned(Updates) then
Updates.StartUpdate;
end;

View File

@ -289,6 +289,7 @@ type
function GetPackageInstallState(const AMetaPackage: TMetaPackage): Integer; overload;
procedure DeleteDownloadedZipFiles;
procedure Sort(const ASortType: TSortType; const ASortOrder: TSortOrder);
function QuickStatistics: String;
public
property Count: Integer read GetCount;
property DownloadCount: Integer read GetDownloadCount;
@ -1437,6 +1438,23 @@ begin
end;
end;
function TSerializablePackages.QuickStatistics: String;
var
I, J: Integer;
LazPackCnt: Integer;
TotSize: Int64;
begin
LazPackCnt := 0;
TotSize := 0;
for I := 0 to Count - 1 do
begin
TotSize := TotSize + Items[I].RepositoryFileSize;
for J := 0 to Items[I].FLazarusPackages.Count - 1 do
Inc(LazPackCnt);
end;
Result := Format(rsPackagesFound, [IntToStr(SerializablePackages.Count), IntToStr(LazPackCnt), FormatSize(TotSize)]);
end;
function TSerializablePackages.IsDependencyOk(PackageDependency: TPackageDependency;
DependencyPackage: TLazarusPackage): Boolean;
var