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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by the Free Pascal development team
<What does this file>
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program 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.
**********************************************************************}
{ ---------------------------------------------------------------------
Environment variable auxiliary routines
---------------------------------------------------------------------}
Const
FPC_EnvCount : Integer = -1;
Function FPCCountEnvVar(EP : PPChar) : integer;
begin
If (FPC_EnvCount=-1) then
begin
FPC_EnvCount:=0;
If (EP<>Nil) then
While (EP^<>Nil) do
begin
Inc(FPC_EnvCount);
Inc(EP);
end;
end;
Result:=FPC_EnvCount;
end;
Function FPCGetEnvVarFromP(EP : PPChar; EnvVar : String) : String;
var
hp : ppchar;
lenvvar,hs : string;
eqpos : longint;
begin
lenvvar:=upcase(envvar);
hp:=EP;
Result:='';
If (hp<>Nil) then
while assigned(hp^) do
begin
hs:=strpas(hp^);
eqpos:=pos('=',hs);
if upcase(copy(hs,1,eqpos-1))=lenvvar then
begin
Result:=copy(hs,eqpos+1,length(hs)-eqpos);
exit;
end;
inc(hp);
end;
end;
Function FPCGetEnvStrFromP(EP : PPChar; Index : Integer) : String;
begin
Result:='';
while assigned(EP^) and (Index>1) do
begin
dec(Index);
inc(EP);
end;
if Assigned(EP^) then
Result:=EP^;
end;
{ these are extremely inefficient, but not much we can do about it because
changing their result type based on the supported OS-interfaces will change
program behaviour if they are passed as a parameter to overloaded routines }
{$ifndef SYSUTILS_HAS_ANSISTR_ENVVAR_IMPL}
Function GetEnvironmentVariable(Const EnvVar : AnsiString) : AnsiString;
begin
result:=AnsiString(GetEnvironmentVariable(UnicodeString(EnvVar)));
end;
{$endif not SYSUTILS_HAS_ANSISTR_ENVVAR_IMPL}
{$ifndef SYSUTILS_HAS_UNICODESTR_ENVVAR_IMPL}
Function GetEnvironmentVariable(Const EnvVar : UnicodeString) : UnicodeString;
begin
result:=UnicodeString(GetEnvironmentVariable(AnsiString(EnvVar)));
end;
{$endif not SYSUTILS_HAS_UNICODESTR_ENVVAR_IMPL}
{ ---------------------------------------------------------------------
Application name
---------------------------------------------------------------------}
Function VendorName : String;
begin
If Assigned(OnGetVendorName) then
Result:=OnGetVendorName()
else
Result:='';
end;
Function ApplicationName : String;
begin
If Assigned(OnGetApplicationName) then
Result:=OnGetApplicationName()
else
Result:=ChangeFileExt(ExtractFileName(Paramstr(0)),'');
end;
{ ---------------------------------------------------------------------
Default implementations for AppConfigDir implementation.
---------------------------------------------------------------------}
Function DGetAppConfigDir(Global : Boolean) : String;
begin
Result:=ExcludeTrailingPathDelimiter(ExtractFilePath(ParamStr(0)));
end;
Function DGetAppConfigFile(Global : Boolean; SubDir : Boolean) : String;
begin
Result:=IncludeTrailingPathDelimiter(GetAppConfigDir(Global));
if SubDir then
Result:=IncludeTrailingPathDelimiter(Result+'Config');
Result:=Result+ApplicationName+ConfigExtension;
end;
Function GetAppConfigFile(Global : Boolean) : String;
begin
Result:=GetAppConfigFile(Global,False);
end;
Function DGetUserDir : String;
begin
Result:=ExtractFilePath(Paramstr(0));
end;
{ ---------------------------------------------------------------------
Fallback implementations for AppConfigDir implementation.
---------------------------------------------------------------------}
{
If a particular OS does it different:
- set the HAS_OSCONFIG define before including sysutils.inc.
- implement the functions.
Default config assumes a DOS-like configuration.
}
{$ifndef HAS_OSCONFIG}
Function GetAppConfigDir(Global : Boolean) : String;
begin
Result:=DGetAppConfigDir(Global);
end;
Function GetAppConfigFile(Global : Boolean; SubDir : Boolean) : String;
begin
Result:=DGetAppConfigFile(Global,Subdir);
end;
{$endif}
{ ---------------------------------------------------------------------
Fallback implementations for GetUserDir implementation.
---------------------------------------------------------------------}
{
If a particular OS does it different:
- set the HAVE_OSUSERDIR define before including sysutils.inc.
- implement the function.
Default makes it the application directory. Rationale is that the result
will be used for config files, and it should exist. The application directory
has this for sure.
}
{$ifndef HAS_OSUSERDIR}
Function GetUserDir : String;
begin
Result:=DGetUserDir;
end;
{$endif}
{ ---------------------------------------------------------------------
Get temporary directory name
---------------------------------------------------------------------}
{$ifndef HAS_TEMPDIR}
Function GetTempDir(Global : Boolean) : String;
begin
If Assigned(OnGetTempDir) then
Result:=OnGetTempDir(Global)
else
begin
Result:=GetEnvironmentVariable('TEMP');
If (Result='') Then
Result:=GetEnvironmentVariable('TMP');
end;
if (Result<>'') then
Result:=IncludeTrailingPathDelimiter(Result);
end;
{$endif}
Function GetTempDir : String;
begin
Result:=GetTempDir(True);
end;
{ ---------------------------------------------------------------------
Get temporary file name
---------------------------------------------------------------------}
{$ifndef HAS_TEMPFILE}
Function GetTempFileName(Const Dir,Prefix : String) : String;
Var
I : Integer;
Start : String;
begin
If Assigned(OnGetTempFile) then
Result:=OnGetTempFile(Dir,Prefix)
else
begin
If (Dir='') then
Start:=GetTempDir
else
Start:=IncludeTrailingPathDelimiter(Dir);
If (Prefix='') then
Start:=Start+'TMP'
else
Start:=Start+Prefix;
I:=0;
Repeat
Result:=Format('%s%.5d.tmp',[Start,I]);
Inc(I);
Until not (FileExists(Result) or DirectoryExists(Result));
end;
end;
{$endif}
Function GetTempFileName : String;
begin
Result:=GetTempFileName('','');
end;
{$if not(defined(win32)) and not(defined(win64))}
Function GetTempFileName(Dir,Prefix: PChar; uUnique: DWORD; TempFileName: PChar):DWORD;
Var
P,Buf : String;
L : Integer;
begin
P:=StrPas(Prefix);
if (uUnique<>0) then
P:=P+format('%.4x',[uUnique]);
Buf:=GetTempFileName(StrPas(Dir),P);
L:=Length(Buf);
If (L>0) then
Move(Buf[1],TempFileName^,L+1);
if (uUnique<>0) then
result:=uUnique
else
result:=1;
end;
{$endif}
|