mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 16:37:54 +02:00
IDE/lazbuild: store and load macros for lazbuild
This commit is contained in:
parent
e5058e166d
commit
d62359e968
@ -29,18 +29,26 @@ Type
|
|||||||
var Abort: boolean): string of object;
|
var Abort: boolean): string of object;
|
||||||
|
|
||||||
TTransferMacroFlag = (
|
TTransferMacroFlag = (
|
||||||
tmfInteractive
|
tmfInteractive,
|
||||||
|
tmfLazbuild // store value for lazbuild
|
||||||
);
|
);
|
||||||
TTransferMacroFlags = set of TTransferMacroFlag;
|
TTransferMacroFlags = set of TTransferMacroFlag;
|
||||||
|
|
||||||
|
{ TTransferMacro }
|
||||||
|
|
||||||
TTransferMacro = class
|
TTransferMacro = class
|
||||||
|
private
|
||||||
|
FLazbuildValue: string;
|
||||||
|
protected
|
||||||
|
procedure SetLazbuildValue(const AValue: string); virtual;
|
||||||
public
|
public
|
||||||
Name: string;
|
Name: string;
|
||||||
Value: string;
|
Value: string;
|
||||||
Description: string;
|
Description: string;
|
||||||
MacroFunction: TMacroFunction;
|
MacroFunction: TMacroFunction;
|
||||||
Flags: TTransferMacroFlags;
|
Flags: TTransferMacroFlags;
|
||||||
constructor Create(AName, AValue, ADescription:string;
|
property LazbuildValue: string read FLazbuildValue write SetLazbuildValue;
|
||||||
|
constructor Create(const AName, AValue, ADescription:string;
|
||||||
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags);
|
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -49,7 +57,13 @@ implementation
|
|||||||
|
|
||||||
{ TTransferMacro }
|
{ TTransferMacro }
|
||||||
|
|
||||||
constructor TTransferMacro.Create(AName, AValue, ADescription:string;
|
procedure TTransferMacro.SetLazbuildValue(const AValue: string);
|
||||||
|
begin
|
||||||
|
if FLazbuildValue=AValue then Exit;
|
||||||
|
FLazbuildValue:=AValue;
|
||||||
|
end;
|
||||||
|
|
||||||
|
constructor TTransferMacro.Create(const AName, AValue, ADescription: string;
|
||||||
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags);
|
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags);
|
||||||
begin
|
begin
|
||||||
Name:=AName;
|
Name:=AName;
|
||||||
|
@ -22,6 +22,7 @@ uses
|
|||||||
MacroDefIntf;
|
MacroDefIntf;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
{ TIDEMacros - macros for paths and compiler settings }
|
{ TIDEMacros - macros for paths and compiler settings }
|
||||||
|
|
||||||
TIDEMacros = class
|
TIDEMacros = class
|
||||||
@ -39,7 +40,9 @@ type
|
|||||||
// file utility functions
|
// file utility functions
|
||||||
function CreateAbsoluteSearchPath(var SearchPath: string;
|
function CreateAbsoluteSearchPath(var SearchPath: string;
|
||||||
const BaseDirectory: string): boolean;
|
const BaseDirectory: string): boolean;
|
||||||
procedure Add(NewMacro: TTransferMacro); virtual; abstract;
|
procedure Add(NewMacro: TTransferMacro); virtual; abstract; overload;
|
||||||
|
function Add(const AName, AValue, ADescription: string;
|
||||||
|
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags): TTransferMacro; virtual; overload;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
const
|
const
|
||||||
@ -121,5 +124,13 @@ begin
|
|||||||
SearchPath:=MinimizeSearchPath(LazFileUtils.CreateAbsoluteSearchPath(SearchPath,BaseDir));
|
SearchPath:=MinimizeSearchPath(LazFileUtils.CreateAbsoluteSearchPath(SearchPath,BaseDir));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TIDEMacros.Add(const AName, AValue, ADescription: string;
|
||||||
|
AMacroFunction: TMacroFunction; TheFlags: TTransferMacroFlags
|
||||||
|
): TTransferMacro;
|
||||||
|
begin
|
||||||
|
Result:=TTransferMacro.Create(AName,AValue,ADescription,AMacroFunction,TheFlags);
|
||||||
|
Add(Result);
|
||||||
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{ TIDEBuildMacros
|
{ TIDEBuildMacros
|
||||||
- every package and project has this list of build macros
|
- every package and project has this list of build macros (editable via GUI)
|
||||||
every build macro has
|
every build macro has
|
||||||
- a list of possible values
|
- a list of possible values
|
||||||
- and has a default value, or an expression to define the default
|
- and has a default value, or an expression to define the default
|
||||||
|
@ -34,7 +34,7 @@ uses
|
|||||||
Classes, SysUtils, Laz_AVL_Tree,
|
Classes, SysUtils, Laz_AVL_Tree,
|
||||||
// LazUtils
|
// LazUtils
|
||||||
FileUtil, LazFileUtils, LazUtilities, LazFileCache, LazUTF8,
|
FileUtil, LazFileUtils, LazUtilities, LazFileCache, LazUTF8,
|
||||||
Laz2_XMLCfg, AvgLvlTree, LazLoggerBase, LazTracer,
|
Laz2_XMLCfg, LazLoggerBase, LazTracer,
|
||||||
// LCL
|
// LCL
|
||||||
StdCtrls, ExtCtrls,
|
StdCtrls, ExtCtrls,
|
||||||
// CodeTools
|
// CodeTools
|
||||||
|
@ -1229,6 +1229,8 @@ end;
|
|||||||
procedure TLazBuildApplication.SetupMacros;
|
procedure TLazBuildApplication.SetupMacros;
|
||||||
begin
|
begin
|
||||||
MainBuildBoss.SetupTransferMacros;
|
MainBuildBoss.SetupTransferMacros;
|
||||||
|
|
||||||
|
(IDEMacros as TLazIDEMacros).LoadLazbuildMacros;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TLazBuildApplication.SetupCodetools;
|
procedure TLazBuildApplication.SetupCodetools;
|
||||||
|
@ -5313,6 +5313,7 @@ begin
|
|||||||
DebuggerOptions.Save; // before environment
|
DebuggerOptions.Save; // before environment
|
||||||
EnvironmentOptions.Save(false);
|
EnvironmentOptions.Save(false);
|
||||||
EditorMacroListViewer.SaveGlobalInfo;
|
EditorMacroListViewer.SaveGlobalInfo;
|
||||||
|
(IDEMacros as TLazIDEMacros).SaveLazbuildMacros;
|
||||||
//debugln('TMainIDE.SaveEnvironment A ',dbgsName(ObjectInspector1.Favorites));
|
//debugln('TMainIDE.SaveEnvironment A ',dbgsName(ObjectInspector1.Favorites));
|
||||||
if (ObjectInspector1<>nil) and (ObjectInspector1.Favorites<>nil) then
|
if (ObjectInspector1<>nil) and (ObjectInspector1.Favorites<>nil) then
|
||||||
SaveOIFavoriteProperties(ObjectInspector1.Favorites);
|
SaveOIFavoriteProperties(ObjectInspector1.Favorites);
|
||||||
|
@ -35,18 +35,21 @@ unit TransferMacros;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Types,
|
Classes, SysUtils,
|
||||||
// LazUtils
|
// LazUtils
|
||||||
LazFileUtils, LazUTF8,
|
LazFileUtils, LazUTF8, LazFileCache, LazConfigStorage,
|
||||||
// CodeTools
|
// CodeTools
|
||||||
FileProcs, CodeToolManager,
|
FileProcs, CodeToolManager,
|
||||||
// BuildIntf
|
// BuildIntf
|
||||||
MacroIntf, MacroDefIntf,
|
MacroIntf, MacroDefIntf, BaseIDEIntf,
|
||||||
// IdeConfig
|
// IdeConfig
|
||||||
TransferMacrosIntf,
|
TransferMacrosIntf, LazConf,
|
||||||
// IDE
|
// IDE
|
||||||
LazarusIDEStrConsts;
|
LazarusIDEStrConsts;
|
||||||
|
|
||||||
|
const
|
||||||
|
LazbuildMacrosFileName = 'lazbuildmacros.xml';
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
{ TTransferMacroList }
|
{ TTransferMacroList }
|
||||||
@ -76,10 +79,10 @@ type
|
|||||||
public
|
public
|
||||||
constructor Create;
|
constructor Create;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
|
function Count: integer; override;
|
||||||
property Items[Index: integer]: TTransferMacro
|
property Items[Index: integer]: TTransferMacro
|
||||||
read GetItems write SetItems; default;
|
read GetItems write SetItems; default;
|
||||||
procedure SetValue(const MacroName, NewValue: string); override;
|
procedure SetValue(const MacroName, NewValue: string); override;
|
||||||
function Count: integer; override;
|
|
||||||
procedure Clear; override;
|
procedure Clear; override;
|
||||||
procedure Delete(Index: integer); override;
|
procedure Delete(Index: integer); override;
|
||||||
procedure Add(NewMacro: TTransferMacro); override;
|
procedure Add(NewMacro: TTransferMacro); override;
|
||||||
@ -98,15 +101,22 @@ type
|
|||||||
property MaxUsePerMacro: integer read FMaxUsePerMacro write FMaxUsePerMacro default 3;
|
property MaxUsePerMacro: integer read FMaxUsePerMacro write FMaxUsePerMacro default 3;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TLazIDEMacros }
|
{ TLazIDEMacros }
|
||||||
|
|
||||||
type
|
|
||||||
TLazIDEMacros = class(TIDEMacros)
|
TLazIDEMacros = class(TIDEMacros)
|
||||||
|
private
|
||||||
|
FLazbuildMacroFileAge: longint; // file age when last time the lazbuild macros were stored
|
||||||
|
FLazbuildMacros: TStringListUTF8Fast; // last stored lazbuild macros
|
||||||
public
|
public
|
||||||
|
destructor Destroy; override;
|
||||||
function StrHasMacros(const s: string): boolean; override;
|
function StrHasMacros(const s: string): boolean; override;
|
||||||
function SubstituteMacros(var s: string): boolean; override;
|
function SubstituteMacros(var s: string): boolean; override;
|
||||||
function IsMacro(const Name: string): boolean; override;
|
function IsMacro(const Name: string): boolean; override;
|
||||||
procedure Add(NewMacro: TTransferMacro);override;
|
procedure Add(NewMacro: TTransferMacro);override; overload;
|
||||||
|
public
|
||||||
|
// lazbuild macros
|
||||||
|
procedure LoadLazbuildMacros; // called by lazbuild
|
||||||
|
procedure SaveLazbuildMacros; // called by IDE
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function GetGlobalMacroList: TTransferMacroList; inline;
|
function GetGlobalMacroList: TTransferMacroList; inline;
|
||||||
@ -543,6 +553,12 @@ end;
|
|||||||
|
|
||||||
{ TLazIDEMacros }
|
{ TLazIDEMacros }
|
||||||
|
|
||||||
|
destructor TLazIDEMacros.Destroy;
|
||||||
|
begin
|
||||||
|
FreeAndNil(FLazbuildMacros);
|
||||||
|
inherited Destroy;
|
||||||
|
end;
|
||||||
|
|
||||||
function TLazIDEMacros.StrHasMacros(const s: string): boolean;
|
function TLazIDEMacros.StrHasMacros(const s: string): boolean;
|
||||||
begin
|
begin
|
||||||
Result:=GlobalMacroList.StrHasMacros(s);
|
Result:=GlobalMacroList.StrHasMacros(s);
|
||||||
@ -563,6 +579,147 @@ Begin
|
|||||||
GlobalMacroList.Add(NewMacro);
|
GlobalMacroList.Add(NewMacro);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TLazIDEMacros.LoadLazbuildMacros;
|
||||||
|
var
|
||||||
|
aFilename, s, aMacroName, Value: String;
|
||||||
|
Macros: TTransferMacroList;
|
||||||
|
Cfg: TConfigStorage;
|
||||||
|
i: Integer;
|
||||||
|
p: SizeInt;
|
||||||
|
EnvVars: TStringListUTF8Fast;
|
||||||
|
aMacro: TTransferMacro;
|
||||||
|
begin
|
||||||
|
aFilename:=AppendPathDelim(GetPrimaryConfigPath)+LazbuildMacrosFileName;
|
||||||
|
if not FileExistsCached(aFilename) then exit;
|
||||||
|
|
||||||
|
Macros:=GlobalMacroList;
|
||||||
|
FLazbuildMacros:=TStringListUTF8Fast.Create;
|
||||||
|
EnvVars:=TStringListUTF8Fast.Create;
|
||||||
|
Cfg:=GetIDEConfigStorage(aFilename,true);
|
||||||
|
try
|
||||||
|
Cfg.GetValue('Macros',FLazbuildMacros);
|
||||||
|
|
||||||
|
for i:=0 to FLazbuildMacros.Count-1 do
|
||||||
|
begin
|
||||||
|
s:=FLazbuildMacros[i];
|
||||||
|
p:=Pos('=',s);
|
||||||
|
if (p<2) then continue;
|
||||||
|
aMacroName:=LeftStr(s,p-1);
|
||||||
|
Value:=copy(s,p+1,length(s));
|
||||||
|
aMacro:=Macros.FindByName(aMacroName);
|
||||||
|
if aMacro<>nil then
|
||||||
|
continue; // macro exists
|
||||||
|
Macros.Add(TTransferMacro.Create(aMacroName,Value,'From IDE lazbuild macro list',nil,[]));
|
||||||
|
end;
|
||||||
|
finally
|
||||||
|
EnvVars.Free;
|
||||||
|
Cfg.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TLazIDEMacros.SaveLazbuildMacros;
|
||||||
|
var
|
||||||
|
aFilename, Value, s, aMacroName: String;
|
||||||
|
i: Integer;
|
||||||
|
aMacro: TTransferMacro;
|
||||||
|
NeedSave: Boolean;
|
||||||
|
Cfg: TConfigStorage;
|
||||||
|
Macros: TTransferMacroList;
|
||||||
|
p: SizeInt;
|
||||||
|
begin
|
||||||
|
aFilename:=AppendPathDelim(GetPrimaryConfigPath)+LazbuildMacrosFileName;
|
||||||
|
|
||||||
|
Macros:=GlobalMacroList;
|
||||||
|
|
||||||
|
NeedSave:=false;
|
||||||
|
|
||||||
|
// load old config
|
||||||
|
if FLazbuildMacros=nil then
|
||||||
|
begin
|
||||||
|
FLazbuildMacros:=TStringListUTF8Fast.Create;
|
||||||
|
Cfg:=GetIDEConfigStorage(aFilename,true);
|
||||||
|
try
|
||||||
|
Cfg.GetValue('Macros',FLazbuildMacros);
|
||||||
|
finally
|
||||||
|
Cfg.Free;
|
||||||
|
end;
|
||||||
|
FLazbuildMacroFileAge:=FileAgeUTF8(aFilename);
|
||||||
|
end;
|
||||||
|
|
||||||
|
// clean up old macros
|
||||||
|
for i:=FLazbuildMacros.Count-1 downto 0 do begin
|
||||||
|
s:=FLazbuildMacros[i];
|
||||||
|
p:=Pos('=',s);
|
||||||
|
if (p>1) then
|
||||||
|
begin
|
||||||
|
aMacroName:=LeftStr(s,p-1);
|
||||||
|
aMacro:=Macros.FindByName(aMacroName);
|
||||||
|
if (aMacro<>nil) and (tmfLazbuild in aMacro.Flags) then
|
||||||
|
continue;
|
||||||
|
end;
|
||||||
|
FLazbuildMacros.Delete(i);
|
||||||
|
NeedSave:=true;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// check new values
|
||||||
|
for i:=0 to Macros.Count-1 do
|
||||||
|
begin
|
||||||
|
aMacro:=Macros[i];
|
||||||
|
if not (tmfLazbuild in aMacro.Flags) then continue;
|
||||||
|
if aMacro.LazbuildValue<>'' then
|
||||||
|
Value:=aMacro.LazbuildValue
|
||||||
|
else
|
||||||
|
Value:=aMacro.Value;
|
||||||
|
if Value='' then
|
||||||
|
begin
|
||||||
|
// currently the macro is not set -> keep the old value
|
||||||
|
continue;
|
||||||
|
end;
|
||||||
|
if FLazbuildMacros.Values[aMacro.Name]<>Value then
|
||||||
|
begin
|
||||||
|
FLazbuildMacros.Values[aMacro.Name]:=Value;
|
||||||
|
NeedSave:=true;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if FLazbuildMacros.Count=0 then
|
||||||
|
begin
|
||||||
|
// no lazbuild macros -> delete config
|
||||||
|
if FileExistsCached(aFilename) then
|
||||||
|
DeleteFile(aFilename);
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if (not NeedSave) then
|
||||||
|
begin
|
||||||
|
if (not FileExistsCached(aFilename))
|
||||||
|
or ((FLazbuildMacroFileAge<>0) and (FileAgeCached(aFilename)<>FLazbuildMacroFileAge)) then
|
||||||
|
NeedSave:=true;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if not NeedSave then exit;
|
||||||
|
|
||||||
|
Cfg:=GetIDEConfigStorage(aFilename,false);
|
||||||
|
try
|
||||||
|
FLazbuildMacros.Clear;
|
||||||
|
for i:=0 to Macros.Count-1 do
|
||||||
|
begin
|
||||||
|
aMacro:=Macros[i];
|
||||||
|
if not (tmfLazbuild in aMacro.Flags) then continue;
|
||||||
|
if aMacro.LazbuildValue<>'' then
|
||||||
|
Value:=aMacro.LazbuildValue
|
||||||
|
else
|
||||||
|
Value:=aMacro.Value;
|
||||||
|
FLazbuildMacros.Add(aMacro.Name+'='+Value);
|
||||||
|
end;
|
||||||
|
Cfg.SetValue('Macros',FLazbuildMacros);
|
||||||
|
finally
|
||||||
|
Cfg.Free;
|
||||||
|
end;
|
||||||
|
FLazbuildMacroFileAge:=FileAgeUTF8(aFilename);
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
procedure InternalInit;
|
procedure InternalInit;
|
||||||
var
|
var
|
||||||
c: char;
|
c: char;
|
||||||
|
Loading…
Reference in New Issue
Block a user