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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
|
{
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}
{ ParamStr should return also an ansistring }
Function ParamStr(Param : Integer) : Ansistring;
{$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;
inc(theHash,Ord(S[i]));
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: {$ifdef VER2_6}longint{$else}sizeint{$endif};
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.
|