mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-03 03:26:03 +08:00
b311480ed5
Added appropriate copyright and license information in source files
117 lines
3.6 KiB
Plaintext
Executable File
117 lines
3.6 KiB
Plaintext
Executable File
-- Created on: 1992-05-18
|
|
-- Created by: Stephan GARNAUD (ARM)
|
|
-- Copyright (c) 1992-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
--
|
|
-- The content of this file is subject to the Open CASCADE Technology Public
|
|
-- License Version 6.5 (the "License"). You may not use the content of this file
|
|
-- except in compliance with the License. Please obtain a copy of the License
|
|
-- at http://www.opencascade.org and read it completely before using this file.
|
|
--
|
|
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
--
|
|
-- The Original Code and all software distributed under the License is
|
|
-- distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
-- Initial Developer hereby disclaims all such warranties, including without
|
|
-- limitation, any warranties of merchantability, fitness for a particular
|
|
-- purpose or non-infringement. Please see the License for the specific terms
|
|
-- and conditions governing the rights and limitations under the License.
|
|
|
|
|
|
|
|
|
|
|
|
class Error from OSD
|
|
|
|
---Purpose: Management of OSD errors
|
|
|
|
-- Error handling style example:
|
|
--
|
|
--
|
|
-- try{
|
|
-- .
|
|
-- .
|
|
-- .
|
|
-- OSD_Semaphore mysem("KeyName");
|
|
-- if (mysem.Failed())
|
|
-- switch (mysem.Error()){
|
|
-- case 201: mysem.Perror();
|
|
-- case 202: cout << "Just a warning";
|
|
-- }
|
|
-- .
|
|
-- .
|
|
-- .
|
|
-- }
|
|
-- catch(Standard_Failure){
|
|
-- Handle(Standard_Failure) Occur = Standard_Failure::Caught();
|
|
-- .
|
|
-- . // Programmer's decision
|
|
-- .
|
|
--
|
|
-- Each method can be error tested with object.Failed().
|
|
-- To manage an occuring error, just use object.Perror();
|
|
--
|
|
-- It is possible to reset the error counter to zero.
|
|
-- To do this use the 'Reset' method .
|
|
|
|
|
|
-- Only 4 methods are usable for programmer :
|
|
-- Failed to see whether an error occured or not.
|
|
-- Value to get system independent error code.
|
|
-- (See annexe for a complete list of error code).
|
|
-- Reset to reset error code to zero (no error).
|
|
-- Perror to raise OSDError and print a self explanatory error
|
|
-- message. This message says why an error occurs and
|
|
-- explains what to do to correct it.
|
|
|
|
uses
|
|
WhoAmI, AsciiString from TCollection
|
|
|
|
raises
|
|
OSDError
|
|
|
|
is
|
|
Create returns Error;
|
|
---Purpose: Initializes Error to be without any Error.
|
|
-- This is only used by OSD, not by programmer.
|
|
---Level: Public
|
|
|
|
Perror (me : in out)
|
|
---Purpose: Raises OSD_Error with accurate error message.
|
|
raises OSDError is static;
|
|
---Level: Public
|
|
|
|
SetValue (me : in out; Errcode : Integer; From : Integer; Message : AsciiString) is static;
|
|
---Purpose: Instantiates error
|
|
-- This is only used by OSD methods to instantiates an error code.
|
|
-- No description is done for the programmer.
|
|
---Level: Public
|
|
|
|
Error (me) returns Integer is static;
|
|
---Purpose: Returns an accurate error code.
|
|
-- To test these values, you must include "OSD_ErrorList.hxx"
|
|
---Level: Public
|
|
|
|
|
|
Failed (me) returns Boolean is static;
|
|
---Purpose: Returns TRUE if an error occurs
|
|
-- This is a way to test if a system call succeeded or not.
|
|
---Level: Public
|
|
|
|
Reset (me : in out) is static;
|
|
---Purpose: Resets error counter to zero
|
|
-- This allows the user to ignore an error (WARNING).
|
|
---Level: Public
|
|
|
|
fields
|
|
myMessage : AsciiString; -- Internal error message
|
|
myErrno : Integer; -- UNIX/VMS error used by OSD only
|
|
myCode : WhoAmI; -- Accuracy code in error for OSD only
|
|
extCode : Integer; -- Error type decoded for user
|
|
end Error from OSD;
|
|
|
|
|
|
|
|
|