mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-27 16:11:29 +01:00
"widechar in set" compiles, but results in a runtime conversion of
the widechar into an ansistring and then getting the first character
of that ansistring, which is horribly slow -- and Delphi-incompatible,
but introduced a long time ago because of bug #7758)
* replaced all "in" operations in sysutils fina.inc with CharInSet for
the same reason
* replaced all "string" declarations in finah.inc/fina.inc with "PathStr"
and "pchar" with "PathPChar", and include them twice in sysutilh.inc/
sysutils.inc, once with PathStr=UnicodeString/PathPChar=PWideChar and
once with PathStr=AnsiString/PathPChar=PAnsiChar (not rawbytestring
because there are several routines with var-parameters and then the
string type has to match exactly; the "rtlproc" modifier could circumvent
this, but should be used sparingly, and additionally the routine's
internals would then first also have to be reviewed to ensure that at
no point they start mixing in strings with the defaultsystemcodepage
(e.g. directory separators) without first adjusting their codepage)
* call GetShortPathNameA or GetShortPathNameW in ExtractShortPathName on
Windows depending on whether we are parsing the RawByteString/UnicodeString
version of fina.inc
+ ExpandUNCFileName(unicode) version for Windows, let its
ExpandUNCFileName(ansistring) call the unicode version (avoid data loss
due to ansi conversion) and convert the result to
DefaultRTLFileSystemCodePage (to have no more data loss than what's
specified by the user)
git-svn-id: branches/cpstrrtl@24999 -
347 lines
9.0 KiB
PHP
347 lines
9.0 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2000 by Florian Klaempfl
|
|
member of the Free Pascal development team
|
|
|
|
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.
|
|
|
|
**********************************************************************}
|
|
{ Using inlining for small system functions/wrappers }
|
|
{$inline on}
|
|
{$define SYSUTILSINLINE}
|
|
|
|
{ Read internationalization settings }
|
|
{$i sysinth.inc}
|
|
|
|
{ Read date & Time function declarations }
|
|
{$i osutilsh.inc}
|
|
|
|
{$ifndef FPUNONE}
|
|
{$i datih.inc}
|
|
{$endif}
|
|
|
|
function GetTickCount: LongWord; deprecated 'Use GetTickCount64 instead';
|
|
function GetTickCount64: QWord;
|
|
|
|
{ Read String Handling functions declaration }
|
|
{$i sysstrh.inc}
|
|
|
|
type
|
|
{ some helpful data types }
|
|
|
|
THandle = System.THandle;
|
|
|
|
TProcedure = procedure;
|
|
|
|
TFilename = String;
|
|
|
|
TIntegerSet = Set of 0..SizeOf(Integer)*8-1;
|
|
|
|
LongRec = packed record
|
|
case Integer of
|
|
{$ifdef FPC_LITTLE_ENDIAN}
|
|
0 : (Lo,Hi : Word);
|
|
{$else FPC_LITTLE_ENDIAN}
|
|
0 : (Hi,Lo : Word);
|
|
{$endif FPC_LITTLE_ENDIAN}
|
|
1 : (Bytes : Array[0..3] of Byte);
|
|
end;
|
|
|
|
WordRec = packed record
|
|
{$ifdef FPC_LITTLE_ENDIAN}
|
|
Lo,Hi : Byte;
|
|
{$else FPC_LITTLE_ENDIAN}
|
|
Hi,Lo : Byte;
|
|
{$endif FPC_LITTLE_ENDIAN}
|
|
end;
|
|
|
|
Int64Rec = packed record
|
|
case integer of
|
|
{$ifdef FPC_LITTLE_ENDIAN}
|
|
0 : (Lo,Hi : Cardinal);
|
|
{$else FPC_LITTLE_ENDIAN}
|
|
0 : (Hi,Lo : Cardinal);
|
|
{$endif FPC_LITTLE_ENDIAN}
|
|
1 : (Words : Array[0..3] of Word);
|
|
2 : (Bytes : Array[0..7] of Byte);
|
|
end;
|
|
|
|
Int128Rec = packed record
|
|
case integer of
|
|
{$ifdef FPC_LITTLE_ENDIAN}
|
|
0 : (Lo,Hi : QWord);
|
|
{$else FPC_LITTLE_ENDIAN}
|
|
0 : (Hi,Lo : QWord);
|
|
{$endif FPC_LITTLE_ENDIAN}
|
|
1 : (DWords : Array[0..3] of DWord);
|
|
2 : (Words : Array[0..7] of Word);
|
|
3 : (Bytes : Array[0..15] of Byte);
|
|
end;
|
|
|
|
OWordRec = packed record
|
|
case integer of
|
|
{$ifdef FPC_LITTLE_ENDIAN}
|
|
0 : (Lo,Hi : QWord);
|
|
{$else FPC_LITTLE_ENDIAN}
|
|
0 : (Hi,Lo : QWord);
|
|
{$endif FPC_LITTLE_ENDIAN}
|
|
1 : (DWords : Array[0..3] of DWord);
|
|
2 : (Words : Array[0..7] of Word);
|
|
3 : (Bytes : Array[0..15] of Byte);
|
|
end;
|
|
|
|
PByteArray = ^TByteArray;
|
|
TByteArray = Array[0..{$ifdef CPU16}32766{$else}32767{$endif}] of Byte;
|
|
|
|
PWordarray = ^TWordArray;
|
|
TWordArray = array[0..{$ifdef CPU16}16382{$else}16383{$endif}] of Word;
|
|
|
|
TBytes = array of Byte;
|
|
|
|
{ exceptions }
|
|
Exception = class(TObject)
|
|
private
|
|
fmessage : string;
|
|
fhelpcontext : longint;
|
|
public
|
|
constructor Create(const msg : string);
|
|
constructor CreateFmt(const msg : string; const args : array of const);
|
|
constructor CreateRes(ResString: PString);
|
|
constructor CreateResFmt(ResString: PString; const Args: array of const);
|
|
constructor CreateHelp(const Msg: string; AHelpContext: Integer);
|
|
constructor CreateFmtHelp(const Msg: string; const Args: array of const;
|
|
AHelpContext: Integer);
|
|
constructor CreateResHelp(ResString: PString; AHelpContext: Integer);
|
|
constructor CreateResFmtHelp(ResString: PString; const Args: array of const;
|
|
AHelpContext: Integer);
|
|
{ !!!! }
|
|
property HelpContext : longint read fhelpcontext write fhelpcontext;
|
|
property Message : string read fmessage write fmessage;
|
|
end;
|
|
|
|
ExceptClass = class of Exception;
|
|
|
|
EExternal = class(Exception)
|
|
{$ifdef windows}
|
|
{ OS-provided exception record is stored on stack and has very limited lifetime.
|
|
Therefore store a complete copy. }
|
|
private
|
|
FExceptionRecord: TExceptionRecord;
|
|
function GetExceptionRecord: PExceptionRecord;
|
|
public
|
|
property ExceptionRecord : PExceptionRecord read GetExceptionRecord;
|
|
{$endif windows}
|
|
end;
|
|
|
|
{ integer math exceptions }
|
|
EInterror = Class(EExternal);
|
|
EDivByZero = Class(EIntError);
|
|
ERangeError = Class(EIntError);
|
|
EIntOverflow = Class(EIntError);
|
|
|
|
{ General math errors }
|
|
EMathError = Class(EExternal);
|
|
EInvalidOp = Class(EMathError);
|
|
EZeroDivide = Class(EMathError);
|
|
EOverflow = Class(EMathError);
|
|
EUnderflow = Class(EMathError);
|
|
|
|
{ Run-time and I/O Errors }
|
|
EInOutError = class(Exception)
|
|
public
|
|
ErrorCode : Longint;
|
|
end;
|
|
|
|
EHeapMemoryError = class(Exception)
|
|
protected
|
|
AllowFree : boolean;
|
|
public
|
|
procedure FreeInstance;override;
|
|
end;
|
|
|
|
EHeapException = EHeapMemoryError;
|
|
|
|
EExternalException = class(EExternal);
|
|
EInvalidPointer = Class(EHeapMemoryError);
|
|
EOutOfMemory = Class(EHeapMemoryError);
|
|
EInvalidCast = Class(Exception);
|
|
EVariantError = Class(Exception)
|
|
ErrCode : longint;
|
|
Constructor CreateCode(Code : Longint);
|
|
end;
|
|
|
|
EAccessViolation = Class(EExternal);
|
|
EBusError = Class(EAccessViolation);
|
|
EPrivilege = class(EExternal);
|
|
EStackOverflow = class(EExternal);
|
|
EControlC = class(EExternal);
|
|
|
|
{ String conversion errors }
|
|
EConvertError = class(Exception);
|
|
EFormatError = class(Exception);
|
|
|
|
{ Other errors }
|
|
EAbort = Class(Exception);
|
|
EAbstractError = Class(Exception);
|
|
EAssertionFailed = Class(Exception);
|
|
EObjectCheck = Class(Exception);
|
|
|
|
EPropReadOnly = class(Exception);
|
|
EPropWriteOnly = class(Exception);
|
|
|
|
EIntfCastError = class(Exception);
|
|
EInvalidContainer = class(Exception);
|
|
EInvalidInsert = class(Exception);
|
|
|
|
EPackageError = class(Exception);
|
|
|
|
EOSError = class(Exception)
|
|
public
|
|
ErrorCode: Longint;
|
|
end;
|
|
|
|
ESafecallException = class(Exception);
|
|
ENoThreadSupport = Class(Exception);
|
|
ENoWideStringSupport = Class(Exception);
|
|
ENotImplemented = class(Exception);
|
|
|
|
EArgumentException = class(Exception);
|
|
EArgumentOutOfRangeException = class(EArgumentException);
|
|
|
|
ENoConstructException = class(Exception);
|
|
|
|
{ Exception handling routines }
|
|
function ExceptObject: TObject;
|
|
function ExceptAddr: Pointer;
|
|
function ExceptFrameCount: Longint;
|
|
function ExceptFrames: PPointer;
|
|
function ExceptionErrorMessage(ExceptObject: TObject; ExceptAddr: Pointer;
|
|
Buffer: PChar; Size: Integer): Integer;
|
|
procedure ShowException(ExceptObject: TObject; ExceptAddr: Pointer);
|
|
procedure Abort;
|
|
procedure OutOfMemoryError;
|
|
|
|
|
|
Type
|
|
TBeepHandler = Procedure;
|
|
|
|
Var
|
|
OnBeep : TBeephandler = Nil;
|
|
|
|
procedure Beep;
|
|
function SysErrorMessage(ErrorCode: Integer): String;
|
|
|
|
Type
|
|
TCreateGUIDFunc = Function(Out GUID : TGUID) : Integer;
|
|
|
|
Var
|
|
OnCreateGUID : TCreateGUIDFunc = Nil;
|
|
Function CreateGUID(out GUID : TGUID) : Integer;
|
|
|
|
type
|
|
TTerminateProc = Function: Boolean;
|
|
|
|
procedure AddTerminateProc(TermProc: TTerminateProc);
|
|
function CallTerminateProcs: Boolean;
|
|
|
|
|
|
Var
|
|
OnShowException : Procedure (Msg : ShortString);
|
|
|
|
{ FileRec/TextRec }
|
|
{$i filerec.inc}
|
|
{$i textrec.inc}
|
|
|
|
Const
|
|
HexDisplayPrefix : string = '$';
|
|
|
|
const
|
|
// commenting is VP fix. These idents are in a different unit there.
|
|
PathDelim={System.}DirectorySeparator;
|
|
DriveDelim={System.}DriveSeparator;
|
|
PathSep={System.}PathSeparator;
|
|
MAX_PATH={System.}MaxPathLen;
|
|
|
|
Type
|
|
TFileRec=FileRec;
|
|
TTextRec=TextRec;
|
|
|
|
|
|
{ Read pchar handling functions declaration }
|
|
{$i syspchh.inc}
|
|
|
|
{ MCBS functions }
|
|
{$i sysansih.inc}
|
|
{$i syscodepagesh.inc}
|
|
|
|
{ wide string functions }
|
|
{$i syswideh.inc}
|
|
|
|
{$ifdef FPC_HAS_UNICODESTRING}
|
|
{ unicode string functions }
|
|
{$i sysunih.inc}
|
|
{$i sysencodingh.inc}
|
|
{$endif FPC_HAS_UNICODESTRING}
|
|
|
|
{$macro on}
|
|
{$define PathStr:=UnicodeString}
|
|
{$define PathPChar:=PWideChar}
|
|
{ Read filename handling functions declaration }
|
|
{$i finah.inc}
|
|
{$define PathStr:=AnsiString}
|
|
{$define PathPChar:=PAnsiChar}
|
|
{ Read filename handling functions declaration }
|
|
{$i finah.inc}
|
|
{$undef PathStr}
|
|
{$undef PathPChar}
|
|
|
|
{ Read other file handling function declarations }
|
|
{$i filutilh.inc}
|
|
|
|
{ Read disk function declarations }
|
|
{$i diskh.inc}
|
|
|
|
{ read thread handling }
|
|
{$i systhrdh.inc}
|
|
|
|
procedure FreeAndNil(var obj);
|
|
|
|
{ interface handling }
|
|
{$i intfh.inc}
|
|
|
|
function SafeLoadLibrary(const FileName: AnsiString;
|
|
ErrorMode: DWord = {$ifdef windows}SEM_NOOPENFILEERRORBOX{$else windows}0{$endif windows}): HMODULE;
|
|
|
|
function GetModuleName(Module: HMODULE): string;
|
|
|
|
{ some packages and unit related constants for compatibility }
|
|
|
|
const
|
|
pfExeModule = $00000000;
|
|
pfNeverBuild = $00000001;
|
|
pfDesignOnly = $00000002;
|
|
pfRunOnly = $00000004;
|
|
pfIgnoreDupUnits = $00000008;
|
|
pfPackageModule = $40000000;
|
|
pfModuleTypeMask = $C0000000;
|
|
pfV3Produced = $00000000;
|
|
pfProducerUndefined = $04000000;
|
|
pfBCB4Produced = $08000000;
|
|
pfDelphi4Produced = $0C000000;
|
|
pfLibraryModule = $80000000;
|
|
pfProducerMask = $0C000000;
|
|
|
|
const
|
|
ufMainUnit = $01;
|
|
ufPackageUnit = $02;
|
|
ufWeakUnit = $04;
|
|
ufOrgWeakUnit = $08;
|
|
ufImplicitUnit = $10;
|
|
|
|
ufWeakPackageUnit = ufPackageUnit or ufWeakUnit;
|