123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by the Free Pascal development team
- This unit makes Free Pascal as much as possible Delphi compatible
- 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.
- **********************************************************************}
- {$Mode ObjFpc}
- {$I-}
- {$ifndef Unix}
- {$S-}
- {$endif}
- unit objpas;
- interface
- { first, in object pascal, the integer type must be redefined }
- {$ifdef CPU16}
- const
- MaxInt = MaxSmallint;
- type
- Integer = smallint;
- PInteger = ^Integer;
- {$else CPU16}
- const
- MaxInt = MaxLongint;
- type
- Integer = longint;
- PInteger = ^Integer;
- {$endif CPU16}
- { Ansistring are the default }
- PString = PAnsiString;
- { array types }
- {$ifdef CPU16}
- IntegerArray = array[0..(32768 div SizeOf(Integer))-2] of Integer;
- {$else CPU16}
- IntegerArray = array[0..$effffff] of Integer;
- {$endif CPU16}
- TIntegerArray = IntegerArray;
- PIntegerArray = ^IntegerArray;
- {$ifdef CPU16}
- PointerArray = array [0..(32768 div SizeOf(Pointer))-2] of Pointer;
- {$else CPU16}
- PointerArray = array [0..512*1024*1024-2] of Pointer;
- {$endif CPU16}
- TPointerArray = PointerArray;
- PPointerArray = ^PointerArray;
- // Delphi Berlin compatibility
- FixedInt = Int32;
- FixedUInt = UInt32;
-
- {$if FPC_FULLVERSION >= 20701}
- { Generic array type.
- Slightly Less useful in FPC, since dyn array compatibility is at the element level.
- But still useful for generic methods and of course Delphi compatibility}
-
- Generic TArray<T> = Array of T;
-
- { Generic support for enumerator interfaces. These are added here, because
- mode (Obj)FPC does currently not allow the overloading of types with
- generic types (this will need a modeswitch...) }
- { Note: In Delphi these two generic types inherit from the two interfaces
- above, but in FPC as well as in Delphi(!) this leads to problems,
- because of method hiding and method implementation. E.g.
- consider a class which enumerates integers one needs to implement
- a GetCurrent for TObject as well... }
- generic IEnumerator<T> = interface
- function GetCurrent: T;
- function MoveNext: Boolean;
- procedure Reset;
- property Current: T read GetCurrent;
- end;
- generic IEnumerable<T> = interface
- function GetEnumerator: specialize IEnumerator<T>;
- end;
- {$endif}
- {$SCOPEDENUMS ON}
- TEndian = (Little,Big);
- {$SCOPEDENUMS OFF}
- {$ifdef FPC_HAS_FEATURE_CLASSES}
- Var
- ExceptionClass: TClass; { Exception base class (must actually be Exception, defined in sysutils ) }
- {$endif FPC_HAS_FEATURE_CLASSES}
- {****************************************************************************
- Compatibility routines.
- ****************************************************************************}
- {$ifdef FPC_HAS_FEATURE_FILEIO}
- { Untyped file support }
- Procedure AssignFile(out f:File;p:pchar);
- Procedure AssignFile(out f:File;c:char);
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out f:File;const Name:UnicodeString);
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out f:File;const Name:RawByteString);
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure CloseFile(var f:File);
- {$endif FPC_HAS_FEATURE_FILEIO}
- {$ifdef FPC_HAS_FEATURE_TEXTIO}
- { Text file support }
- Procedure AssignFile(out t:Text;p:pchar);
- Procedure AssignFile(out t:Text;c:char);
- Procedure AssignFile(out t:Text;p:pchar; aCodePage : TSystemCodePage);
- Procedure AssignFile(out t:Text;c:char; aCodePage : TSystemCodePage);
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out t:Text;const Name:UnicodeString);
- Procedure AssignFile(out t:Text;const Name:UnicodeString; aCodePage : TSystemCodePage);
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out t:Text;const Name:RawByteString);
- Procedure AssignFile(out t:Text;const Name:RawByteString; aCodePage : TSystemCodePage);
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure CloseFile(Var t:Text);
- {$endif FPC_HAS_FEATURE_TEXTIO}
- {$ifdef FPC_HAS_FEATURE_FILEIO}
- { Typed file supoort }
- Procedure AssignFile(out f:TypedFile;p:pchar);
- Procedure AssignFile(out f:TypedFile;c:char);
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out f:TypedFile;const Name:UnicodeString);
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out f:TypedFile;const Name:RawByteString);
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- {$endif FPC_HAS_FEATURE_FILEIO}
- {$ifdef FPC_HAS_FEATURE_COMMANDARGS}
- {$ifdef MSWINDOWS}
- {$define HAS_PARAMSTRA}
- {$undef FPC_HAS_FEATURE_COMMANDARGS} // Skip the implementation of ParamStr()
- {$endif MSWINDOWS}
- { ParamStr should return also an ansistring }
- Function ParamStr(Param : Integer) : Ansistring;
- {$ifdef HAS_PARAMSTRA} external name '_FPC_ParamStrA'; {$endif}
- {$endif FPC_HAS_FEATURE_COMMANDARGS}
- {****************************************************************************
- Resource strings.
- ****************************************************************************}
- {$ifdef FPC_HAS_FEATURE_RESOURCES}
- type
- TResourceIterator = Function (Name,Value : AnsiString; Hash : Longint; arg:pointer) : AnsiString;
- Function Hash(S : AnsiString) : LongWord;
- Procedure ResetResourceTables;
- Procedure FinalizeResourceTables;
- Procedure SetResourceStrings (SetFunction : TResourceIterator;arg:pointer);
- Procedure SetUnitResourceStrings (const UnitName:string;SetFunction : TResourceIterator;arg:pointer);
- { Delphi compatibility }
- type
- PResStringRec=^AnsiString;
- TResStringRec=AnsiString;
- Function LoadResString(p:PResStringRec):AnsiString;
- {$endif FPC_HAS_FEATURE_RESOURCES}
- implementation
- {****************************************************************************
- Compatibility routines.
- ****************************************************************************}
- {$ifdef FPC_HAS_FEATURE_FILEIO}
- { Untyped file support }
- Procedure AssignFile(out f:File;p:pchar);
- begin
- System.Assign (F,p);
- end;
- Procedure AssignFile(out f:File;c:char);
- begin
- System.Assign (F,c);
- end;
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out f:File;const Name:RawBytestring);
- begin
- System.Assign (F,Name);
- end;
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out f:File;const Name:UnicodeString);
- begin
- System.Assign (F,Name);
- end;
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure CloseFile(Var f:File); [IOCheck];
- begin
- { Catch Runtime error/Exception }
- System.Close(f);
- end;
- {$endif FPC_HAS_FEATURE_FILEIO}
- {$ifdef FPC_HAS_FEATURE_TEXTIO}
- { Text file support }
- Procedure AssignFile(out t:Text;p:pchar);
- begin
- System.Assign (T,p);
- end;
- Procedure AssignFile(out t:Text;p:pchar; aCodePage : TSystemCodePage);
- begin
- System.Assign (T,p);
- SetTextCodePage(T,aCodePage);
- end;
- Procedure AssignFile(out t:Text;c:char);
- begin
- System.Assign (T,c);
- end;
- Procedure AssignFile(out t:Text;c:char; aCodePage : TSystemCodePage);
- begin
- System.Assign (T,c);
- SetTextCodePage(T,aCodePage);
- end;
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out t:Text;const Name:RawBytestring; aCodePage : TSystemCodePage);
- begin
- System.Assign (T,Name);
- SetTextCodePage(T,aCodePage);
- end;
- Procedure AssignFile(out t:Text;const Name:RawBytestring);
- begin
- System.Assign (T,Name);
- end;
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out t:Text;const Name:UnicodeString; aCodePage : TSystemCodePage);
- begin
- System.Assign (T,Name);
- SetTextCodePage(T,aCodePage);
- end;
- Procedure AssignFile(out t:Text;const Name:UnicodeString);
- begin
- System.Assign (T,Name);
- end;
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure CloseFile(Var t:Text); [IOCheck];
- begin
- { Catch Runtime error/Exception }
- System.Close(T);
- end;
- {$endif FPC_HAS_FEATURE_TEXTIO}
- {$ifdef FPC_HAS_FEATURE_FILEIO}
- { Typed file support }
- Procedure AssignFile(out f:TypedFile;p:pchar);
- begin
- System.Assign (F,p);
- end;
- Procedure AssignFile(out f:TypedFile;c:char);
- begin
- System.Assign (F,c);
- end;
- {$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
- Procedure AssignFile(out f:TypedFile;const Name:RawBytestring);
- begin
- System.Assign (F,Name);
- end;
- {$endif FPC_HAS_FEATURE_ANSISTRINGS}
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- Procedure AssignFile(out f:TypedFile;const Name:UnicodeString);
- begin
- System.Assign (F,Name);
- end;
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- {$endif FPC_HAS_FEATURE_FILEIO}
- {$ifdef FPC_HAS_FEATURE_COMMANDARGS}
- Function ParamStr(Param : Integer) : ansistring;
- begin
- {
- Paramstr(0) should return the name of the binary.
- Since this functionality is included in the system unit,
- we fetch it from there.
- Normally, pathnames are less than 255 chars anyway,
- so this will work correct in 99% of all cases.
- In time, the system unit should get a GetExeName call.
- }
- if (Param=0) then
- Result:=System.Paramstr(0)
- else if (Param>0) and (Param<argc) then
- Result:=Argv[Param]
- else
- Result:='';
- end;
- {$endif FPC_HAS_FEATURE_COMMANDARGS}
- {$ifdef FPC_HAS_FEATURE_RESOURCES}
- { ---------------------------------------------------------------------
- ResourceString support
- ---------------------------------------------------------------------}
- Function Hash(S : AnsiString) : LongWord;
- Var
- thehash,g,I : LongWord;
- begin
- thehash:=0;
- For I:=1 to Length(S) do { 0 terminated }
- begin
- thehash:=thehash shl 4;
- {$push}
- {$R-}{$Q-}
- inc(theHash,Ord(S[i]));
- {$pop}
- g:=thehash and LongWord($f shl 28);
- if g<>0 then
- begin
- thehash:=thehash xor (g shr 24);
- thehash:=thehash xor g;
- end;
- end;
- If theHash=0 then
- Hash:=$ffffffff
- else
- Hash:=TheHash;
- end;
- Type
- PPResourceStringRecord = ^PResourceStringRecord;
- TResourceStringTableList = Packed Record
- Count : sizeint;
- Tables : Array[{$ifdef cpu16}Byte{$else cpu16}Word{$endif cpu16}] of record
- TableStart,
- TableEnd : {$ifdef ver3_0}PResourceStringRecord{$else}PPResourceStringRecord{$endif};
- end;
- end;
- PResourceStringTableList = ^TResourceStringTableList;
- { Support for string constants initialized with resourcestrings }
- {$ifdef FPC_HAS_RESSTRINITS}
- PResStrInitEntry = ^TResStrInitEntry;
- TResStrInitEntry = record
- Addr: PPointer;
- Data: PResourceStringRecord;
- end;
- TResStrInitTable = packed record
- Count: sizeint;
- Tables: packed array[1..{$ifdef cpu16}8191{$else cpu16}32767{$endif cpu16}] of PResStrInitEntry;
- end;
- PResStrInitTable = ^TResStrInitTable;
- var
- ResStrInitTable : PResStrInitTable; external name '_FPC_ResStrInitTables';
- procedure UpdateResourceStringRefs;
- var
- i: integer;
- ptable: PResStrInitEntry;
- begin
- for i:=1 to ResStrInitTable^.Count do
- begin
- ptable:=ResStrInitTable^.Tables[i];
- while Assigned(ptable^.Addr) do
- begin
- AnsiString(ptable^.Addr^):=ptable^.Data^.CurrentValue;
- Inc(ptable);
- end;
- end;
- end;
- {$endif FPC_HAS_RESSTRINITS}
- Var
- ResourceStringTable : PResourceStringTableList; External Name '_FPC_ResourceStringTables';
- Procedure SetResourceStrings (SetFunction : TResourceIterator;arg:pointer);
- Var
- ResStr : PResourceStringRecord;
- i : integer;
- s : AnsiString;
- begin
- With ResourceStringTable^ do
- begin
- For i:=0 to Count-1 do
- begin
- ResStr:=Tables[I].TableStart{$ifndef VER3_0}^{$endif};
- { Skip first entry (name of the Unit) }
- inc(ResStr);
- while ResStr<Tables[I].TableEnd{$ifndef VER3_0}^{$endif} do
- begin
- s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,Longint(ResStr^.HashValue),arg);
- if s<>'' then
- ResStr^.CurrentValue:=s;
- inc(ResStr);
- end;
- end;
- end;
- {$ifdef FPC_HAS_RESSTRINITS}
- UpdateResourceStringRefs;
- {$endif FPC_HAS_RESSTRINITS}
- end;
- Procedure SetUnitResourceStrings (const UnitName:string;SetFunction : TResourceIterator;arg:pointer);
- Var
- ResStr : PResourceStringRecord;
- i : integer;
- s,
- UpUnitName : AnsiString;
- begin
- With ResourceStringTable^ do
- begin
- UpUnitName:=UpCase(UnitName);
- For i:=0 to Count-1 do
- begin
- ResStr:=Tables[I].TableStart{$ifndef VER3_0}^{$endif};
- { Check name of the Unit }
- if ResStr^.Name<>UpUnitName then
- continue;
- inc(ResStr);
- while ResStr<Tables[I].TableEnd{$ifndef VER3_0}^{$endif} do
- begin
- s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,Longint(ResStr^.HashValue),arg);
- if s<>'' then
- ResStr^.CurrentValue:=s;
- inc(ResStr);
- end;
- end;
- end;
- {$ifdef FPC_HAS_RESSTRINITS}
- { Resourcestrings of one unit may be referenced from other units,
- so updating everything is the only option. }
- UpdateResourceStringRefs;
- {$endif FPC_HAS_RESSTRINITS}
- end;
- Procedure ResetResourceTables;
- Var
- ResStr : PResourceStringRecord;
- i : integer;
- begin
- With ResourceStringTable^ do
- begin
- For i:=0 to Count-1 do
- begin
- ResStr:=Tables[I].TableStart{$ifndef VER3_0}^{$endif};
- { Skip first entry (name of the Unit) }
- inc(ResStr);
- while ResStr<Tables[I].TableEnd{$ifndef VER3_0}^{$endif} do
- begin
- ResStr^.CurrentValue:=ResStr^.DefaultValue;
- inc(ResStr);
- end;
- end;
- end;
- end;
- Procedure FinalizeResourceTables;
- Var
- ResStr : PResourceStringRecord;
- i : integer;
- begin
- With ResourceStringTable^ do
- begin
- For i:=0 to Count-1 do
- begin
- ResStr:=Tables[I].TableStart{$ifndef VER3_0}^{$endif};
- { Skip first entry (name of the Unit) }
- inc(ResStr);
- while ResStr<Tables[I].TableEnd{$ifndef VER3_0}^{$endif} do
- begin
- ResStr^.CurrentValue:='';
- inc(ResStr);
- end;
- end;
- end;
- end;
- Function LoadResString(p:PResStringRec):AnsiString;
- begin
- Result:=p^;
- end;
- {$endif FPC_HAS_FEATURE_RESOURCES}
- {$ifdef FPC_HAS_FEATURE_RESOURCES}
- Initialization
- { ResetResourceTables;}
- finalization
- FinalizeResourceTables;
- {$endif FPC_HAS_FEATURE_RESOURCES}
- end.
|