fpc/utils/fpdoc/fpdocproj.pas
michael 8f7e8163a5 * Merging revisions 40928,40929,40937,40945,40946 from trunk:
------------------------------------------------------------------------
    r40928 | michael | 2019-01-20 12:15:07 +0100 (Sun, 20 Jan 2019) | 1 line
    
    * Remove debug statement 
    ------------------------------------------------------------------------
    r40929 | michael | 2019-01-20 12:17:46 +0100 (Sun, 20 Jan 2019) | 1 line
    
    * Remove debug statement 
    ------------------------------------------------------------------------
    r40937 | michael | 2019-01-20 14:47:25 +0100 (Sun, 20 Jan 2019) | 1 line
    
    * Fix filename allocator for operators
    ------------------------------------------------------------------------
    r40945 | michael | 2019-01-20 18:56:30 +0100 (Sun, 20 Jan 2019) | 1 line
    
    * Correct options for parsing
    ------------------------------------------------------------------------
    r40946 | michael | 2019-01-20 18:57:27 +0100 (Sun, 20 Jan 2019) | 1 line
    
    * Do not save so much session info
    ------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@40948 -
2019-01-20 18:04:31 +00:00

291 lines
6.7 KiB
ObjectPascal

unit fpdocproj;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
Type
{ TFPDocPackage }
TFPDocPackage = Class(TCollectionItem)
private
FContent: String;
FDescriptions: TStrings;
FImports: TStrings;
FInputs: TStrings;
FName: String;
FOutput: String;
Public
constructor Create(ACollection: TCollection); override;
destructor destroy; override;
procedure Assign(Source : TPersistent); override;
Property Name : String Read FName Write FName;
Property Inputs : TStrings Read FinPuts;
Property Descriptions : TStrings Read FDescriptions;
Property Imports : TStrings read FIMports;
Property ContentFile : String Read FContent Write FContent;
Property Output : String Read FOutput Write FOutput;
end;
{ TFPDocPackages }
TFPDocPackages = Class(TCollection)
private
function GetP(AIndex : Integer): TFPDocPackage;
procedure SetP(AIndex : Integer; const AValue: TFPDocPackage);
Public
Function IndexOfPackage(Const AName : String) : Integer;
Function FindPackage(Const AName : String) : TFPDOcPackage;
Property Packages[AIndex : Integer] : TFPDocPackage Read GetP Write SetP; Default;
end;
{ TEngineOptions }
TEngineOptions = Class(TPersistent)
private
FBackEndoptions: TStrings;
FCPUTarget: String;
FDefaultPackageName: String;
FEmitNotes: Boolean;
FFormat: String;
FHidePrivate: Boolean;
FHideProtected: Boolean;
FIO: Boolean;
FLanguage: String;
FMoDir: String;
FOSTarget: String;
FSOPE: Boolean;
FWarnNoNode: Boolean;
FDontTrim : Boolean;
procedure SetBackendOptions(const AValue: TStrings);
Public
Constructor Create;
Destructor Destroy; override;
procedure Assign(Source : TPersistent); override;
Published
Property OSTarget : String Read FOSTarget Write FOStarget;
Property CPUTarget : String Read FCPUTarget Write FCPUTarget;
Property Language : String Read FLanguage Write fLanguage;
Property Backend : String Read FFormat Write FFormat;
Property BackendOptions : TStrings Read FBackEndoptions Write SetBackendOptions;
Property StopOnParseError : Boolean Read FSOPE Write FSOPE;
Property HideProtected : Boolean Read FHideProtected Write FHideProtected;
Property WarnNoNode : Boolean Read FWarnNoNode Write FWarnNoNode;
Property ShowPrivate : Boolean Read FHidePrivate Write FHidePrivate;
Property InterfaceOnly : Boolean Read FIO Write FIO;
Property MoDir : String Read FMoDir Write FMODir;
Property DefaultPackageName : String Read FDefaultPackageName Write FDefaultPackageName;
Property DontTrim : Boolean Read FDontTrim Write FDontTrim;
Property EmitNotes : Boolean Read FEmitNotes Write FEmitNotes;
end;
{ TFPDocProject }
TFPDocProject = Class(TComponent)
private
FOptions: TEngineOptions;
FPackages: TFPDocPackages;
procedure setOptions(const AValue: TEngineOptions);
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Published
Property Packages : TFPDocPackages Read FPackages Write FPackages;
Property Options : TEngineOptions Read FOptions Write setOptions;
end;
Procedure SplitInputFileOption(Const AInputFile : String; Out AFile,AOption : String);
implementation
Procedure SplitInputFileOption(Const AInputFile : String; Out AFile,AOption : String);
Function GetNextWord(Var s : string) : String;
Const
WhiteSpace = [' ',#9,#10,#13];
var
i,j: integer;
begin
I:=1;
While (I<=Length(S)) and (S[i] in WhiteSpace) do
Inc(I);
J:=I;
While (J<=Length(S)) and (not (S[J] in WhiteSpace)) do
Inc(J);
if (I<=Length(S)) then
Result:=Copy(S,I,J-I);
Delete(S,1,J);
end;
Var
S,W,F,O : String;
begin
S:=AInputFile;
O:='';
F:='';
While (S<>'') do
begin
W:=GetNextWord(S);
If (W<>'') then
begin
if W[1]='-' then
begin
if (O<>'') then
O:=O+' ';
o:=O+W;
end
else
F:=W;
end;
end;
aFile:=F;
AOption:=O;
end;
{ TEngineOptions }
procedure TEngineOptions.SetBackendOptions(const AValue: TStrings);
begin
if FBackEndoptions=AValue then exit;
FBackEndoptions.Assign(AValue);
end;
constructor TEngineOptions.Create;
begin
FBackendOptions:=TStringList.Create;
end;
destructor TEngineOptions.Destroy;
begin
FreeAndNil(FBackendOptions);
inherited Destroy;
end;
procedure TEngineOptions.Assign(Source: TPersistent);
var
O : TEngineOptions;
begin
if (Source is TEngineOptions) then
begin
O:=Source as TEngineOptions;
FBackEndoptions.Assign(O.BackendOptions);
FCPUTarget:=O.CPUTarget;
FFormat:=O.Backend;
FLanguage:=O.Language;
FOSTarget:=O.OSTarget;
FSOPE:=O.StopOnParseError;
HideProtected:=O.HideProtected;
WarnNoNode:=O.WarnNoNode;
ShowPrivate:=O.ShowPrivate;
InterfaceOnly:=O.InterfaceOnly;
MoDir:=O.MoDir;
end
else
inherited Assign(Source);
end;
{ TFPDocProject }
procedure TFPDocProject.setOptions(const AValue: TEngineOptions);
begin
if FOptions=AValue then exit;
FOptions.Assign(AValue);
end;
constructor TFPDocProject.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FPackages:=TFPDocPackages.Create(TFPDocPackage);
FOptions:=TEngineOptions.Create;
end;
destructor TFPDocProject.Destroy;
begin
FreeAndNil(Foptions);
FreeAndNil(FPackages);
inherited Destroy;
end;
{ TFPDocPackages }
function TFPDocPackages.GetP(AIndex : Integer): TFPDocPackage;
begin
Result:=TFPDocPackage(Items[AIndex]);
end;
procedure TFPDocPackages.SetP(AIndex : Integer; const AValue: TFPDocPackage);
begin
Items[AIndex]:=AValue;
end;
function TFPDocPackages.IndexOfPackage(const AName: String): Integer;
begin
Result:=Count-1;
While (Result>=0) and (CompareText(GetP(Result).Name,AName)<>0) do
Dec(Result)
end;
function TFPDocPackages.FindPackage(const AName: String): TFPDOcPackage;
Var
I : Integer;
begin
I:=IndexOfPackage(AName);
If (I=-1) then
Result:=Nil
else
Result:=GetP(I);
end;
{ TFPDocPackage }
constructor TFPDocPackage.Create(ACollection: TCollection);
begin
inherited Create(ACollection);
FImports:=TStringList.Create;
FDescriptions:=TStringList.Create;
FInputs:=TStringList.Create;
end;
destructor TFPDocPackage.destroy;
begin
FreeAndNil(FDescriptions);
FreeAndNil(FIMports);
FreeAndNil(FinPuts);
inherited destroy;
end;
procedure TFPDocPackage.Assign(Source: TPersistent);
Var
P : TFPDocPackage;
begin
If Source is TFPDocPackage then
begin
P:=Source as TFPDocPackage;
Fname:=P.Name;
FContent:=P.ContentFile;
FImports.Assign(P.Imports);
FInputs.Assign(P.Inputs);
FDescriptions.Assign(P.Descriptions);
end
else
inherited Assign(Source);
end;
end.