lazarus/ide/lazconf.pp
mattias d551fda25d IDE: lazconf: clean up
git-svn-id: trunk@32520 -
2011-09-26 19:12:39 +00:00

474 lines
15 KiB
ObjectPascal

{
/***************************************************************************
lazconf.pp
-------------------
Lazarus Config Functions
Initial Revision : Tue Apr 18 22:10:00 CET 2000
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
{
@author(Config Path Functions - Curtis White <cwhite@aracnet.com>)
@created(18-Apr-2000)
@lastmod(18-Apr-2000)
This unit contains functions to manage OS specific configuration path
information from within Lazarus.
}
unit LazConf;
{$mode objfpc}{$H+}
interface
{$ifdef Trace}
{$ASSERTIONS ON}
{$endif}
uses
SysUtils, Classes, FileUtil, LCLProc, DefineTemplates,
InterfaceBase;
const
LazarusVersionStr = {$I version.inc};
LCLPlatformDisplayNames: array[TLCLPlatform] of string = (
'gtk (deprecated)',
'gtk 2',
'win32/win64',
'wince (beta)',
'carbon',
'qt',
'fpGUI (alpha)',
'NoGUI',
'cocoa (alpha)',
'android (pre-alpha)'
);
{ Config Path Functions }
{ The primary config path is the local or user specific path.
If the primary config path does not exist, it will automatically be
created by the IDE.
The secondary config path is for templates. The IDE will never write to it.
If a config file is not found in the primary config file, Lazarus will
copy the template file from the secondary config file. If there is no
template file, the IDE will use defaults.
}
function GetPrimaryConfigPath: String;
function GetSecondaryConfigPath: String;
procedure CreatePrimaryConfigPath;
procedure SetPrimaryConfigPath(const NewValue: String);
procedure SetSecondaryConfigPath(const NewValue: String);
procedure CopySecondaryConfigFile(const AFilename: String);
function GetProjectSessionsConfigPath: String;
function GetDefaultTestBuildDirectory: string;
procedure GetDefaultTestBuildDirs(List: TStrings);
// create a pascal file, which can be used to test the compiler
function CreateCompilerTestPascalFilename: string;
function FindDefaultExecutablePath(const Executable: string): string;
function GetDefaultCompilerFilename: string; // e.g. ppc386.exe
procedure GetDefaultCompilerFilenames(List: TStrings); // list of standard paths of compiler on various distributions
function FindDefaultCompilerPath: string; // full path of GetDefaultCompilerFilename
function FindDefaultMakePath: string; // full path of "make"
procedure GetDefaultMakeFilenames(List: TStrings); // list of standard paths of "make" on various distributions
function GetDefaultFPCSrcDirectories: TStringList;
function GetDefaultLazarusSrcDirectories: TStringList;
function CheckFPCSourceDir(ADirectory: string): boolean;
function CheckLazarusDirectory(const ADirectory: string): boolean;
function GetDefaultTargetCPU: string;
function GetDefaultTargetOS: string;
// returns the standard executable extension (e.g '.exe')
function GetExecutableExt(TargetOS: string = ''): string;
function MakeStandardExeFilename(TargetOS, Filename: string): string;
// returns the standard library extension (e.g '.dll' or '.dylib')
function GetLibraryExt(TargetOS: string = ''): string;
// returns the standard library prefix (e.g 'lib')
function GetLibraryPrefix(TargetOS: string = ''): string;
function MakeStandardLibFilename(TargetOS, Filename: string): string;
// returns the standard file extension for compiled units (e.g '.ppu')
function GetDefaultCompiledUnitExt({%H-}FPCVersion, {%H-}FPCRelease: integer): string;
function OSLocksExecutables: boolean;
// returns the default browser
procedure GetDefaultBrowser(var Browser, Params: string);
// LCL
function GetDefaultLCLWidgetType: TLCLPlatform;
function DirNameToLCLPlatform(const ADirName: string): TLCLPlatform;
// Replace OnGetApplicationName, so that Application.Title
// doesn't interfere with GetAppConfigDir and related.
function GetLazarusApplicationName: string;
type
TLazConfMacroFunc = procedure(var s: string);
var
LazConfMacroFunc: TLazConfMacroFunc = nil;
procedure LazConfSubstituteMacros(var s: string);
procedure AddFilenameToList(List: TStrings; const Filename: string;
SkipEmpty: boolean = true);
const
EmptyLine = LineEnding + LineEnding;
EndOfLine: shortstring = LineEnding;
const
ExitCodeRestartLazarus = 99;
var
// set by lazbuild.lpr and used by GetDefaultLCLWidgetType
BuildLCLWidgetType: TLCLPlatform =
{$IFDEF MSWindows}{$DEFINE WidgetSetDefined}
lpWin32;
{$ENDIF}
{$IFDEF darwin}{$DEFINE WidgetSetDefined}
lpCarbon;
{$ENDIF}
{$IFNDEF WidgetSetDefined}
lpGtk2;
{$ENDIF}
implementation
{$I lazconf.inc}
procedure AddFilenameToList(List: TStrings; const Filename: string;
SkipEmpty: boolean);
var
i: Integer;
begin
if SkipEmpty and (Filename='') then exit;
for i:=0 to List.Count-1 do
if CompareFilenames(List[i],Filename)=0 then exit;
List.Add(Filename);
end;
function GetLazarusApplicationName: string;
begin
Result := 'lazarus';
end;
procedure LazConfSubstituteMacros(var s: string);
begin
if Assigned(LazConfMacroFunc) then
LazConfMacroFunc(s);
end;
{---------------------------------------------------------------------------
function CreateCompilerTestPascalFilename: string;
---------------------------------------------------------------------------}
function CreateCompilerTestPascalFilename: string;
function CreateFile(const Filename: string): boolean;
var
fs: TFileStream;
begin
if FileExistsUTF8(Filename) then exit(true);
Result:=false;
try
fs:=TFileStream.Create(UTF8ToSys(Filename),fmCreate);
fs.Free;
Result:=true;
except
end;
end;
begin
Result:=AppendPathDelim(GetPrimaryConfigPath)+'compilertest.pas';
if CreateFile(Result) then exit;
Result:=AppendPathDelim(GetTempDir)+'compilertest.pas';
if CreateFile(Result) then exit;
Debugln('unable to create temporay file ',Result);
Result:='';
end;
function FindDefaultExecutablePath(const Executable: string): string;
begin
if FilenameIsAbsolute(Executable) then
Result:=Executable
else
Result:=SearchFileInPath(Executable,'',
GetEnvironmentVariableUTF8('PATH'),':',
[sffDontSearchInBasePath]);
end;
function GetDefaultLCLWidgetType: TLCLPlatform;
begin
if (WidgetSet<>nil) and (WidgetSet.LCLPlatform<>lpNoGUI) then
Result:=WidgetSet.LCLPlatform
else
Result:=BuildLCLWidgetType;
end;
function DirNameToLCLPlatform(const ADirName: string): TLCLPlatform;
begin
for Result:=Low(TLCLPlatform) to High(TLCLPlatform) do
if CompareText(ADirName,LCLPlatformDirNames[Result])=0 then exit;
Result:=lpGtk2;
end;
{---------------------------------------------------------------------------
getPrimaryConfigPath function
---------------------------------------------------------------------------}
function GetPrimaryConfigPath: String;
begin
Result := PrimaryConfigPath;
end;
{---------------------------------------------------------------------------
getSecondaryConfigPath function
---------------------------------------------------------------------------}
function GetSecondaryConfigPath: String;
begin
Result := SecondaryConfigPath;
end;
{---------------------------------------------------------------------------
createPrimaryConfigPath procedure
---------------------------------------------------------------------------}
procedure CreatePrimaryConfigPath;
begin
CreateDirUTF8(GetPrimaryConfigPath);
end;
{---------------------------------------------------------------------------
SetPrimaryConfigPath procedure
---------------------------------------------------------------------------}
procedure SetPrimaryConfigPath(const NewValue: String);
begin
debugln('SetPrimaryConfigPath NewValue="',UTF8ToConsole(NewValue),'" -> "',UTF8ToConsole(ExpandFileNameUTF8(NewValue)),'"');
PrimaryConfigPath := AppendPathDelim(ExpandFileNameUTF8(NewValue));
end;
{---------------------------------------------------------------------------
SetSecondaryConfigPath procedure
---------------------------------------------------------------------------}
procedure SetSecondaryConfigPath(const NewValue: String);
begin
debugln('SetSecondaryConfigPath NewValue="',UTF8ToConsole(NewValue),'" -> "',UTF8ToConsole(ExpandFileNameUTF8(NewValue)),'"');
SecondaryConfigPath := AppendPathDelim(ExpandFileNameUTF8(NewValue));
end;
{---------------------------------------------------------------------------
CopySecondaryConfigFile procedure
---------------------------------------------------------------------------}
procedure CopySecondaryConfigFile(const AFilename: String);
var
PrimaryFilename, SecondaryFilename: string;
SrcFS, DestFS: TFileStream;
begin
PrimaryFilename:=GetPrimaryConfigPath+PathDelim+AFilename;
SecondaryFilename:=GetSecondaryConfigPath+PathDelim+AFilename;
if (not FileExistsUTF8(PrimaryFilename))
and (FileExistsUTF8(SecondaryFilename)) then begin
try
SrcFS:=TFileStream.Create(UTF8ToSys(SecondaryFilename),fmOpenRead);
try
DestFS:=TFileStream.Create(UTF8ToSys(PrimaryFilename),fmCreate);
try
DestFS.CopyFrom(SrcFS,SrcFS.Size);
finally
DestFS.Free;
end;
finally
SrcFS.Free;
end;
except
end;
end;
end;
function GetProjectSessionsConfigPath: String;
begin
Result:=AppendPathDelim(GetPrimaryConfigPath)+'projectsessions';
end;
function GetExecutableExt(TargetOS: string): string;
begin
if TargetOS='' then
TargetOS:=GetDefaultTargetOS;
if (CompareText(copy(TargetOS,1,3), 'win') = 0)
or (CompareText(copy(TargetOS,1,3), 'dos') = 0) then
Result:='.exe'
else
Result:='';
end;
function MakeStandardExeFilename(TargetOS, Filename: string): string;
var
StdExt: String;
begin
Result:=Filename;
if TargetOS='' then
TargetOS:=GetDefaultTargetOS;
StdExt:=GetExecutableExt(TargetOS);
if StdExt='' then exit;
Result:=ChangeFileExt(Result,StdExt);
end;
function GetLibraryExt(TargetOS: string): string;
begin
if TargetOS='' then
TargetOS:=GetDefaultTargetOS;
if CompareText(copy(TargetOS,1,3), 'win') = 0 then
Result:='.dll'
else if CompareText(TargetOS, 'darwin') = 0 then
Result:='.dylib'
else if (CompareText(TargetOS, 'linux') = 0)
or (CompareText(TargetOS, 'freebsd') = 0)
or (CompareText(TargetOS, 'openbsd') = 0)
or (CompareText(TargetOS, 'netbsd') = 0)
or (CompareText(TargetOS, 'haiku') = 0) then
Result:='.so'
else
Result:='';
end;
function GetLibraryPrefix(TargetOS: string): string;
var
SrcOS: String;
begin
if TargetOS='' then
TargetOS:=GetDefaultTargetOS;
Result:='';
SrcOS:=GetDefaultSrcOSForTargetOS(TargetOS);
if CompareText(SrcOS, 'unix') = 0 then
Result:='lib';
end;
function MakeStandardLibFilename(TargetOS, Filename: string): string;
var
StdExt: String;
StdPrefix: String;
begin
Result:=Filename;
if TargetOS='' then
TargetOS:=GetDefaultTargetOS;
// change extension
StdExt:=GetLibraryExt(TargetOS);
if StdExt<>'' then
Result:=ChangeFileExt(Result,StdExt);
// change prefix
StdPrefix:=GetLibraryPrefix(TargetOS);
if StdPrefix<>'' then
Result:=ExtractFilePath(Result)+StdPrefix+ExtractFileName(Result);
// lowercase
if (CompareText(TargetOS,'linux')=0)
or (CompareText(TargetOS,'freebsd')=0)
or (CompareText(TargetOS,'netbsd')=0)
or (CompareText(TargetOS,'openbsd')=0)
then
Result:=ExtractFilePath(Result)+lowercase(ExtractFileName(Result));
end;
function GetDefaultTargetOS: string;
begin
Result:=lowerCase({$I %FPCTARGETOS%});
end;
function GetDefaultTargetCPU: string;
begin
Result:=lowerCase({$I %FPCTARGETCPU%});
end;
function GetDefaultCompilerFilename: string;
begin
Result:=DefineTemplates.GetDefaultCompilerFilename;
end;
function GetDefaultLazarusSrcDirectories: TStringList;
var
i: Integer;
begin
Result:=TStringList.Create;
for i:=low(DefaultLazarusSrcDirs) to high(DefaultLazarusSrcDirs) do
Result.Add(DefaultLazarusSrcDirs[i]);
end;
function CheckFPCSourceDir(ADirectory: string): boolean;
var
Dir: String;
begin
Result:=false;
LazConfSubstituteMacros(ADirectory);
if DirPathExists(ADirectory) then begin
Dir:=AppendPathDelim(ADirectory);
// test on rtl/inc, to prevent a false positive on a fpc compiled units dir
// fpc 2.0: fcl is in fcl directory in fpc 2.0.x,
// fpc 2.1 and later: fcl is in packages/fcl-base
Result:=DirPathExists(Dir+SetDirSeparators('rtl/inc'))
and (DirPathExists(SetDirSeparators(Dir+'packages/fcl-base'))
or DirPathExists(SetDirSeparators(Dir+'fcl')));
end;
end;
function GetDefaultFPCSrcDirectories: TStringList;
var
i: Integer;
begin
Result:=TStringList.Create;
for i:=low(DefaultFPCSrcDirs) to high(DefaultFPCSrcDirs) do
Result.Add(DefaultFPCSrcDirs[i]);
end;
function FindDefaultLazarusSrcDirectory: string;
var
i: integer;
begin
for i:=Low(DefaultLazarusSrcDirs) to High(DefaultLazarusSrcDirs) do begin
Result:=DefaultLazarusSrcDirs[i];
if CheckLazarusDirectory(Result) then exit;
end;
Result:='';
end;
function CheckLazarusDirectory(const ADirectory: string): boolean;
var
Dir: String;
begin
Result:=false;
if DirPathExists(ADirectory) then begin
Dir:=AppendPathDelim(ADirectory);
Result:=DirPathExists(Dir+'lcl')
and DirPathExists(Dir+'components')
and DirPathExists(Dir+'ide')
and DirPathExists(Dir+'ideintf')
and DirPathExists(Dir+'designer')
and DirPathExists(Dir+'debugger');
end;
end;
initialization
InternalInit;
end.