123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- {
- $Id$
- 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.
- **********************************************************************}
- { Read date & Time function declarations }
- {$i osutilsh.inc}
- {$i datih.inc}
- { Read String Handling functions declaration }
- {$i sysstrh.inc}
- type
- { some helpful data types }
- {$IFDEF VER1_0}
- (* System type alias cannot be used under version *)
- (* 1.0 because of different names of System unit. *)
- THandle = longint;
- {$ELSE VER1_0}
- THandle = System.THandle;
- {$ENDIF VER1_0}
- tprocedure = procedure;
- tfilename = string;
- tsyscharset = set of char;
- tintegerset = set of 0..sizeof(integer)*8-1;
- longrec = packed record
- case integer of
- 0 : (lo,hi : word);
- 1 : (bytes : array[0..3] of byte);
- end;
- wordrec = packed record
- lo,hi : byte;
- end;
- int64rec = packed record
- case integer of
- 0 : (lo,hi : cardinal);
- 1 : (words : array[0..3] of word);
- 2 : (bytes : array[0..7] of byte);
- end;
- pbytearray = ^tbytearray;
- tbytearray = array[0..32767] of byte;
- pwordarray = ^twordarray;
- twordarray = array[0..16383] of word;
- TMethod = packed record
- Code, Data: Pointer;
- end;
- { 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)
- public
- {$ifdef win32}
- ExceptionRecord : PExceptionRecord;
- {$endif win32}
- 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;
- procedure FreeInstance;override;
- end;
- EHeapException = EHeapMemoryError;
- EExternalException = class(EExternal);
- EInvalidPointer = Class(EHeapMemoryError);
- EOutOfMemory = Class(EHeapMemoryError);
- EInvalidCast = Class(Exception);
- EVariantError = Class(Exception);
- EAccessViolation = Class(EExternal);
- EPrivilege = class(EExternal);
- EStackOverflow = class(EExternal);
- EControlC = class(EExternal);
- { String conversion errors }
- EConvertError = class(Exception);
- { Other errors }
- EAbort = Class(Exception);
- EAbstractError = Class(Exception);
- EAssertionFailed = Class(Exception);
- EPropReadOnly = class(Exception);
- EPropWriteOnly = class(Exception);
- EIntfCastError = class(Exception);
- EInvalidContainer = class(Exception);
- EInvalidInsert = class(Exception);
- EPackageError = class(Exception);
- ESafecallException = class(Exception);
- { Exception handling routines }
- function ExceptObject: TObject;
- function ExceptAddr: Pointer;
- function ExceptionErrorMessage(ExceptObject: TObject; ExceptAddr: Pointer;
- Buffer: PChar; Size: Integer): Integer;
- procedure ShowException(ExceptObject: TObject; ExceptAddr: Pointer);
- procedure Abort;
- procedure OutOfMemoryError;
- procedure Beep;
- function SysErrorMessage(ErrorCode: Integer): String;
- 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;
- Type
- TFileRec=FileRec;
- TTextRec=TextRec;
- { Read internationalization settings }
- {$i sysinth.inc}
- { Read pchar handling functions declaration }
- {$IFNDEF VIRTUALPASCAL}
- {$i syspchh.inc}
- {$ENDIF}
- { MCBS functions }
- {$i sysansih.inc}
- { Read filename handling functions declaration }
- {$i finah.inc}
- { 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);
- {$ifdef HASINTF}
- { interface handling }
- {$i intfh.inc}
- {$endif HASINTF}
- {
- $Log$
- Revision 1.2 2003-10-25 23:43:59 hajny
- * THandle in sysutils common using System.THandle
- Revision 1.1 2003/10/06 21:01:06 peter
- * moved classes unit to rtl
- Revision 1.20 2003/09/06 20:49:54 marco
- * Two minimal VP fixes
- Revision 1.19 2003/01/01 20:58:07 florian
- + added invalid instruction exception
- Revision 1.18 2002/10/07 19:43:24 florian
- + empty prototypes for the AnsiStr* multi byte functions added
- Revision 1.17 2002/09/07 16:01:22 peter
- * old logs removed and tabs fixed
- Revision 1.16 2002/01/25 17:42:03 peter
- * interface helpers
- }
|