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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Author: Mattias Gaertner
Abstract:
Methods and Types to access the IDE packages.
}
unit PackageIntf;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, contnrs,
// LazUtils
LazConfigStorage, LazMethodList, LazLoggerBase, UITypes,
// IdeIntf
NewItemIntf, ProjPackIntf, PackageDependencyIntf;
const
PkgDescGroupName = 'Package';
PkgDescNameStandard = 'Standard Package';
type
TPkgFileType = (
pftUnit, // file is pascal unit
pftVirtualUnit,// file is virtual pascal unit
pftMainUnit, // file is the auto created main pascal unit
pftLFM, // lazarus form text file
pftLRS, // lazarus resource file
pftInclude, // include file
pftIssues, // file is issues xml file
pftText, // file is text (e.g. copyright or install notes)
pftBinary // file is something else
);
TPkgFileTypes = set of TPkgFileType;
const
PkgFileUnitTypes = [pftUnit,pftVirtualUnit,pftMainUnit];
PkgFileRealUnitTypes = [pftUnit,pftMainUnit];
PkgFileTypeIdents: array[TPkgFileType] of string = (
'Unit', 'Virtual Unit', 'Main Unit',
'LFM', 'LRS', 'Include', 'Issues', 'Text', 'Binary');
type
TIDEPackage = class;
{ TLazPackageFile }
TLazPackageFile = class(TIDEOwnedFile)
private
FDisableI18NForLFM: boolean;
FFileType: TPkgFileType;
FRemoved: boolean;
protected
function GetInUses: boolean; virtual; abstract;
procedure SetInUses(AValue: boolean); virtual; abstract;
function GetIDEPackage: TIDEPackage; virtual; abstract;
procedure SetRemoved(const AValue: boolean); virtual;
procedure SetDisableI18NForLFM(AValue: boolean); virtual;
procedure SetFileType(const AValue: TPkgFileType); virtual;
public
property LazPackage: TIDEPackage read GetIDEPackage;
property Removed: boolean read FRemoved write SetRemoved;
property DisableI18NForLFM: boolean read FDisableI18NForLFM write SetDisableI18NForLFM;
property FileType: TPkgFileType read FFileType write SetFileType;
property InUses: boolean read GetInUses write SetInUses; // added to uses section of package
end;
{ PkgDependency flags }
TLoadPackageResult = (
lprUndefined,
lprSuccess,
lprNotFound,
lprLoadError
);
{ TPkgDependencyID }
TPkgDependencyID = class(TPkgDependencyBase)
private
procedure SetRequiredPackage(const AValue: TIDEPackage);
protected
FLoadPackageResult: TLoadPackageResult;
FRequiredPackage: TIDEPackage;
public
constructor Create;
destructor Destroy; override;
procedure Clear; override;
public
property LoadPackageResult: TLoadPackageResult read FLoadPackageResult write FLoadPackageResult;
property RequiredIDEPackage: TIDEPackage read FRequiredPackage write SetRequiredPackage;
end;
{ TLazPackageID }
TLazPackageID = class(TIDEProjPackBase)
private
FIDAsString: string;
FIDAsWord: string;
protected
FVersion: TPkgVersion;
procedure SetName(const NewName: TComponentName); override;
procedure UpdateIDAsString;
procedure VersionChanged(Sender: TObject); virtual;
function GetDirectory: string; override;
function GetIDAsString: string;
function GetIDAsWord: string;
public
procedure AssignOptions(Source: TPersistent); virtual;
constructor Create; virtual; reintroduce;
destructor Destroy; override;
function StringToID(const s: string): boolean;
function Compare(PackageID2: TLazPackageID): integer;
function CompareMask(ExactPackageID: TLazPackageID): integer;
procedure AssignID(Source: TLazPackageID); virtual;
public
property Version: TPkgVersion read FVersion;
property IDAsString: string read GetIDAsString;
property IDAsWord: string read GetIDAsWord;
end;
TIteratePackagesEvent = procedure(APackage: TLazPackageID) of object;
TLazPackageType = (
lptRunTime, // Cannot register anything in the IDE. Can be used by designtime packages.
lptDesignTime, // Can register anything in the IDE but is not compiled into projects.
// The IDE calls the 'register' procedures of each unit.
lptRunAndDesignTime, // Can do anything.
lptRunTimeOnly // As lptRunTime but cannot be installed in the IDE, not even indirectly.
);
TLazPackageTypes = set of TLazPackageType;
const
LazPackageTypeIdents: array[TLazPackageType] of string = (
'RunTime', 'DesignTime', 'RunAndDesignTime', 'RunTimeOnly');
type
TPackageInstallType = (
pitNope,
pitStatic,
pitDynamic
);
{ TIDEPackage }
TIDEPackage = class(TLazPackageID)
protected
FAutoInstall: TPackageInstallType;
FFilename: string;
FChangeStamp: integer;
FCustomOptions: TConfigStorage;
FPackageType: TLazPackageType;
function GetDirectoryExpanded: string; virtual; abstract;
function GetFileCount: integer; virtual; abstract;
function GetPkgFiles(Index: integer): TLazPackageFile; virtual; abstract;
function GetModified: boolean; virtual; abstract;
procedure SetFilename(const AValue: string); virtual; abstract;
procedure SetModified(const AValue: boolean); virtual; abstract;
function GetRemovedCount: integer; virtual; abstract;
function GetRemovedPkgFiles(Index: integer): TLazPackageFile; virtual; abstract;
procedure SetAutoInstall(AValue: TPackageInstallType); virtual; abstract;
public
procedure AssignOptions(Source: TPersistent); override;
function IsVirtual: boolean; virtual; abstract;
function ReadOnly: boolean; virtual; abstract;
constructor Create; override;
destructor Destroy; override;
procedure ClearCustomOptions;
// used by dependencies
procedure AddUsedByDependency(Dependency: TPkgDependencyBase); virtual; abstract;
procedure RemoveUsedByDependency(Dependency: TPkgDependencyBase); virtual; abstract;
public
property AutoInstall: TPackageInstallType read FAutoInstall write SetAutoInstall;
property Filename: string read FFilename write SetFilename;//the .lpk filename
property ChangeStamp: integer read FChangeStamp;
property CustomOptions: TConfigStorage read FCustomOptions;
property PackageType: TLazPackageType read FPackageType;
property DirectoryExpanded: string read GetDirectoryExpanded;
property FileCount: integer read GetFileCount;
property Files[Index: integer]: TLazPackageFile read GetPkgFiles;
property Modified: boolean read GetModified write SetModified;
property RemovedFilesCount: integer read GetRemovedCount;
property RemovedFiles[Index: integer]: TLazPackageFile read GetRemovedPkgFiles;
end;
type
TPkgSaveFlag = (
psfSaveAs
);
TPkgSaveFlags = set of TPkgSaveFlag;
TPkgOpenFlag = (
pofAddToRecent, // add file to recent files
pofRevert, // reload file if already open
pofConvertMacros, // replace macros in filename
pofMultiOpen, // set during loading multiple files, shows 'Cancel all' button using mrAbort
pofDoNotOpenEditor// do not open packageeditor
);
TPkgOpenFlags = set of TPkgOpenFlag;
TPkgCompileFlag = (
pcfOnlyIfNeeded,
pcfCleanCompile, // append -B to the compiler options
pcfGroupCompile,
pcfDoNotCompileDependencies,
pcfDoNotCompilePackage,
pcfCompileDependenciesClean,
pcfSkipDesignTimePackages,
pcfDoNotSaveEditorFiles,
pcfCreateMakefile,
pcfCreateFpmakeFile
);
TPkgCompileFlags = set of TPkgCompileFlag;
type
TPkgInstallInIDEFlag = (
piiifQuiet,
piiifClear, // replace, clear the old list
piiifRebuildIDE,
piiifSkipChecks,
piiifRemoveConflicts
);
TPkgInstallInIDEFlags = set of TPkgInstallInIDEFlag;
TPkgIntfOwnerSearchFlag = (
piosfExcludeOwned, // file must not be marked as part of project/package
piosfIncludeSourceDirectories
);
TPkgIntfOwnerSearchFlags = set of TPkgIntfOwnerSearchFlag;
TPkgIntfHandlerType = (
pihtGraphChanged, // called after loading/saving packages, changing dependencies
pihtPackageFileLoaded { called after loading a lpk,
before the package is initialized and the dependencies are resolved }
);
TPkgIntfRequiredFlag = (
pirNotRecursive, // return the list of direct dependencies, not sorted topologically
pirSkipDesignTimeOnly,
pirCompileOrder // start with packages that do not depend on other packages
);
TPkgIntfRequiredFlags = set of TPkgIntfRequiredFlag;
TPkgIntfGatherUnitType = (
piguListed, // unit is in list of given Owner, i.e. in lpi, lpk file, this may contain platform specific units
piguUsed, // unit is used directly or indirectly by the start module and no currently open package/project is associated with it
piguAllUsed // as pigyUsed, except even units associated with another package/project are returned
);
TPkgIntfGatherUnitTypes = set of TPkgIntfGatherUnitType;
{ TPackageEditingInterface }
TPackageEditingInterface = class(TComponent)
protected
FHandlers: array[TPkgIntfHandlerType] of TMethodList;
procedure AddHandler(HandlerType: TPkgIntfHandlerType;
const AMethod: TMethod; AsLast: boolean = false);
procedure RemoveHandler(HandlerType: TPkgIntfHandlerType;
const AMethod: TMethod);
procedure DoCallNotifyHandler(HandlerType: TPkgIntfHandlerType; Sender: TObject);
public
destructor Destroy; override;
function DoOpenPackageWithName(const APackageName: string;
Flags: TPkgOpenFlags;
ShowAbort: boolean): TModalResult; virtual; abstract;
function DoOpenPackageFile(AFilename: string;
Flags: TPkgOpenFlags; ShowAbort: boolean
): TModalResult; virtual; abstract;
function DoSaveAllPackages(Flags: TPkgSaveFlags): TModalResult; virtual; abstract;
function GetOwnersOfUnit(const UnitFilename: string): TFPList; virtual; abstract;
procedure ExtendOwnerListWithUsedByOwners(OwnerList: TFPList); virtual; abstract;
function GetSourceFilesOfOwners(OwnerList: TFPList): TStrings; virtual; abstract;
function GetUnitsOfOwners(OwnerList: TFPList; Flags: TPkgIntfGatherUnitTypes): TStrings; virtual; abstract;
function GetPossibleOwnersOfUnit(const UnitFilename: string;
Flags: TPkgIntfOwnerSearchFlags): TFPList; virtual; abstract;
function GetPackageOfSourceEditor(out APackage: TIDEPackage; ASrcEdit: TObject): TLazPackageFile; virtual; abstract;
function GetPackageCount: integer; virtual; abstract;
function GetPackages(Index: integer): TIDEPackage; virtual; abstract;
function FindPackageWithName(const PkgName: string; IgnorePackage: TIDEPackage = nil): TIDEPackage; virtual; abstract;
function FindInstalledPackageWithUnit(const AnUnitName: string): TIDEPackage; virtual; abstract;
function IsPackageInstalled(const PkgName: string): TIDEPackage; virtual; abstract;
// dependencies
function IsOwnerDependingOnPkg(AnOwner: TObject; const PkgName: string;
out DependencyOwner: TObject): boolean; virtual; abstract;
procedure GetRequiredPackages(AnOwner: TObject; // a TLazProject or TIDEPackage
out PkgList: TFPList; // list of TIDEPackage
Flags: TPkgIntfRequiredFlags = []) virtual; abstract;
function AddDependencyToOwners(OwnerList: TFPList; APackage: TIDEPackage;
OnlyTestIfPossible: boolean = false): TModalResult; virtual; abstract; // mrOk or mrIgnore for already connected
function AddUnitDependenciesForComponentClasses(const UnitFilename: string;
ComponentClassnames: TStrings;
Quiet: boolean = false): TModalResult; virtual; abstract;
function RedirectPackageDependency(APackage: TIDEPackage): TIDEPackage; virtual; abstract;
// package editors
function GetPackageOfEditorItem(Sender: TObject): TIDEPackage; virtual; abstract;
// package compilation
function DoCompilePackage(APackage: TIDEPackage; Flags: TPkgCompileFlags;
ShowAbort: boolean): TModalResult; virtual; abstract;
// install
function CheckInstallPackageList(PkgIDList: TObjectList;
Flags: TPkgInstallInIDEFlags = []): boolean; virtual; abstract;
function InstallPackages(PkgIdList: TObjectList;
Flags: TPkgInstallInIDEFlags = []): TModalResult; virtual; abstract;
//uninstall
function UninstallPackage(APackage: TIDEPackage; ShowAbort: boolean): TModalResult; virtual; abstract;
// events
procedure RemoveAllHandlersOfObject(AnObject: TObject);
procedure AddHandlerOnGraphChanged(const OnGraphChanged: TNotifyEvent;
AsLast: boolean = false);
procedure RemoveHandlerOnGraphChanged(const OnGraphChanged: TNotifyEvent);
procedure AddHandlerOnPackageFileLoaded(const OnPkgLoaded: TNotifyEvent;
AsLast: boolean = false);
procedure RemoveHandlerOnPackageFileLoaded(const OnPkgLoaded: TNotifyEvent);
end;
var
PackageEditingInterface: TPackageEditingInterface; // will be set by the IDE
type
{ TPackageDescriptor }
TPackageDescriptor = class(TPersistent)
private
FName: string;
FReferenceCount: integer;
FVisibleInNewDialog: boolean;
protected
procedure SetName(const AValue: string); virtual;
public
constructor Create; virtual;
function GetLocalizedName: string; virtual;
function GetLocalizedDescription: string; virtual;
procedure Release;
procedure Reference;
// TODO: procedure InitPackage(APackage: TLazPackage); virtual;
// TODO: procedure CreateStartFiles(APackage: TLazPackage); virtual;
public
property Name: string read FName write SetName;
property VisibleInNewDialog: boolean read FVisibleInNewDialog write FVisibleInNewDialog;
end;
TPackageDescriptorClass = class of TPackageDescriptor;
{ TNewItemPackage - a new item for package descriptors }
TNewItemPackage = class(TNewIDEItemTemplate)
private
FDescriptor: TPackageDescriptor;
public
function LocalizedName: string; override;
function Description: string; override;
procedure Assign(Source: TPersistent); override;
public
property Descriptor: TPackageDescriptor read FDescriptor write FDescriptor;
end;
{ TPackageDescriptors }
TPackageDescriptors = class(TPersistent)
protected
function GetItems(Index: integer): TPackageDescriptor; virtual; abstract;
public
function Count: integer; virtual; abstract;
function GetUniqueName(const Name: string): string; virtual; abstract;
function IndexOf(const Name: string): integer; virtual; abstract;
function FindByName(const Name: string): TPackageDescriptor; virtual; abstract;
procedure RegisterDescriptor(Descriptor: TPackageDescriptor); virtual; abstract;
procedure UnregisterDescriptor(Descriptor: TPackageDescriptor); virtual; abstract;
public
property Items[Index: integer]: TPackageDescriptor read GetItems; default;
end;
TPackageGraphInterface = class
protected
FChangeStamp: Int64;
protected
procedure IncChangeStamp; virtual;
public
property ChangeStamp: Int64 read FChangeStamp;
end;
var
PackageDescriptors: TPackageDescriptors; // will be set by the IDE
PackageGraphInterface: TPackageGraphInterface; // must be set along with PackageSystem.PackageGraph
function PkgFileTypeIdentToType(const s: string): TPkgFileType;
function LazPackageTypeIdentToType(const s: string): TLazPackageType;
function PackageDescriptorStd: TPackageDescriptor;
function PkgCompileFlagsToString(Flags: TPkgCompileFlags): string;
procedure RegisterPackageDescriptor(PkgDesc: TPackageDescriptor);
implementation
function PkgFileTypeIdentToType(const s: string): TPkgFileType;
begin
for Result:=Low(TPkgFileType) to High(TPkgFileType) do
if SysUtils.CompareText(s,PkgFileTypeIdents[Result])=0 then exit;
Result:=pftUnit;
end;
function LazPackageTypeIdentToType(const s: string): TLazPackageType;
begin
for Result:=Low(TLazPackageType) to High(TLazPackageType) do
if SysUtils.CompareText(s,LazPackageTypeIdents[Result])=0 then exit;
Result:=lptRunTime;
end;
function PackageDescriptorStd: TPackageDescriptor;
begin
Result:=PackageDescriptors.FindByName(PkgDescNameStandard);
end;
function PkgCompileFlagsToString(Flags: TPkgCompileFlags): string;
var
f: TPkgCompileFlag;
s: string;
begin
Result:='';
for f:=Low(TPkgCompileFlag) to High(TPkgCompileFlag) do begin
if not (f in Flags) then continue;
WriteStr(s, f);
if Result<>'' then
Result:=Result+',';
Result:=Result+s;
end;
Result:='['+Result+']';
end;
procedure RegisterPackageDescriptor(PkgDesc: TPackageDescriptor);
var
NewItemPkg: TNewItemPackage;
begin
PackageDescriptors.RegisterDescriptor(PkgDesc);
if PkgDesc.VisibleInNewDialog then begin
NewItemPkg:=TNewItemPackage.Create(PkgDesc.Name,niifCopy,[niifCopy]);
NewItemPkg.Descriptor:=PkgDesc;
RegisterNewDialogItem(PkgDescGroupName,NewItemPkg);
end;
end;
{ TPackageGraphInterface }
procedure TPackageGraphInterface.IncChangeStamp;
begin
{$push}{$R-} // range check off
Inc(FChangeStamp);
{$pop}
end;
{ TPackageDescriptor }
procedure TPackageDescriptor.SetName(const AValue: string);
begin
if FName=AValue then exit;
FName:=AValue;
end;
constructor TPackageDescriptor.Create;
begin
FReferenceCount:=1;
fVisibleInNewDialog:=true;
end;
function TPackageDescriptor.GetLocalizedName: string;
begin
Result:=Name;
end;
function TPackageDescriptor.GetLocalizedDescription: string;
begin
Result:=GetLocalizedName;
end;
procedure TPackageDescriptor.Release;
begin
//debugln('TPackageDescriptor.Release A ',Name,' ',dbgs(FReferenceCount));
if FReferenceCount=0 then
raise Exception.Create('');
dec(FReferenceCount);
if FReferenceCount=0 then Free;
end;
procedure TPackageDescriptor.Reference;
begin
inc(FReferenceCount);
end;
{ TNewItemPackage }
function TNewItemPackage.LocalizedName: string;
begin
Result:=Descriptor.GetLocalizedName;
end;
function TNewItemPackage.Description: string;
begin
Result:=Descriptor.GetLocalizedDescription;
end;
procedure TNewItemPackage.Assign(Source: TPersistent);
begin
inherited Assign(Source);
if Source is TNewItemPackage then
FDescriptor:=TNewItemPackage(Source).Descriptor;
end;
{ TLazPackageID }
constructor TPkgDependencyID.Create;
begin
inherited Create;
end;
destructor TPkgDependencyID.Destroy;
begin
RequiredIDEPackage:=nil;
inherited Destroy;
end;
procedure TPkgDependencyID.Clear;
begin
inherited Clear;
RequiredIDEPackage:=nil;
end;
// Setters
procedure TPkgDependencyID.SetRequiredPackage(const AValue: TIDEPackage);
begin
if FRequiredPackage=AValue then exit;
if FRequiredPackage<>nil then
FRequiredPackage.RemoveUsedByDependency(Self);
FLoadPackageResult:=lprUndefined;
FRequiredPackage:=AValue;
if FRequiredPackage<>nil then
FRequiredPackage.AddUsedByDependency(Self);
end;
{ TLazPackageID }
constructor TLazPackageID.Create;
begin
inherited Create(nil);
FVersion:=TPkgVersion.Create;
FVersion.OnChange:=@VersionChanged;
end;
destructor TLazPackageID.Destroy;
begin
FreeAndNil(FVersion);
inherited Destroy;
end;
procedure TLazPackageID.UpdateIDAsString;
begin
FIDAsString:=Version.AsString;
if FIDAsString<>'' then
FIDAsString:=Name+' '+FIDAsString;
FIDAsWord:=Version.AsWord;
if FIDAsWord<>'' then
FIDAsWord:=Name+FIDAsWord;
end;
procedure TLazPackageID.VersionChanged(Sender: TObject);
begin
UpdateIDAsString;
end;
function TLazPackageID.GetDirectory: string;
begin
raise Exception.Create(''); // just an ID, no file
Result:='';
end;
procedure TLazPackageID.AssignOptions(Source: TPersistent);
var
aSource: TLazPackageID;
begin
if Source is TLazPackageID then
begin
aSource:=TLazPackageID(Source);
FVersion.Assign(aSource.Version);
Name:=aSource.Name;
UpdateIDAsString;
end else
raise Exception.Create('TLazPackageID.AssignOptions: can not copy from '+DbgSName(Source));
end;
function TLazPackageID.StringToID(const s: string): boolean;
var
IdentEndPos: PChar;
StartPos: PChar;
function ReadIdentifier: boolean;
begin
Result:=false;
while IdentEndPos^ in ['a'..'z','A'..'Z','0'..'9','_'] do begin
inc(IdentEndPos);
Result:=true;
end;
end;
begin
Result:=false;
if s='' then exit;
IdentEndPos:=PChar(s);
repeat
if not ReadIdentifier then exit;
if IdentEndPos^<>'.' then break;
inc(IdentEndPos);
until false;
Name:=copy(s,1,IdentEndPos-PChar(s));
StartPos:=IdentEndPos;
while StartPos^=' ' do inc(StartPos);
if StartPos=IdentEndPos then begin
Version.Clear;
Version.Valid:=pvtNone;
end else begin
if not Version.ReadString(StartPos) then exit;
end;
Result:=true;
end;
function TLazPackageID.Compare(PackageID2: TLazPackageID): integer;
begin
if PackageID2 <> nil then
begin
Result:=CompareText(Name,PackageID2.Name);
if Result<>0 then exit;
Result:=Version.Compare(PackageID2.Version);
end
else
Result := -1;
end;
function TLazPackageID.CompareMask(ExactPackageID: TLazPackageID): integer;
begin
Result:=CompareText(Name,ExactPackageID.Name);
if Result<>0 then exit;
Result:=Version.CompareMask(ExactPackageID.Version);
end;
procedure TLazPackageID.AssignID(Source: TLazPackageID);
begin
Name:=Source.Name;
Version.Assign(Source.Version);
end;
function TLazPackageID.GetIDAsString: string;
begin
Result := FIDAsString;
end;
function TLazPackageID.GetIDAsWord: string;
begin
Result := FIDAsWord;
end;
procedure TLazPackageID.SetName(const NewName: TComponentName);
begin
if Name=NewName then exit;
ChangeName(NewName);
UpdateIDAsString;
end;
{ TIDEPackage }
procedure TIDEPackage.AssignOptions(Source: TPersistent);
var
aSource: TIDEPackage;
begin
inherited AssignOptions(Source);
if Source is TIDEPackage then
begin
aSource:=TIDEPackage(Source);
LazCompilerOptions.Assign(aSource.LazCompilerOptions);
// ToDo:
//FCustomOptions:=aSource.FCustomOptions;
end;
end;
constructor TIDEPackage.Create;
begin
inherited Create;
FCustomOptions:=TConfigMemStorage.Create('',false);
end;
destructor TIDEPackage.Destroy;
begin
FreeAndNil(FCustomOptions);
inherited Destroy;
end;
procedure TIDEPackage.ClearCustomOptions;
begin
TConfigMemStorage(FCustomOptions).Clear;
end;
{ TPackageEditingInterface }
procedure TPackageEditingInterface.AddHandler(HandlerType: TPkgIntfHandlerType;
const AMethod: TMethod; AsLast: boolean);
begin
if FHandlers[HandlerType]=nil then
FHandlers[HandlerType]:=TMethodList.Create;
FHandlers[HandlerType].Add(AMethod,AsLast);
end;
procedure TPackageEditingInterface.RemoveHandler(
HandlerType: TPkgIntfHandlerType; const AMethod: TMethod);
begin
FHandlers[HandlerType].Remove(AMethod);
end;
procedure TPackageEditingInterface.DoCallNotifyHandler(
HandlerType: TPkgIntfHandlerType; Sender: TObject);
begin
FHandlers[HandlerType].CallNotifyEvents(Sender);
end;
destructor TPackageEditingInterface.Destroy;
var
h: TPkgIntfHandlerType;
begin
for h:=Low(FHandlers) to high(FHandlers) do
FreeAndNil(FHandlers[h]);
inherited Destroy;
end;
procedure TPackageEditingInterface.RemoveAllHandlersOfObject(AnObject: TObject);
var
HandlerType: TPkgIntfHandlerType;
begin
for HandlerType:=Low(HandlerType) to High(HandlerType) do
FHandlers[HandlerType].RemoveAllMethodsOfObject(AnObject);
end;
procedure TPackageEditingInterface.AddHandlerOnGraphChanged(
const OnGraphChanged: TNotifyEvent; AsLast: boolean);
begin
AddHandler(pihtGraphChanged,TMethod(OnGraphChanged),AsLast);
end;
procedure TPackageEditingInterface.RemoveHandlerOnGraphChanged(
const OnGraphChanged: TNotifyEvent);
begin
RemoveHandler(pihtGraphChanged,TMethod(OnGraphChanged));
end;
procedure TPackageEditingInterface.AddHandlerOnPackageFileLoaded(
const OnPkgLoaded: TNotifyEvent; AsLast: boolean);
begin
AddHandler(pihtPackageFileLoaded,TMethod(OnPkgLoaded),AsLast);
end;
procedure TPackageEditingInterface.RemoveHandlerOnPackageFileLoaded(
const OnPkgLoaded: TNotifyEvent);
begin
RemoveHandler(pihtPackageFileLoaded,TMethod(OnPkgLoaded));
end;
{ TLazPackageFile }
procedure TLazPackageFile.SetDisableI18NForLFM(AValue: boolean);
begin
FDisableI18NForLFM:=AValue;
end;
procedure TLazPackageFile.SetFileType(const AValue: TPkgFileType);
begin
FFileType:=AValue;
end;
procedure TLazPackageFile.SetRemoved(const AValue: boolean);
begin
FRemoved:=AValue;
end;
initialization
PackageEditingInterface:=nil;
end.
|