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
|
{ If you want to extend the package only access this unit.
}
unit ProjectGroupIntf;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, IDEOptionsIntf, PackageIntf, ProjectIntf, LazFileUtils,
LazFileCache, LazMethodList, LazLoggerBase;
Type
TPGTargetType = (
ttUnknown,
ttProject,
ttPackage,
ttProjectGroup, // nested group
ttPascalFile, // build/run file, parameters stored IDE directives
ttExternalTool
);
TPGTargetTypes = set of TPGTargetType;
TPGTargetAction = (
taOpen,
taSettings,
taCompile,
taCompileClean,
taCompileFromHere,
taRun,
taInstall,
taUninstall);
TPGTargetActions = set of TPGTargetAction;
TPGActionResult = (arNotAllowed,arOK,arFailed);
TPGActionResults = set of TPGActionResult;
TProjectGroup = class;
TPGCompileTarget = class;
{ TPGBuildMode }
TPGBuildMode = class
private
FCompile: boolean;
FIdentifier: string;
FTarget: TPGCompileTarget;
procedure SetCompile(AValue: boolean);
public
constructor Create(aTarget: TPGCompileTarget; const anIdentifier: string; aCompile: boolean);
property Target: TPGCompileTarget read FTarget;
property Identifier: string read FIdentifier;
property Compile: boolean read FCompile write SetCompile;
end;
{ TPGDependency }
TPGDependency = class
private
FPackageName: string;
FTarget: TPGCompileTarget;
public
constructor Create(aTarget: TPGCompileTarget; const aPkgName: string);
property Target: TPGCompileTarget read FTarget;
property PackageName: string read FPackageName;
end;
{ TPGCompileTarget - a node in the tree, see TPGTargetType }
TPGCompileTarget = class
private
FActive: Boolean;
FFilename: string;
FTargetType: TPGTargetType;
FRemoved: boolean;
protected
FParent: TPGCompileTarget;
FProjectGroup: TProjectGroup;
function GetAllowedActions: TPGTargetActions; virtual; // By default, return all allowed actions for target type.
function GetBuildModeCount: integer; virtual; abstract;
function GetBuildModes(Index: integer): TPGBuildMode; virtual; abstract;
function GetFileCount: integer; virtual; abstract;
function GetFiles(Index: integer): string; virtual; abstract;
function GetRequiredPackageCount: integer; virtual; abstract;
function GetRequiredPackages(Index: integer): TPGDependency; virtual; abstract;
function Perform(AAction: TPGTargetAction): TPGActionResult;
function PerformAction(AAction: TPGTargetAction): TPGActionResult; virtual; abstract;
procedure SetFilename(const AValue: string); virtual;
procedure SetRemoved(const AValue: boolean); virtual;
procedure SetTargetType(AValue: TPGTargetType); virtual;
procedure DoDeactivateChildren;
procedure ActiveChanged(Sender: TPGCompileTarget); virtual; abstract;
procedure DoActivate(DeactivateChildren: boolean);
procedure DoDeActivate(DeactivateParents: boolean);
public
constructor Create(aParent: TPGCompileTarget);
procedure Activate;
procedure DeActivate;
function GetOwnerProjectGroup: TProjectGroup;
function GetRootProjectGroup: TProjectGroup;
function GetNext(SkipChildren: boolean): TPGCompileTarget;
function IndexOfBuildMode(aName: string): integer;
function FindBuildMode(aName: string): TPGBuildMode;
function PerformBuildModeAction(AAction: TPGTargetAction; aModeIdentifier: string): TPGActionResult; virtual; abstract;
procedure Modified; virtual; abstract;
property Parent: TPGCompileTarget read FParent;
property Filename: string read FFilename write SetFilename; // Absolute, not relative.
property Removed: boolean read FRemoved write SetRemoved;
property TargetType: TPGTargetType read FTargetType write SetTargetType;
property Active: Boolean Read FActive;
// Currently allowed actions.
property AllowedActions: TPGTargetActions Read GetAllowedActions;
//
property ProjectGroup: TProjectGroup read FProjectGroup; // set if TargetType is ttProjectGroup
property BuildModes[Index: integer]: TPGBuildMode read GetBuildModes;
property BuildModeCount: integer read GetBuildModeCount;
property Files[Index: integer]: string read GetFiles;
property FileCount: integer read GetFileCount;
property RequiredPackages[Index: integer]: TPGDependency read GetRequiredPackages;
property RequiredPackageCount: integer read GetRequiredPackageCount;
end;
TProjectGroupHandler = (
pghDestroy
);
{ TProjectGroup }
TProjectGroup = class(TPersistent)
private
FHandlers: array[TProjectGroupHandler] of TMethodList;
FChangeStamp: int64;
FFileName: String;
FLastSavedChangeStamp: int64;
procedure SetModified(AValue: Boolean);
protected
FCompileTarget: TPGCompileTarget;
FParent: TProjectGroup;
procedure SetFileName(AValue: String); virtual;
function GetModified: Boolean; virtual;
function GetTargetCount: Integer; virtual; abstract;
function GetTarget(Index: Integer): TPGCompileTarget; virtual; abstract;
function GetRemovedTargetCount: Integer; virtual; abstract;
function GetRemovedTarget(Index: Integer): TPGCompileTarget; virtual; abstract;
procedure DoCallNotifyHandler(HandlerType: TProjectGroupHandler;
Sender: TObject); overload;
procedure AddHandler(HandlerType: TProjectGroupHandler;
const AMethod: TMethod; AsLast: boolean = false);
procedure RemoveHandler(HandlerType: TProjectGroupHandler;
const AMethod: TMethod);
function GetActiveTarget: TPGCompileTarget; virtual; abstract;
procedure SetActiveTarget(AValue: TPGCompileTarget); virtual; abstract;
public
destructor Destroy; override;
function GetRootGroup: TProjectGroup;
property FileName: String Read FFileName Write SetFileName; // absolute
property CompileTarget: TPGCompileTarget read FCompileTarget;
property Parent: TProjectGroup read FParent;
// actions
function Perform(Index: Integer; AAction: TPGTargetAction): TPGActionResult;
function Perform(Const AFileName: String; AAction: TPGTargetAction): TPGActionResult;
function Perform(Target: TPGCompileTarget; AAction: TPGTargetAction): TPGActionResult; virtual;
function ActionAllowsFrom(Index: Integer; AAction: TPGTargetAction): Boolean; virtual;
function PerformFrom(AIndex: Integer; AAction: TPGTargetAction): TPGActionResult; virtual;
// targets
function IndexOfTarget(Const Target: TPGCompileTarget): Integer; virtual; abstract;
function IndexOfTarget(Const AFilename: String): Integer; virtual;
function IndexOfRemovedTarget(Const Target: TPGCompileTarget): Integer; virtual; abstract;
function IndexOfRemovedTarget(Const AFilename: String): Integer; virtual;
function AddTarget(Const AFileName: String): TPGCompileTarget; virtual; abstract;
procedure ReAddTarget(Target: TPGCompileTarget); virtual; abstract;
procedure ExchangeTargets(ASource, ATarget: Integer); virtual; abstract;
procedure RemoveTarget(Index: Integer); virtual; abstract;
procedure RemoveTarget(Const AFileName: String);
procedure RemoveTarget(Target: TPGCompileTarget);
property Targets[Index: Integer]: TPGCompileTarget Read GetTarget;
property TargetCount: Integer Read GetTargetCount;
property RemovedTargets[Index: Integer]: TPGCompileTarget Read GetRemovedTarget;
property RemovedTargetCount: Integer Read GetRemovedTargetCount;
property ActiveTarget: TPGCompileTarget Read GetActiveTarget Write SetActiveTarget;
public
// modified
procedure IncreaseChangeStamp;
property Modified: Boolean Read GetModified write SetModified;
property ChangeStamp: int64 read FChangeStamp;
public
// handlers
procedure RemoveAllHandlersOfObject(AnObject: TObject);
procedure AddHandlerOnDestroy(const OnDestroy: TNotifyEvent; AsLast: boolean = false);
procedure RemoveHandlerOnDestroy(const OnDestroy: TNotifyEvent);
end;
TProjectGroupLoadOption = (
pgloRemoveInvalid, // Mark non-existing targets from group as removed.
pgloSkipInvalid, // Ignore non-existing, add as-is.
pgloErrorInvalid, // Stop with error on non-existing.
pgloSkipDialog, // do not show Project Group editor.
pgloLoadRecursively // load all sub nodes
);
TProjectGroupLoadOptions = set of TProjectGroupLoadOption;
{ TProjectGroupManager }
TProjectGroupManager = Class(TPersistent)
protected
function GetCurrentProjectGroup: TProjectGroup; virtual; abstract;
public
procedure LoadProjectGroup(AFileName: string; AOptions: TProjectGroupLoadOptions); virtual; abstract;
procedure SaveProjectGroup; virtual; abstract;
property CurrentProjectGroup: TProjectGroup Read GetCurrentProjectGroup; // Always top-level.
end;
var
ProjectGroupManager: TProjectGroupManager = nil;
const
PGTargetActions: array[TPGTargetType] of TPGTargetActions = (
[], // ttUnknown
[taOpen,taSettings,taCompile,taCompileClean,taCompileFromHere,taRun], // ttProject
[taOpen,taSettings,taCompile,taCompileClean,taCompileFromHere,taInstall,taUninstall], // ttPackage
[taOpen,taCompile,taCompileClean,taCompileFromHere], // ttProjectGroup
[taOpen,taSettings,taCompile,taCompileFromHere,taRun], // ttPascalFile
[taOpen,taCompile,taCompileClean,taCompileFromHere,taRun] // ttExternalTool
);
function TargetTypeFromExtenstion(AExt: String): TPGTargetType;
function TargetSupportsAction(ATarget: TPGTargetType; AAction: TPGTargetAction): Boolean;
function ActionAllowsMulti(AAction: TPGTargetAction): Boolean;
implementation
function TargetTypeFromExtenstion (AExt: String): TPGTargetType;
begin
while (AExt<>'') and (AExt[1]='.') do
Delete(AExt,1,1);
case LowerCase(AExt) of
'lpi',
'lpr': Result:=ttProject;
'lpk': Result:=ttPackage;
'lpg': Result:=ttProjectGroup;
'pas',
'pp',
'p' : Result:=ttPascalFile;
else
Result:=ttUnknown;
end;
end;
function TargetSupportsAction(ATarget: TPGTargetType; AAction: TPGTargetAction
): Boolean;
begin
Result:=AAction in PGTargetActions[ATarget];
end;
function ActionAllowsMulti(AAction: TPGTargetAction): Boolean;
begin
Result:=AAction in [taCompile,taCompileClean];
end;
{ TPGBuildMode }
procedure TPGBuildMode.SetCompile(AValue: boolean);
begin
if FCompile=AValue then Exit;
FCompile:=AValue;
Target.Modified;
end;
constructor TPGBuildMode.Create(aTarget: TPGCompileTarget; const anIdentifier: string;
aCompile: boolean);
begin
FTarget:=aTarget;
FIdentifier:=anIdentifier;
FCompile:=aCompile;
end;
{ TPGDependency }
constructor TPGDependency.Create(aTarget: TPGCompileTarget;
const aPkgName: string);
begin
FTarget:=aTarget;
FPackageName:=aPkgName;
end;
{ TProjectGroup }
procedure TProjectGroup.SetModified(AValue: Boolean);
begin
if AValue then
IncreaseChangeStamp
else
FLastSavedChangeStamp:=FChangeStamp;
end;
procedure TProjectGroup.SetFileName(AValue: String);
begin
if FFileName=AValue then Exit;
FFileName:=AValue;
IncreaseChangeStamp;
if CompileTarget<>nil then
CompileTarget.Filename:=Filename;
end;
function TProjectGroup.GetModified: Boolean;
begin
Result:=FLastSavedChangeStamp<>FChangeStamp;
end;
procedure TProjectGroup.DoCallNotifyHandler(HandlerType: TProjectGroupHandler;
Sender: TObject);
begin
FHandlers[HandlerType].CallNotifyEvents(Sender);
end;
procedure TProjectGroup.AddHandler(HandlerType: TProjectGroupHandler;
const AMethod: TMethod; AsLast: boolean);
begin
if FHandlers[HandlerType]=nil then
FHandlers[HandlerType]:=TMethodList.Create;
FHandlers[HandlerType].Add(AMethod,AsLast);
end;
procedure TProjectGroup.RemoveHandler(HandlerType: TProjectGroupHandler;
const AMethod: TMethod);
begin
FHandlers[HandlerType].Remove(AMethod);
end;
destructor TProjectGroup.Destroy;
var
HandlerType: TProjectGroupHandler;
begin
DoCallNotifyHandler(pghDestroy,Self);
for HandlerType:=Low(FHandlers) to High(FHandlers) do
FreeAndNil(FHandlers[HandlerType]);
inherited Destroy;
end;
function TProjectGroup.GetRootGroup: TProjectGroup;
begin
Result:=Self;
while Result.Parent<>nil do
Result:=Result.Parent;
end;
function TProjectGroup.Perform(Index: Integer; AAction: TPGTargetAction
): TPGActionResult;
begin
Result:=Perform(GetTarget(Index),AAction);
end;
function TProjectGroup.Perform(const AFileName: String; AAction: TPGTargetAction
): TPGActionResult;
begin
Result:=Perform(IndexOfTarget(AFileName),AAction);
end;
function TProjectGroup.Perform(Target: TPGCompileTarget; AAction: TPGTargetAction): TPGActionResult;
begin
Result:=Target.Perform(AAction);
end;
function TProjectGroup.ActionAllowsFrom(Index: Integer; AAction: TPGTargetAction
): Boolean;
Var
C: Integer;
T: TPGCompileTarget;
begin
Result:=ActionAllowsMulti(AAction);
C:=TargetCount;
while Result and (Index<C) do
begin
T:=GetTarget(Index);
if not T.Removed then
Result:=AAction in T.AllowedActions;;
Inc(Index);
end;
end;
function TProjectGroup.PerformFrom(AIndex: Integer; AAction: TPGTargetAction
): TPGActionResult;
Var
I: Integer;
begin
Result:=arOK;
I:=AIndex;
while (Result=arOK) and (I<TargetCount) do
if Not GetTarget(i).Removed then
begin
Result:=Perform(I,AAction);
Inc(I);
end;
end;
function TProjectGroup.IndexOfTarget(const AFilename: String): Integer;
begin
Result:=TargetCount-1;
while (Result>=0) and (CompareFilenames(AFileName,GetTarget(Result).Filename)<>0) do
Dec(Result);
end;
function TProjectGroup.IndexOfRemovedTarget(const AFilename: String): Integer;
begin
Result:=RemovedTargetCount-1;
while (Result>=0) and (CompareFilenames(AFileName,GetRemovedTarget(Result).Filename)<>0) do
Dec(Result);
end;
procedure TProjectGroup.RemoveTarget(const AFileName: String);
begin
RemoveTarget(IndexOfTarget(AFileName))
end;
procedure TProjectGroup.RemoveTarget(Target: TPGCompileTarget);
begin
RemoveTarget(IndexOfTarget(Target))
end;
procedure TProjectGroup.IncreaseChangeStamp;
begin
LUIncreaseChangeStamp64(FChangeStamp);
if Parent<>nil then
Parent.IncreaseChangeStamp;
end;
procedure TProjectGroup.RemoveAllHandlersOfObject(AnObject: TObject);
var
HandlerType: TProjectGroupHandler;
begin
for HandlerType in TProjectGroupHandler do
FHandlers[HandlerType].RemoveAllMethodsOfObject(AnObject);
end;
procedure TProjectGroup.AddHandlerOnDestroy(const OnDestroy: TNotifyEvent;
AsLast: boolean);
begin
AddHandler(pghDestroy,TMethod(OnDestroy),AsLast);
end;
procedure TProjectGroup.RemoveHandlerOnDestroy(const OnDestroy: TNotifyEvent);
begin
RemoveHandler(pghDestroy,TMethod(OnDestroy));
end;
{ TPGCompileTarget }
function TPGCompileTarget.GetAllowedActions: TPGTargetActions;
begin
Result:=PGTargetActions[TargetType];
end;
procedure TPGCompileTarget.SetTargetType(AValue: TPGTargetType);
begin
if FTargetType=AValue then Exit;
FTargetType:=AValue;
end;
procedure TPGCompileTarget.DoDeactivateChildren;
var
i: Integer;
begin
if ProjectGroup=nil then exit;
for i:=0 to ProjectGroup.TargetCount-1 do
ProjectGroup.Targets[i].DoDeActivate(false);
end;
procedure TPGCompileTarget.DoActivate(DeactivateChildren: boolean);
var
OldActive: TPGCompileTarget;
PG: TProjectGroup;
begin
if DeactivateChildren then
DoDeactivateChildren;
if Active then exit;
if Parent<>nil then
begin
PG:=Parent.ProjectGroup;
if PG<>nil then
begin
OldActive:=PG.ActiveTarget;
if OldActive<>nil then
OldActive.DoDeActivate(false);
end;
Parent.DoActivate(false);
PG.IncreaseChangeStamp;
end;
FActive:=True;
end;
procedure TPGCompileTarget.DoDeActivate(DeactivateParents: boolean);
begin
if not Active then exit;
if ProjectGroup<>nil then
begin
ProjectGroup.IncreaseChangeStamp;
DoDeactivateChildren;
end;
FActive:=False;
if DeactivateParents and (Parent<>nil) then
Parent.DoDeActivate(true);
end;
constructor TPGCompileTarget.Create(aParent: TPGCompileTarget);
begin
FParent:=aParent;
end;
procedure TPGCompileTarget.SetFilename(const AValue: string);
begin
if FFileName=AValue then Exit;
FFileName:=AValue;
TargetType:=TargetTypeFromExtenstion(ExtractFileExt(AValue));
if ProjectGroup<>nil then
ProjectGroup.FileName:=Filename;
end;
procedure TPGCompileTarget.SetRemoved(const AValue: boolean);
begin
if Removed=AValue then exit;
FRemoved:=AValue;
end;
procedure TPGCompileTarget.Activate;
begin
if Active then exit;
DoActivate(true);
ActiveChanged(Self);
end;
procedure TPGCompileTarget.DeActivate;
begin
if not Active then exit;
DoDeActivate(true);
ActiveChanged(Self);
end;
function TPGCompileTarget.GetOwnerProjectGroup: TProjectGroup;
var
aTarget: TPGCompileTarget;
begin
aTarget:=Self;
while (aTarget<>nil) do begin
Result:=aTarget.ProjectGroup;
if Result<>nil then exit;
aTarget:=aTarget.Parent;
end;
Result:=nil;
end;
function TPGCompileTarget.GetRootProjectGroup: TProjectGroup;
var
aTarget: TPGCompileTarget;
begin
aTarget:=Self;
while (aTarget.Parent<>nil) do aTarget:=aTarget.Parent;
Result:=aTarget.ProjectGroup;
end;
function TPGCompileTarget.GetNext(SkipChildren: boolean): TPGCompileTarget;
var
aTarget: TPGCompileTarget;
PG: TProjectGroup;
i: Integer;
begin
// check first child
if (not SkipChildren) and (ProjectGroup<>nil) and (ProjectGroup.TargetCount>0)
then begin
Result:=ProjectGroup.Targets[0];
exit(Result);
end;
// check next sibling
aTarget:=Self;
while aTarget.Parent<>nil do begin
PG:=aTarget.Parent.ProjectGroup;
if PG<>nil then begin
i:=PG.IndexOfTarget(aTarget);
if (i>=0) and (i+1<PG.TargetCount) then begin
Result:=PG.Targets[i+1];
exit(Result);
end;
end;
aTarget:=aTarget.Parent;
end;
Result:=nil;
end;
function TPGCompileTarget.IndexOfBuildMode(aName: string): integer;
begin
Result:=BuildModeCount-1;
while (Result>=0) and (CompareText(aName,BuildModes[Result].Identifier)<>0) do
dec(Result);
end;
function TPGCompileTarget.FindBuildMode(aName: string): TPGBuildMode;
var
i: Integer;
begin
i:=IndexOfBuildMode(aName);
if i>=0 then
Result:=BuildModes[i]
else
Result:=nil;
end;
function TPGCompileTarget.Perform(AAction: TPGTargetAction): TPGActionResult;
begin
if Not (AAction in AllowedActions) then
Result:=arNotAllowed
else
Result:=PerformAction(AAction);
end;
end.
|